@charset "UTF-8";
/*===============================
	共通パーツ
================================*/
html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

body {
  width: 100%;
  overflow-x: hidden;
  color: #090b2b;
  font-family: stenciletta-solid, noto-sans-cjk-jp, sans-serif;
}

.container {
  width: 100vw;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  overflow-x: hidden;
}

::selection {
  background-color: #090b2b;
  color: #fff;
}

.logo_supportas img {
  padding-left: 1.7vw;
  display: block;
  width: 141px;
  height: auto;
}

main {
  padding-top: 65px;
  padding-bottom: 65px;
  background-color: #fff;
}

.inner {
  max-width: 1000px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-title_content {
  height: 350px;
  color: #ffffff;
  position: relative;
}
.main-title_content video {
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}
.main-title_content .main-title {
  font-size: 74px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
}
.main-title_content .main-title span {
  font-size: 12px;
}

.menu_wrap {
  height: 65px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-right: calc(50vw - 500px);
}

.page_frame {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh + 1.7vw);
  border: 1.7vw solid #f2f2f2;
  border-top: none;
  transform: scale(1.035) translateY(0);
  transition: transform 0.5s, background-color 0.5s, z-index 0.5s;
  -webkit-transition: transform 0.5s, background-color 0.5s, z-index 0.5s;
  z-index: 1;
}
.page_frame.active {
  transform: scale(1) translateY(-1.7vw);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.moreBtn {
  width: 230px;
  height: 58px;
  background-color: #0df6ff;
  color: #0d1045;
  border: 1px solid transparent;
  text-align: center;
  border-radius: 35px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.16);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.moreBtn:hover {
  background-color: #0bdce3;
  color: #fff;
}
.moreBtn:hover::before {
  transform: translateX(0);
}
.moreBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0bdce3;
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.moreBtn a {
  width: 100%;
  height: 100%;
  display: block;
  line-height: 60px;
  position: relative;
  z-index: 1;
}
.moreBtn a::after {
  width: auto;
  height: auto;
  content: url('../img/button_arrow_icon.svg');
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  fill: #0d1045;
}

.moreBtn.green {
  background-color: #0ca854;
  position: relative;
  color: #fff;
  display: block;
  margin: 0 auto;
}
.moreBtn.green::before {
  content: none;
}
.moreBtn.green::after {
  content: url(../img/button_arrow_icon_white.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.moreBtn.green:hover {
  background-color: #08753b;
}

.moreBtn.gray {
  background-color: #ddd;
}
.moreBtn.gray:hover {
  background-color: #707070;
  color: #fff;
}

.form-page .inner {
  max-width: 800px;
}
.form-page .inner a {
  color: #2ca7df;
}

.h2_design {
  font-size: 34px;
  text-align: center;
}

.h3_design {
  font-size: 95px;
  text-align: center;
  line-height: 113px;
}

.h2_subtxt {
  font-size: 12px;
  margin-top: 6px;
}

.color_blue {
  color: #2ca7df;
}

.color_orange {
  color: #ff983b;
}

.color_green {
  color: #42d1b5;
}

.bg_blue {
  background-color: #2ca7df;
}

.bg_blue_light {
  background-color: #ddeff9;
}

.bg_orange {
  background-color: #ff983b;
}

.bg_orange_light {
  background-color: #ff983b1a;
}

.bg_green {
  background-color: #42d1b5;
}

.bg_green_light {
  background-color: #cfefeb;
}

.txt_explain {
  font-size: 14px;
  line-height: 30px;
}

.txt_explain_eng {
  font-size: 23px;
  margin-top: 19px;
  line-height: 30px;
}

.txt_center {
  text-align: center;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

.flexbox {
  display: flex;
}

section {
  min-width: 100vw;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

#indicator {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 10;
}

#indicator a {
  display: block;
  width: 16px;
  height: 16px;
  background: #000;
  margin-bottom: 10px;
  border-radius: 50%;
}

#indicator a:last-child {
  margin-bottom: 0;
}

#indicator a.active {
  background: #fff;
}

.arrow_btn {
  position: relative;
}
.arrow_btn::after {
  content: url(../img/button_arrow_icon.svg);
  width: 18px;
  height: 18px;
  background-color: #0df6ff;
  border-radius: 50%;
  line-height: 0;
  display: inline-block;
  text-align: center;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transform: translate(0px, -50%);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  font-size: 29px;
  font-family: noto-sans-cjk-jp, sans-serif;
}

.page_mainImg {
  width: 100%;
  border-radius: 50px;
}

/*---------- header ----------*/
.header {
  position: fixed;
  top: 0;
  width: 100vw;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  background-color: #f2f2f2;
  z-index: 10;
}
.header.active {
  transform: translateY(0);
}
.header .header_container {
  padding: 0 10px;
  height: 65px;
  display: flex;
  transition: height 0.5s;
  -webkit-transition: height 0.5s;
}
.header .header_container .logo_supportas {
  display: inline-block;
  width: auto;
  height: 65px;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.header .header_container .menu_wrap {
  position: absolute;
  display: block;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.header .header_container .menu_sns {
  display: flex;
  align-items: center;
  position: absolute;
  right: 25px;
  height: 65px;
}
.header .header_container .menu_sns .menu_sns_link {
  display: inline-block;
}
.header .header_container .menu_sns .menu_sns_link:not(:last-of-type) {
  margin-right: 7px;
}
.header .header_container .menu_sns .menu_sns_link a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s;
}
.header .header_container .menu_sns .menu_sns_link a:hover {
  opacity: 0.6;
}
.header .header_container .menu_sns ul {
  display: flex;
  align-items: center;
}
.header .header_container .menu_sns .lang-button {
  width: 75px;
  height: 30px;
  margin-left: 3px;
  padding: 2px 3px 3px;
  display: flex;
  position: relative;
  background-color: #fff;
  border: 1px solid #090b2b;
  border-radius: 25px;
}
.header .header_container .menu_sns .lang-button::before {
  content: '';
  width: 40px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  flex-shrink: 0;
  background-color: #090b2b;
  color: #fff;
  border-radius: 25px;
  box-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.16);
  transition: all 1s;
}
.header .header_container .menu_sns .lang-button.en::before {
  left: auto;
  right: 2px;
}
.header .header_container .menu_sns .lang-button.active::before {
  left: auto;
  right: 2px;
}
.header .header_container .menu_sns .lang-button.active.en::before {
  left: 2px;
  right: auto;
}
.header .header_container .menu_sns .lang-button.active .lang {
  color: #fff;
}
.header .header_container .menu_sns .lang-button.active .lang.current {
  color: #090b2b;
}
.header .header_container .menu_sns .lang-button .lang {
  width: 100%;
  height: 100%;
  position: relative;
  color: #090b2b;
}
.header .header_container .menu_sns .lang-button .lang a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.header .header_container .menu_sns .lang-button .lang.current {
  color: #fff;
}
.header .pull-tagWrap {
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.16));
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  width: 120px;
  height: 40px;
  z-index: -1;
}
.header .header_pullTag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  width: 120px;
  height: 40px;
  background-color: #f2f2f2;
  clip-path: url(#clip_pulltag);
}
.header .header_pullTag svg {
  fill: #f2f2f2;
}
.header .header_pullTag .header_pullTag_title {
  font-size: 21px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu_container {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  width: calc(100vw - 385px);
  margin: 0 auto;
  height: 100%;
}
.menu_container .menu_list {
  max-width: 120px;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 5px 0;
}
.menu_container .menu_list:not(:first-of-type) {
  margin-left: 10px;
}
.menu_container .menu_list a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  position: relative;
  border-top: 4px solid #090b2b;
}
.menu_container .menu_list a::before {
  content: '';
  background-color: #0df6ff;
  width: 0%;
  height: 4px;
  position: absolute;
  transition: width 0.5s;
  -webkit-transition: width 0.5s;
  top: -4px;
}
.menu_container .menu_list a:hover::before {
  width: 100%;
}
.menu_container .menu_list p {
  font-size: 18px;
}
.menu_container .menu_list span {
  font-size: 12px;
}
.menu_container .menu_list.submenu_parent.active .sub_menu {
  opacity: 1;
  height: 120px;
  visibility: visible;
}
.menu_container .menu_list.submenu_parent.active .sub_menu li {
  height: 80px;
}
.menu_container .menu_list_highlight {
  padding-top: 5px;
}
.menu_container .menu_list_highlight a {
  border-top: none;
  transition: all 0.5s;
  padding-top: 0;
  height: 52px;
  background-color: #0df6ff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.menu_container .menu_list_highlight a:hover {
  color: #fff;
  background-color: #0bdce3;
}
.menu_container .menu_list_highlight::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0bdce3;
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.menu_container .menu_list_highlight a::before {
  content: none;
}
.menu_container .menu_list_highlight a {
  color: #090b2b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.en .header .menu_wrap.inner {
  width: auto;
}
.en .header .menu_wrap.inner .menu_container {
  justify-content: center;
}
.en .header .menu_wrap.inner .menu_container .menu_list:not(:first-of-type) {
  margin-left: 20px;
}
.en .header .menu_wrap.inner .menu_container .menu_list p {
  margin-top: 7px;
}

