@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,900&family=Noto+Sans+JP:wght@500;700&display=swap");
.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.noto.bold {
  font-weight: 700;
}

.lato {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
.lato.bold {
  font-weight: 700;
}

.color_orange {
  color: #F3790A;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  background-color: #060540;
  color: #060540;
}
body.active {
  overflow: hidden;
}

.inner {
  padding-left: 150px;
  padding-right: 150px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1630px) {
  .inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.pl_20 {
  padding-left: 20px;
}

@media screen and (min-width: 769px) {
  .hidden_pc {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .hidden_sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1480px) {
  .hidden_middle {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
  .hidden_small {
    display: none !important;
  }
}

.header {
  border-bottom: solid 2px rgba(255, 255, 255, 0.3);
  padding: 0 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  z-index: 999;
  background: rgba(6, 5, 64, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px 0 10px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1480px) {
  .header {
    padding-left: 50px;
  }
}
.header.scroll {
  background: #060540;
}
.header .header_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.header .logo {
  padding: 0 30px 0 10px;
}
@media screen and (max-width: 768px) {
  .header .logo {
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .header .logo img {
    height: 6.4vw;
  }
}

@media screen and (max-width: 768px) {
  .translation_wrap {
    z-index: 2;
  }
}
.translation_wrap .translation_list {
  overflow: hidden;
}
.translation_wrap .translation_list .list_item {
  float: left;
}
.translation_wrap .translation_list .list_item:first-child a {
  border-right: 2px solid #FFFFFF;
}
.translation_wrap .translation_list .list_item.active a {
  pointer-events: none;
}
.translation_wrap .translation_list .list_item.active a:after {
  content: "";
  display: block;
  height: 2px;
  background: #FFFFFF;
  width: 100%;
  margin-top: 4px;
}
.translation_wrap .translation_list .list_item a {
  padding: 0 20px;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .translation_wrap .translation_list .list_item a {
    padding: 0 15px;
  }
}
.translation_wrap .translation_list .list_item a:hover:after {
  content: "";
  display: block;
  height: 2px;
  background: #FFFFFF;
  width: 100%;
  margin-top: 4px;
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
  .g_nav {
    display: none;
  }
}

.g_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1630px) {
  .g_nav_list {
    font-size: 1.2rem;
  }
}
.g_nav_list .list_item > a {
  color: #FFFFFF;
  text-decoration: none;
  margin-right: 30px;
  position: relative;
  padding: 29px 0;
}
.g_nav_list .list_item > a:hover:after {
  content: "";
  display: block;
  height: 2px;
  background: #FFFFFF;
  width: 100%;
  margin-top: 4px;
  position: absolute;
}
@media screen and (min-width: 768px) and (max-width: 1630px) {
  .g_nav_list .list_item > a {
    margin-right: 20px;
  }
}

.mega_nav {
  position: fixed;
  width: 100%;
  top: 82px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(6, 5, 64, 0.5);
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mega_nav.scroll {
  background: #060540;
}
.mega_nav.active {
  height: 64px;
  border-bottom: solid 2px rgba(255, 255, 255, 0.3);
  overflow: inherit;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.mega_nav .mega_nav_list a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 22px;
  display: block;
}
.mega_nav .mega_nav_list a:hover {
  text-decoration: underline;
}

.mega_sub_nav {
  height: 0px;
  width: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: rgba(6, 5, 64, 0.5);
}
.mega_sub_nav.active {
  height: 64px;
  opacity: 1;
  position: absolute;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: solid 2px rgba(255, 255, 255, 0.3);
  border-bottom: solid 2px rgba(255, 255, 255, 0.3);
  top: 61px;
}
@media screen and (max-width: 1480px) {
  .mega_sub_nav {
    font-size: 1rem;
  }
}

.scroll .mega_nav.active {
  background: #060540;
}

@media screen and (min-width: 768px) and (max-width: 1480px) {
  .header_right_buttons {
    display: none;
  }
}

.header_right_button_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}
.header_right_button_list .list_item a {
  color: #181777;
  background: #FFFFFF;
  text-decoration: none;
  min-height: 80px;
  min-width: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  border: solid 1px #181777;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_right_button_list .list_item a span {
  width: 100%;
  text-align: center;
}
.header_right_button_list .list_item a .doc_icon {
  fill: #181777;
  stroke: #181777;
  margin: 0 auto 10px;
}
.header_right_button_list .list_item a .mail_icon {
  margin: 0 auto 10px;
}
.header_right_button_list .list_item a .path12 {
  fill: none;
  stroke: #181777;
}
.header_right_button_list .list_item a .path13 {
  fill: none;
  stroke: #181777;
}
.header_right_button_list .list_item:hover a {
  background: #181777;
  color: #FFFFFF;
}
.header_right_button_list .list_item:hover a .doc_icon {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.header_right_button_list .list_item:hover a .path12 {
  fill: none;
  stroke: #FFFFFF;
}
.header_right_button_list .list_item:hover a .path13 {
  fill: none;
  stroke: #FFFFFF;
}

.header_right_hamburger {
  min-height: 80px;
  min-width: 110px;
  background: #060540;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header_right_hamburger {
    min-height: 60px;
    min-width: 60px;
    background: none;
  }
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 38px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    width: 24px;
  }
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    margin: 5px 0;
  }
}

.hamburger span:nth-child(3) {
  top: 0;
}

.hamburger.active span:nth-child(1) {
  top: 11.5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hamburger.active span:nth-child(1) {
    top: 1.5px;
  }
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -11.5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header_menu {
  right: -100vw;
  position: absolute;
  width: 75%;
  top: 0;
  height: 100vh;
  background-color: #181777;
  background-image: url("../img/header/menu-logo.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 184px 100px 60px 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .header_menu {
    width: 100%;
    right: -100%;
    padding: 92px 20px 20px 20px;
    background-image: none;
    height: 100vh;
    overflow: scroll;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header_menu {
    padding: 92px 20px 20px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1480px) {
  .header_menu {
    width: 100%;
  }
}
.header_menu .translation_wrap {
  position: absolute;
  right: 100px;
  top: 45px;
}
.header_menu.active {
  right: 0;
}

.header_menu_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header_menu_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .header_menu_right_list {
    margin-bottom: 60px;
  }
}
.header_menu_right_list .list_item a {
  display: block;
  padding: 26px 20px;
  color: #FFFFFF;
  font-size: 2.8rem;
  line-height: 1;
  border-bottom: dotted 2px #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header_menu_right_list .list_item a {
    font-size: 1.8rem;
  }
}
.header_menu_right_list .list_item a:hover {
  padding-left: 50px;
  opacity: 0.5;
}

.header_menu_left,
.header_menu_right {
  width: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  .header_menu_left,
  .header_menu_right {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header_menu_left,
  .header_menu_right {
    width: 48%;
  }
}

.header_menu_left_logo {
  margin: 0 auto 45px;
}

.header_menu_left_buttons {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .header_menu_left_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .header_menu_left_buttons .list_item {
    width: 100%;
  }
}
.header_menu_left_buttons .list_item:first-child {
  margin-bottom: 40px;
}
.header_menu_left_buttons .list_item a {
  color: #FFFFFF;
  text-decoration: none;
  border: solid 1px #FFFFFF;
  padding: 35px 30px;
  border-radius: 8px;
  display: block;
  background: #181777;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header_menu_left_buttons .list_item a {
    width: 100%;
    padding: 20px;
  }
}
.header_menu_left_buttons .list_item a .header_menu_left_buttons_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_menu_left_buttons .list_item a .header_menu_left_buttons_title h4 {
  font-size: 5rem;
  margin-right: 20px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .header_menu_left_buttons .list_item a .header_menu_left_buttons_title h4 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header_menu_left_buttons .list_item a .header_menu_left_buttons_title h4 {
    font-size: 4.6rem;
  }
}
.header_menu_left_buttons .list_item a .header_menu_left_buttons_title .doc_icon {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_menu_left_buttons .list_item a .header_menu_left_buttons_title .path12 {
  fill: none;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_menu_left_buttons .list_item a .header_menu_left_buttons_title .path13 {
  fill: none;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_menu_left_buttons .list_item a .header_menu_left_buttons_text {
  font-size: 2rem;
  font-weight: bold;
}
.header_menu_left_buttons .list_item a:hover {
  color: #181777;
  background: #FFFFFF;
}
.header_menu_left_buttons .list_item a:hover .doc_icon {
  fill: #181777;
  stroke: #181777;
}
.header_menu_left_buttons .list_item a:hover .path12 {
  fill: none;
  stroke: #181777;
}
.header_menu_left_buttons .list_item a:hover .path13 {
  fill: none;
  stroke: #181777;
}

.section_title_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .section_title_icon {
    margin-bottom: 20px;
  }
}
.section_title_icon .square_box {
  display: block;
  height: 10px;
  width: 10px;
  margin-right: 4px;
}
.section_title_icon .square_box.white_box {
  background: #FFFFFF;
}
.section_title_icon .square_box.blue_box {
  background: #AAAAD1;
  margin-right: 20px;
}

.section_title {
  font-size: 5rem;
  color: #FFFFFF;
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section_title {
    font-size: 7vw;
    line-height: 1.4;
    margin-bottom: 40px;
  }
}

.circle_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.circle_btn a,
.circle_btn button {
  text-decoration: none;
  padding: 20px 80px;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.8rem;
  border-radius: 100px;
  font-weight: 700;
}
.circle_btn a svg,
.circle_btn button svg {
  display: inline;
  margin-left: 15px;
}
.circle_btn.white_btn a {
  color: #060540;
  background: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.circle_btn.white_btn #path_27 {
  fill: none;
  stroke: rgba(6, 5, 64, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
}
.circle_btn.white_btn #path_28 {
  fill: none;
  stroke: rgba(6, 5, 64, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.circle_btn.white_btn a:hover {
  color: #FFFFFF;
  background: #060540;
}
.circle_btn.white_btn a:hover #path_27 {
  fill: none;
  stroke: #FFFFFF;
}
.circle_btn.white_btn a:hover #path_28 {
  fill: none;
  stroke: #FFFFFF;
}

.footer {
  background: #060540;
  z-index: 2;
  position: relative;
}
.footer .page_top {
  text-align: center;
}
.footer .page_top a {
  display: block;
  color: #FFFFFF;
  background: #060540;
  padding: 34px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: solid 1px #FFFFFF;
}
@media screen and (max-width: 768px) {
  .footer .page_top a {
    padding: 20px;
  }
}
.footer .page_top a svg {
  display: inline;
  position: relative;
  top: -2px;
  left: -10px;
}
.footer .page_top a #path_194 {
  fill: none;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .page_top a:hover {
  color: #060540;
  background: #FFFFFF;
}
.footer .page_top a:hover #path_194 {
  fill: none;
  stroke: #060540;
}
@media screen and (min-width: 768px) and (max-width: 1630px) {
  .footer .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer .footer_logo img {
  height: 63px;
  width: auto;
  margin: 94px auto 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer_logo img {
    margin: 50px auto 20px;
  }
}
.footer .translation_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.footer .footer_button_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 110px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer .footer_button_links {
    margin-bottom: 50px;
  }
}
.footer .footer_button_links .list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer_button_links .list_item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_button_links .list_item:first-child {
    margin-bottom: 30px;
  }
}
.footer .footer_button_links .list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 220px;
  border-radius: 50px;
  border: solid 1px #FFFFFF;
  padding: 16px 24px;
  text-decoration: none;
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer .footer_button_links .list_item a {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .footer_button_links .list_item a svg {
  display: inline;
  height: 17px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_button_links .list_item a svg {
    margin-left: 20px;
  }
}
.footer .footer_button_links .list_item a .doc_icon {
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.footer .footer_button_links .list_item a .path12 {
  fill: none;
  stroke: #FFFFFF;
}
.footer .footer_button_links .list_item a .path13 {
  fill: none;
  stroke: #FFFFFF;
}
.footer .footer_button_links .list_item a:hover {
  background: #FFFFFF;
  color: #181777;
}
.footer .footer_button_links .list_item a:hover .doc_icon {
  fill: #181777;
  stroke: #181777;
}
.footer .footer_button_links .list_item a:hover .path12 {
  fill: none;
  stroke: #181777;
}
.footer .footer_button_links .list_item a:hover .path13 {
  fill: none;
  stroke: #181777;
}
.footer .footer_sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap {
    display: block;
    padding: 0 20px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .footer .footer_sitemap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 769px) {
  .footer .footer_sitemap .list_item {
    width: 16.6666666667%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap .list_item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    height: 38px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .footer .footer_sitemap .list_item {
    width: 33%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap .list_item.active {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap .list_item:last-child {
    height: auto;
  }
}
.footer .footer_sitemap .list_item:last-child .footer_sitemap_title {
  margin-bottom: 30px;
}
.footer .footer_sitemap .footer_sitemap_title {
  margin-bottom: 15px;
}
.footer .footer_sitemap .footer_sitemap_title a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
}
.footer .footer_sitemap .footer_sitemap_title a:hover {
  text-decoration: underline;
}
.footer .footer_sitemap .footer_sitemap_title svg {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap .footer_sitemap_title svg {
    display: inline;
    margin-left: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.footer .footer_sitemap .footer_sitemap_title svg.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap .footer_sitemap_inlist {
    margin-bottom: 30px;
  }
}
.footer .footer_sitemap .footer_sitemap_inlist .in_list_item {
  border-left: solid 1px #FFFFFF;
  padding-left: 16px;
}
.footer .footer_sitemap .footer_sitemap_inlist .in_list_item a {
  color: #FFFFFF;
  text-decoration: none;
  line-height: 2;
}
.footer .footer_sitemap .footer_sitemap_inlist .in_list_item a:hover {
  text-decoration: underline;
}
.footer .footer_sitemap .title_link_wrap {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .footer .footer_sitemap .title_link_wrap {
    margin-top: 30px;
  }
}
.footer .footer_sitemap .title_link_wrap .title_link {
  margin-bottom: 30px;
}
.footer .footer_sitemap .title_link_wrap .title_link:last-of-type {
  margin-bottom: 0;
}
.footer .capture_list {
  border-top: solid 1px #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .capture_list {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .capture_list a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .footer .capture_list a {
    padding: 10px 15px;
  }
}
.footer .capture_list a:hover {
  text-decoration: underline;
}
.footer .copy {
  text-align: center;
  color: #FFFFFF;
  padding: 23px;
  font-weight: 1.2rem;
}
.footer .footer_large_logo {
  text-align: center;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .footer .footer_large_logo {
    margin-top: 100px;
  }
}
.footer .footer_large_logo img {
  display: inline;
  height: 175px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .footer .footer_large_logo img {
    height: auto;
    width: 100%;
  }
}

.mrg-b-0 {
  margin-bottom: 0 !important;
}

.mt_30 {
  margin-top: 30px;
}

.fl-w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

video {
  width: 100%;
  position: absolute;
  height: auto;
}

.intro {
  height: 100vh;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .intro {
    display: block;
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  .intro {
    padding-top: 100px;
  }
}

.intro_content {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .intro_content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .intro_content .inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.intro_content_header {
  display: inline-block;
  line-height: 1;
  padding: 8px 20px;
  background: rgba(6, 5, 65, 0.7);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .intro_content_header {
    line-height: 2;
    font-size: 3vw;
  }
}

.intro_content_title {
  font-size: 7rem;
  line-height: 1.4;
  margin-bottom: 50px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .intro_content_title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .intro_content_title {
    font-size: 7vw;
  }
}

.intro_content_bottom span {
  display: inline-block;
  line-height: 1;
  padding: 8px 15px;
  background: rgba(6, 5, 65, 0.7);
  margin-bottom: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .intro_content_bottom span {
    font-size: 3vw;
  }
}

.title_animete {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.title_animete.show {
  opacity: 1;
}

.intro_news {
  position: absolute;
  width: 600px;
  padding: 30px 40px;
  right: 150px;
  bottom: 34px;
  border: solid 2px rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: #FFFFFF;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}
.intro_news.active {
  bottom: 84px;
  opacity: 1;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .intro_news.active {
    bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1630px) {
  .intro_news {
    right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1480px) {
  .intro_news {
    width: 35vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .intro_news {
    position: relative;
    width: calc(100% - 80px);
    right: 40px;
    left: 40px;
    padding: 20px;
    bottom: 0;
    border-radius: 10px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .intro_news {
    width: calc(100% - 40px);
    right: 20px;
    padding: 20px;
    bottom: 20px;
    border-radius: 10px;
  }
}

.intro_news_title {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .intro_news_title {
    font-size: 1.6rem;
  }
}
.intro_news_title h3 {
  font-size: 2.8rem;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .intro_news_title h3 {
    font-size: 6vw;
  }
}

.intro_news_text {
  font-size: 1.8rem;
  display: inline;
}
.intro_news_text a {
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .intro_news_text a {
    font-size: 1.6rem;
  }
}
.intro_news_text a:hover {
  text-decoration: underline;
}
.intro_news_text img {
  height: 10px;
  padding-left: 15px;
  display: inline;
}

#video_wrap {
  position: relative;
  /*h1の中央寄せ配置の起点とするためのrelative*/
  height: 100vh;
  /*高さを全画面にあわせる*/
}

#video_area {
  position: fixed;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background-size: 100%;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #video_area {
    background-position: left;
  }
}

#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mission {
  padding-top: 170px;
  position: relative;
  background: rgb(6, 5, 64);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 5, 64, 0)), color-stop(10%, rgba(6, 5, 64, 0.22)), color-stop(20%, rgba(6, 5, 64, 0.36)), color-stop(40%, rgba(6, 5, 64, 0.85)), to(rgba(6, 5, 64, 0.93)));
  background: linear-gradient(180deg, rgba(6, 5, 64, 0) 0%, rgba(6, 5, 64, 0.22) 10%, rgba(6, 5, 64, 0.36) 20%, rgba(6, 5, 64, 0.85) 40%, rgba(6, 5, 64, 0.93) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#060540", endColorstr="#060540", GradientType=1);
}
@media screen and (max-width: 1260px) {
  .mission {
    padding-top: 270px;
  }
}
@media screen and (max-width: 768px) {
  .mission {
    padding-top: 100px;
    background: rgb(6, 5, 64);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 5, 64, 0)), color-stop(10%, rgba(6, 5, 64, 0.22)), color-stop(20%, rgba(6, 5, 64, 0.36)), color-stop(40%, rgba(6, 5, 64, 0.85)), to(rgba(6, 5, 64, 0.93)));
    background: linear-gradient(180deg, rgba(6, 5, 64, 0) 0%, rgba(6, 5, 64, 0.22) 10%, rgba(6, 5, 64, 0.36) 20%, rgba(6, 5, 64, 0.85) 40%, rgba(6, 5, 64, 0.93) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#060540", endColorstr="#060540", GradientType=1);
  }
}

.mission_content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 180px;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  margin-top: 100px;
}
.mission_content_wrap.active {
  opacity: 1;
  margin-top: 0;
}
@media screen and (max-width: 1480px) {
  .mission_content_wrap {
    display: block;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1480px) {
  .mission_content_wrap {
    display: block;
    margin-bottom: 80px;
  }
}
.mission_content_wrap > div {
  width: 50%;
}
@media screen and (max-width: 1480px) {
  .mission_content_wrap > div {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1480px) {
  .mission_right {
    margin-top: 30px;
  }
}
.mission_right p {
  margin-bottom: 80px;
  color: #FFFFFF;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .mission_right p {
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1480px) {
  .mission_right p {
    margin-bottom: 20px;
  }
}
.mission_right p:last-of-type {
  margin-bottom: 0;
}

.mission_list {
  overflow: hidden;
  border-top: solid 1px #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
}
.mission_list .list_item {
  width: 33.3333333333%;
  float: left;
  padding: 30px;
  border-right: solid 1px #FFFFFF;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  opacity: 0;
}
.mission_list .list_item.show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
@media screen and (max-width: 1260px) {
  .mission_list .list_item {
    width: 100%;
    float: none;
    border-left: solid 1px #FFFFFF;
    border-bottom: solid 1px #FFFFFF;
  }
}
.mission_list .list_item:first-child {
  border-left: solid 1px #FFFFFF;
}
@media screen and (max-width: 1260px) {
  .mission_list .list_item .mission_list_img {
    text-align: center;
  }
}
.mission_list .list_item img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1260px) {
  .mission_list .list_item img {
    width: 80%;
    display: inline;
  }
}
.mission_list .list_item .mission_list_img {
  margin-bottom: 20px;
}
.mission_list .list_item .mission_list_text {
  color: #FFFFFF;
  line-height: 2;
}

.service {
  position: relative;
  padding-top: 180px;
  background-position: top left;
}
@media screen and (max-width: 768px) {
  .service {
    padding-top: 120px;
  }
}
.service:after {
  content: "";
  display: block;
  width: 100%;
  height: 430px;
  border-bottom: 430px solid transparent;
  border-left: calc(100vw - 17px) solid #060540;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .service:after {
    height: 50px;
    border-left: 100vw solid #060540;
    border-bottom: 17vw solid transparent;
  }
}
.service .service_content {
  position: relative;
  z-index: 2;
  padding-bottom: 13vw;
}
@media screen and (max-width: 768px) {
  .service .service_content {
    padding-bottom: 0;
  }
}
.service .service_content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 26vw;
  background: url("../img/top/solution-bg.png");
  bottom: -152px;
  background-size: cover;
}
.service .service_content .circle_btn {
  position: relative;
  z-index: 3;
}

.service_title_wrap {
  padding-left: 150px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .service_title_wrap {
    padding-left: 20px;
    margin-bottom: 0;
  }
}

.service_content_list {
  margin-bottom: 130px;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  top: 100px;
}
.service_content_list.active {
  opacity: 1;
  top: 0;
}
@media screen and (max-width: 768px) {
  .service_content_list {
    margin-bottom: 50px;
  }
}
.service_content_list .list_item {
  padding: 0 30px;
}
.service_content_list .list_item a {
  text-decoration: none;
}

.service_content_list_img {
  border-radius: 10px;
  margin-bottom: 16px;
  width: 100%;
}

.service_content_list_title {
  color: #FFFFFF;
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 32px;
  min-height: 96px;
}
@media screen and (max-width: 768px) {
  .service_content_list_title {
    font-size: 6vw;
    min-height: auto;
    margin-bottom: 20px;
  }
}

.service_content_list_text {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .service_content_list_text {
    line-height: 2;
  }
}

@media screen and (min-width: 769px) {
  .solution {
    background: url("../img/top/solution-bg-square.jpg");
    background-size: 100%;
    position: relative;
    margin-top: 150px;
    padding-bottom: 170px;
  }
}
@media screen and (max-width: 768px) {
  .solution {
    background: url("../img/top/solution-bg-square.jpg");
    background-size: contain;
    position: relative;
    margin-top: 152px;
    padding-bottom: 50px;
  }
}
.solution .inner {
  width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1260px) {
  .solution .inner {
    width: 100%;
  }
}
.solution .solution_title_wrap {
  margin-top: 120px;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  top: 100px;
  position: relative;
}
.solution .solution_title_wrap.active {
  opacity: 1;
  top: 0;
}
@media screen and (max-width: 1480px) {
  .solution .solution_title_wrap {
    padding-top: 50px;
  }
}
.solution .solution_title_wrap .section_title_icon .square_box.white_box {
  background: #060540;
}
.solution .solution_title_wrap .section_title_icon .square_box.blue_box {
  background: #AAAAD1;
  margin-right: 20px;
}
.solution .solution_title_wrap .section_title {
  color: #060540;
}

.solution_content {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .solution_content {
    margin-top: 0;
  }
}

.solution_content_title {
  font-size: 5rem;
  margin-bottom: 52px;
  color: #060540;
}
@media screen and (max-width: 768px) {
  .solution_content_title {
    font-size: 6vw;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1260px) {
  .solution_content_title {
    line-height: 1.6;
  }
}

.solution_content_text {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .solution_content_text {
    margin-bottom: 50px;
  }
}
.solution_content_text p {
  color: #060540;
  margin-bottom: 30px;
  line-height: 2;
  width: 810px;
}
@media screen and (max-width: 1260px) {
  .solution_content_text p {
    width: 100%;
    margin-bottom: 20px;
  }
}
.solution_content_text p:last-of-type {
  margin-bottom: 0;
}

.solution_content_box div {
  position: relative;
  top: 100px;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.solution_content_box div.show {
  top: 0;
  opacity: 1;
}

.solution_content_problem {
  border: solid 2px #181777;
  border-radius: 20px;
  padding: 30px 50px;
}
@media screen and (max-width: 768px) {
  .solution_content_problem {
    border-radius: 10px;
    padding: 20px;
  }
}

.solution_content_problem_title {
  color: #060540;
  font-size: 3rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .solution_content_problem_title {
    font-size: 5vw;
  }
}

.solution_content_problem_text {
  color: #060540;
  line-height: 2;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .solution_content_problem_text {
    font-size: 1.6rem;
  }
}

.solution_content_icon {
  text-align: center;
  width: 100%;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .solution_content_icon {
    padding: 30px 0 25px;
  }
}
.solution_content_icon img {
  display: inline;
}

.solution_content_suggest {
  background: #060540;
  padding: 30px 50px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .solution_content_suggest {
    border-radius: 10px;
    padding: 20px;
  }
}

.solution_content_suggest_title {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .solution_content_suggest_title {
    font-size: 5vw;
  }
}

.solution_content_suggest_list_num {
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1;
  font-weight: 700;
  position: relative;
  padding-left: 50px;
}
.solution_content_suggest_list_num:before {
  content: "";
  height: 1px;
  width: 20px;
  top: 50%;
  left: 0;
  position: absolute;
  background: #AAAAD1;
  display: block;
}

.solution_content_suggest_list_text {
  color: #FFFFFF;
  font-size: 1.8rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #FFFFFF;
}
@media screen and (max-width: 768px) {
  .solution_content_suggest_list_text {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.under_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1260px) {
  .under_link_list {
    display: block;
  }
}
.under_link_list .list_item {
  width: 50%;
  text-align: center;
  color: #FFFFFF;
  padding: 120px 0;
}
@media screen and (max-width: 1260px) {
  .under_link_list .list_item {
    padding: 50px 20px;
    width: 100%;
  }
}
.under_link_list .list_item:first-child {
  background: url("../img/top/link-list-img-01.jpg");
  background-size: cover;
}
.under_link_list .list_item:last-child {
  background: url("../img/top/link-list-img-02.jpg");
  background-size: cover;
}
.under_link_list .list_item > * {
  opacity: 0;
  top: 100px;
  position: relative;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.under_link_list .list_item.show > * {
  opacity: 1;
  top: 0;
}
@media screen and (max-width: 768px) {
  .under_link_list .circle_btn a {
    padding: 20px 0;
    width: 100%;
  }
}
.under_link_list .section_title_icon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.under_link_list .section_title_icon .white_box {
  background: #060540;
}
.under_link_list .section_title_icon .blue_box {
  background: #AAAAD1;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .under_link_list .section_title_icon .blue_box {
    margin-right: 0;
  }
}

.under_link_list_title {
  font-size: 5rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .under_link_list_title {
    font-size: 7vw;
    margin-bottom: 40px;
  }
}

.under_link_list_text {
  font-size: 1.8rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .under_link_list_text {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.common_page .inner {
  width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1480px) {
  .common_page .inner {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .common_page .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.common_page_intro_content {
  background-color: #060540;
  background-image: url("../img/common/background-gradation.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 112px;
}
@media screen and (max-width: 768px) {
  .common_page_intro_content {
    background-size: cover;
    padding-top: 132px;
  }
}

.common_page_intro {
  z-index: 2;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 500px;
}
@media screen and (max-width: 768px) {
  .common_page_intro {
    padding-bottom: calc(100vh - 375px);
  }
}
.common_page_intro.no_intro {
  padding-bottom: 0;
}

.line .common_page_intro {
  background-image: url("../img/service/service-line-intro.jpg");
}

.service_index.line .common_page_intro {
  background-image: url("../img/service/service-line-intro-02.jpg");
}

.common_page_intro_title {
  font-weight: 700;
  font-size: 7rem;
  padding: 100px 0;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .common_page_intro_title {
    font-size: 8vw;
    padding: 0;
    margin-bottom: 50px;
  }
}

.common_page_intro_sub_title {
  font-size: 5rem;
  color: #FFFFFF;
  padding-top: 120px;
}
@media screen and (max-width: 1260px) {
  .common_page_intro_sub_title {
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .common_page_intro_sub_title {
    font-size: 7vw;
    padding-top: 50px;
  }
}

.breadcrumbs_list_wrap {
  border-top: solid 1px #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
}

.breadcrumbs_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .breadcrumbs_list {
    padding: 10px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.breadcrumbs_list .list_item {
  color: #FFFFFF;
}
.breadcrumbs_list .list_item a {
  color: #FFFFFF;
  text-decoration: none;
}
.breadcrumbs_list .list_item a:hover {
  text-decoration: underline;
}
.breadcrumbs_list .list_item span {
  padding: 0 10px;
}

.common_page_intro_text {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .common_page_intro_text {
    padding: 30px 0;
  }
}
.common_page_intro_text p {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .common_page_intro_text p {
    font-size: 1.6rem;
  }
}

.common_page_intro_icon {
  position: relative;
}
.common_page_intro_icon img {
  position: absolute;
  bottom: -105px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .common_page_intro_icon img {
    height: 75px;
    width: 75px;
    bottom: 96px;
    right: 20px;
  }
}

.service_page_menu {
  background: #060540;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .service_page_menu {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1480px) {
  .service_page_menu .inner {
    margin-left: auto;
    margin-right: auto;
  }
}

.service_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1260px) {
  .service_menu_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.service_menu_list .list_item {
  width: calc((100% - 80px) / 5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1260px) {
  .service_menu_list .list_item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .service_menu_list .list_item:nth-child(3n) {
    margin-right: 0;
  }
}
.service_menu_list .list_item a {
  width: 100%;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  border: solid 1px #FFFFFF;
  display: block;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #060540;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1260px) {
  .service_menu_list .list_item a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.service_menu_list .list_item a .service_menu_list_icon {
  margin-bottom: 30px;
}
@media screen and (max-width: 1260px) {
  .service_menu_list .list_item a .service_menu_list_icon {
    margin-bottom: 10px;
  }
}
.service_menu_list .list_item a .service_menu_list_icon svg {
  height: 40px;
  width: auto;
  margin: 0 auto;
}
.service_menu_list .list_item a .service_menu_list_icon svg .cls-1 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service_menu_list .list_item a .service_menu_list_text {
  font-size: 2rem;
  color: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1260px) {
  .service_menu_list .list_item a .service_menu_list_text {
    font-size: 3vw;
    letter-spacing: -0.02em;
  }
}
.service_menu_list .list_item a .service_menu_list_text.one_line {
  line-height: 60px;
}
.service_menu_list .list_item a:hover {
  background: #FFFFFF;
}
.service_menu_list .list_item a:hover .cls-1 {
  fill: #060540;
}
.service_menu_list .list_item a:hover .service_menu_list_text {
  color: #060540;
}

.service_page_forte {
  padding-top: 150px;
  padding-bottom: 60px;
  background: url("../img/service/service-forte-bg.png");
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: #060540;
}
@media screen and (max-width: 768px) {
  .service_page_forte {
    padding-top: 50px;
    padding-bottom: 20px;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #060540;
  }
}
.service_page_forte .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1480px) {
  .service_page_forte .inner {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .service_page_forte .inner {
    display: block;
  }
}
.service_page_forte .left_content {
  width: 50%;
  padding-right: 80px;
}
@media screen and (max-width: 768px) {
  .service_page_forte .left_content {
    width: 100%;
    padding-right: 0;
  }
}
.service_page_forte .right_content {
  width: 50%;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .service_page_forte .right_content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.service_page_forte .right_content img {
  width: 534px;
  height: 492px;
}
@media screen and (max-width: 1260px) {
  .service_page_forte .right_content img {
    width: 100%;
    height: auto;
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .service_page_forte .right_content img {
    width: 80%;
    height: auto;
    display: inline;
  }
}

.service_page_forte_text,
.simple_content_text {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 2;
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .service_page_forte_text,
  .simple_content_text {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.service_forte_img {
  text-align: center;
  padding-top: 74px;
}
@media screen and (max-width: 768px) {
  .service_forte_img {
    padding: 0 20px;
  }
}
.service_forte_img img {
  display: inline;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  position: relative;
  top: 100px;
}
.service_forte_img img.active {
  opacity: 1;
  top: 0;
}

.service_page_product {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #060540;
}
@media screen and (max-width: 768px) {
  .service_page_product {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
.service_page_product .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1480px) {
  .service_page_product .inner {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .service_page_product .inner {
    display: block;
  }
}
.service_page_product .inner .left_content {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .service_page_product .inner .left_content {
    width: 100%;
    position: sticky;
    top: 82px;
    background: #060540;
    padding: 20px 0;
    z-index: 2;
  }
}
.service_page_product .inner .right_content {
  width: calc(100% - 167px);
  padding-left: 137px;
}
@media screen and (max-width: 768px) {
  .service_page_product .inner .right_content {
    width: 100%;
    padding-left: 0;
  }
}
.service_page_product .section_title {
  margin-bottom: 30px;
}

.service_page_product_sidebar {
  position: sticky;
  top: 150px;
}
.service_page_product_sidebar .list_item {
  margin-bottom: 20px;
}
.service_page_product_sidebar .list_item a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 700;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .service_page_product_sidebar .list_item a:hover {
    opacity: 1;
  }
}
.service_page_product_sidebar .list_item.current a {
  opacity: 1;
}

.transition_solid_btn_list {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .transition_solid_btn_list {
    margin-bottom: 50px;
  }
}
.transition_solid_btn_list .list_item {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .transition_solid_btn_list .list_item {
    margin-bottom: 30px;
  }
}
.transition_solid_btn_list .list_item a {
  border-radius: 10px;
  border: solid 1px #FFFFFF;
  padding: 40px 100px 40px 45px;
  color: #FFFFFF;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .transition_solid_btn_list .list_item a {
    padding: 20px;
  }
}
.transition_solid_btn_list .list_item a svg {
  position: absolute;
  right: 45px;
  top: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .transition_solid_btn_list .list_item a svg {
    display: none;
  }
}
.transition_solid_btn_list .list_item a svg .circle_36 {
  fill: none;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.transition_solid_btn_list .list_item a svg .path_27 {
  fill: none;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.transition_solid_btn_list .list_item a svg .path_28 {
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.transition_solid_btn_list .list_item a:hover {
  background: #FFFFFF;
  color: #060540;
}
.transition_solid_btn_list .list_item a:hover svg .circle_36 {
  stroke: #060540;
}
.transition_solid_btn_list .list_item a:hover svg .path_27 {
  stroke: #060540;
}
.transition_solid_btn_list .list_item a:hover svg .path_28 {
  stroke: #060540;
}
.transition_solid_btn_list .list_item a .transition_solid_btn_list_title {
  font-size: 3rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .transition_solid_btn_list .list_item a .transition_solid_btn_list_title {
    font-size: 6vw;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .transition_solid_btn_list .list_item a .service_page_product_text {
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .transition_solid_btn_list .list_item a .transition_solid_btn_list_img {
    display: inline;
    width: 6vw;
    position: relative;
    top: 1vw;
    left: 10px;
  }
}

.service_page_case_study {
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service_page_case_study {
    padding: 50px 0;
  }
}

.casestudy_text_icon {
  position: absolute;
  top: -125px;
  right: 0;
}
@media screen and (max-width: 1260px) {
  .casestudy_text_icon {
    top: -8vw;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .casestudy_text_icon {
    top: -35px;
    width: 80%;
  }
}

.casestudy_bg,
.hardware_bg {
  position: fixed;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url("../img/service/casestudy-bg.jpg");
  background-size: cover;
  height: 100vh;
  width: 100%;
}
.casestudy_bg img,
.hardware_bg img {
  width: 100%;
}

.service_page_case_study_title_wrap .section_title_icon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service_page_case_study_title_wrap .section_title_icon .blue_box {
  margin-right: 0;
}
.service_page_case_study_title_wrap .section_title {
  text-align: center;
}

.service_page_case_study_list .list_item,
.under_slider .list_item {
  background: #FFFFFF;
  padding: 32px 26px;
  border-radius: 20px;
  margin: 0 16px;
  width: 471px;
}
@media screen and (max-width: 768px) {
  .service_page_case_study_list .list_item,
  .under_slider .list_item {
    margin: 0 20px;
    padding: 20px;
    border-radius: 10px;
  }
}
.service_page_case_study_list .list_item a,
.under_slider .list_item a {
  text-decoration: none;
  color: #060540;
}

.slick-list {
  margin: 64px 0;
}
@media screen and (max-width: 768px) {
  .slick-list {
    margin: 32px 0;
  }
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slick-dots li {
  margin: 10px;
  background: #AAAAD1;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  display: block;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background: #efeff7;
}
.slick-dots li button {
  display: none;
}

.service_page_case_study_list_title,
.under_slider_list_title {
  font-size: 3rem;
  margin-bottom: 18px;
  color: #060540;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .service_page_case_study_list_title,
  .under_slider_list_title {
    font-size: 6vw;
    line-height: 1.4;
  }
}

.service_page_case_study_list_text,
.under_slider_list_text {
  line-height: 1.9;
  margin-bottom: 30px;
  color: #060540;
}
@media screen and (max-width: 768px) {
  .service_page_case_study_list_text,
  .under_slider_list_text {
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

.service_page_case_study_list_icon,
.under_slider_list_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .service_page_case_study_list_icon,
  .under_slider_list_icon {
    display: block;
  }
}
.service_page_case_study_list_icon span,
.under_slider_list_icon span {
  border: solid 1px #060540;
  padding: 5px 10px;
  font-size: 1.4rem;
  border-radius: 50px;
  margin-right: 10px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .service_page_case_study_list_icon span,
  .under_slider_list_icon span {
    display: inline-block;
    margin-bottom: 10px;
  }
  .service_page_case_study_list_icon span:last-of-type,
  .under_slider_list_icon span:last-of-type {
    margin-bottom: 0;
  }
}

.service_detail {
  background-color: #060540;
  background-image: url("../img/common/background-gradation.png");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .service_detail {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1260px) {
  .service_detail {
    background-size: 100% calc(100vh + 310px);
  }
}
.service_detail .common_page_intro_content {
  background-image: none;
  background-color: transparent;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .service_detail .common_page_intro_content {
    margin-bottom: 80px;
  }
}
.service_detail .section_title_wrap:after {
  content: url("../img/service/title_icon.png");
  position: absolute;
  left: 0;
  margin-top: -220px;
}
@media screen and (max-width: 768px) {
  .service_detail .section_title_wrap:after {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.3;
  }
}
.service_detail .circle_btn a {
  border: solid 2px #FFFFFF;
}

.service_page_template,
.news_page_template {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .service_page_template,
  .news_page_template {
    margin-bottom: 50px;
  }
}
.service_page_template .section_title_wrap,
.news_page_template .section_title_wrap {
  margin-bottom: 34px;
}
.service_page_template_content,
.news_page_template_content {
  padding: 80px;
  background: #FFFFFF;
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service_page_template_content,
  .news_page_template_content {
    padding: 40px 30px;
    border-radius: 20px;
  }
  .service_page_template_content:last-of-type,
  .news_page_template_content:last-of-type {
    margin-bottom: 0;
  }
}
.service_page_template_content .section_title_icon .square_box.white_box,
.news_page_template_content .section_title_icon .square_box.white_box {
  background: #060540;
}
.service_page_template_content .section_title_icon span,
.news_page_template_content .section_title_icon span {
  color: #060540;
}

.service_page_template_content_title .section_title {
  font-size: 2.8rem;
  margin-bottom: 65px;
  color: #060540;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_title .section_title {
    font-size: 6vw;
    margin-bottom: 30px;
  }
}

.service_page_template_content_sub_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_sub_title {
    font-size: 5vw;
    margin-bottom: 30px;
  }
}

.service_page_template_content_text {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_text {
    margin-bottom: 0;
  }
}
.service_page_template_content_text p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_text p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.service_page_template_content_text.right_text {
  text-align: right;
}

.feature_list {
  border-bottom: 1px dashed #060540;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .feature_list {
    margin-bottom: 50px;
  }
}
.feature_list .list_item {
  margin-bottom: 33px;
}
.feature_list .list_item .section_title {
  margin-bottom: 0;
}

.ip_transit .feature_detail_list {
  margin-bottom: 0;
}

.feature_detail_list {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .feature_detail_list {
    margin-bottom: 50px;
  }
}
.feature_detail_list .list_item {
  padding: 33px 0;
  border-bottom: 1px dashed #060540;
}
.feature_detail_list .list_item:first-child {
  padding-top: 0;
}

.feature_detail_list_title {
  overflow: hidden;
  margin-bottom: 22px;
}
.feature_detail_list_title .feature_detail_list_title_label {
  float: left;
  line-height: 1;
  color: #FFFFFF;
  border-radius: 50px;
  background: #060540;
  font-weight: 700;
  padding: 10px 20px;
}
@media screen and (max-width: 1260px) {
  .feature_detail_list_title .feature_detail_list_title_label {
    float: none;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.6rem;
    width: auto;
  }
}
.feature_detail_list_title .feature_detail_list_title_text {
  float: left;
  font-size: 2.2rem;
  line-height: 1.8;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .feature_detail_list_title .feature_detail_list_title_text {
    font-size: 6vw;
  }
}
@media screen and (max-width: 1260px) {
  .feature_detail_list_title .feature_detail_list_title_text {
    float: none;
    width: 100%;
    display: block;
    padding-left: 0;
  }
}

.feature_detail_list_text p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .feature_detail_list_text p {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.feature_detail_table_01_wrap {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .feature_detail_table_01_wrap {
    margin-bottom: 50px;
  }
}
.feature_detail_table_01_wrap .feature_detail_table_01_title {
  font-size: 1.8rem;
  margin-bottom: 33px;
}
.feature_detail_table_01_wrap .feature_detail_table_01 {
  overflow: hidden;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.feature_detail_table_01_wrap .feature_detail_table_01 dt {
  background: #AAAAD1;
  padding: 16px 20px;
  float: left;
  width: 330px;
  margin-right: 4px;
  margin-bottom: 4px;
  font-weight: 700;
}
@media screen and (max-width: 1260px) {
  .feature_detail_table_01_wrap .feature_detail_table_01 dt {
    float: none;
    width: 100%;
  }
}
.feature_detail_table_01_wrap .feature_detail_table_01 dd {
  background: #EFEFF7;
  padding: 16px 20px;
  float: left;
  width: calc(100% - 334px);
  margin-bottom: 4px;
}
@media screen and (max-width: 1260px) {
  .feature_detail_table_01_wrap .feature_detail_table_01 dd {
    float: none;
    width: 100%;
  }
}
.feature_detail_table_01_wrap .feature_detail_table_01_text {
  font-size: 1.2rem;
}

.feature_detail_table_02_wrap {
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
}
@media screen and (max-width: 1260px) {
  .feature_detail_table_02_wrap .feature_detail_table_02_box {
    overflow-x: scroll;
  }
}
.feature_detail_table_02_wrap .feature_detail_table_02_title {
  margin-bottom: 33px;
}
.feature_detail_table_02_wrap .feature_detail_table_02 {
  border-collapse: collapse;
  margin-bottom: 16px;
}
@media screen and (max-width: 1260px) {
  .feature_detail_table_02_wrap .feature_detail_table_02 {
    white-space: nowrap;
    font-size: 1.6rem;
  }
}
.feature_detail_table_02_wrap th {
  background: #AAAAD1;
  font-weight: 700;
  padding: 16px;
  border-collapse: collapse;
  border: solid 4px #FFFFFF;
}
.feature_detail_table_02_wrap td {
  background: #EFEFF7;
  padding: 16px;
  border-collapse: collapse;
  border: solid 4px #FFFFFF;
}
.feature_detail_table_02_wrap .feature_detail_table_02_text {
  font-size: 1.2rem;
}
@media screen and (max-width: 1260px) {
  .feature_detail_table_02_wrap .feature_detail_table_02_text {
    white-space: nowrap;
  }
}

.example_content {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .example_content {
    margin-bottom: 50px;
  }
  .example_content:last-of-type {
    margin-bottom: 0;
  }
}

.example_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.8rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .example_title {
    font-size: 6vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.example_title span {
  display: block;
  margin-right: 45px;
}
@media screen and (max-width: 768px) {
  .example_title span {
    margin-right: 20px;
    line-height: 1.7;
  }
}

.example_sub_title {
  font-size: 2.2rem;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .example_sub_title {
    font-size: 5vw;
    margin-bottom: 30px;
  }
}

.feature_detail_list_text {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .feature_detail_list_text {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.light_bg_fill {
  padding: 32px;
  background: #EFEFF7;
}
@media screen and (max-width: 768px) {
  .light_bg_fill {
    padding: 20px;
  }
}
.light_bg_fill .light_bg_sub_title {
  margin-bottom: 12px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .light_bg_fill .light_bg_sub_title {
    margin-bottom: 20px;
    font-size: 5vw;
  }
}

.common_flow_list .list_item {
  position: relative;
  margin-bottom: 38px;
}
.common_flow_list .list_item:last-child::before {
  content: none;
}
@media screen and (max-width: 768px) {
  .common_flow_list .list_item:last-child {
    margin-bottom: 0;
  }
}
.common_flow_list .list_item::before {
  content: "";
  height: 77%;
  width: 5px;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 15px;
  background: #EFEFF7;
}
@media screen and (max-width: 768px) {
  .common_flow_list .list_item::before {
    top: 47px;
    left: 8px;
    height: 100%;
  }
}

.common_flow_list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .common_flow_list_title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.common_flow_list_title_num {
  font-family: "Lato";
  font-weight: 900;
  font-style: italic;
  font-size: 5rem;
  color: #AAAAD1;
  margin-right: 27px;
  background: #FFFFFF;
  padding: 10px 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .common_flow_list_title_num {
    font-size: 8vw;
  }
}

.common_flow_list_title_text {
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .common_flow_list_title_text {
    font-size: 6vw;
  }
}

.common_flow_list_content {
  margin-left: 70px;
  border-bottom: dashed 1px #060540;
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .common_flow_list_content {
    margin-left: 40px;
  }
}
.common_flow_list_content p {
  font-size: 1.8rem;
  line-height: 1.8;
}

.personal .transition_solid_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1480px) {
  .personal .transition_solid_btn_list {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1260px) {
  .personal .transition_solid_btn_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.personal .transition_solid_btn_list .list_item {
  width: 48%;
}
@media screen and (max-width: 1260px) {
  .personal .transition_solid_btn_list .list_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.personal .transition_solid_btn_list .list_item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.personal .transition_solid_btn_list .list_item a svg {
  display: block;
}
.personal .transition_solid_btn_list .list_item .transition_solid_btn_list_title {
  margin-bottom: 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .personal .transition_solid_btn_list .list_item .transition_solid_btn_list_title {
    font-size: 5vw;
  }
}
.personal .feature_detail_list .list_item {
  padding: 26px 0;
}
.personal .feature_detail_list .list_item:first-child {
  padding-top: 0;
}
.personal .section_title {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .personal #yokosuka_map,
  .personal #iwakuni_map {
    height: 380px;
  }
}

.service_page_template_content_box {
  border-bottom: dashed 1px #060540;
  margin-bottom: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_box {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.service_page_template_content_box:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_box .light_bg_fill {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .service_page_template_content_box .light_bg_fill .light_bg_sub_title {
    margin-bottom: 10px;
  }
}

.service_page_template_content_box_text {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_box_text {
    margin-bottom: 30px;
  }
}

.service_page_template_content_box_img {
  opacity: 0;
  top: 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.service_page_template_content_box_img.active {
  opacity: 1;
  top: 0;
}
.service_page_template_content_box_img .border {
  border: solid 4px #e6e4e5;
}

.recruit .common_page_intro {
  background-image: url("../img/recruit/recruit-bg.jpg");
}
@media screen and (max-width: 1480px) {
  .recruit .common_page_intro .common_page_intro_content {
    background-size: auto;
  }
}
.recruit.common_page .inner {
  margin-left: auto;
  margin-right: auto;
}
.recruit .simple_content {
  border-bottom: solid 1px #AAAAD1;
}

.simple_content {
  background: #060540;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .simple_content {
    padding: 50px 0;
  }
}
.simple_content .simple_content_text {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .simple_content .simple_content_text {
    margin-bottom: 0;
  }
}

.recruit_type {
  background: #060540;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .recruit_type {
    padding: 50px 0;
  }
}
.recruit_type .transition_solid_btn_list {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1260px) {
  .recruit_type .transition_solid_btn_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }
}
.recruit_type .transition_solid_btn_list .list_item {
  width: 48%;
}
@media screen and (max-width: 1260px) {
  .recruit_type .transition_solid_btn_list .list_item {
    width: 100%;
  }
}
.recruit_type .transition_solid_btn_list .list_item a .transition_solid_btn_list_title {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .recruit_type .transition_solid_btn_list .list_item a .transition_solid_btn_list_title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .recruit_type .transition_solid_btn_list .list_item a svg {
    display: block;
    width: 35px;
    top: calc(50% - 17px);
    right: 20px;
  }
}

.dot_bottom_table_wrap {
  color: #FFFFFF;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .dot_bottom_table_wrap {
    margin-top: 100px;
  }
}

.dot_bottom_table_title {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .dot_bottom_table_title {
    margin-bottom: 0;
  }
}

.dot_bottom_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.8rem;
}
.dot_bottom_table dt,
.dot_bottom_table dd {
  border-bottom: dashed 1px #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 2.2;
}
.dot_bottom_table dt {
  width: 350px;
  padding-left: 30px;
}
@media screen and (max-width: 1260px) {
  .dot_bottom_table dt {
    width: 100%;
    border-bottom: none;
    padding-left: 0;
    padding-bottom: 10px;
  }
}
.dot_bottom_table dd {
  width: calc(100% - 350px);
  position: relative;
  left: 1px;
}
@media screen and (max-width: 1260px) {
  .dot_bottom_table dd {
    width: 100%;
    padding-top: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1260px) {
  .dot_bottom_table dd ul li,
  .dot_bottom_table dd ol li {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .dot_bottom_table dd ul li:last-child,
  .dot_bottom_table dd ol li:last-child {
    margin-bottom: 0;
  }
}
.dot_bottom_table dd ol {
  list-style-type: decimal;
  padding-left: 20px;
}

.recruit_flow {
  position: relative;
}
.recruit_flow:after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: #060540;
  top: 0;
  left: 0;
  position: absolute;
}
.recruit_flow .recruit_flow_content {
  background: #FFFFFF;
  border-radius: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1260px) {
  .recruit_flow .recruit_flow_content {
    border-radius: 10px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.recruit_flow .recruit_flow_content .section_title_icon .square_box.white_box {
  background: #060540;
}
.recruit_flow .recruit_flow_content .section_title {
  color: #181777;
}
.recruit_flow .recruit_flow_content .common_flow_list {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .recruit_flow .recruit_flow_content .common_flow_list {
    margin-top: 0;
  }
}

.recruit_contact {
  padding-top: 120px;
  padding-bottom: 120px;
}
.recruit_contact .inner {
  width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1480px) {
  .recruit_contact .inner {
    width: 90%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit_contact .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .recruit_contact {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .recruit_contact .section_title_icon {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.recruit_contact .section_title_icon .square_box.white_box {
  background: #060540;
}
.recruit_contact .section_title_wrap {
  margin-bottom: 65px;
}
.recruit_contact .circle_btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .recruit_contact .circle_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.recruit_contact .circle_btn a {
  padding: 22px 48px;
}
@media screen and (max-width: 768px) {
  .recruit_contact .circle_btn a {
    width: 100%;
  }
}
.recruit_contact .circle_btn a .mail_icon {
  height: 16px;
  width: 20px;
}
.recruit_contact .circle_btn a .path12 {
  fill: none;
  stroke: #181777;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.recruit_contact .circle_btn a .path13 {
  fill: none;
  stroke: #181777;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.recruit_contact .circle_btn a:hover .path12 {
  fill: none;
  stroke: #FFFFFF;
}
.recruit_contact .circle_btn a:hover .path13 {
  fill: none;
  stroke: #FFFFFF;
}

.recruit_bg {
  position: fixed;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url("../img/recruit/recruit-under-bg.jpg");
  background-size: cover;
  margin-top: 0;
  height: 100vh;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruit_bg {
    background-position: center;
  }
}
.recruit_bg img {
  width: 100%;
}

.company .common_page_intro {
  background-image: url("../img/company/companyr-bg.jpg");
}
.company .common_page_intro_content {
  background-size: cover;
}
@media screen and (max-width: 1480px) {
  .company .inner {
    padding-left: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .company .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.our_network {
  background-image: url("../img/company/our_network_bg.jpg");
  background-size: 100%;
  background-position: bottom;
  background-color: #060540;
  background-repeat: no-repeat;
}

.our_network_img {
  text-align: center;
  padding-top: 64px;
}
@media screen and (max-width: 768px) {
  .our_network_img {
    padding: 0 20px;
  }
}
.our_network_img img {
  display: inline;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  position: relative;
  top: 100px;
  margin: 0 auto;
}
.our_network_img img.active {
  opacity: 1;
  top: 0;
}

.company_overview {
  background: #060540;
  padding-top: 120px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .company_overview {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .company_overview .section_title {
    margin-bottom: 30px;
  }
}
.company_overview .dot_bottom_table_wrap {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .company_overview .dot_bottom_table_wrap {
    margin-top: 0;
  }
}

.dot_bottom_table_top {
  border-bottom: dashed 1px #FFFFFF;
  margin-bottom: 30px;
}
.dot_bottom_table_top p {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.dot_bottom_table_top img {
  margin-bottom: 30px;
}

.dot_bottom_table_bottom p {
  margin-bottom: 30px;
}
.dot_bottom_table_bottom p a {
  color: #FFFFFF;
}
.dot_bottom_table_bottom p a:hover {
  text-decoration: none;
}

.office_info {
  margin-bottom: 50px;
  line-height: 2.2;
}
.office_info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.office_info:last-of-type {
  margin-bottom: 0;
}

.company_location {
  padding: 70px 0 200px;
  background: #060540;
}
@media screen and (max-width: 768px) {
  .company_location {
    padding: 50px 0 100px;
  }
}
.company_location .section_title {
  letter-spacing: 0.02em;
}

.map_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.map_list .list_item {
  width: calc(50% - 30px);
  margin-bottom: 60px;
}
@media screen and (max-width: 1260px) {
  .map_list .list_item {
    width: 100%;
  }
}
.map_list .list_item:first-child {
  width: 100%;
}
.map_list .list_item:first-child .map_area {
  width: 100%;
  height: 520px;
}
@media screen and (max-width: 768px) {
  .map_list .list_item:first-child .map_area {
    height: 200px;
  }
}
@media screen and (max-width: 1260px) {
  .map_list .list_item:first-child .map_area {
    height: 380px;
  }
}
.map_list .list_item:first-child .map_area iframe {
  width: 100%;
  height: 520px;
}
@media screen and (max-width: 768px) {
  .map_list .list_item:first-child .map_area iframe {
    height: 200px;
  }
}
@media screen and (max-width: 1260px) {
  .map_list .list_item:first-child .map_area iframe {
    height: 380px;
  }
}
.map_list .list_item:first-child .map_area_info_title {
  width: 195px;
}
@media screen and (max-width: 1260px) {
  .map_list .list_item:first-child .map_area_info_title {
    width: 100%;
  }
}
.map_list .list_item:first-child .map_area_info_address {
  font-size: 1.8rem;
}
@media screen and (max-width: 1260px) {
  .map_list .list_item:first-child .map_area_info_address {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1260px) {
  .map_list .list_item:last-child {
    margin-bottom: 0;
  }
}
.map_list .list_item .map_area {
  width: 100%;
  height: 380px;
  background: #d3d3d3;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .map_list .list_item .map_area {
    height: 200px;
  }
}
.map_list .list_item .map_area iframe {
  width: 100%;
  height: 380px;
}
@media screen and (max-width: 768px) {
  .map_list .list_item .map_area iframe {
    height: 200px;
  }
}

.map_area_info {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1260px) {
  .map_area_info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-left: solid #FFFFFF 4px;
    padding-left: 20px;
  }
}

.map_area_info_title {
  width: 140px;
  text-align: center;
  font-size: 2.8rem;
  padding: 50px 0;
  border-right: solid 1px #FFFFFF;
  line-height: 1;
}
@media screen and (max-width: 1260px) {
  .map_area_info_title {
    font-size: 5vw;
    width: 100%;
    border-right: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    margin-bottom: 10px;
  }
}

.map_area_info_address {
  padding-left: 32px;
  line-height: 2;
}
@media screen and (max-width: 1260px) {
  .map_area_info_address {
    width: 100%;
    padding-left: 0;
  }
}

.news .transition_solid_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 1630px) {
  .news .transition_solid_btn_list {
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .news .transition_solid_btn_list {
    padding-right: 20px;
  }
}
.news .transition_solid_btn_list .list_item {
  width: calc((100% - 60px) / 4);
  position: relative;
  margin-bottom: 30px;
  margin-right: 20px;
}
.news .transition_solid_btn_list .list_item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1260px) {
  .news .transition_solid_btn_list .list_item .transition_solid_btn_list_title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .news .transition_solid_btn_list .list_item .transition_solid_btn_list_title {
    font-size: 4vw;
  }
}
.news .transition_solid_btn_list .list_item a {
  padding: 10px 20px 10px 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news .transition_solid_btn_list .list_item a {
    padding: 10px;
  }
}
.news .transition_solid_btn_list .list_item a .news_arrow {
  position: absolute;
  top: calc(50% - 6px);
}
@media screen and (max-width: 1260px) {
  .news .transition_solid_btn_list .list_item a .news_arrow {
    right: 20px;
  }
}
.news .transition_solid_btn_list .list_item a .news_arrow .path_27 {
  fill: none;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .transition_solid_btn_list .list_item a .news_arrow .path_28 {
  fill: none;
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .transition_solid_btn_list .list_item a.active {
  color: #060540;
  background: #FFFFFF;
}
.news .transition_solid_btn_list .list_item a.active .path_27 {
  stroke: #060540;
}
.news .transition_solid_btn_list .list_item a.active .path_28 {
  stroke: #060540;
}
.news .transition_solid_btn_list .list_item:hover a .news_arrow .path_27 {
  stroke: #060540;
}
.news .transition_solid_btn_list .list_item:hover a .news_arrow .path_28 {
  stroke: #060540;
}

.news_list .list_item {
  border-bottom: dashed 2px #060540;
  padding: 40px 20px;
}
.news_list .list_item .section_title {
  margin-bottom: 10px;
}
.news_list .list_item .service_page_template_content_text {
  margin-bottom: 0;
}
.news_list .list_item .service_page_template_content_text a {
  color: #060540;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}
.news_list .list_item .service_page_template_content_text a::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  display: inline-block;
  bottom: -3px;
  left: 0;
  background: #060540;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.news_list .list_item .service_page_template_content_text a:hover::after {
  opacity: 0;
}

.content_link_circle.circle_btn {
  margin-top: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.content_link_circle.circle_btn a {
  border: solid 2px #060540;
  background: #060540;
  color: #FFFFFF;
  font-size: 1.4rem;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .content_link_circle.circle_btn a {
    padding: 10px 20px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .content_link_circle.circle_btn a svg {
    display: none;
  }
}
.content_link_circle.circle_btn a .path_27 {
  stroke: #FFFFFF !important;
  fill: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.content_link_circle.circle_btn a .path_28 {
  stroke: #FFFFFF !important;
  fill: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.content_link_circle.circle_btn a .pdf_icon {
  margin-right: 10px;
}
.content_link_circle.circle_btn a:hover {
  background: #FFFFFF;
  color: #060540;
}
.content_link_circle.circle_btn a:hover .path_27 {
  stroke: #060540 !important;
}
.content_link_circle.circle_btn a:hover .path_28 {
  stroke: #060540 !important;
}
.content_link_circle.circle_btn a:hover .pdf_icon {
  fill: #060540;
}

.hardware .service_page_template_content_box_img {
  margin-bottom: 35px;
}
.hardware .service_page_template_content_box_text {
  margin-bottom: 0;
}
.hardware .content_link_circle {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .hardware .content_link_circle {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hardware.detail {
  padding-bottom: 100px;
}
.hardware.detail .section_title_icon {
  margin-bottom: 33px;
}
.hardware.detail .section_title_icon h3 {
  color: #060540;
  font-size: 1.8rem;
}
.hardware.detail .service_page_template_content_box_text p {
  margin-bottom: 20px;
}
.hardware.detail .service_page_template_content_box_text p:last-of-type {
  margin-bottom: 20px;
}

.under_slider {
  padding: 120px 0;
  position: relative;
}
.under_slider .section_title_icon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.under_slider .section_title {
  text-align: center;
}
.under_slider .under_slider_list .list_item {
  padding: 0;
}
.under_slider .under_slider_list .list_item a {
  color: #060540;
  text-decoration: none;
  padding: 32px 26px;
  display: block;
  border: solid 4px #FFFFFF;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.under_slider .under_slider_list .list_item a:hover {
  border: solid 4px #060540;
}
.under_slider .under_slider_list .list_item .under_slider_list_icon {
  margin-top: 20px;
}

.image_text_list .list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1260px) {
  .image_text_list .list_item {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .image_text_list .list_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.image_text_list .list_item .image_text_list_img {
  width: 50%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .image_text_list .list_item .image_text_list_img {
    width: 100%;
  }
}
.image_text_list .list_item .image_text_list_content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .image_text_list .list_item .image_text_list_content {
    width: 100%;
  }
}
.image_text_list .list_item .image_text_list_content .image_text_list_content_title {
  margin-bottom: 30px;
  font-size: 2.4rem;
}
.image_text_list .list_item .image_text_list_content .image_text_list_content_text {
  line-height: 2;
  margin-bottom: 30px;
}

.tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
}
.tag_list .list_item {
  border: solid 1px #060540;
  background: #060540;
  color: #FFFFFF;
  padding: 5px 20px;
  font-size: 1.4rem;
  border-radius: 50px;
  margin-right: 10px;
  font-weight: 700;
  margin-right: 20px;
}

.hardware_bg {
  background-image: url("../img/hardware/hardware_bg.jpg");
}

.contact.service_detail {
  padding-bottom: 100px;
}
.contact .content_link_circle.circle_btn {
  margin-top: 50px;
}
.contact .content_link_circle.circle_btn a {
  font-size: 1.8rem;
  padding: 20px 80px;
}

.contact {
  /*Checkboxes styles*/
}
.contact .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact .boxes.agree {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .boxes .boxes_item {
  margin-right: 20px;
}
.contact .boxes a {
  color: #060540;
  font-weight: 700;
  text-decoration: underline;
}
.contact .boxes a:hover {
  text-decoration: none;
}
.contact input[type=checkbox] {
  display: none;
}
.contact input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
}
.contact input[type=checkbox] + label:last-child {
  margin-bottom: 0;
}
.contact input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #AAAAD1;
  position: absolute;
  left: 0;
  top: 4px;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}
.contact input[type=checkbox]:checked + label:before {
  width: 10px;
  top: -1px;
  left: 5px;
  border-radius: 0;
  border: 2px solid #060540;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contact input[type=text],
.contact input[type=email],
.contact textarea {
  background: #EFEFF7;
  border: none;
  line-height: 1.6;
  padding: 10px 20px;
  width: 100%;
  border-radius: 5px;
  letter-spacing: 0.02em;
}
.contact input:focus {
  outline: none;
  border: solid 2px #060540;
}
.contact label span {
  padding-left: 10px;
  color: #F3790A;
}
.contact textarea {
  height: 300px;
}

.contact_form.confirmation dd {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .contact_form.confirmation .submit_btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contact_form.confirmation .submit_btn button {
  margin: 0 20px;
}
@media screen and (max-width: 1260px) {
  .contact_form.confirmation .submit_btn button {
    padding: 20px 35px;
  }
}
@media screen and (max-width: 768px) {
  .contact_form.confirmation .submit_btn button {
    width: 100%;
    margin-bottom: 20px;
  }
}

.contact_form_table {
  margin-bottom: 50px;
}
.contact_form_table dt {
  font-weight: 700;
  margin-bottom: 20px;
}
.contact_form_table dd {
  margin-bottom: 30px;
}
.contact_form_table .error_text {
  color: #F3790A;
  margin-top: 20px;
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
}

.submit_btn.active button {
  background: #060540;
  color: #FFFFFF;
  border: solid 2px #060540;
  pointer-events: all;
}
.submit_btn.active button:hover {
  background: #FFFFFF;
  color: #060540;
}
.submit_btn button {
  background: #d3d3d3;
  color: #3d3d3d;
  border: none;
  pointer-events: none;
}
.submit_btn button.back_btn {
  background: #FFFFFF;
  color: #060540;
  border: solid 2px #060540;
  pointer-events: all;
}
.submit_btn button.back_btn:hover {
  background: #060540;
  color: #FFFFFF;
}
.submit_btn button.active_btn {
  background: #060540;
  color: #FFFFFF;
  border: solid 2px #060540;
  pointer-events: all;
}
.submit_btn button.active_btn:hover {
  background: #FFFFFF;
  color: #060540;
}

.news_page_template_content {
  line-height: 2;
}
.news_page_template_content p {
  margin-bottom: 30px;
}
.news_page_template_content a {
  color: #060540;
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news_page_template_content a:hover {
  text-decoration: none;
}
.news_page_template_content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.news_page_template_content ul li {
  margin-bottom: 10px;
  list-style: disc;
}
.news_page_template_content img {
  display: block;
  margin-bottom: 30px;
  max-width: 100%;
  width: auto;
  height: auto;
}
.news_page_template_content h2 {
  margin-bottom: 30px;
  margin-top: 80px;
  position: relative;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .news_page_template_content h2 {
    font-size: 6vw;
  }
}
.news_page_template_content h2::before {
  content: "";
  height: 10px;
  width: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  background: #060540;
}
.news_page_template_content h2::after {
  content: "";
  height: 10px;
  width: 10px;
  display: block;
  position: absolute;
  left: 20px;
  top: -30px;
  background: #AAAAD1;
}
.news_page_template_content h3 {
  margin-bottom: 30px;
  margin-top: 50px;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .news_page_template_content h3 {
    font-size: 5vw;
  }
}

ul.news_page_template_content_meta {
  padding-left: 0;
  list-style-type: none;
  padding-bottom: 30px;
  border-bottom: dashed 2px #060540;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
ul.news_page_template_content_meta li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  margin-right: 30px;
}
ul.news_page_template_content_meta li:last-child {
  margin-right: 0;
}
ul.news_page_template_content_meta li svg {
  fill: #060540;
  margin-right: 10px;
}

@media screen and (max-width: 1480px) {
  .news_detail .common_page_intro_title {
    padding-right: 50px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .news_detail .common_page_intro_title {
    padding-right: 0;
  }
}

ul.news_page_template_content_pager {
  padding-left: 0;
  list-style-type: none;
  padding-top: 100px;
  margin-top: 100px;
  border-top: dashed 2px #060540;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  ul.news_page_template_content_pager {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
ul.news_page_template_content_pager li {
  list-style-type: none;
  width: 48%;
}
@media screen and (max-width: 1260px) {
  ul.news_page_template_content_pager li {
    width: 100%;
    margin-bottom: 50px;
  }
}
ul.news_page_template_content_pager li.prev {
  float: left;
}
ul.news_page_template_content_pager li.prev a svg {
  position: absolute;
  left: 10px;
  top: calc(50% - 8px);
}
ul.news_page_template_content_pager li.prev a span {
  padding-left: 40px;
  padding-right: 20px;
}
ul.news_page_template_content_pager li.next {
  float: right;
}
@media screen and (max-width: 1260px) {
  ul.news_page_template_content_pager li.next {
    margin-bottom: 0;
  }
}
ul.news_page_template_content_pager li.next a svg {
  position: absolute;
  right: 10px;
  top: calc(50% - 8px);
}
ul.news_page_template_content_pager li.next a span {
  padding-right: 40px;
  padding-left: 20px;
}
ul.news_page_template_content_pager li a {
  text-decoration: none;
  border-radius: 50px;
  background: #060540;
  color: #FFFFFF;
  width: 100%;
  padding: 10px;
  display: block;
  text-align: center;
  border: solid 2px #060540;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1260px) {
  ul.news_page_template_content_pager li a {
    padding: 20px 10px;
    text-align: left;
    border-radius: 100px;
    line-height: 1.2;
  }
}
ul.news_page_template_content_pager li a:hover {
  background: #FFFFFF;
  color: #060540;
}
ul.news_page_template_content_pager li a:hover svg {
  fill: #060540;
}
ul.news_page_template_content_pager li a svg {
  fill: #FFFFFF;
  padding: 0 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service_page_template_content_list {
  list-style-type: decimal;
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 40px 60px 60px;
}
.service_page_template_content_list .list_item {
  margin-bottom: 30px;
}
.service_page_template_content_list .list_item:last-child {
  margin-bottom: 0;
}

.service_page_template_content_list_disc {
  list-style-type: disc;
  font-size: 1.8rem;
  line-height: 1.6;
  padding-left: 40px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_list_disc {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
.service_page_template_content_list_disc .list_item {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_list_disc .list_item {
    margin-bottom: 20px;
  }
}
.service_page_template_content_list_disc .list_item:last-child {
  margin-bottom: 0;
}

.service_page_template_content_area {
  margin-bottom: 128px;
}
@media screen and (max-width: 768px) {
  .service_page_template_content_area {
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 1480px) {
  .plla .common_page_intro_title {
    padding-right: 50px;
    line-height: 1.4;
  }
}
.plla .service_page_template_content_list {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  .plla .service_page_template_content_list {
    padding-left: 20px;
  }
}
.plla .service_page_template_content_list .list_item {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .plla .service_page_template_content_list .list_item {
    margin-bottom: 20px;
  }
}
.plla .service_page_template_content_sub_title {
  margin-top: 68px;
}
.plla a {
  color: #060540;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.plla a::after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  display: inline-block;
  bottom: -3px;
  left: 0;
  background: #060540;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.plla a:hover {
  text-decoration: none;
}
.plla a:hover::after {
  opacity: 0;
}
.plla .common_flow_list_title {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .plla .common_flow_list_title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .plla .service_page_template_content_list_disc {
    padding-left: 20px;
  }
}

@media screen and (min-width: 769px) {
  #personal_01,
  #personal_02 {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.g_colo #service_img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1260px) {
  .g_colo #service_img_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.g_colo #service_img_wrap .service_page_template_content_box_img {
  width: 50%;
}
@media screen and (max-width: 1260px) {
  .g_colo #service_img_wrap .service_page_template_content_box_img {
    width: 100%;
  }
}
@media screen and (max-width: 1260px) {
  .g_colo #service_img_wrap .service_page_template_content_box_img img {
    margin: 0 auto;
  }
}

.g_colo_gc4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1260px) {
  .g_colo_gc4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.g_colo_gc4 .list_item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1260px) {
  .g_colo_gc4 .list_item {
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }
  .g_colo_gc4 .list_item:last-child {
    margin-bottom: 0;
  }
  .g_colo_gc4 .list_item:first-child {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .g_colo_gc4 .list_item {
    width: 100%;
  }
  .g_colo_gc4 .list_item:first-child {
    margin-right: 0;
  }
}
.g_colo_gc4 .list_item .service_page_template_content_box_img {
  width: 100% !important;
}
.g_colo_gc4 .list_item .service_page_template_content_box_img img {
  width: 100%;
}
.g_colo_gc4 .list_item .section_title {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1260px) {
  .g_colo_gc4 .list_item .section_title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .g_colo_gc4 .list_item .section_title {
    font-size: 2rem;
  }
}

.gc4_01 {
  margin-top: -150px !important;
}
@media screen and (max-width: 1260px) {
  .gc4_01 {
    margin-top: -70px !important;
  }
}
@media screen and (max-width: 768px) {
  .gc4_01 {
    margin-top: -30px !important;
  }
}
.gc4_01 .service_page_template_content_box_img {
  width: 100% !important;
}

.text_img_float {
  margin-top: 50px;
}
.text_img_float #service_img_wrap_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .text_img_float .service_page_template_content_box_img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .text_img_float .service_page_template_content_box_img {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .text_img_float .service_page_template_content_box_img p {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1260px) {
  .text_img_float .service_page_template_content_box_img p {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .text_img_float .service_page_template_content_box_img p {
    padding-left: 0;
    margin-top: 30px;
  }
}

.fill_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .fill_link_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.fill_link_list .list_item {
  width: auto;
}
.fill_link_list .list_item a {
  background: #181777;
  color: #FFFFFF;
  border: solid 1px #181777;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  padding: 5px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
}
.fill_link_list .list_item a svg {
  height: 14px;
  width: auto;
  margin-left: 10px;
}
.fill_link_list .list_item a svg path {
  fill: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fill_link_list .list_item a:hover {
  background: #FFFFFF;
  color: #181777;
}
.fill_link_list .list_item a:hover svg path {
  fill: #181777;
}
.fill_link_list .list_item.inversion_color a svg {
  height: 10px;
}
.fill_link_list .list_item.inversion_color a svg path {
  stroke: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: none;
}
.fill_link_list .list_item.inversion_color a:hover svg path {
  stroke: #181777;
}
@media screen and (max-width: 768px) {
  .fill_link_list-en {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.fill_link_list-half {
  margin-top: 50px;
}
.fill_link_list-half .list_item {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .fill_link_list-half .list_item {
    width: 100%;
  }
}
.fill_link_list-half .list_item a {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .fill_link_list-half .list_item a {
    font-size: 14px;
  }
}
.fill_link_list-solo {
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fill_link_list-solo .list_item {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .fill_link_list-solo .list_item {
    width: 100%;
  }
}
.fill_link_list-solo .list_item a {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .fill_link_list-solo .list_item a {
    font-size: 14px;
  }
}

.faq_table .faq_table_question {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq_table .faq_table_question .faq_table_question_icon {
  color: #FFFFFF;
  background: #181777;
  height: 30px;
  width: 30px;
  min-width: 30px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq_table .faq_table_question .faq_table_question_text {
  padding-left: 20px;
}
.faq_table .faq_table_answer {
  margin-top: 20px;
  border-bottom: solid 2px #181777;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.summary_content_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .summary_content_half {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.summary_content_half > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .summary_content_half > div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .summary_content_half > div:first-of-type {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .summary_content_half .section_title_icon {
    margin-bottom: 10px;
  }
}
.summary_content_half .section_title {
  color: #181777;
  font-size: 2.8rem;
}
@media screen and (max-width: 1260px) {
  .summary_content_half .section_title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .summary_content_half .section_title {
    margin-bottom: 10px;
  }
}

.summary_map {
  margin-top: 30px;
}
.summary_map iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 1260px) {
  .summary_map iframe {
    height: 300px;
  }
}