.header_container .sub_menu,
.submenu__wrap .sub_menu {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  max-width: 1000px;
  height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, height 0.5s, visibility 0.5s;
  -webkit-transition: opacity 0.5s, height 0.5s, visibility 0.5s;
}
.header_container .sub_menu li,
.submenu__wrap .sub_menu li {
  width: 280px;
  height: 0px;
  border: 1px solid #090b2b;
  transition: height 0.5s;
  -webkit-transition: height 0.5s;
  border: 1px solid #2ca7df;
  border-radius: 5px;
  color: #2ca7df;
  font-size: 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all ease 0.9s;
}
.header_container .sub_menu li:hover,
.submenu__wrap .sub_menu li:hover {
  background-color: #fff;
}
.header_container .sub_menu li svg,
.submenu__wrap .sub_menu li svg {
  transition: all 0.5s;
}
.header_container .sub_menu li:not(:last-of-type),
.submenu__wrap .sub_menu li:not(:last-of-type) {
  margin-right: 30px;
}
.header_container .sub_menu li.filemaker,
.submenu__wrap .sub_menu li.filemaker {
  border: 1px solid #1f93c9;
  color: #1f93c9;
}
.header_container .sub_menu li.filemaker svg,
.submenu__wrap .sub_menu li.filemaker svg {
  fill: #2ca7df;
  stroke: #2ca7df;
}
.header_container .sub_menu li.filemaker:hover,
.submenu__wrap .sub_menu li.filemaker:hover {
  background-color: #1f93c9;
  color: #fff;
  border: transparent;
}
.header_container .sub_menu li.filemaker:hover svg,
.submenu__wrap .sub_menu li.filemaker:hover svg {
  fill: #fff;
  stroke: #fff;
}
.header_container .sub_menu li.bpo,
.submenu__wrap .sub_menu li.bpo {
  border: 1px solid #41ceb2;
  color: #41ceb2;
}
.header_container .sub_menu li.bpo svg,
.submenu__wrap .sub_menu li.bpo svg {
  fill: #42d1b5;
  stroke: #42d1b5;
}
.header_container .sub_menu li.bpo:hover,
.submenu__wrap .sub_menu li.bpo:hover {
  background-color: #41ceb2;
  color: #fff;
  border: transparent;
}
.header_container .sub_menu li.bpo:hover svg,
.submenu__wrap .sub_menu li.bpo:hover svg {
  fill: #fff;
  stroke: #fff;
}
.header_container .sub_menu li.irca,
.submenu__wrap .sub_menu li.irca {
  border: 1px solid #ec7281;
  color: #ec7281;
}
.header_container .sub_menu li.irca svg,
.submenu__wrap .sub_menu li.irca svg {
  fill: #d45769;
  stroke: #d45769;
}
.header_container .sub_menu li.irca:hover,
.submenu__wrap .sub_menu li.irca:hover {
  background-color: #ec7281;
  color: #fff;
  border: transparent;
}
.header_container .sub_menu li.irca:hover svg,
.submenu__wrap .sub_menu li.irca:hover svg {
  fill: #fff;
  stroke: #fff;
}
.header_container .sub_menu li.filemaker div,
.header_container .sub_menu li.bpo div,
.header_container .sub_menu li.irca div,
.submenu__wrap .sub_menu li.filemaker div,
.submenu__wrap .sub_menu li.bpo div,
.submenu__wrap .sub_menu li.irca div {
  width: 42px;
  height: 43px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.header_container .sub_menu li.filemaker div svg,
.header_container .sub_menu li.bpo div svg,
.header_container .sub_menu li.irca div svg,
.submenu__wrap .sub_menu li.filemaker div svg,
.submenu__wrap .sub_menu li.bpo div svg,
.submenu__wrap .sub_menu li.irca div svg {
  width: 100%;
  height: 100%;
  position: static;
  transform: none;
}
.header_container .sub_menu li.filemaker div img,
.header_container .sub_menu li.bpo div img,
.header_container .sub_menu li.irca div img,
.submenu__wrap .sub_menu li.filemaker div img,
.submenu__wrap .sub_menu li.bpo div img,
.submenu__wrap .sub_menu li.irca div img {
  width: 28px;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header_container .sub_menu li.filemaker svg,
.header_container .sub_menu li.bpo svg,
.header_container .sub_menu li.irca svg,
.submenu__wrap .sub_menu li.filemaker svg,
.submenu__wrap .sub_menu li.bpo svg,
.submenu__wrap .sub_menu li.irca svg {
  width: 9.5px;
  right: 22.5px;
  left: auto;
}
.header_container .sub_menu li a,
.submenu__wrap .sub_menu li a {
  line-height: 80px;
  padding-top: 0;
  text-align: right;
  padding-right: 50px;
  border-top: none;
}
.header_container .sub_menu li a img,
.submenu__wrap .sub_menu li a img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
}
.header_container .sub_menu li a svg,
.submenu__wrap .sub_menu li a svg {
  fill: #2ca7df;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.header_container .sub_menu li a::before,
.submenu__wrap .sub_menu li a::before {
  content: none;
}
.header_container .sub_menu li::after,
.submenu__wrap .sub_menu li::after {
  position: absolute;
  right: 15px;
  transform: translate(0px, -50%);
}
.header_container .sub_menu li .circle-bg,
.submenu__wrap .sub_menu li .circle-bg {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #f2f2f2;
  border-radius: 50%;
}
.header_container .sub_menu li .circle-bg img,
.submenu__wrap .sub_menu li .circle-bg img {
  width: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header_container .sub_menu.company-menu li:hover,
.submenu__wrap .sub_menu.company-menu li:hover {
  background-color: #2ca7df;
  color: #fff;
}

.submenu__wrap {
  position: relative;
  top: 57px;
  width: 100vw;
  height: 0px;
  transition: height 0.5s;
}
.submenu__wrap .sub_menu li {
  height: 80px;
}
.submenu__wrap .sub_menu li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.submenu__wrap.active {
  height: 120px;
}
.submenu__wrap.active .sub_menu {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

/*---------- footer ----------*/
.footer_container {
  height: auto;
  min-height: auto;
}

.footer {
  width: 100vw;
  height: 83px;
  color: #ffffff;
  background-color: #090b2b;
  position: relative;
  z-index: 6;
  display: flex;
}
.footer .logo_supportas {
  display: flex;
  align-items: center;
  height: 83px;
}
.footer .logo_supportas img {
  padding-left: 1.7vw;
  display: block;
  width: 141px;
  height: auto;
}
.footer .menu_wrap {
  height: 83px;
  bottom: 0;
  padding: 15px 0;
  margin-left: 25px;
}
.footer .menu_wrap a {
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s;
}
.footer .menu_wrap a:hover {
  opacity: 0.7;
}
.footer .menu_wrap .menu_container {
  align-self: flex-end;
  flex-direction: column;
  width: auto;
}
.footer .menu_wrap .menu_container ul li {
  display: inline-block;
  margin-right: 20px;
}
.footer .menu_wrap .menu_container .menu_global {
  font-size: 16px;
}
.footer .menu_wrap .menu_container .menu_sub {
  width: 100%;
  font-size: 12px;
  margin-top: 12px;
  align-self: start;
}
.footer .menu_wrap .menu_container .menu_sub li a {
  white-space: nowrap;
}
.footer .menu_wrap .smallWrap {
  font-family: noto-sans-cjk-jp, sans-serif;
  align-self: flex-end;
}

.pagetop {
  width: 60px;
  height: 60px;
  background-color: #0df6ff;
  border-radius: 50%;
  position: fixed;
  bottom: 9px;
  right: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  z-index: 7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagetop a {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.5s;
}
.pagetop a img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 14px;
}
.pagetop:hover a {
  background-color: rgba(0, 0, 0, 0.16);
}
.pagetop.appear {
  opacity: 1;
}
.pagetop .pagetop_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*---------- footer(bannar) ----------*/
.bottom_content {
  width: 100vw;
}
.bottom_content .bannerWrap {
  height: 350px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
}
.bottom_content .bannerWrap video {
  display: none;
}
.bottom_content .bannerWrap .banner_container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.bottom_content .bannerWrap .banner {
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.bottom_content .bannerWrap .banner:not(:first-of-type) {
  margin-left: 15px;
}
.bottom_content .bannerWrap .banner a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.5s;
  position: absolute;
  top: 0;
  left: 0;
}
.bottom_content .bannerWrap .banner a:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
.bottom_content .bannerWrap .banner img {
  max-width: 320px;
  width: 100%;
}
.bottom_content .partnerWrap {
  width: 100vw;
  height: 80px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bottom_content .partnerWrap a img {
  width: auto;
  max-height: 80px;
}
.bottom_content .partnerWrap a.p-mark {
  padding-left: 16px;
  border-left: 1px solid #ddd;
}
.bottom_content .partnerWrap a.p-mark img {
  width: auto;
  max-height: 60px;
}

.flexWrap {
  display: flex;
  justify-content: space-between;
}

.business_block_container {
  width: 100%;
}
.business_block_container .block_content {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}
.business_block_container .block_content img {
  margin-bottom: 20px;
}
.business_block_container .block_content p {
  font-size: 39px;
}
.business_block_container .relation-line {
  width: 50%;
  margin: 10px auto 20px;
  display: flex;
  flex-wrap: wrap;
}
.business_block_container .relation-line span {
  display: inline-block;
  width: 50%;
  height: 70px;
}
.business_block_container .relation-line span:nth-of-type(1) {
  border-right: 2px solid #ff983b;
  border-bottom: 4px solid #ff983b;
}
.business_block_container .relation-line span:nth-of-type(2) {
  border-left: 2px solid #ff983b;
  border-bottom: 4px solid #ff983b;
}
.business_block_container .relation-line span:nth-of-type(3) {
  border-left: 4px solid #ff983b;
}
.business_block_container .relation-line span:nth-of-type(4) {
  border-right: 4px solid #ff983b;
}

/*===============================
	TOP
================================*/
.mainVisual {
  z-index: -10;
}
.mainVisual .mainVisual_video {
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.mainVisual.active .mainVisual_video {
  transform: scale(0.965);
}
.mainVisual h1 {
  font-size: 160px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.mainVisual .mvlogoWrap {
  max-width: 800px;
  position: fixed;
  width: 800px;
  height: auto;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  transition: opacity 0.3s, transform 1s;
  -webkit-transition: opacity 0.3s, transform 1s;
  font-size: 32px;
  z-index: -1;
}
.mainVisual .mvlogoWrap .mainVisual_logo {
  max-width: 800px;
  width: 800px;
  height: 138px;
  background-image: url(../img/top_animation-logo.png);
  background-repeat: no-repeat;
  animation: flap-logo 1.5s 0.5s steps(9, end) forwards;
  z-index: -5;
  transform: scale(0.75);
}
.mainVisual .mvlogoWrap.active .mainVisual_logo {
  transform: translate(-50%, -50%) scale(0.965);
}
.mainVisual .mvlogoWrap span {
  margin-top: 20px;
  display: block;
  opacity: 0;
  animation: simple-fade 2s 2.5s forwards;
}

@keyframes flap-logo {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -7200px 0;
  }
}
@keyframes simple-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------- menu section ----------*/
.gradient-bg {
  height: 50vh;
  width: 100vw;
  background: linear-gradient(to bottom, transparent, #fffffff2);
}

.top_menuWrap {
  color: #ffffff;
}
.top_menuWrap ul {
  font-size: 34px;
  position: absolute;
  bottom: 12.5vh;
  width: 35.7vw;
  right: 0;
}
.top_menuWrap ul li {
  margin-top: 30px;
}
.top_menuWrap ul li:hover span:first-of-type::after {
  width: 100%;
}
.top_menuWrap ul li::after {
  content: none;
}
.top_menuWrap ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
.top_menuWrap ul li a span {
  position: relative;
}
.top_menuWrap ul li a span:first-of-type::after {
  content: '';
  width: 0;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #0df6ff;
  transition: width 0.8s ease;
  -webkit-transition: width 0.8s ease;
}
.top_menuWrap ul li a > span:nth-of-type(2) {
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

@keyframes line-anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#topMenuList {
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}
#topMenuList.appear {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translate(0, 100px);
}
.fade-in.appear {
  animation: fade-in 1s forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slide-in-r {
  opacity: 0;
  transform: translate(100%, 0);
}
.slide-in-r.appear {
  animation: slide-in-r 1s forwards;
  opacity: 1;
}

@keyframes slide-in-r {
  0% {
    opacity: 0;
    transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.slide-in-l {
  opacity: 0;
  transform: translate(-100%, 0);
}
.slide-in-l.appear {
  animation: slide-in-l 1s forwards;
  opacity: 1;
}

@keyframes slide-in-l {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*---------- BRAND PURPOSE ----------*/
.top_purpose {
  background-color: #fffffff2;
  position: relative;
  width: 100vw;
  height: 100vh;
  justify-content: space-between;
}
.top_purpose .inner {
  position: absolute;
}

.devide-left_design {
  position: relative;
  width: 50%;
  height: 100%;
}
.devide-left_design .purpose_img {
  position: absolute;
  top: 50%;
  height: 443px;
  transform: translate(0%, -50%);
  right: 2.5vw;
  transition: transform 1s 0.5s;
  -webkit-transition: transform 1s 0.5s;
  animation: none;
}
.devide-left_design .purpose_img.appear {
  transform: translate(0%, -50%);
}

.devide-right_design {
  width: 50%;
  height: 100%;
  position: relative;
}
.devide-right_design .top_section_txt {
  position: absolute;
  top: 50%;
  width: 35.7vw;
  right: 0;
  height: 443px;
  transform: translate(100%, -50%);
  transition: all 1s 0.5s;
  -webkit-transition: all 1s 0.5s;
  text-align: left;
  margin-top: -8px;
}
.devide-right_design .top_section_txt.slide-in-r {
  animation: none;
  overflow: 1;
}
.devide-right_design .top_section_txt.slide-in-r.appear {
  transform: translate(0%, -50%);
}
.devide-right_design .top_section_txt .h2_design {
  text-align: left;
  margin-bottom: 0;
}
.devide-right_design .top_section_txt span {
  display: inline-block;
  width: 100%;
}
.devide-right_design .top_section_txt .txt_explain {
  margin-top: 30px;
}
.devide-right_design .top_section_txt .moreBtn {
  margin-top: 46px;
}

/*---------- JOIN US ----------*/
.top_joinus {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: url(../img/top_joinusImg.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_joinus .inner {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.78);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top_joinus .inner .txt_explain {
  max-width: 500px;
  margin-top: 45px;
  line-height: 24px;
}
.top_joinus .inner .bannerWrap {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  display: flex;
  width: 100%;
  padding: 0 40px;
  justify-content: center;
}
.top_joinus .inner .bannerWrap a {
  width: 100%;
  height: auto;
  display: block;
  max-width: 298px;
  opacity: 1;
  position: relative;
}
.top_joinus .inner .bannerWrap a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.5s;
}
.top_joinus .inner .bannerWrap a:hover::after {
  opacity: 0.2;
}
.top_joinus .inner .bannerWrap a img {
  width: 100%;
  height: auto;
}
.top_joinus .inner .bannerWrap a:not(:first-of-type) {
  margin-left: 40px;
}
.top_joinus .inner .moreBtn {
  margin-top: 45px;
}

/*---------- BUSINESS ----------*/
.top_business {
  text-align: center;
}
.top_business .inner {
  width: 50%;
  margin: 0 0 0 auto;
  background-color: #fff;
  right: 0;
  padding: 60px 40px 60px;
  transform: translateX(100%);
  transition: transform 1s 0.5s;
  -webkit-transition: transform 1s 0.5s;
}
.top_business .inner.appear {
  transform: translateX(0);
}
.top_business .inner .h3_design {
  font-size: 84px;
  line-height: 1em;
}
.top_business .inner > .txt_head {
  font-size: 21px;
  margin-top: 30px;
}
.top_business .inner p {
  font-size: 15px;
  line-height: 15px;
  margin-top: 12px;
  text-align: center;
}
.top_business .inner .txt_explain_large {
  font-size: 29px;
  text-align: center;
  line-height: initial;
  letter-spacing: 0.06em;
  margin-top: 38px;
}
.top_business .inner .txt_explain_large span {
  font-size: 50%;
  vertical-align: 20%;
}
.top_business .inner .txt_explain {
  margin-bottom: 50px;
}
.top_business .inner .moreBtn {
  margin-top: 43px;
}

.block_wrap {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}

/*---------- SERVICE ----------*/
.top_service {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 70px 0;
}
.top_service .moreBtn {
  margin-top: 45px;
}

.sliderWrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  max-width: 1400px;
}
.sliderWrap .label_txt {
  font-size: 24px;
  margin-top: 28px;
  font-family: noto-sans-cjk-jp, sans-serif;
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.sliderWrap .label_txt::after {
  left: 100%;
  transform: translate(0, -50%);
}

.slideCont {
  width: 33%;
  opacity: 1;
  transition: opacity 0.5s;
}
.slideCont .service_panel::before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: transparent;
  border-radius: 20px;
  z-index: 1;
  transition: background-color 0.5s;
}
.slideCont p {
  opacity: 1;
  transition: opacity 0.5s;
}
.slideCont a {
  width: 100%;
  height: 100%;
  display: block;
}
.slideCont:hover .service_panel::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.slideCont:hover p {
  opacity: 0.6;
}

.slideCont:not(:last-of-type) {
  margin-right: 30px;
}

.service_panel {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  box-shadow: 10px 10px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.service_panel img {
  width: 100%;
  height: auto;
}
.service_panel.bpo img {
  height: 100%;
}
.service_panel .panel_txt {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  line-height: 35px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.service_panel .panel_txt.left {
  left: 40px;
}
.service_panel .panel_txt.right {
  right: 40px;
  line-height: 45px;
}
.service_panel .panel_label {
  width: 100%;
  height: 35px;
  position: absolute;
  bottom: 25px;
  color: #ffffff;
  font-size: 25px;
  line-height: 35px;
  padding-left: 20px;
}
.service_panel .panel_label::after {
  content: url('../img/triangle-arrow.svg');
  position: absolute;
  right: 20px;
}

/*---------- NEWS ----------*/
.top_news {
  background-color: #ffffff;
  padding: 60px 0;
}
.top_news .news-tabWrap {
  width: 100%;
}
.top_news .news-tabWrap .arrow_btn {
  display: none;
}
.top_news .moreBtn {
  margin-top: 45px;
}
.top_news .menu_container {
  margin: 0 auto;
  justify-content: start;
  margin-top: 50px;
}
.top_news .menu_container .menu_list {
  cursor: pointer;
  z-index: 3;
  border-top: none;
  padding-left: 10px;
  width: 160px;
  max-width: 200px;
  padding-right: 20px;
}
.top_news .menu_container .menu_list .news_tab {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.top_news .menu_container .menu_list .news_tab::before {
  content: '';
  background-color: #090b2b;
  width: 100%;
  height: 4px;
  position: absolute;
  top: -2px;
  opacity: 0;
}
.top_news .menu_container .menu_list::before {
  content: none;
}
.top_news .menu_container .menu_list.active .news_tab::before {
  opacity: 1;
}
.top_news .menu_container .menu_list.active#newTab .news_tab::before {
  background-color: #0df6ff;
}
.top_news .menu_container .menu_list.active#CorporateTab .news_tab::before {
  background-color: #0d1045;
}
.top_news .menu_container .menu_list.active#filemakerTab .news_tab::before {
  background-color: #2ca7df;
}
.top_news .menu_container .menu_list.active#bpoTab .news_tab::before {
  background-color: #42d1b5;
}
.top_news .menu_container .menu_list.active#ircaTab .news_tab::before {
  background-color: #ec7281;
}

.news_listWrap {
  margin-top: 38px;
  width: 100%;
  height: 300px;
  overflow: auto;
}
.news_listWrap .single-list {
  display: flex;
  line-height: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
.news_listWrap .single-list::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(0.5);
  background-color: #d3cfcf;
}
.news_listWrap .single-list:last-of-type::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(0.5);
  background-color: #d3cfcf;
}
.news_listWrap .single-list .news_category {
  width: 165px;
  height: 25px;
  background-color: #2ca7df;
  text-align: center;
  line-height: 25px;
  margin-right: 30px;
}
.news_listWrap .single-list .news_category.corp {
  background-color: #0d1045;
  color: #fff;
}
.news_listWrap .single-list .news_category.filemaker {
  background-color: #2ca7df;
}
.news_listWrap .single-list .news_category.bpo {
  background-color: #42d1b5;
}
.news_listWrap .single-list .news_category.irca {
  background-color: #ec7281;
}
.news_listWrap .single-list .newsDate {
  font-family: noto-sans-cjk-jp, sans-serif;
  margin-right: 15px;
}

/*---------- SDGs ----------*/
.top_sdgs {
  background-color: rgba(0, 0, 0, 0.8);
}
.top_sdgs .inner {
  flex-direction: row;
  justify-content: space-between;
}
.top_sdgs .inner img {
  max-width: 50%;
  height: auto;
}
.top_sdgs .inner .textWrap {
  max-width: 440px;
  margin-left: 20px;
  color: #fff;
  padding-right: 20px;
}
.top_sdgs .inner .textWrap .heading {
  font-size: 54px;
}
.top_sdgs .inner .textWrap .heading img {
  max-width: 100%;
}
.top_sdgs .inner .textWrap .heading span {
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-left: -0.25em;
  font-size: 70%;
}
.top_sdgs .inner .textWrap .plain-txt {
  margin-top: 23px;
  font-size: 16px;
  line-height: 2.25em;
}
.top_sdgs .inner .textWrap .moreBtn {
  display: block;
  margin-top: 31px;
  margin-left: auto;
  margin-right: 0;
}

/*---------- COMPANY ----------*/
.top_company {
  color: #ffffff;
  text-align: center;
  position: relative;
}
.top_company > .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top_company .txt_explain_eng {
  font-size: 32px;
  line-height: 30px;
}
.top_company .moreBtn {
  margin-top: 50px;
}
.top_company footer {
  position: absolute;
  left: 0;
  bottom: 0;
}
.top_company footer img {
  position: absolute;
  left: 0;
}

/*===============================
	BRAND PURPOSE
================================*/
button.center {
  display: none !important;
}

.brand-purpose {
  text-align: center;
}
.brand-purpose .video__wrap {
  max-width: 100%;
  border-radius: 50px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.16);
  position: relative;
  cursor: pointer;
}
.brand-purpose .video__wrap video {
  width: 100%;
  display: block;
}
.brand-purpose .video__wrap .control__wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.16);
  transition: all 0.5s;
  pointer-events: none;
}
.brand-purpose .video__wrap .control__wrap svg {
  position: absolute;
  max-width: 150px;
  max-height: 150px;
  width: 25%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #0df6ff;
  z-index: 1;
}
.brand-purpose .video__wrap .control__wrap:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.brand-purpose .video__wrap.play .control__wrap {
  display: none;
}
.brand-purpose .purpose-txt {
  margin-top: 65px;
  display: flex;
  text-align: left;
}
.brand-purpose .purpose-txt p {
  font-size: 14px;
  line-height: 27px;
}
.brand-purpose .purpose-txt p:not(:last-of-type) {
  margin-right: 45px;
}
.brand-purpose .flexbox {
  justify-content: space-around;
  width: 100%;
}
.brand-purpose .moreBtn {
  margin-top: 65px;
  margin-bottom: 65px;
}

/*===============================
	NEWS
================================*/
.news-listWrap {
  width: 100%;
  margin-top: 65px;
  display: flex;
}

.singleWrap {
  width: 72%;
}
.singleWrap .single-list {
  display: flex;
  height: 75px;
  line-height: 75px;
  font-family: noto-sans-cjk-jp, sans-serif;
  border-bottom: 1px solid #2ca7df;
  font-size: 14px;
  line-height: 1.25em;
  padding: 15px 0;
}
.singleWrap .single-list a {
  width: 100%;
  display: flex;
  align-items: center;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s;
}
.singleWrap .single-list a:hover {
  opacity: 0.5;
}
.singleWrap .single-list time {
  min-width: 70px;
  font-weight: bold;
}
.singleWrap .single-list p {
  align-items: center;
  display: inline-block;
  margin-left: 47px;
}
.singleWrap .single-list:first-of-type {
  border-top: 1px solid #2ca7df;
}

.sidebarWrap {
  margin-left: 17px;
  max-width: 245px;
  width: 25%;
}
.sidebarWrap .label_txt {
  width: 100%;
  height: 35px;
  text-align: right;
  padding-right: 10px;
  font-size: 24px;
  line-height: 35px;
}
.sidebarWrap .archive_list {
  text-align: right;
  font-family: noto-sans-cjk-jp, sans-serif;
  padding: 10px;
}
.sidebarWrap .archive_list li:not(:first-of-type) {
  margin-top: 15px;
}
.sidebarWrap .archive_list li:nth-of-type(n + 6) {
  display: none;
}
.sidebarWrap .archive_list a {
  opacity: 1;
  transition: opacity 0.3s;
}
.sidebarWrap .archive_list a:hover {
  opacity: 0.5;
}
.sidebarWrap .archive_list #more_txt {
  cursor: pointer;
}
.sidebarWrap .archive_list.active li:nth-of-type(n + 6) {
  display: block;
}
.sidebarWrap .archive_list > span {
  margin-top: 15px;
  display: block;
  opacity: 1;
  transition: opacity 0.3s;
}
.sidebarWrap .archive_list > span:hover {
  opacity: 0.5;
}

.meta_wrap {
  width: 35%;
  display: flex;
  align-items: center;
}
.meta_wrap .news_category {
  margin-left: 20px;
  width: 140px;
  height: 25px;
  line-height: 25px;
  background-color: #090b2b;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-family: stenciletta-solid, noto-sans-cjk-jp, sans-serif;
}
.meta_wrap .news_category.notice {
  background-color: #4772b3;
}
.meta_wrap .news_category.newsrelease {
  background-color: #014581;
}
.meta_wrap .news_category a {
  display: block;
}

.tag-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.tag-list li {
  width: 120px;
  height: 30px;
  border: 1px solid #2ca7df;
  font-size: 12px;
  text-align: center;
  line-height: 30px;
  list-style-type: none;
  margin-top: 10px;
}
.tag-list li:not(:first-of-type) {
  margin-left: 5px;
}

.article-per-page {
  margin-top: 40px;
}
.article-per-page ul {
  display: flex;
  color: #2ca7df;
  justify-content: center;
}
.article-per-page ul li {
  margin-left: 25px;
}
.article-per-page ul li span.current {
  color: #090b2b;
}

/*---------- single ----------*/
.single-news .meta_wrap {
  margin-top: 65px;
  font-family: noto-sans-cjk-jp, sans-serif;
  width: 100%;
}
.single-news .meta_wrap .tag-list {
  display: inline-block;
  margin-left: 25px;
  margin-top: 0;
}
.single-news .pagenation section {
  margin-top: 120px;
  margin-bottom: 40px;
}

article {
  width: 100%;
  margin-top: 15px;
  font-size: 14px;
  line-height: 29px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
article img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  width: auto;
  margin: 0 auto;
  display: block;
  margin-top: 50px;
}
article p {
  margin-top: 50px;
}
article a {
  overflow-wrap: break-word;
}
article .ytube iframe {
  max-width: 100%;
  max-height: 550px;
  height: 63.5vw;
}
article :not(.ytube) iframe {
  max-width: 100%;
  height: auto;
}

.pagenation {
  width: 100%;
}
.pagenation section {
  max-width: 1000px;
  min-width: 100%;
  width: 100%;
  height: auto;
  min-height: 100%;
  margin-top: 45px;
}
.pagenation a {
  width: 50%;
  height: 80px;
  border: 1px solid #2ca7df;
  line-height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
}
.pagenation a h3 {
  line-height: 1.5em;
  text-align: left;
}
.pagenation a.prev-link {
  padding-left: 50px;
  padding-right: 10px;
}
.pagenation a.prev-link::after {
  left: 15px;
  transform: scale(-1, 1) translate(0, -50%);
}
.pagenation a.next-link {
  margin-left: 17px;
  padding-right: 50px;
  padding-left: 10px;
}
.pagenation a.next-link::after {
  right: 15px;
  left: auto;
  transform: translate(0, -50%);
}

/*---------- archive ----------*/
.news .h2_design {
  font-family: noto-sans-cjk-jp, sans-serif;
}

/*===============================
	SERVICE
================================*/
.service_content {
  width: 100%;
  background-color: rgba(242, 242, 242, 0.78);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  padding: 18px;
  display: flex;
}
.service_content .slideCont {
  margin-right: 30px;
  flex-shrink: 0;
}
.service_content:not(:first-of-type) {
  margin-top: 25px;
}
.service_content .service_panel .label_txt {
  position: absolute;
  left: 47px;
  bottom: 14px;
  font-size: 23px;
  color: #014581;
}
.service_content .textWrap {
  position: relative;
  padding-bottom: 80px;
}
.service_content .textWrap .txt_head {
  font-size: 21px;
  margin-top: 20px;
  line-height: 46px;
}
.service_content .textWrap .txt_explain {
  margin-top: 6px;
}
.service_content .moreBtn {
  margin: 40px auto 0;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.service_content .moreBtn a::after {
  content: none;
}
.service_content .moreBtn svg {
  width: 9.5px;
  right: 22.5px;
  left: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.service_content .moreBtn.filemaker svg {
  fill: #2ca7df;
  stroke: #2ca7df;
}
.service_content .moreBtn.bpo svg {
  fill: #42d1b5;
  stroke: #42d1b5;
}
.service_content .moreBtn.irca svg {
  fill: #ec7281;
  stroke: #ec7281;
}
.service_content .moreBtn:hover svg {
  fill: #fff;
  stroke: #fff;
}

.moreBtn.filemaker,
.moreBtn.bpo,
.moreBtn.irca {
  background-color: #fff;
}
.moreBtn.filemaker:hover a,
.moreBtn.bpo:hover a,
.moreBtn.irca:hover a {
  color: #fff;
}
.moreBtn.filemaker {
  border: 1px solid #1f93c9;
  color: #1f93c9;
}
.moreBtn.filemaker a {
  color: #1f93c9;
}
.moreBtn.filemaker::before {
  background-color: #1f93c9;
}
.moreBtn.bpo {
  border: 1px solid #41ceb2;
  color: #41ceb2;
}
.moreBtn.bpo a {
  color: #41ceb2;
}
.moreBtn.bpo::before {
  background-color: #41ceb2;
}
.moreBtn.irca {
  border: 1px solid #ec7281;
  color: #ec7281;
}
.moreBtn.irca a {
  color: #ec7281;
}
.moreBtn.irca::before {
  background-color: #ec7281;
}

/*===============================
	BUSINESS
================================*/
.business .inner p.catch-txt {
  font-size: 26px;
  line-height: 49px;
  text-align: center;
}
.business .inner .txt_explain {
  margin-top: 65px;
}

.service_catchWrap {
  padding: 40px 0 55px;
  background-color: #f2f2f2;
  margin-top: 65px;
  width: 100%;
  border-radius: 50px;
}
.service_catchWrap .txt_head {
  text-align: center;
  font-size: 24px;
}
.service_catchWrap .txt_explain_eng {
  font-size: 34px;
  line-height: 42px;
  text-align: center;
}
.service_catchWrap .block_wrap {
  text-align: center;
  max-width: 523px;
  margin: 15px auto 0;
  justify-content: space-between;
}
.service_catchWrap .block_wrap img:not(:first-of-type) {
  margin-left: 60px;
}
.service_catchWrap .txt_explain_large {
  font-size: 29px;
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.06em;
}
.service_catchWrap .txt_explain_large span {
  font-size: 50%;
  vertical-align: 20%;
}

.business_typeWrap {
  padding: 30px 60px;
  position: relative;
  display: flex;
  margin-top: 65px;
  width: 100%;
  justify-content: space-between;
}
.business_typeWrap .type-head {
  width: 16.5%;
}
.business_typeWrap .type-head img {
  width: 100%;
}
.business_typeWrap .type-head .service-text {
  font-size: 34px;
}
.business_typeWrap .type_descWrap {
  width: 79.6%;
}
.business_typeWrap .type_descWrap.content_frame {
  padding: 50px;
  background-color: #ffffff;
}
.business_typeWrap .type_descWrap.content_frame p {
  font-size: 13px;
  line-height: 23px;
}
.business_typeWrap .type_descWrap .business_block_container {
  margin-top: 65px;
}
.business_typeWrap .type_descWrap .business_block_container .block_content p {
  font-size: 34px;
  text-align: center;
}
.business_typeWrap .type_descWrap li {
  background-color: #ffffff;
}
.business_typeWrap.bg_blue_light .type_descWrap li svg {
  fill: #2ca7df;
}
.business_typeWrap.bg_green_light .type_descWrap li svg {
  fill: #42d1b5;
}
.business_typeWrap .moreBtn {
  width: 100%;
  max-width: 230px;
  margin-top: 20px;
  display: block;
  margin-right: 0;
  margin-left: auto;
  position: relative;
}
.business_typeWrap .moreBtn svg {
  width: 9.5px;
  right: 22.5px;
  left: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.business_typeWrap .moreBtn a::after {
  content: none;
}
.business_typeWrap .moreBtn.filemaker svg {
  stroke: #2ca7df;
}
.business_typeWrap .moreBtn.bpo svg {
  stroke: #41ceb2;
}
.business_typeWrap .moreBtn:hover.filemaker svg,
.business_typeWrap .moreBtn:hover.bpo svg {
  stroke: #fff;
}

.service-list {
  display: flex;
  width: 100%;
  padding: 50px 20px 20px;
  margin-bottom: 10px;
}
.service-list .block-parts {
  position: relative;
  width: 120px;
  height: 120px;
}
.service-list .block-parts img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 79px;
}
.service-list .block-parts .service_block-txt {
  position: absolute;
  top: 45%;
  left: 25%;
  color: #ffffff;
  font-size: 26px;
  transform: rotate3d(0.5, 1, 0.2, 50deg) scaleX(1.3);
}
.service-list .block-parts .service_block-icon {
  width: 30px;
  height: 25px;
  position: absolute;
  top: 48%;
  left: 55.5%;
  -webkit-transform: rotate3d(0.5, 1, 0.2, 50deg);
  transform: rotate3d(-0.5, 1, 0.2, -50deg);
}
.service-list .block-parts .service_block-icon use {
  fill: #ffffff;
}
.service-list .textWrap {
  margin-left: 25px;
  flex-grow: 1;
}
.service-list .textWrap p {
  display: flex;
}
.service-list .textWrap p .service_block-icon {
  width: 30px;
  height: 30px;
}
.service-list .textWrap p span {
  padding-left: 10px;
}
.service-list .textWrap .txt_explain {
  font-size: 12px;
  line-height: 20px;
  margin-top: 5px;
  color: #12487c;
}
.service-list .textWrap .txt_explain:nth-of-type(2) {
  margin-top: 10px;
}

/*===============================
	COMPANY
================================*/
.main-title_full {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  position: relative;
}
.main-title_full .imgWrap {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  z-index: -1;
}
.main-title_full .imgWrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.main-title_full .main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}
.main-title_full .main-title .inner {
  max-width: 983px;
  margin: 0 auto;
}

.sub_menu-list {
  width: 100%;
}
.sub_menu-list ul {
  display: flex;
  margin-top: 50px;
  color: #fff;
  justify-content: space-between;
}
.sub_menu-list ul li {
  width: 318px;
  height: 91px;
  text-align: left;
  line-height: 100px;
}
.sub_menu-list ul li:not(:last-of-type) {
  margin-right: 36px;
}
.sub_menu-list ul li.profile-img {
  background: url(../img/company_profileImg.jpg);
  background-size: cover;
}
.sub_menu-list ul li.access-img {
  background: url(../img/company_accessImg.jpg);
  background-size: cover;
}
.sub_menu-list ul li.philosophy-img {
  background: url(../img/company_philosophyImg.jpg);
  background-size: cover;
}
.sub_menu-list ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  background-color: transparent;
  transition: background-color 0.5s;
}
.sub_menu-list ul li a:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.sdgs-banner {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  margin-top: 10px;
  padding-right: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #014581;
}
.sdgs-banner a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.sdgs-banner .image-wrap {
  width: 20%;
  max-width: 201px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.sdgs-banner .image-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.sdgs-banner .text-wrap {
  width: 50%;
  margin-left: 20px;
}
.sdgs-banner .text-wrap p {
  margin-top: 7px;
  font-size: 12px;
}
.sdgs-banner .logo-wrap {
  width: 50%;
  margin-left: 20px;
}
.sdgs-banner .logo-wrap img {
  width: 100%;
}

/*===============================
	COMPANY PROFILE
================================*/
.main-image {
  width: 100%;
  margin-top: 65px;
  border-radius: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.company p.txt_explain {
  margin-top: 65px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  max-width: 780px;
  margin: 65px auto 0;
}
.company table {
  width: 100%;
  margin-top: 65px;
  border-collapse: collapse;
}
.company table th,
.company table td {
  vertical-align: middle;
  padding: 25px;
  line-height: 24px;
  font-size: 16px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.company table th {
  width: 15vw;
  height: 70px;
  text-align: left;
  padding-left: 20px;
  font-weight: normal;
  color: #2ca7df;
  border-bottom: 1px solid #2ca7df;
}
.company table td {
  padding-left: 3.9vw;
  border-bottom: 1px solid #090b2b;
}
.company table td li {
  list-style-type: '・';
}
.company table td li ol li {
  list-style-type: '∟';
  margin-left: 1em;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.company .moreBtn {
  margin-top: 65px;
}

.subsidiary {
  width: 100%;
  margin-top: 80px;
}
.subsidiary table {
  margin-top: 40px;
}
.subsidiary table tr img {
  width: 100%;
}

/*===============================
	COMPANY ACCESS
================================*/
.office-lists {
  margin-top: 65px;
  width: 100%;
}
.office-lists ul {
  display: flex;
  flex-wrap: wrap;
}
.office-lists ul li {
  width: 50%;
  height: 70px;
  border: 1px solid #2ca7df;
  text-align: center;
  line-height: 70px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.office-lists ul li:nth-of-type(odd) {
  border-right: none;
}
.office-lists ul li:nth-of-type(odd):last-of-type {
  border-right: 1px solid #2ca7df;
  width: calc(50% + 1px);
}
.office-lists ul li:nth-of-type(n + 3) {
  border-top: none;
}
.office-lists ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.office-lists ul li::after {
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.16);
}

.office_container {
  margin-top: 45px;
  padding-top: 85px;
  width: 100%;
}
.office_container .h2_design {
  font-family: noto-sans-cjk-jp, sans-serif;
}
.office_container .mapWrap {
  margin-top: 50px;
  width: 100%;
  height: 490px;
  display: flex;
}
.office_container .mapWrap iframe {
  width: 50%;
}
.office_container .textWrap {
  width: 50%;
  height: 100%;
  position: relative;
}
.office_container .textWrap .imgWrap {
  overflow: hidden;
  height: 100%;
}
.office_container .textWrap .imgWrap img {
  mix-blend-mode: multiply;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.office_container .textWrap .imgWrap .bg-overlay {
  background-color: #1f93c9;
  width: 100%;
  height: 100%;
  position: absolute;
}
.office_container .textWrap .descWrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 20%;
  padding-left: 10%;
  padding-right: 10%;
}
.office_container .textWrap .descWrap .tag-list {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #fff;
}
.office_container .textWrap .descWrap .tag-list ul {
  display: flex;
  flex-wrap: wrap;
}
.office_container .textWrap .descWrap .tag-list ul li {
  border: none;
  font-size: 12px;
  padding: 0 5px;
  margin-right: 10px;
  margin-left: 0;
  margin-top: 0;
}
.office_container .textWrap .descWrap .tag-list ul li.it {
  color: #2ca7df;
  border: 1px solid #2ca7df;
}
.office_container .textWrap .descWrap .tag-list ul li.so {
  color: #ff983b;
  border: 1px solid #ff983b;
}
.office_container .textWrap .descWrap .tag-list ul li.gh {
  color: #42d1b5;
  border: 1px solid #42d1b5;
}
.office_container .textWrap p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-family: noto-sans-cjk-jp, sans-serif;
}

/*===============================
	COMPANY PHILOSOPHY
================================*/
.company .darkWrap {
  background-color: #090b2b;
  margin-top: 65px;
  color: #ffffff;
  padding: 60px;
  width: 100vw;
  padding-bottom: 100px;
}
.company .darkWrap .h3_design {
  font-size: 32px;
  color: #ffffff;
}
.company .darkWrap .catch_txt {
  font-size: 34px;
  line-height: 46px;
  margin-top: 50px;
  text-align: center;
}
.company .darkWrap .txt_explain {
  text-align: left;
  line-height: 42px;
  max-width: 1000px;
  font-size: 18px;
}

/*===============================
	COMPANY HISTORY
================================*/
.history h2 {
  font-size: 32px;
  text-align: left;
}
.history table {
  width: 100%;
  margin-top: 65px;
  border-collapse: collapse;
}
.history table tr {
  border-bottom: 1px solid #eee;
}
.history table tr:nth-last-of-type(-n + 2),
.history table tr:first-of-type {
  border-bottom: none;
}
.history table th,
.history table td {
  padding: 0;
  line-height: 24px;
  font-size: 16px;
  border-bottom: none;
}
.history table th {
  width: 200px;
  text-align: left;
  padding-left: 20px;
  padding-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
  font-size: 96px;
  opacity: 0.5;
  line-height: 1;
  font-family: inherit;
  color: transparent;
  background: repeating-linear-gradient(-45deg, #b1d0de 3px, #2ca7df 5px 3px);
  -webkit-background-clip: text;
  background-clip: text;
}
.history table td {
  padding-top: 40px;
  border-left: 2px solid #2ca7df;
  padding-bottom: 30px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.history table td.dots {
  border-left: 2px dotted #2ca7df;
}
.history table td li {
  padding-left: 100px;
  position: relative;
  margin: 30px 0;
  list-style-type: none;
}
.history table td li span {
  color: #2ca7df;
  padding: 0 40px;
  position: absolute;
  left: 0;
}
.history table td li .link svg {
  stroke: #2ca7df;
  width: 15px;
  margin-left: 10px;
}
.history table td li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2ca7df;
  left: -6px;
  top: 5px;
}

/*===============================
	JOIN US
================================*/
.join-us .imgWrap {
  width: 100%;
  margin-top: 70px;
}
.join-us .imgWrap img {
  width: calc(50% - 3.5px);
  margin-bottom: 6px;
}
.join-us .new-grad_content {
  position: relative;
  margin-top: 50px;
  width: 100%;
}
.join-us .new-grad_content .new-grad_img {
  border-radius: 25px;
  width: 100%;
}
.join-us .new-grad_content .textWrap {
  position: absolute;
  top: 55px;
  right: 100px;
  color: #fff;
  font-feature-settings: 'palt' 1;
  text-align: right;
  width: auto;
}
.join-us .new-grad_content .textWrap .catch_txt {
  font-size: 68px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: bold;
}
.join-us .new-grad_content .textWrap .catch_txt span {
  font-size: 45px;
}
.join-us .new-grad_content .textWrap .txt_head {
  font-size: 69px;
  font-family: 游明朝体;
  font-weight: 600;
  margin-top: 15px;
}
.join-us .new-grad_content .bannerWrap {
  margin-top: 30px;
  width: auto;
  position: absolute;
  bottom: 10%;
  right: 100px;
}
.join-us .new-grad_content .bannerWrap a {
  display: inline-block;
  width: auto;
  height: 100%;
  opacity: 1;
  position: relative;
}
.join-us .new-grad_content .bannerWrap a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.5s;
}
.join-us .new-grad_content .bannerWrap a:hover::after {
  opacity: 0.2;
}
.join-us .job-offer_wrap {
  margin-top: 65px;
  width: 100%;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.join-us .job-offer_wrap li {
  height: auto;
  border: 1px solid #2ca7df;
}
.join-us .job-offer_wrap li a {
  display: flex;
  opacity: 1;
  transition: opacity 0.5s;
}
.join-us .job-offer_wrap li a:hover {
  opacity: 0.6;
}
.join-us .job-offer_wrap li:not(:first-of-type) {
  margin-top: 43px;
}
.join-us .job-offer_wrap li .imgWrap {
  max-width: 348px;
  width: 34.8%;
  position: relative;
  margin-top: 0;
  overflow: hidden;
}
.join-us .job-offer_wrap li .imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.join-us .job-offer_wrap li .imgWrap span {
  background-color: rgba(255, 255, 255, 0.8509803922);
  border: 1px solid #2ca7df;
  position: absolute;
  padding: 5px 20px;
  color: #2ca7df;
  left: 10px;
  top: 20px;
  transform: translateY(-50%);
}
.join-us .job-offer_wrap li .textWrap {
  width: 65.2%;
  height: 100%;
  padding: 10px 25px;
  position: relative;
  padding-right: 6%;
}
.join-us .job-offer_wrap li .textWrap .txt_head {
  font-size: 21px;
}
.join-us .job-offer_wrap li .textWrap .txt_explain {
  font-size: 12px;
  margin-top: 11px;
  line-height: 24px;
}
.join-us .job-offer_wrap li .textWrap .tag-list {
  margin-top: 12px;
  display: inline-block;
}
.join-us .job-offer_wrap li .textWrap .tag-list ul {
  display: flex;
}
.join-us .job-offer_wrap li .textWrap .tag-list li {
  width: 120px;
  height: 30px;
  border: 1px solid #2ca7df;
  line-height: 28px;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  margin-top: 0;
}
.join-us .job-offer_wrap li .textWrap .tag-list li:not(:first-of-type) {
  margin-top: 0;
  margin-left: 12px;
}
.join-us .job-offer_wrap li .textWrap .sub_txt {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 15px;
  display: inline-block;
  margin-left: 18px;
  align-self: center;
  margin-top: 12px;
}
.join-us .job-offer_wrap li .textWrap button {
  max-width: 52px;
  height: 100%;
  width: 7.9%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #0df6ff;
}
.join-us .job-offer_wrap li .textWrap button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 20px;
}

/*---------- child ----------*/
.join-us-single {
  font-family: noto-sans-cjk-jp, sans-serif;
}
.join-us-single .h2_design + .sub_txt {
  margin-top: 20px;
}
.join-us-single img {
  margin-top: 65px;
  width: 100%;
}
.join-us-single .job-info_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}
.join-us-single .job-info_wrap .job-main_wrap {
  max-width: 720px;
  width: 72%;
}
.join-us-single .job-info_wrap .job-main_wrap .tag-list ul {
  display: flex;
}
.join-us-single .job-info_wrap .job-main_wrap .h3_design {
  font-size: 34px;
  line-height: 49px;
  text-align: left;
  margin-top: 65px;
}
.join-us-single .job-info_wrap .job-main_wrap .txt_explain {
  margin-top: 62px;
  font-size: 16px;
  line-height: 29px;
}
.join-us-single .job-info_wrap .job-main_wrap table {
  margin-top: 65px;
  font-family: noto-sans-cjk-jp, sans-serif;
  table-layout: fixed;
  width: 100%;
}
.join-us-single .job-info_wrap .job-main_wrap table tr {
  display: block;
}
.join-us-single .job-info_wrap .job-main_wrap table tr:not(:first-of-type) {
  margin-top: 65px;
}
.join-us-single .job-info_wrap .job-main_wrap table tr th {
  width: 170px;
  color: #1f93c9;
  border-right: 1px solid #1f93c9;
  vertical-align: middle;
  text-align: center;
}
.join-us-single .job-info_wrap .job-main_wrap table tr td {
  padding-left: 45px;
  font-size: 16px;
  line-height: 29px;
}
.join-us-single .job-info_wrap .job-main_wrap table.design02 tr {
  margin-top: 0;
}
.join-us-single .job-info_wrap .job-main_wrap table.design02 tr th,
.join-us-single .job-info_wrap .job-main_wrap table.design02 tr td {
  border: 1px solid #1f93c9;
}
.join-us-single .job-info_wrap .job-main_wrap table.design02 tr td {
  width: 76.3%;
  padding-top: 22px;
  padding-bottom: 28px;
  padding-right: 20px;
}
.join-us-single
  .job-info_wrap
  .job-main_wrap
  table.design02
  tr:not(:first-of-type)
  th,
.join-us-single
  .job-info_wrap
  .job-main_wrap
  table.design02
  tr:not(:first-of-type)
  td {
  border-top: none;
}
.join-us-single .job-info_wrap .job-main_wrap .imgWrap {
  margin-top: 65px;
}
.join-us-single .job-info_wrap .job-main_wrap .imgWrap img {
  width: calc(50% - 3.5px);
  margin-bottom: 6px;
  margin-top: 0;
  vertical-align: middle;
}
.join-us-single .job-info_wrap .job-main_wrap .process_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}
.join-us-single .job-info_wrap .job-main_wrap .process_wrap span {
  width: 230px;
  height: 88px;
  display: inline-block;
  background-color: #dddddd;
  text-align: center;
  line-height: 88px;
}
.join-us-single .job-info_wrap .job-main_wrap .sub_txt {
  margin-top: 20px;
  font-size: 14px;
}
.join-us-single .job-info_wrap .job-main_wrap .moreBtn {
  margin-top: 65px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap {
  max-width: 240px;
  width: 24%;
}
.join-us-single .job-info_wrap .job-sidebar_wrap .moreBtn a::after {
  content: none;
}
.join-us-single .job-info_wrap .job-sidebar_wrap .h4_design {
  font-size: 21px;
  margin-top: 30px;
  line-height: 30px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap .txt_explain {
  font-size: 12px;
  line-height: 17px;
  margin-top: 17px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap iframe {
  width: 245px;
  height: 245px;
  margin-top: 22px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul {
  margin-top: 40px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li {
  width: 100%;
  padding: 7px 7px 60px;
  border: 1px solid #1f93c9;
  position: relative;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li a {
  opacity: 1;
  transition: opacity 0.5s;
  width: 100%;
  height: 100%;
  display: block;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li a:hover {
  opacity: 0.5;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li:not(:first-of-type) {
  margin-top: 32.5px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li img {
  width: 100%;
  margin-top: 0;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li .h5_design {
  font-size: 18px;
  line-height: 18px;
  margin-top: 8px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li .txt_explain {
  font-size: 14px;
  height: 42px;
  overflow: hidden;
  line-height: 21px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list ul {
  display: flex;
  margin-top: 13px;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list ul li {
  width: 110px;
  height: 27px;
  line-height: 27px;
  margin-top: 0;
  padding: 0;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li .map_txt {
  margin-top: 10px;
  display: flex;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li .map_txt p {
  width: 192px;
  font-size: 12px;
  line-height: 17px;
  margin-left: 11px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li button {
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #0df6ff;
}
.join-us-single .job-info_wrap .job-sidebar_wrap ul li button img {
  width: 10px;
  height: 7px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/*===============================
	SDGs
================================*/
.sdgs .section02 {
  margin-top: 66px;
}
.sdgs .section02 .inner {
  display: block;
  padding-top: 56px;
  padding-bottom: 108px;
}
.sdgs .section02 .h3_design {
  font-size: 34px;
  line-height: 49px;
  text-align: left;
}
.sdgs .section02 ol {
  margin-top: 30px;
  padding-left: 1em;
}
.sdgs .section02 ol li {
  font-size: 24px;
  line-height: 35px;
  list-style-type: decimal;
}
.sdgs .section02 .col-2 {
  margin-top: 36px;
  display: flex;
}
.sdgs .section02 .col-2 .imgWrap {
  min-width: 52%;
}
.sdgs .section02 .col-2 .imgWrap img {
  width: 100%;
}
.sdgs .section02 .col-2 p {
  min-width: 41%;
  font-size: 16px;
  line-height: 34px;
  margin-left: 60px;
  align-self: center;
  transform: translateY(10%);
}

.activity-title {
  margin-top: 14px;
  padding-bottom: 60px;
}
.activity-title .heading-sub {
  font-size: 12px;
  text-align: center;
  margin-top: 11px;
}
.activity-title .plain-txt {
  margin: 60px auto 0;
  max-width: 410px;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
}

.sdgs_section {
  height: 700px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.sdgs_section .sdgs_bg {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sdgs_section .inner {
  padding-left: 119px;
  padding-top: 72px;
  position: relative;
  display: block;
  z-index: 1;
}
.sdgs_section .inner .activity-num {
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 16px;
}
.sdgs_section .inner .titleWrap {
  display: flex;
}
.sdgs_section .inner .titleWrap .sdgs_icon {
  width: 181px;
  height: 181px;
}
.sdgs_section .inner .titleWrap .h4_design {
  margin-left: 72px;
  font-size: 34px;
  line-height: 49px;
  font-weight: bold;
}
.sdgs_section .inner .contentWrap {
  display: flex;
  font-weight: bold;
  margin-top: 60px;
}
.sdgs_section .inner .contentWrap .heading {
  font-size: 20px;
  line-height: 46px;
  padding-bottom: 2px;
  position: relative;
}
.sdgs_section .inner .contentWrap .heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleY(1.5);
}
.sdgs_section .inner .contentWrap .cont {
  margin-top: 19px;
  display: flex;
  justify-content: space-between;
}
.sdgs_section .inner .contentWrap ul li {
  font-size: 14px;
  line-height: 29px;
}
.sdgs_section .inner .contentWrap .item {
  margin-left: 71px;
  width: 100%;
}
.sdgs_section .inner .contentWrap .item:first-of-type {
  margin-left: 0;
}

.sdgs .cooperation {
  margin-top: 71px;
}
.sdgs .cooperation .plain-txt {
  max-width: 100%;
}
.sdgs .cooperation .flexbox .item {
  width: 33%;
}
.sdgs .cooperation .flexbox .item:nth-of-type(n + 2) {
  margin-left: 6px;
}
.sdgs .cooperation .flexbox .item .heading {
  margin-top: 15px;
  font-size: 21px;
}
.sdgs .cooperation .flexbox .item .plain-txt {
  margin-top: 19px;
  font-size: 14px;
  line-height: 29px;
}
.sdgs .cooperation .flexbox .item img {
  width: 100%;
}

/*===============================
	JOINUS ENTRY
================================*/
.form-page .txt_explain {
  margin-top: 65px;
  text-align: center;
}
.form-page .txt_explain.txt_left {
  text-align: left;
}
.form-page span.txt_red {
  color: #d60b0b;
  margin-left: 10px;
}
.form-page .form_wrap {
  width: 100%;
  margin-top: 65px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.form-page .form_wrap .moreBtn:hover span {
  color: #000;
}
.form-page table {
  margin-top: 65px;
}
.form-page table tr th,
.form-page table tr td {
  padding: 30px 12px;
  vertical-align: middle;
}
.form-page table tr th {
  width: 23%;
  min-width: 200px;
  border-bottom: 1px solid #2ca7df;
  font-size: 16px;
  line-height: 29px;
}
.form-page table tr th span.sub_txt {
  display: block;
  font-size: 11px;
  color: #2ca7df;
  line-height: 17px;
  margin-top: 10px;
}
.form-page table tr td {
  border-bottom: 1px solid #090b2b;
  padding-left: 40px;
}
.form-page .txt_explain.privacy {
  border: 1px solid #e9e9f2;
  padding: 20px;
  max-width: 640px;
  margin: 50px auto 0;
  font-size: 13px;
  line-height: 26px;
}
.form-page .txt_explain.privacy a {
  color: #2ca7df;
  text-decoration: underline;
}
.form-page .agree_cont {
  text-align: center;
  margin-top: 65px;
}

.form_wrap.irca-form {
  font-family: noto-sans-cjk-jp, sans-serif;
}
.form_wrap.irca-form .styled_h4 {
  margin-top: 65px;
  font-size: 18px;
}
.form_wrap.irca-form .styled_h4::before {
  content: '■';
}
.form_wrap.irca-form .styled_h3 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  display: block;
}
.form_wrap.irca-form p.example_contact {
  font-size: 75%;
  line-height: 1.75;
  margin-top: 10px;
}
.form_wrap.irca-form table {
  margin-top: 20px;
}
.form_wrap.irca-form .sub_txt {
  margin-top: 20px;
}
.form_wrap.irca-form .term-txt {
  margin-top: 20px;
  overflow-y: scroll;
  height: 350px;
  padding: 10px 15px;
  font-size: 13px;
  border: 3px solid #ddd;
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.form_wrap.irca-form .term-txt p {
  margin-bottom: 12px !important;
  line-height: 1.5rem;
}
.form_wrap.irca-form .term-txt li {
  line-height: 1.5rem;
}

.d-none {
  display: none;
}

.d-tablerow {
  display: table-row;
}

.form-progress ul {
  text-align: center;
}
.form-progress ul li {
  display: inline-block;
  width: 116px;
  height: 46px;
  line-height: 46px;
  position: relative;
  background-color: #090b2b;
  margin-right: 18px;
  clip-path: polygon(0% 0%, 84% 0%, 100% 50%, 84% 100%, 0% 100%);
  color: #090b2b;
}
.form-progress ul li::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #fff;
  clip-path: polygon(
    1px 1px,
    calc(84% - 0.5px) 1px,
    calc(100% - 1px) 50%,
    calc(84% - 0.5px) calc(100% - 1px),
    1px calc(100% - 1px)
  );
  z-index: -1;
}

.mw_wp_form.mw_wp_form_input .form-progress .step-input {
  color: #fff;
}
.mw_wp_form.mw_wp_form_input .form-progress .step-input::before {
  content: none;
}

.mw_wp_form.mw_wp_form_confirm .form-progress .step-confirm {
  color: #fff;
}
.mw_wp_form.mw_wp_form_confirm .form-progress .step-confirm::before {
  content: none;
}

.mw_wp_form input[type='radio'],
.mw_wp_form input[type='checkbox'] {
  display: none;
}

.mw_wp_form input[type='radio'] + span,
.mw_wp_form input[type='checkbox'] + span {
  position: relative;
  padding-left: 35px;
  display: inline-block;
  margin: 4px 0;
  margin-top: 10px;
}

.mw_wp_form input[type='checkbox'] + span::before {
  content: '';
  display: inline-block;
  background: #e9e9f2;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  position: absolute;
  left: 5px;
  top: 50%;
  margin: -11px 0 0;
  -webkit-transition: background-color 0.2s 0s ease;
  transition: background-color 0.2s 0s ease;
}

input[type='radio'] + span:before {
  content: '';
  display: inline-block;
  background: #e9e9f2;
  width: 22px;
  height: 22px;
  border-radius: 22px;
  vertical-align: middle;
  position: absolute;
  left: 5px;
  top: 50%;
  margin: -11px 0 0;
  -webkit-transition: background-color 0.2s 0s ease;
  transition: background-color 0.2s 0s ease;
}

.mw_wp_form .horizontal-item {
  margin-right: 10px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px;
}

.mw_wp_form input[type='checkbox']:checked + span:after {
  content: '';
  background: url(../img/icon_check.svg) no-repeat 50% 50%;
  background-size: 18px auto;
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 5px;
  margin: -11px 0 0;
}

.mw_wp_form input[type='radio'] + span:before {
  content: '';
  display: inline-block;
  background: #e9e9f2;
  width: 22px;
  height: 22px;
  border-radius: 22px;
  vertical-align: middle;
  position: absolute;
  left: 5px;
  top: 50%;
  margin: -11px 0 0;
  -webkit-transition: background-color 0.2s 0s ease;
  transition: background-color 0.2s 0s ease;
}

.mw_wp_form input[type='radio']:checked + span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin: -6px 0 0;
  width: 12px;
  height: 12px;
  background: #090b2b;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

input[type='text'],
input[type='password'],
input[type='tel'],
input[type='email'],
input[type='url'],
textarea {
  background: #e9e9f2;
  color: #777;
  display: block;
  max-width: 100%;
  outline: 0;
  padding: 10px;
  width: 100%;
  float: none;
}

select {
  background: #e9e9f2;
  font-size: 14px;
  height: 40px;
  border: none;
  position: relative;
  min-width: 65px;
  padding: 5px;
  display: inline-block;
}

.ui-datepicker-title select {
  padding: 0;
}

.mw_wp_form input[type='file'] {
  margin-top: 10px;
}

.mw_wp_form_input button[type='submit'],
.mw_wp_form_confirm button[type='submit'] {
  margin-top: 65px;
}
.mw_wp_form_input button[type='submit'] a,
.mw_wp_form_confirm button[type='submit'] a {
  color: #fff;
}

.mw_wp_form_confirm .flexbox {
  margin-top: 65px;
  justify-content: center;
  flex-direction: row-reverse;
}
.mw_wp_form_confirm .flexbox button[type='submit'] {
  margin: 0;
  margin-left: 20px;
}

/*===============================
	CONTACT
================================*/
.contact .txt_explain {
  margin-top: 65px;
  text-align: center;
  font-size: 16px;
}
.contact .form_wrap {
  width: 100%;
  margin-top: 65px;
}
.contact .contact-info {
  margin-top: 40px;
  text-align: center;
}
.contact .contact-info p {
  margin-top: 6px;
}
.contact .contact-info .tel {
  font-size: 26px;
  line-height: 1.3;
}

/*===============================
	terms
================================*/
.terms {
  line-height: 2.4;
  font-size: 14px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.terms .h2_design {
  margin-top: 40px;
}
.terms .h3_design {
  font-size: 24px;
  margin-top: 40px;
  line-height: initial;
}
.terms table + .h3_design {
  margin-top: 60px;
}
.terms p {
  margin-top: 40px;
  width: 100%;
}
.terms table + p {
  margin-top: 0;
}
.terms .well {
  margin-top: 40px;
  padding: 1.1em 2em;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fafafa;
}
.terms .well2 {
  margin-top: 40px;
  padding: 1.1em 2em;
  border: 1px solid #ddd;
}
.terms ol {
  width: 100%;
  list-style: decimal outside none;
  margin-left: 1.5em;
  margin-top: 40px;
}
.terms ol li ol li {
  list-style-type: none;
  counter-increment: cnt;
}
.terms ol li ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.terms ol li ol li::before {
  display: marker;
  content: '( ' counter(cnt) ' ) ';
}
.terms ul {
  list-style: '・' outside none;
  margin-left: 1em;
}
.terms table {
  margin-top: 40px;
  width: 100% !important;
}
.terms table.simple01 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.terms table.simple01 th,
.terms table.simple01 td {
  padding: 8px 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.terms table.simple01 th p,
.terms table.simple01 td p {
  margin-top: 0;
}
.terms table.simple01 th {
  background-color: #f2f2f2;
  text-align: center;
  width: 25%;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  /*---------- 共通 ----------*/
  .h2_design {
    font-size: 24px;
  }
  .txt_explain_eng {
    font-size: 16px;
    line-height: 1.35em;
  }
  .txt_explain {
    line-height: 1.5em;
  }
  .menu_container .menu_list .sub_menu li a {
    padding-right: 20%;
  }
  .menu_container .menu_list .sub_menu li a .circle-bg {
    width: 40px;
    height: 40px;
    left: 10px;
  }
  /*---------- TOP ----------*/
  .mainVisual .mvlogoWrap .mainVisual_logo {
    transform: scale(0.5);
  }
  .mainVisual .mvlogoWrap span {
    font-size: 24px;
    margin-top: -10px;
  }
  .top_menuWrap ul {
    font-size: 24px;
  }
  .devide-right_design .top_section_txt {
    width: 43vw;
    padding-right: 20px;
    height: auto;
  }
  .top_joinus .inner {
    width: calc(100% - 40px);
    height: 100%;
  }
  .top_business .inner {
    padding: 60px 20px 60px;
  }
  .top_business .inner .h3_design {
    font-size: 56px;
    line-height: 1.5em;
  }
  .top_business .inner .block_wrap div {
    width: 30%;
  }
  .top_business .inner .block_wrap div img {
    width: 100%;
  }
  .top_business .inner .txt_explain_large {
    font-size: 14px;
  }
  .slideCont {
    width: 50%;
  }
  .textWrap {
    width: 50%;
  }
  .service_panel {
    width: 100%;
    height: auto;
  }
  .service_panel img {
    width: 100%;
    height: auto;
  }
  .service_panel .panel_txt {
    font-size: 2vw;
    line-height: 1.5em;
  }
  .service_panel .panel_txt.left {
    left: 20px;
  }
  .service_panel .panel_txt.right {
    right: 20px;
    line-height: 1.5em;
  }
  .sliderWrap .label_txt {
    font-size: 16px;
  }
  .news_listWrap .single-list {
    font-size: 14px;
  }
  .news_listWrap .single-list .news_category {
    width: 120px;
  }
  .news_listWrap .single-list p {
    width: 50vw;
  }
  /*---------- BRAND PURPOSE ----------*/
  .brand-purpose .purpose-txt p {
    font-size: 1.7vw;
  }
  .brand-purpose .purpose-txt p:not(:last-of-type) {
    margin-right: 30px;
  }
  /*---------- BUSINESS ----------*/
  .business .inner p.catch-txt {
    font-size: 2.5vw;
  }
  .business_typeWrap {
    padding: 30px;
  }
  .business_typeWrap .type-head .service-text {
    font-size: 3.5vw;
  }
  .business_typeWrap .type_descWrap .business_block_container {
    margin-top: 35px;
  }
  .business_typeWrap .type_descWrap .business_block_container .block_content p {
    font-size: 3.5vw;
  }
  .business_typeWrap
    .type_descWrap
    .business_block_container
    .block_content
    img {
    width: 12vw;
  }
  .business_typeWrap
    .type_descWrap
    .business_block_container
    .relation-line
    span {
    height: 60px;
  }
  .business_typeWrap .type_descWrap.content_frame {
    padding: 30px;
  }
  /*---------- JOIN US ----------*/
  .join-us .new-grad_content .textWrap {
    top: 10%;
    right: 10%;
  }
  .join-us .new-grad_content .textWrap .catch_txt {
    font-size: 6.6vw;
  }
  .join-us .new-grad_content .textWrap .txt_head {
    font-size: 6.8vw;
  }
  .join-us .new-grad_content .bannerWrap {
    margin-top: 5%;
    bottom: 10%;
    right: 10%;
  }
  .join-us .new-grad_content .bannerWrap img {
    width: 28vw;
  }
  .join-us .job-offer_wrap li .textWrap .tag-list ul {
    display: block;
  }
  .join-us .job-offer_wrap li .textWrap .tag-list ul li:not(:first-of-type) {
    margin-left: 0;
    margin-top: 6px;
  }
  .join-us .job-offer_wrap li .textWrap .sub_txt {
    width: 100%;
  }
  .join-us-single .job-info_wrap .job-main_wrap .h3_design {
    font-size: 24px;
  }
  .join-us-single .job-info_wrap .job-main_wrap .txt_explain {
    font-size: 14px;
    line-height: 23px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table tr th {
    max-width: 170px;
    min-width: 23.6%;
  }
  .join-us-single .job-info_wrap .job-main_wrap table tr td {
    width: 76.3%;
    padding-left: 5vw;
  }
  .join-us-single .job-info_wrap .job-main_wrap .process_wrap span {
    font-size: 1.7vw;
    width: 33%;
    max-width: 230px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap .moreBtn.green {
    width: 100%;
    font-size: 12px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap .moreBtn.green::after {
    right: 13px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap iframe {
    width: 100%;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .h5_design {
    font-size: 1.9vw;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .txt_explain {
    font-size: 1.3vw;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list ul {
    display: block;
    margin-top: 0;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list ul li {
    margin: 0;
  }
  .join-us-single
    .job-info_wrap
    .job-sidebar_wrap
    ul
    li
    .tag-list
    ul
    li:not(:first-of-type) {
    margin-top: 10px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .map_txt {
    width: 100%;
  }
  .sdgs_section .inner .titleWrap .h4_design {
    font-size: 2.5vw;
    line-height: 2em;
  }
}
@media screen and (max-width: 599px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .container {
    height: auto;
    scroll-snap-type: none;
    overflow: hidden;
  }
  .mainVisual {
    height: 100vh;
    scroll-snap-align: none;
  }
  .toggle_btn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .toggle_btn::before,
  .toggle_btn::after {
    content: '';
    width: 18px;
    height: 2px;
    background-color: #014581;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .toggle_btn::before {
    transform: translate(-50%, -50%);
  }
  .toggle_btn::after {
    content: '';
    width: 2px;
    height: 18px;
    background-color: #014581;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.5s;
  }
  .open .toggle_btn::after {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .header .header_container {
    height: auto;
    padding: 15px 20px;
    background-color: #eaeaea;
    display: block;
    overflow-y: scroll;
  }
  .header .header_container .menu_wrap {
    margin-right: auto;
    position: static;
    transform: none;
    height: auto;
    padding: 0;
    margin-top: 9px;
  }
  .header .header_container .menu_wrap .menu_container {
    display: block;
    margin-top: 8px;
    width: 100%;
    margin: 0;
  }
  .header .header_container .menu_wrap .menu_container .menu_list {
    width: 100%;
    padding-top: 0;
    min-height: 50px;
    max-width: 100%;
    border: 1px solid #1f93c9;
    margin-left: 0;
    background-color: #eaeaea;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.menu_list_highlight {
    display: block;
    border: none;
    margin-top: 17px;
    text-align: center;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.menu_list_highlight
    a {
    padding-left: 0;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.menu_list_highlight::after {
    content: none;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list:not(:first-of-type) {
    border-top: none;
  }
  .header .header_container .menu_wrap .menu_container .menu_list::after {
    content: url(../img/button_arrow_icon_white.svg);
    right: 20px;
    left: auto;
    background-color: #1f93c9;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent {
    position: relative;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent::after {
    content: none;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent
    .sub_menu {
    opacity: 0;
    visibility: hidden;
    position: static;
    transform: none;
    width: 100%;
    height: 0;
    transition: height 0.5s, opacity 0.5s, visibility 0.5s;
    display: block;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent
    .sub_menu
    li {
    height: 0px;
    width: 85%;
    margin: 6px auto;
    transition: height 0.5s;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent
    .sub_menu
    li
    div {
    display: none;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent
    .sub_menu
    li
    img {
    display: none;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent
    .sub_menu
    li
    a {
    text-align: center;
    line-height: 40px;
    padding: 0;
    font-size: 14px;
    min-height: 100%;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent.open
    .sub_menu {
    display: block;
    height: 102px;
    opacity: 1;
    visibility: visible;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent.open
    .sub_menu.company-menu {
    height: 148px;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent.open
    .sub_menu
    li {
    height: 40px;
  }
  .header
    .header_container
    .menu_wrap
    .menu_container
    .menu_list.submenu_parent
    #blankWrap {
    display: block;
    height: 0;
    transition: height 0.5s;
  }
  .header .header_container .menu_wrap .menu_container .menu_list a {
    padding: 6px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: none;
    display: block;
  }
  .header .header_container .menu_wrap .menu_container .menu_list a::before {
    content: none;
  }
  .header .header_container .menu_wrap .menu_container .menu_list a p {
    font-size: 18px;
  }
  .header .header_container .submenu__wrap {
    width: calc(100% - 40px);
    position: absolute;
  }
  .header .header_container .submenu__wrap .sub_menu {
    opacity: 0;
    visibility: hidden;
    transform: none;
    width: 100%;
    height: 0;
    transition: height 0.5s, opacity 0.5s, visibility 0.5s;
    display: block;
    left: 0;
    z-index: 1;
  }
  .header .header_container .submenu__wrap .sub_menu li {
    height: 0px;
    width: 85%;
    margin: 6px auto;
    transition: height 0.5s;
  }
  .header .header_container .submenu__wrap .sub_menu li div {
    display: none;
  }
  .header .header_container .submenu__wrap .sub_menu li img {
    display: none;
  }
  .header .header_container .submenu__wrap .sub_menu li a {
    text-align: center;
    line-height: 40px;
    padding: 0;
    font-size: 14px;
    min-height: 100%;
  }
  .header .header_container .submenu__wrap.active .sub_menu {
    display: block;
    height: 102px;
    opacity: 1;
    visibility: visible;
  }
  .header .header_container .submenu__wrap.active .sub_menu li {
    height: 40px;
  }
  .header .header_container .logo_supportas {
    position: static;
    width: 90px;
    height: auto;
  }
  .header .header_container .logo_supportas img {
    padding-left: 0;
    width: 100%;
    height: auto;
  }
  .header .header_container .menu_sns {
    height: auto;
    display: block;
    margin-top: 18px;
    position: static;
    text-align: center;
  }
  .header .header_container .menu_sns ul {
    text-align: center;
    justify-content: center;
  }
  .header .header_container .menu_sns ul .menu_sns_link a {
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.5s 0.2s, opacity 0.3s;
  }
  .header .header_container .menu_sns ul .lang-button {
    position: absolute;
    top: 9px;
    right: 20px;
  }
  .header .header_pullTag {
    background-color: #eaeaea;
  }
  .header.active .menu_sns ul .menu_sns_link a {
    pointer-events: initial;
    visibility: initial;
  }
  .en .header .menu_wrap.inner .menu_container .menu_list {
    width: 100%;
    max-width: 100%;
  }
  .en .header .menu_wrap.inner .menu_container .menu_list:not(:first-of-type) {
    margin-left: 0;
  }
  .page_frame {
    display: none;
  }
  .submenu__wrap {
    height: 0;
  }
  .mainVisual .mvlogoWrap {
    font-size: 16px;
  }
  .mainVisual .mvlogoWrap .mainVisual_logo {
    transform: scale(0.35);
  }
  .mainVisual .mvlogoWrap span {
    margin-top: -30px;
  }
  section {
    padding-top: 60px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 50px;
  }
  #topMenuList {
    opacity: 1;
    width: 200px;
    margin-right: 0;
    margin-left: auto;
  }
  .top_menuWrap {
    height: auto;
  }
  .devide-left_design {
    display: none;
  }
  .devide-right_design {
    width: 100vw;
  }
  .top_menuWrap ul {
    width: auto;
    position: static;
  }
  .top_menuWrap ul li a {
    display: inline-block;
    width: auto;
  }
  .gradient-bg {
    display: none;
  }
  .top_purpose {
    background-color: transparent;
    padding-right: 0;
  }
  .top_purpose .devide-right_design .top_section_txt {
    background-color: #ffffffd9;
    width: 80vw;
    padding-top: 35px;
    padding-left: 20px;
    top: 40%;
    height: 413px;
    min-width: 306px;
  }
  .top_purpose .devide-right_design .top_section_txt .moreBtn {
    margin-top: 71px;
  }
  .top_joinus {
    padding-bottom: 20px;
  }
  .top_joinus .inner {
    width: calc(100vw - 40px);
    height: 100%;
    position: static;
    padding: 0 25px;
  }
  .top_joinus .inner .txt_explain {
    text-align: left;
  }
  .top_joinus .inner .bannerWrap {
    display: block;
  }
  .top_joinus .inner .bannerWrap a {
    margin: 0 auto;
  }
  .top_joinus .inner .bannerWrap a:not(:first-of-type) {
    margin-top: 12px;
    margin-left: auto;
  }
  .top_business {
    background-color: #ffffff;
  }
  .top_business .inner {
    width: 100%;
    padding: 0;
  }
  .top_business .inner .h3_design {
    font-size: 68px;
  }
  .top_business .inner .block_wrap div {
    width: 27%;
  }
  .top_business .inner .block_wrap div img {
    width: 100%;
  }
  .top_business .inner .txt_explain_large {
    font-size: 16px;
  }
  .top_service {
    height: auto;
  }
  .sliderWrap {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .sliderWrap .label_txt {
    font-size: 20px;
    padding-bottom: 25px;
  }
  .sliderWrap .label_txt span {
    font-size: 14px;
    margin-top: 15px;
    line-height: 24px;
  }
  .sliderWrap .label_txt::after {
    top: auto;
    bottom: 0;
    right: 0;
    transform: translate(-100%, 0);
  }
  .sliderWrap .slideCont {
    width: 100%;
    background-color: rgba(242, 242, 242, 0.78);
    padding: 15px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  }
  .sliderWrap .slideCont .service_panel {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
    overflow: hidden;
  }
  .sliderWrap .slideCont .service_panel .panel_txt {
    font-size: 11px;
    line-height: 1.5em;
  }
  .sliderWrap .slideCont .service_panel .panel_txt.left {
    left: 20px;
  }
  .sliderWrap .slideCont .service_panel .panel_txt.right {
    right: 20px;
    line-height: 1.5em;
  }
  .sliderWrap .slideCont .service_panel.bpo span {
    color: #ffffff;
  }
  .sliderWrap .slideCont .service_panel span {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #12487c;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-size: 14px;
  }
  .sliderWrap .slideCont:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .top_news {
    height: auto;
  }
  .top_news .menu_container {
    width: 480px;
    padding: 0 20px;
  }
  .top_news .menu_container .menu_list {
    width: 90px;
    padding: 0;
  }
  .top_news .menu_container .menu_list:not(:first-of-type) {
    margin-left: 6px;
  }
  .top_news {
    padding: 45px 0;
  }
  .top_news .news-tabWrap {
    width: 100vw;
    position: relative;
  }
  .top_news .news-tabWrap .arrow_btn {
    width: 100vw;
    max-width: 424px;
    height: 60px;
    display: block;
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .top_news .news-tabWrap .arrow_btn::before,
  .top_news .news-tabWrap .arrow_btn::after {
    content: url(../img/button_arrow_icon.svg);
    width: 18px;
    height: 18px;
    background-color: #0df6ff;
    border-radius: 50%;
    line-height: 0;
    display: inline-block;
    text-align: center;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
    font-size: 29px;
    font-family: noto-sans-cjk-jp, sans-serif;
  }
  .top_news .news-tabWrap .arrow_btn::before {
    transform: translateY(-50%) rotate(180deg);
  }
  .top_news .news-tabWrap .arrow_btn::after {
    right: 0;
  }
  .top_news .news-tabWrap > div {
    overflow-x: scroll;
  }
  .news_listWrap {
    height: auto;
  }
  .news_listWrap .single-list {
    flex-wrap: wrap;
  }
  .news_listWrap .single-list .news_category {
    width: 120px;
    margin-right: 0;
    font-size: 20px;
  }
  .news_listWrap .single-list .newsDate {
    margin-left: 12px;
    font-size: 13px;
  }
  .news_listWrap .single-list p {
    font-size: 14px;
    margin-top: 8px;
  }
  .news_listWrap .single-list::before {
    background-color: #d3cfcf;
  }
  .menu_container .menu_list .news_tab p {
    font-size: 15px;
  }
  .menu_container .menu_list .news_tab span {
    font-size: 10px;
  }
  .top_sdgs .inner {
    flex-direction: column;
    justify-content: center;
  }
  .top_sdgs .inner > img {
    max-width: 360px;
    width: 100%;
  }
  .top_sdgs .inner .textWrap {
    margin-top: 10px;
    margin-left: 0;
    padding-right: 0px;
  }
  .top_sdgs .inner .textWrap .moreBtn {
    margin: 20px auto 0;
  }
  .footer_container {
    padding: 0;
  }
  .footer {
    min-height: 320px;
    height: auto;
    padding: 33px 20px 0;
    position: relative;
    display: block;
    width: 100%;
  }
  .footer .logo_supportas {
    display: none;
  }
  .footer .menu_wrap {
    margin: 0;
    padding: 0;
    display: block;
  }
  .footer .menu_wrap .menu_container .menu_global {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .footer .menu_wrap .menu_container .menu_global li {
    margin-right: 0;
    font-size: 18px;
    text-align: center;
  }
  .footer .menu_wrap .menu_container .menu_global li:first-of-type {
    order: 2;
    margin-top: 12px;
  }
  .footer .menu_wrap .menu_container .menu_global li.sp-highlight {
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    line-height: 50px;
    margin-top: 25px;
  }
  .footer .menu_wrap .menu_container .menu_global li.sp-highlight a {
    width: 100%;
    height: 100%;
    display: block;
  }
  .footer .menu_wrap .menu_container .menu_global li.sp-highlight:last-of-type {
    margin-top: 6px;
  }
  .footer .menu_wrap .menu_container .menu_sub {
    display: flex;
    flex-wrap: wrap;
    font-size: 9px;
    justify-content: center;
    line-height: 14px;
    width: 100%;
  }
  .footer .menu_wrap .smallWrap {
    margin-top: 6px;
    display: block;
    width: 100vw;
    height: 55px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 9px;
    color: #090b2b;
    text-align: center;
    line-height: 55px;
  }
  .pagetop {
    width: 55px;
    height: 55px;
    bottom: 0;
    right: 0;
  }
  .pagetop a img {
    width: 6px;
    height: 9px;
  }
  .main-title_content {
    height: 126px;
  }
  .main-title_content .main-title {
    font-size: 32px;
    width: calc(100% - 40px);
  }
  .brand-purpose {
    padding-top: 0;
  }
  .brand-purpose .video__wrap {
    max-width: 100vw;
    width: 100vw;
    margin-top: 5px;
    border-radius: 0;
  }
  .brand-purpose .video__wrap video {
    border-radius: 0;
  }
  .brand-purpose .page_mainImg {
    width: 100vw;
    border-radius: 0;
  }
  .brand-purpose .purpose-txt {
    display: block;
    margin-top: 40px;
    font-size: 15.5px;
  }
  .brand-purpose .purpose-txt p:not(:last-of-type) {
    margin-right: 0;
  }
  .brand-purpose .purpose-txt p:not(:first-of-type) {
    margin-top: 40px;
  }
  .brand-purpose .flexbox {
    flex-direction: column;
  }
  .brand-purpose .moreBtn {
    margin: 40px auto 0;
  }
  .bottom_content .bannerWrap {
    height: 550px;
  }
  .bottom_content .bannerWrap .banner_container {
    flex-direction: column;
  }
  .bottom_content .bannerWrap .banner_container .banner {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
  .bottom_content .bannerWrap .banner_container .banner:not(:first-of-type) {
    margin-top: 14px;
  }
  .bottom_content .bannerWrap .banner_container .banner:not(:first-of-type) {
    margin-left: 0;
  }
  .service_content {
    flex-direction: column;
  }
  .service_content .slideCont {
    width: 100%;
  }
  .service_content .slideCont:not(:last-of-type) {
    margin-right: 0;
  }
  .service_content .slideCont:not(:last-of-type) .service_panel {
    width: 100%;
    height: calc((100vw - 76px) * 0.68);
    max-width: 450px;
    max-height: 306px;
    margin: 0 auto;
  }
  .service_content .slideCont:not(:last-of-type) .service_panel .panel_txt {
    font-size: 3.5vw;
    line-height: 1.5em;
  }
  .service_content
    .slideCont:not(:last-of-type)
    .service_panel
    .panel_txt.left {
    left: 22px;
  }
  .service_content
    .slideCont:not(:last-of-type)
    .service_panel
    .panel_txt.right {
    right: 20px;
  }
  .service_content .slideCont:not(:last-of-type) .service_panel .label_txt {
    font-size: 4.25vw;
    bottom: 18px;
    left: 22px;
  }
  .service_content .textWrap .txt_explain {
    line-height: 24px;
  }
  .service_content .textWrap .moreBtn {
    margin: 20px auto 0;
  }
  .service_content.arrow_btn::after {
    right: 9px;
    bottom: 8px;
  }
  .main-title_full .main-title {
    width: 100%;
    position: static;
    transform: none;
    height: 100%;
    padding: 0 20px;
    padding-bottom: 41px;
  }
  .main-title_full .main-title .titleWrap {
    height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .main-title_full .main-title .h2_subtxt {
    order: -1;
  }
  .sdgs-banner {
    max-width: 336px;
    height: 273px;
    margin-top: 30px;
    padding-top: 25px;
    padding-right: 0;
  }
  .sdgs-banner a {
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  .sdgs-banner .image-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    border-radius: 0 0 10px 10px;
    height: 132px;
  }
  .sdgs-banner .text-wrap {
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }
  .sdgs-banner .text-wrap img {
    width: 215px;
  }
  .sdgs-banner .logo-wrap {
    width: 255px;
    margin-left: 0;
  }
  .sub_menu-list {
    width: 100%;
  }
  .sub_menu-list ul {
    display: block;
    margin-top: 45px;
  }
  .sub_menu-list ul li {
    width: 100%;
    max-width: 336px;
    height: 90px;
    line-height: 90px;
    margin-left: auto;
    margin-right: auto;
  }
  .sub_menu-list ul li:not(:first-of-type) {
    margin-top: 15px;
  }
  .sub_menu-list ul li:not(:last-of-type) {
    margin-right: auto;
  }
  main {
    padding-top: 40px;
  }
  .inner .h2_design {
    font-size: 23px;
  }
  .inner .main-image {
    margin-top: 40px;
    border-radius: 5px;
  }
  .inner p.txt_explain {
    margin-top: 40px;
    text-align: left;
  }
  .inner table {
    margin-top: 40px;
  }
  .inner table th,
  .inner table td {
    font-size: 14px;
    padding: 10px;
    word-wrap: break-word;
  }
  .inner table th a,
  .inner table td a {
    word-break: break-all;
  }
  .inner table th {
    width: 28%;
  }
  .office-lists {
    margin-top: 40px;
    font-size: 14px;
  }
  .office-lists ul li {
    line-height: 20px;
    height: auto;
    min-height: 60px;
    padding-left: 15px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .office-lists ul li::after {
    right: 6px;
  }
  .office_container {
    margin-top: 40px;
  }
  .office_container .mapWrap {
    margin-top: 40px;
    flex-direction: column-reverse;
    height: auto;
  }
  .office_container .mapWrap .textWrap {
    width: 100%;
    height: 330px;
  }
  .office_container .mapWrap .textWrap p {
    font-size: 12px;
  }
  .office_container .mapWrap .textWrap .descWrap {
    padding-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .office_container .mapWrap .textWrap .descWrap .tag-list ul li {
    margin-right: 6px;
  }
  .office_container .mapWrap iframe {
    width: 100%;
    height: 280px;
  }
  .company .darkWrap {
    margin-top: 40px;
    padding: 40px 20px;
  }
  .company .darkWrap .h3_design {
    font-size: 16px;
    line-height: 21px;
  }
  .company .darkWrap .catch_txt {
    font-size: 24px;
    line-height: 29px;
    margin-top: 10px;
  }
  .company .darkWrap .txt_explain {
    margin-top: 40px;
    font-size: 16px;
    line-height: 24px;
  }
  .history table th {
    font-size: 24px;
    width: 60px;
    padding-top: 20px;
  }
  .history table td {
    padding: 10px 0;
  }
  .history table td li {
    margin: 10px 0;
    text-indent: 0;
    padding-left: 20px;
  }
  .history table td li span {
    display: block;
    width: 100%;
    position: static;
    padding: 0;
  }
  .business .inner p.catch-txt {
    font-size: 20px;
    line-height: 29px;
  }
  .business .txt_explain {
    font-size: 16px;
    line-height: 24px;
    margin-top: 40px;
  }
  .service_catchWrap {
    margin-top: 40px;
    border-radius: 0;
    padding: 15px 30px;
  }
  .service_catchWrap .h3_design {
    font-size: 42px;
    line-height: 50px;
  }
  .service_catchWrap .block_wrap {
    max-width: 266px;
    margin-top: 5px;
  }
  .service_catchWrap .block_wrap div {
    width: 27%;
    position: relative;
  }
  .service_catchWrap .block_wrap div img {
    width: 100%;
  }
  .service_catchWrap .block_wrap div p {
    margin-top: 12px;
    font-size: 9px;
    line-height: 11px;
    position: absolute;
    width: 130%;
    left: 50%;
    transform: translateX(-50%);
  }
  .service_catchWrap .txt_explain_large {
    font-size: 12.6px;
    margin-top: 57px;
  }
  .business_typeWrap {
    margin-top: 40px;
    padding: 40px 15px;
    display: block;
  }
  .business_typeWrap .type-head {
    width: 100%;
  }
  .business_typeWrap .type-head img {
    width: 45%;
    max-width: 120px;
    margin: 0 auto;
    display: block;
  }
  .business_typeWrap .type-head .service-text {
    text-align: center;
    margin-top: 30px;
  }
  .business_typeWrap .type_descWrap {
    width: 100%;
    margin-top: 30px;
  }
  .business_typeWrap .type_descWrap.content_frame {
    padding: 20px 15px;
  }
  .business_typeWrap .type_descWrap.content_frame .business_block_container {
    margin-top: 20px;
  }
  .business_typeWrap
    .type_descWrap.content_frame
    .business_block_container
    .block_content {
    width: 100%;
  }
  .business_typeWrap
    .type_descWrap.content_frame
    .business_block_container
    .block_content
    img {
    width: 21%;
  }
  .business_typeWrap
    .type_descWrap.content_frame
    .business_block_container
    .block_content
    p {
    font-size: 16px;
  }
  .business_typeWrap
    .type_descWrap.content_frame
    .business_block_container
    .flexWrap
    .block_content {
    margin: 0;
  }
  .business_typeWrap
    .type_descWrap.content_frame
    .business_block_container
    .flexWrap
    .block_content
    img {
    width: 42%;
  }
  .business_typeWrap .service-list {
    padding: 20px;
  }
  .business_typeWrap .service-list .block-parts {
    width: 70px;
    height: 70px;
  }
  .business_typeWrap .service-list .block-parts img {
    width: 47px;
    top: 55%;
  }
  .business_typeWrap .service-list .block-parts .service_block-txt {
    font-size: 14px;
    top: 52%;
  }
  .business_typeWrap .service-list .block-parts .service_block-icon {
    transform: rotate3d(-0.5, 1, 0.2, -50deg) scale(0.6);
    top: 45%;
    left: 49%;
  }
  .business_typeWrap .service-list .textWrap {
    margin-left: 20px;
    max-width: 64%;
  }
  .business_typeWrap .service-list .textWrap p {
    height: auto;
    align-items: center;
  }
  .news-listWrap {
    display: block;
  }
  .news-listWrap .singleWrap {
    width: 100%;
  }
  .news-listWrap .singleWrap .single-list {
    display: block;
    padding-top: 20px;
    padding-bottom: 11px;
    height: 118px;
  }
  .news-listWrap .singleWrap .single-list .meta_wrap {
    width: 100%;
  }
  .news-listWrap .singleWrap .single-list .meta_wrap .news_category {
    margin-top: 0;
    display: block;
    height: 25px;
    line-height: 23px;
    margin-left: 20px;
  }
  .news-listWrap .singleWrap .single-list a {
    height: 100%;
    display: block;
  }
  .news-listWrap .singleWrap .single-list .newsDate {
    font-size: 13px;
    line-height: 18px;
    width: auto;
    display: block;
  }
  .news-listWrap .singleWrap .single-list p {
    margin-top: 11px;
    margin-left: 0;
    line-height: 20px;
    height: 60px;
    display: flex;
    align-items: center;
  }
  .news-listWrap .singleWrap .single-list:first-of-type {
    border-top: none;
  }
  .news-listWrap .singleWrap .single-list:not(:first-of-type) {
    padding-top: 15px;
  }
  .news-listWrap .singleWrap .article-per-page {
    margin-top: 28px;
  }
  .news-listWrap .sidebarWrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .news-listWrap .sidebarWrap .label_txt {
    text-align: left;
  }
  .news-listWrap .sidebarWrap .label_txt:not(:first-of-type) {
    margin-top: 18px;
  }
  .news-listWrap .sidebarWrap .archive_list {
    text-align: left;
    padding-left: 0;
  }
  .meta-info {
    margin-top: 35px;
  }
  .meta-info .newsDate {
    font-size: 13px;
  }
  article p {
    margin-top: 40px;
  }
  article img {
    margin-top: 40px;
  }
  .pagenation {
    width: 100%;
  }
  .pagenation .prev-next-link {
    padding: 40px 0 40px;
    width: 100%;
    height: auto;
    min-height: 100%;
    min-width: 100%;
  }
  .pagenation .prev-next-link a {
    width: 100%;
    max-width: 235px;
  }
  .pagenation .prev-next-link a p {
    width: 100%;
  }
  .pagenation .prev-next-link a.prev-link::after {
    left: 5%;
  }
  .pagenation .prev-next-link a.next-link::after {
    right: 5%;
  }
  .single-news .pagenation section {
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .join-us .imgWrap {
    margin-top: 40px;
  }
  .join-us .new-grad_content {
    margin-top: 20px;
  }
  .join-us .new-grad_content .new-grad_img {
    border-radius: 0;
  }
  .join-us .new-grad_content .textWrap {
    top: 7vw;
    right: 5%;
  }
  .join-us .new-grad_content .textWrap .catch_txt {
    font-size: 8.5vw;
  }
  .join-us .new-grad_content .textWrap .catch_txt span {
    font-size: 5.5vw;
  }
  .join-us .new-grad_content .textWrap .txt_head {
    font-size: 9vw;
    margin-top: 5px;
  }
  .join-us .new-grad_content .bannerWrap {
    position: static;
    display: block;
    margin-top: 0;
    background-color: #3277c5;
    padding: 10px 15px;
  }
  .join-us .new-grad_content .bannerWrap a {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s;
  }
  .join-us .new-grad_content .bannerWrap a:hover {
    opacity: 0.7;
  }
  .join-us .new-grad_content .bannerWrap a img {
    width: 100%;
    position: relative;
  }
  .join-us .new-grad_content .bannerWrap a:not(:first-of-type) {
    margin-top: 4px;
  }
  .join-us .new-grad_content .bannerWrap .pc-none {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: auto;
  }
  .join-us .job-offer_wrap {
    margin-top: 40px;
  }
  .join-us .job-offer_wrap li {
    height: auto;
    display: block;
  }
  .join-us .job-offer_wrap li a {
    display: block;
  }
  .join-us .job-offer_wrap li .imgWrap {
    width: 100%;
    height: 165px;
    max-width: 100%;
  }
  .join-us .job-offer_wrap li .textWrap {
    width: 100%;
    border-top: none;
    padding: 20px;
    padding-bottom: 74px;
  }
  .join-us .job-offer_wrap li .textWrap .txt_head {
    font-size: 20px;
    line-height: 29px;
  }
  .join-us .job-offer_wrap li .textWrap .txt_explain {
    font-size: 15px;
    line-height: 24px;
  }
  .join-us .job-offer_wrap li .textWrap .flexbox {
    display: block;
  }
  .join-us .job-offer_wrap li .textWrap .tag-list ul {
    flex-wrap: wrap;
  }
  .join-us .job-offer_wrap li .textWrap .tag-list li {
    width: 114px;
  }
  .join-us .job-offer_wrap li .textWrap .tag-list li:not(:first-of-type) {
    margin-left: 0;
  }
  .join-us .job-offer_wrap li .textWrap .tag-list li:nth-of-type(even) {
    margin-left: 12px;
  }
  .join-us .job-offer_wrap li .textWrap .tag-list li:nth-of-type(n + 3) {
    margin-top: 10px;
  }
  .join-us .job-offer_wrap li .textWrap .sub_txt {
    margin-left: 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
  }
  .join-us .job-offer_wrap li .textWrap .sub_txt svg {
    display: inline-block;
    min-width: 24px;
  }
  .join-us .job-offer_wrap li .textWrap .sub_txt span {
    padding-left: 19.5px;
    font-size: 14px;
    line-height: 20px;
  }
  .join-us .job-offer_wrap li .textWrap button {
    max-width: 100%;
    height: 54px;
    bottom: 0;
    top: auto;
    width: 100%;
  }
  .join-us .job-offer_wrap li .textWrap button img {
    left: auto;
    right: 20px;
    transform: translate(0%, -50%);
    height: 12px;
  }
  .join-us-single img {
    margin-top: 40px;
  }
  .join-us-single .job-info_wrap {
    margin-top: 40px;
    display: block;
  }
  .join-us-single .job-info_wrap .job-main_wrap {
    width: 100%;
  }
  .join-us-single .job-info_wrap .job-main_wrap .tag-list {
    margin-top: 0;
  }
  .join-us-single .job-info_wrap .job-main_wrap .tag-list ul {
    flex-wrap: wrap;
  }
  .join-us-single .job-info_wrap .job-main_wrap .tag-list li {
    margin-left: 0;
    margin-top: 5px;
  }
  .join-us-single .job-info_wrap .job-main_wrap .tag-list li:nth-of-type(even) {
    margin-left: 5px;
  }
  .join-us-single .job-info_wrap .job-main_wrap .h3_design {
    margin-top: 40px;
    font-size: 20px;
    line-height: 29px;
  }
  .join-us-single .job-info_wrap .job-main_wrap .txt_explain {
    margin-top: 40px;
    line-height: 24px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table {
    margin-top: 40px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table tr:not(:first-of-type) {
    margin-top: 40px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table tr th,
  .join-us-single .job-info_wrap .job-main_wrap table tr td {
    display: block;
    width: 100%;
    line-height: 24px;
    font-size: 16px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table tr th {
    border-right: none;
    border-bottom: 1px solid #1f93c9;
    text-align: left;
    padding: 0;
    padding-bottom: 10px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table tr td {
    padding: 0;
    padding-top: 10px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table.design02 {
    table-layout: fixed;
    width: 100%;
  }
  .join-us-single .job-info_wrap .job-main_wrap table.design02 tr {
    width: 100%;
  }
  .join-us-single
    .job-info_wrap
    .job-main_wrap
    table.design02
    tr:not(:first-of-type) {
    margin-top: 0;
  }
  .join-us-single .job-info_wrap .job-main_wrap table.design02 tr th,
  .join-us-single .job-info_wrap .job-main_wrap table.design02 tr td {
    font-size: 14px;
    line-height: 20px;
    display: table-cell;
    padding: 20px 10px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table.design02 tr th {
    min-width: 23.6%;
    width: 170px;
    max-width: 170px;
  }
  .join-us-single .job-info_wrap .job-main_wrap table.design02 tr td {
    width: 76.3%;
  }
  .join-us-single .job-info_wrap .job-main_wrap .process_wrap {
    margin-top: 40px;
  }
  .join-us-single .job-info_wrap .job-main_wrap .process_wrap span {
    font-size: 14px;
    padding: 20px 10px;
    line-height: 1;
  }
  .join-us-single
    .job-info_wrap
    .job-main_wrap
    .process_wrap
    span:not(:first-of-type) {
    margin-left: 10px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap {
    max-width: 100%;
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid #090b2b;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap .moreBtn.green.sp-none {
    display: none;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap .txt_explain {
    margin-top: 40px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap iframe {
    margin-top: 40px;
    width: 100%;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li {
    padding: 0 20px 74px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li img {
    width: calc(100% + 40px);
    margin: 0 -20px;
    max-height: 250px;
    object-fit: cover;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .h5_design {
    margin-top: 20px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .txt_explain {
    height: auto;
    margin-top: 20px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list {
    margin-top: 20px;
    display: block;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list ul {
    margin-top: 0;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list .map_txt {
    margin-top: 20px;
    align-items: center;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li .tag-list .map_txt p {
    width: 100%;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li button {
    height: 54px;
    width: 100%;
    bottom: 0px;
  }
  .join-us-single .job-info_wrap .job-sidebar_wrap ul li button img {
    width: 14px;
    height: 10px;
    right: 22px;
    margin: 0;
    object-fit: none;
  }
  .bottom_content .partnerWrap {
    flex-wrap: wrap;
    height: 132px;
  }
  .bottom_content .partnerWrap a {
    height: 50%;
    max-width: 100%;
  }
  .bottom_content .partnerWrap a img {
    max-height: 100%;
  }
  .form-page .txt_explain.privacy {
    padding: 15px;
  }
  .form-page .agree_cont {
    margin-top: 40px;
  }
  .form-page .form_wrap {
    margin-top: 40px;
  }
  .form-page .form_wrap .form-progress li {
    min-width: 90px;
    width: 30%;
    margin-right: 0;
  }
  .form-page .form_wrap table {
    margin-top: 0;
  }
  .form-page .form_wrap table tr th,
  .form-page .form_wrap table tr td {
    display: block;
    width: 100%;
  }
  .form-page .form_wrap table tr th {
    padding: 0;
    padding-bottom: 10px;
    margin-top: 40px;
  }
  .form-page .form_wrap table tr td {
    padding: 0;
    padding-top: 10px;
    border-bottom: none;
  }
  .horizontal-item {
    display: block;
  }
  select {
    width: 20%;
  }
  .mw_wp_form_input button[type='submit'] {
    margin-top: 40px;
  }
  .terms table.simple01 tr th,
  .terms table.simple01 tr td {
    display: block;
    border-bottom: none;
  }
  .terms table.simple01 tr th {
    width: 100%;
    text-align: left;
  }
  .terms table.simple01 tr:last-of-type td {
    border-bottom: 1px solid #ddd;
  }
  .sp-block {
    display: block;
  }
  .sdgs .section02 .h3_design {
    font-size: 20px;
    line-height: 29px;
    text-align: center;
  }
  .sdgs .section02 ol li {
    font-size: 16px;
    line-height: 24px;
  }
  .sdgs .section02 .col-2 {
    display: block;
  }
  .sdgs .section02 .col-2 p {
    margin-left: 0;
    margin-top: 40px;
  }
  .sdgs_section .inner {
    width: 100%;
    padding-top: 197px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  .sdgs_section .inner .activity-num {
    display: none;
  }
  .sdgs_section .inner .titleWrap .sdgs_icon {
    position: absolute;
    top: 0;
    left: 0;
  }
  .sdgs_section .inner .titleWrap .h4_design {
    margin-left: 0;
    font-size: 22px;
    line-height: 32px;
    font-size: 13px;
    line-height: 2em;
  }
  .sdgs_section .inner .contentWrap {
    margin-top: 25px;
    display: block;
  }
  .sdgs_section .inner .contentWrap .item {
    margin-left: 0;
  }
  .sdgs_section .inner .contentWrap ul li {
    font-size: 13px;
    line-height: 21px;
  }
  .sdgs .cooperation .flexbox {
    display: block;
  }
  .sdgs .cooperation .flexbox .item {
    width: 100%;
  }
  .sdgs .cooperation .flexbox .item:nth-of-type(n + 2) {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1250px) {
  /*---------- TOP ----------*/
  .top_menuWrap .inner {
    height: 100%;
  }
}
@media screen and (max-width: 1040px) {
  /*---------- 共通 ----------*/
  .inner {
    width: calc(100vw - 40px);
  }
  footer .inner {
    width: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1185px) {
  .header .header_container {
    max-width: 1000px;
    height: 105px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .header .header_container .logo_supportas {
    top: 0;
    height: 40px;
  }
  .header .header_container .menu_wrap {
    top: 40px;
    width: calc(100vw - 40px);
  }
  .header .header_container .menu_sns {
    height: 40px;
    top: 0;
    right: 0;
  }
  .header .header_container .logo_supportas img {
    padding-left: 0;
  }
  .menu_container {
    width: 100%;
  }
  .menu_container .menu_list p {
    font-size: 1.7vw;
  }
  .menu_container .menu_list span {
    font-size: 1vw;
  }
  .menu_container .menu_list:not(:first-of-type) {
    margin-left: 0.5vw;
  }
  .menu_container .menu_list .sub_menu {
    width: calc(100vw - 20px);
  }
  .submenu__wrap {
    top: 98px;
  }
  .footer {
    height: 127px;
  }
  .footer .menu_wrap .smallWrap {
    margin-top: 6px;
    display: block;
    width: 100vw;
    height: 34px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 9px;
    color: #090b2b;
    text-align: center;
    line-height: 34px;
  }
}
@media screen and (max-height: 700px) {
  .container {
    scroll-snap-type: inherit;
  }
}
/* Avoid Chrome to see Safari hack */ /*# sourceMappingURL=theme.css.map */

/*---------- RECRUIT ----------*/

.recruit {
  font-family: 'noto-sans-cjk-jp', sans-serif;
  color: #090b2b;
}
.recruit .recruit_main-image {
  margin-top: 70px;
  margin-bottom: 80px;
  width: 100%;
}

.recruit .inner2 {
  max-width: 907px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit .inner3 {
  max-width: 867px;
  margin: 64px auto 0 auto;
  text-align: center;
}

.recruit .inner4 {
  max-width: 768px;
  margin: 64px auto 0 auto;
  text-align: center;
}

.recruit .plain_txt {
  color: #090b2b;
  margin-bottom: 24px;
  line-height: 1.5em;
}

.recruit .recruit_h3 {
  margin-top: 140px;
  margin-bottom: 70px;
  font-size: 1.8em;
}

.recruit .interview {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}

.recruit .interview-cell {
  width: 240px;
  border: 1px solid #1f93c9;
}

.recruit .interview-image {
  width: 238px;
}

@media screen and (max-width: 781px) {
  .recruit .interview {
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
  }

  .recruit .interview-cell {
    width: 100%;
  }

  .recruit .interview-image {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .recruit .interview {
    flex-direction: column;
    gap: 40px;
  }
}

.recruit .interview-content {
  padding: 10px;
  text-align: left;
  font-size: 0.9em;
  line-height: 1.4em;
}

.recruit .interview-content span {
  margin-top: 18px;
  font-size: 0.8em;
  display: block;
  line-height: 1.2em;
}

.recruit .occupation-cell {
  width: 1000px;
  border: 1px solid #1f93c9;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 40px;
}

.occupation-image {
  min-width: 360px;
  max-width: 360px;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .recruit .occupation-cell {
    width: 100%;
  }
}

@media screen and (max-width: 781px) {
  .occupation-image {
    min-width: 240px;
  }
}

.recruit .occupation-btn {
  background-color: #00f6ff;
  text-align: center;
  font-size: 1.8em;
  min-height: 100%;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit .occupation-detail {
  padding: 12px 6px 12px 18px;
  width: 100%;
}

.recruit .occupation-detail h4 {
  font-size: 1.3em;
  margin-bottom: 12px;
  line-height: 1.4em;
}

.recruit p.occupation-txt {
  font-size: 0.75em;
  line-height: 1.8em;
  margin-bottom: 12px;
}

.recruit .occupation-detail span {
  font-size: 0.7em;
  border: 1px solid #1f93c9;
  padding: 6px 8px;
  width: 100px;
  text-align: center;
  display: inline-block;
  margin-right: 12px;
}

@media screen and (max-width: 600px) {
  .recruit .occupation-cell {
    flex-direction: column;
    gap: 12px;
  }
  .recruit .occupation-detail {
    padding: 12px;
  }

  .recruit .occupation-btn {
    min-height: 40px;
  }

  .occupation-image {
    min-width: 100%;
  }

  .recruit .occupation-detail span {
    margin-bottom: 12px;
  }
}

.recruit p.occupation-address {
  font-size: 0.75em;
  line-height: 1.8em;
  display: inline-block;
}

.recruit .interview_h3 {
  margin-top: 0px;
  margin-bottom: 40px;
  font-size: 1.6em;
  line-height: 1.4em;
  text-align: center;
}

.recruit .interview_h4 {
  margin-top: 0px;
  margin-bottom: 40px;
  font-size: 1.2em;
  line-height: 1.6em;
  text-align: center;
}

.recruit .interview-detail {
  width: 1000px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  height: 100%;
  margin-bottom: 40px;
  gap: 40px;
}

.recruit .interview-detail p {
  margin-bottom: 24px;
  line-height: 1.4em;
}

.recruit .interview-detail img {
  min-width: 480px;
}

@media screen and (max-width: 1024px) {
  .recruit .interview-detail {
    width: 100%;
    padding: 0 20px;
  }

  .recruit .interview-detail img {
    width: 100%;
    min-width: 280px;
  }
}

@media screen and (max-width: 600px) {
  .recruit .interview-detail {
    flex-direction: column-reverse;
  }

  .recruit .interview-detail img {
    width: 100%;
    min-width: 100%;
  }
}
