@charset "utf-8";

.position--relative {
  position: relative;
}
.position--absolute {
  position: absolute;
}
.zindex--1 {
  z-index: 1;
}
.fullscreen {
  width: 100%;
}
/* flex */
@media screen and (min-width: 991px) {
  .d-lg-flex {
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox;
    display: flex;
  }
}
.d-flex {
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.align-items-start {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-items-end {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
.d-center {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.gap-5 {
  gap: 5px;
}
.gap-8 {
  gap: 8px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px !important;
}
.section {
  padding: 80px 0 90px;
}
a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.bg-1 {
  background-color: #f0f4f6;
}
.bg-2 {
  background-color: #001428;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
h2 {
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 10px 0 40px;
}
.title {
  border-bottom: 1px solid #ced4da;
  padding-bottom: 25px;
  position: relative;
}
.title::after {
  content: "";
  width: 60px;
  height: 1px;
  font-size: 0;
  background-color: #005096;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.title span {
  font-size: 26px;
}
.title small {
  font-size: 13px;
}
.title2 {
  margin: 10px 0 55px;
  position: relative;
  text-align: center;
}
.title2::after {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #001428;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}
.subtitle {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .section {
    padding: 30px 0 40px;
  }
  h2 {
    font-size: 21px;
    margin: 0 0 20px;
  }
  .title {
    padding-bottom: 15px;
  }
  .title::after {
    width: 120px;
  }
  .title span {
    font-size: 17px;
  }
  .title2 {
    margin: 0 0 35px;
  }
  .title2::after {
    width: 80px;
    bottom: -15px;
  }
  .subtitle {
    margin: 0 0 20px;
  }
}
/* layout */
@media (min-width: 768px) {
  .layout-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .layout-2 li {
    width: calc(50% - 10px);
  }
  .layout-3 li {
    width: calc(33.3334% - 20px);
  }
  .layout-4 li {
    width: calc(25% - 15px);
  }
  .layout-6 li {
    width: calc(16.67% - 8.5px);
  }
  .layout-2.gap-40 li {
    width: calc(100% / 2 - (40px / 2 * 1));
  }
  .layout-2.gap-30 li {
    width: calc(100% / 2 - (30px / 2 * 1));
  }
  .layout-3.gap-8 li {
    width: calc(100% / 3 - (8px / 3 * 2));
  }
  .layout-3.gap-30 li {
    width: calc(100% / 3 - (30px / 3 * 2));
  }
  .layout-3.gap-15 li {
    width: calc(100% / 3 - (15px / 3 * 2));
  }
  .layout-3.gap-20 li {
    width: calc(100% / 3 - (20px / 3 * 2));
  }
  .layout-4.gap-10 li {
    width: calc(100% / 4 - (10px / 4 * 3));
  }
  .layout-4.gap-15 li {
    width: calc(100% / 4 - (15px / 4 * 3));
  }
  .layout-4.gap-20 li {
    width: calc(100% / 4 - (20px / 4 * 3));
  }
  .layout-5.gap-15 li {
    width: calc(100% / 5 - (15px / 5 * 4));
  }
  .layout-5.gap-20 li {
    width: calc(100% / 5 - (20px / 5 * 4));
  }
  .layout-6.gap-15 li {
    width: calc(100% / 6 - (15px / 6 * 5));
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .layout-3 {
    gap: 10px;
  }
  .layout-3 li {
    width: calc(33.3334% - 6.67px);
  }
}
@media (max-width: 767px) {
  .gap-10-sp {
    gap: 10px;
  }
  .layout-2-sp li {
    width: calc(100% / 2 - (10px / 2 * 1));
  }
}
/*  */
.visual__sub {
  background: url("../images/mv_bg01.jpg") no-repeat center / cover;
  color: #fff;
  height: 430px;
  padding: 115px 20px 0;
  position: relative;
}
.is-cases {
  background: url("../images/common/bg_cases.jpg") no-repeat center / cover;
}
.is-lower {
  background: #f0f4f6;
}
.visual__title {
  margin: 0 170px 0 80px;
  padding: 1px 0 0;
}
.visual__sub h1 {
  font-size: 49px;
  font-weight: bold;
  line-height: 1.38;
}
.visual__cate {
  margin-bottom: 15px;
}
.visual__cate span {
  border: 1px solid #fff;
  display: inline-block;
  font-weight: bold;
  padding: 8px 20px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin: 0 0 65px;
}
.footer__breadcrumb .breadcrumbs {
  margin: 0;
}
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs a::after {
  content: ">";
  margin: 0 7px;
}
.is-lower .breadcrumbs,
.is-lower .breadcrumbs a,
.visual__sub.is-lower {
  color: #001432;
}
.visual__sub.is-lower {
  height: 350px;
}
@media (max-width: 767px) {
  .visual__sub {
    height: 200px;
    padding: 90px 15px 10px;
    margin: 70px 0 0;
  }
  .visual__title {
    margin: 0;
    padding: 0;
  }
  .visual__sub h1 {
    font-size: 29px;
  }
  .visual__cate {
    margin-bottom: 10px;
  }
  .visual__cate span {
    font-size: 14px;
    padding: 6px 12px;
  }
  .breadcrumbs {
    font-size: 13px;
  }
  .breadcrumbs a::after {
    margin: 0 5px;
  }
  .visual__sub.is-lower {
    height: 200px;
  }
}
/*  */
.article__box {
  border: 1px solid #e4e8ee;
}
.article__thumb {
  margin: -1px 0 0 -1px;
}
.article__cat {
  margin-bottom: 5px;
}
.top-products-list.no--border .article__box {
  border: none;
  box-shadow: none;
  background: none;
}
.top-products-list.no--border .article__thumb {
  margin: 0;
  padding: 0;
}
.top-products-list.no--border .article__body {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .top-products-list .article__title,
  .cases-list .article__title,
  .related .article__title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .top-products-list li:not(:last-child) {
    margin: 0 0 15px;
  }
  .top-products-list .article__title,
  .cases-list .article__title,
  .related .article__title {
    font-size: 15px;
  }
  .article__cat,
  .article__body p {
    font-size: 13px;
  }
}
/* anchors */
.anchors a {
  background: url("../images/common/arrow04.png") no-repeat right 14px center / 10px 8px #fff;
  color: #001432;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
  text-decoration: none;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .anchors {
    padding: 10px;
  }
  .anchors li {
    flex: 1;
  }
}
@media (min-width: 991px) {
  .anchors a:hover {
    background: url("../images/common/arrow05.png") no-repeat right 14px center / 10px 8px #005096;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .anchors .container {
    padding: 10px;
  }
  .anchors ul {
    flex-wrap: wrap;
    gap: 5px;
  }
  .anchors li {
    flex: none;
    width: calc(50% - 2.5px);
  }
  .anchors a {
    font-size: 15px;
    min-height: 45px;
    height: 100%;
    padding: 5px 30px 5px 15px;
  }
}
/* products */
.products + .products {
  padding-top: 0;
}
.products.is-solution {
  padding-bottom: 60px;
}
.products-box {
  border: 1px solid #e4e8ee;
  padding: 24px 26px;
}
.products-box .button,
.button-center .button {
  width: 100%;
  max-width: 475px;
}
.layout-thumbnail {
  margin: 0 0 20px;
}
.layout-thumbnail li {
  border: 1px solid #e4e8ee;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.layout-thumbnail a,
.layout-thumbnail img {
  display: block;
  text-decoration: none;
}
.layout-thumbnail a span {
  display: block;
  font-weight: 500;
  color: #fff;
  background-color: rgba(0, 20, 40, 0.9);
  padding: 7px 30px 8px 16px;
  position: relative;
  margin: 0 9px -1px -1px;
}
.layout-thumbnail a span::after {
  content: "";
  width: 8px;
  height: 10px;
  background: url("../images/common/arrow02.png") no-repeat center / 8px 10px;
  position: absolute;
  right: 15px;
  top: 17px;
}
.products-list .button {
  width: 100%;
  max-width: 230px;
  margin-top: 10px;
}
@media (min-width: 991px) {
  .layout-thumbnail a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 990px) {
  .layout-thumbnail {
    margin: 0 0 15px;
    flex-wrap: wrap;
  }
  .layout-thumbnail li {
    width: calc(50% - 5px);
  }
}
@media (max-width: 767px) {
  .products.is-solution {
    padding-bottom: 30px;
  }
  .products-box {
    padding: 15px;
  }
  .layout-thumbnail a span {
    font-size: 13px;
    padding-left: 12px;
  }
  .layout-thumbnail a span::after {
    top: 14px;
  }
}
/* support */
.support-list li {
  border: 1px solid #e4e8ee;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.support-list a {
  color: #001432;
  display: block;
  padding: 30px 0;
  text-decoration: none;
}
.support-list dl {
  font-size: 14px;
  margin: 10px 0 0;
}
.support-list dt {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .support-list li:not(:last-child) {
    margin: 0 0 15px;
  }
  .support-list a {
    padding: 20px 0;
  }
  .support-list .icon img {
    width: 60px;
  }
}
/* cases */
.cases {
  padding-top: 35px;
}
.wp-counter {
  margin: 0 0 35px;
}
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 0;
}
.wp-pagenavi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e4e8ee;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: #001432;
  font-size: 14px;
  font-weight: bold;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  margin: 0 30px;
  border-radius: 50%;
  border-color: #005096;
  background-color: #005096;
  font-size: 0;
  color: transparent;
  background-size: 18px 15px;
  background-position: center center;
  background-repeat: no-repeat;
}
.wp-pagenavi a.previouspostslink {
  background-image: url("../images/common/prev.png");
}
.wp-pagenavi a.nextpostslink {
  background-image: url("../images/common/next.png");
}
.wp-pagenavi a.current {
  border-color: #005096;
  background-color: #005096;
  color: #fff;
}
.wp-pagenavi a.disable {
  opacity: 0.3;
  pointer-events: none;
}
@media (min-width: 991px) {
  .wp-pagenavi a:hover {
    border-color: #005096;
    background-color: #005096;
    color: #fff;
  }
  .wp-pagenavi a.previouspostslink:hover,
  .wp-pagenavi a.nextpostslink:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .cases {
    padding-top: 30px;
  }
  .wp-counter {
    margin: 0 0 30px;
  }
  .wp-pagenavi {
    margin: 20px auto 0;
    max-width: 270px;
  }
  .wp-pagenavi a {
    order: 1;
  }
  .wp-pagenavi a.previouspostslink,
  .wp-pagenavi a.nextpostslink {
    order: 2;
    margin: 0;
  }
}
/*  */
.related {
  padding: 60px 0;
}
.related + .related {
  padding-top: 0;
}
.related .container {
  position: relative;
}
.c-btn {
  position: absolute;
  right: 15px;
  top: 0;
}
.c-btn .button {
  width: 260px;
}
.related .panel__body {
  width: 100%;
}
@media (max-width: 767px) {
  .related {
    padding: 35px 0;
  }
  .c-btn {
    top: inherit;
    bottom: 0;
  }
  .c-btn .button {
    width: 210px;
    padding-left: 20px;
    font-size: 14px;
  }
}
/*  */
.wp-contents {
  letter-spacing: 0.04em;
}
.wp-contents h2:not(:first-child) {
  margin-top: 80px;
}
.wp-contents h3,
.h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.38;
}
.wp-contents .container > h3,
.h3-line {
  border-left: 3px solid #005096;
  margin: 40px 0 20px;
  padding-left: 14px;
}
.wp-contents .container > h3.h3-title {
  border: none;
  padding: 0;
  font-size: 24px;
}
.h4 {
  margin: 20px 0 10px;
}
.wp-contents p:not(:last-child) {
  margin-bottom: 20px;
}
.blocks + .title:not(:first-child) {
  margin-top: 30px;
}
.blocks::after {
  content: "";
  clear: both;
  display: block;
}
.yt-list li {
  border: 1px solid #e4e8ee;
  padding: 4px;
  font-size: 16px;
  font-weight: bold;
}
.yt-list p {
  padding: 5px 5px 8px;
}
.media__list {
  margin-bottom: 40px;
  margin-top: 40px;
}
.media__list li {
  margin-bottom: 20px;
}
.media__box {
  border: 1px solid #e4e8ee;
  padding: 4px;
  font-weight: bold;
}
.media__box p {
  padding: 5px 5px 8px;
}
@media (min-width: 768px) {
  .alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .wp-contents h2:not(:first-child) {
    margin-top: 30px;
  }
  .wp-contents h3,
  .h3 {
    font-size: 17px;
  }
  .wp-contents .container > h3,
  .h3-line {
    margin: 20px 0 10px;
    padding-left: 7px;
  }
  .wp-contents .container > h3.h3-title {
    font-size: 19px;
  }
  .h4 {
    margin: 15px 0 5px;
  }
  .wp-contents p:not(:last-child) {
    margin-bottom: 10px;
  }
  .blocks + .title:not(:first-child) {
    margin-top: 20px;
  }
  .alignleft,
  .alignright,
  .aligncenter {
    width: 100%;
    display: block;
    margin: 15px 0;
  }
  .yt-list li {
    font-size: 15px;
    margin: 0 0 10px;
  }
  .yt-list li:last-child {
    margin-bottom: 0;
  }
  .media__list li {
    margin-bottom: 10px;
  }
  .media__list li:last-child {
    margin-bottom: 0;
  }
}
/*  */
ul.steps {
  counter-reset: my-counter;
}
.steps li {
  border: 1px solid #e4e8ee;
  padding: 15px 30px 15px 85px;
  line-height: 1.38;
  position: relative;
}
.steps li::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  background: url("../images/common/bg_steps.jpg") no-repeat center / cover;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -1px;
  top: -1px;
  font-size: 34px;
  font-weight: bold;
}
.steps li:nth-child(1)::before {
  content: "01";
}
.steps li:nth-child(2)::before {
  content: "02";
}
.steps li:nth-child(3)::before {
  content: "03";
}
.steps li:nth-child(4)::before {
  content: "04";
}
.steps li:nth-child(5)::before {
  content: "05";
}
.steps li:nth-child(6)::before {
  content: "06";
}
.steps li:nth-child(7)::before {
  content: "07";
}
.steps li:nth-child(8)::before {
  content: "08";
}
.steps li:nth-child(9)::before {
  content: "09";
}
.steps h3,
.steps .h3,
.wp-contents p.h3 {
  margin-bottom: 7px;
}
.steps.hide-number li {
  margin-bottom: 20px;
  padding-left: 30px;
}
.steps.hide-number li::before {
  display: none;
}
.steps.layout-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 768px) {
  .steps-thumbnail li {
    min-height: 140px;
    margin: 0 0 20px;
    padding-right: 250px;
  }
  .steps-thumbnail .thumbnail {
    position: absolute;
    right: 9px;
    top: 9px;
  }
}
@media (min-width: 991px) {
  .steps.layout-3 li {
    width: calc(33.3334% - 10px);
    padding-left: 75px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .steps.layout-3 {
    gap: 20px;
  }
  .steps.layout-3 li {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .steps li {
    padding: 10px 10px 10px 55px;
    margin: 0 0 10px;
  }
  .steps li::before {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .steps-thumbnail .thumbnail {
    margin: 0 0 7px;
  }
  .steps-thumbnail .thumbnail img {
    width: 100%;
  }
  .steps.hide-number li {
    padding: 10px;
    margin: 0 0 10px;
  }
  .steps.layout-3 {
    display: block;
  }
}
/* rokey-list */
.rokey-list {
  margin-bottom: 40px;
}
.rokey-list li {
  border: 1px solid #e4e8ee;
  line-height: 1.5;
}
.rokey-list li {
  display: flex;
}
.rokey-list .img {
  width: 160px;
  margin: 0 auto;
}
.rokey-list img {
  display: block;
}
.rokey-body {
  padding: 20px;
  width: calc(100% - 160px);
}
.rokey-body h4 {
  margin: 0 0 7px;
}
.scroll-x {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 30px;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 750px;
  word-break: break-all;
  line-height: 1.38;
}
table.table--layout-1 th,
table.table--layout-1 td {
  border: 1px solid #e4e8ee;
  padding: 15px;
}
table.table--layout-1 td {
  padding: 15px 20px;
  vertical-align: top;
}
table.table--layout-1 tbody th {
  background-color: #f2f6fa;
  text-align: left;
}
table.table--layout-1 thead th {
  border-color: #fff;
  background-color: #6e7882;
  color: #fff;
}
table.table--layout-1 thead td {
  border-color: #fff;
}
th[rowspan="4"] {
  text-align: center;
}
table.table--layout-2 thead th {
  background-color: #f2f6fa;
  text-align: left;
  padding: 15px 20px;
  border: 1px solid #e4e8ee;
}
table.table--layout-2 td {
  padding: 15px 20px;
  vertical-align: top;
  border: 1px solid #e4e8ee;
}
.blue {
  color: #005096;
}
.contents-list li:not(:last-child) {
  border-bottom: 1px solid #e4e8ee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contents-list dt,
.h4,
.h6 {
  font-weight: bold;
  padding: 0 0 0 15px;
  margin-bottom: 10px;
  position: relative;
}
.contents-list dt::before,
.h4::before,
.h6::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #005096;
  position: absolute;
  left: 0;
  top: 12px;
}
.h6 {
  font-size: 16px;
}
@media (min-width: 991px) {
  .rokey-list .img {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 990px) {
  .rokey-list {
    display: block;
  }
  .rokey-list li {
    width: 100%;
    margin: 0 0 10px;
  }
  .rokey-list .img {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .rokey-list li {
    margin: 0 0 10px;
  }
  .rokey-list .img {
    padding: 10px 0;
    width: 120px;
  }
  .rokey-body {
    padding: 15px 20px;
    width: calc(100% - 120px);
  }
  table {
    border-collapse: collapse;
    width: 100%;
    word-break: break-all;
    line-height: 1.38;
  }
  table.table--layout-1 th,
  table.table--layout-1 td {
    padding: 10px 15px;
  }
  table.table--layout-1 td {
    padding: 10px 15px;
  }
  .contents-list li:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .contents-list dt,
  .h4 {
    margin-bottom: 7px;
  }
  .contents-list dt::before,
  .h4::before,
  .h6::before {
    top: 10px;
  }
  .h6 {
    font-size: 15px;
  }
}
/*  */
.is-cases__detail {
  background: #c8d0d8;
  color: #001432;
  height: auto;
  min-height: 640px;
  padding-bottom: 280px;
}
.is-cases__detail a {
  color: #001432;
}
.is-cases__detail .visual__cate span {
  border-color: #001432;
}
.feature__img:first-child {
  margin-top: -330px;
  position: relative;
}
.feature__img {
  margin: 0 0 60px;
}
.feature__img img {
  display: block;
}
.infor {
  background-color: #f2f6fa;
  border: 1px solid #e4e8ee;
  padding: 20px;
  margin-bottom: 30px;
}
.infor__logo {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 140px;
}
.info__body {
  width: calc(100% - 190px);
  padding: 0 0 0 30px;
}
.info__body .title {
  padding-bottom: 11px;
  padding-top: 5px;
}
.info__item {
  border-bottom: 1px solid #e4e8ee;
  font-size: 14px;
  padding: 11px 0;
}
.info__item:last-child {
  border: none;
}
.info__item dt {
  font-weight: bold;
  width: 80px;
}
.info__item dd {
  width: calc(100% - 80px);
}
@media (max-width: 767px) {
  .is-cases__detail {
    min-height: 340px;
    padding-bottom: 120px;
    padding-top: 30px;
  }
  .feature__img:first-child {
    margin-top: -130px;
  }
  .feature__img {
    margin: 0 0 30px;
  }
  .infor {
    padding: 14px;
  }
  .infor__logo {
    margin: 0 auto 14px;
  }
  .info__body {
    width: 100%;
    padding: 0;
  }
}
/*  */
.note-box {
  background-color: #f2f6fa;
  border: 1px solid #e4e8ee;
  padding: 20px 40px 25px;
  margin: 60px 0;
}
.blocks + .box,
.blocks + .note-box {
  margin-top: 30px;
}
.note-box h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 25px;
  position: relative;
}
.note-box h3::after {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #005096;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
}
.button-center {
  margin: 30px 0;
}
.button-center .button {
  text-align: left;
}
@media (max-width: 767px) {
  .note-box {
    padding: 14px;
    margin: 30px 0;
  }
  .blocks + .note-box {
    margin-top: 15px;
  }
  .note-box h3 {
    font-size: 17px;
  }
  .note-box h3::after {
    width: 60px;
  }
  .button-center {
    margin: 20px 0;
  }
  .button-center .button {
    line-height: 1.15;
  }
}
/*  */
.fixed__btn {
  position: absolute;
  right: 0;
  top: 130px;
  transform: translateX(123px);
  transition: 0.3s;
}
.fixed__btn li {
  margin-bottom: 3px;
}
.fixed__btn li:nth-child(2) {
  margin-bottom: 8px;
}
.fixed__btn a {
  color: #fff;
  display: flex;
  align-items: center;
  height: 50px;
  width: 170px;
  padding: 0 0 0 48px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.fixed__btn a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  right: 2px;
  bottom: 2px;
}
.fixed__btn a.icon-pdf::after {
  border-color: transparent transparent #005096 transparent;
}
.fixed__btn a.icon-pdf {
  background: url("../images/common/pdf.png") no-repeat left 11px center / 29px 34px #f2f6fa;
  color: #001432;
}
.fixed__btn a.icon-1 {
  background: url("../images/common/icon1.png") no-repeat left 10px center / 30px 30px #005096;
}
.fixed__btn a.icon-2 {
  background: url("../images/common/icon2.png") no-repeat left 10px center / 30px 30px #003c82;
}
.fixed__btn a.icon-3 {
  background: url("../images/common/icon3.png") no-repeat left 10px center / 30px 30px #005096;
}
.fixed__btn a.icon-4 {
  background: url("../images/common/icon4.png") no-repeat left 10px center / 30px 30px #005096;
}
@media (min-width: 991px) {
  .fixed__btn:hover {
    transform: translateX(0);
  }
  .fixed__btn a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .visual__sub .breadcrumbs,
  .fixed__btn {
    display: none;
  }
}

/* unorder list */
.unorder__list {
  margin-bottom: 40px;
}
.unorder__list > li {
  position: relative;
  padding: 0 0 0 20px;
  margin-top: 6px;
}
.unorder__list--line > li::before {
  content: "";
  width: 13px;
  height: 0;
  border-top: 1px solid #005096;
  position: absolute;
  left: 0;
  top: 0.9em;
}
.unorder__list--dot > li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #005096;
  position: absolute;
  left: 0;
  top: 0.8em;
}
.order__list {
  counter-reset: order-counter;
  margin-bottom: 40px;
}
.order__list > li {
  counter-increment: order-counter;
  position: relative;
  padding: 0 0 0 20px;
  margin-top: 6px;
}
.order__list > li::before {
  content: counter(order-counter) ". ";
  position: absolute;
  left: 0;
  top: 0;
  color: #005096;
  font-weight: bold;
}
.order__list:not(.order__list--icon) > li:nth-child(n + 10) {
  padding-left: 30px;
}
.note__list li {
  text-indent: -1em;
  padding-left: 1em;
}
.order__list.order__list--icon > li::before {
  color: #001432;
}
.order__list.order__list--icon > li:nth-child(1):before {
  content: "①";
}
.order__list.order__list--icon > li:nth-child(2)::before {
  content: "②";
}
.order__list.order__list--icon > li:nth-child(3)::before {
  content: "③";
}
.order__list.order__list--icon > li:nth-child(4)::before {
  content: "④";
}
.order__list.order__list--icon > li:nth-child(5)::before {
  content: "⑤";
}
.order__list.order__list--icon > li:nth-child(6)::before {
  content: "⑥";
}
.order__list.order__list--icon > li:nth-child(7)::before {
  content: "⑦";
}
.order__list.order__list--icon > li:nth-child(8)::before {
  content: "⑧";
}
.order__list > li > ul {
  margin-bottom: 0;
}

/* */
.module__block {
  margin-bottom: 90px;
}
.h5 {
  color: #005096;
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0 2px;
}
h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 2px;
}
hr {
  border: none;
  height: 1px;
  font-size: 0;
  background-color: transparent;
  border-top: 1px solid #e4e8ee;
  margin: 20px 0;
}
.sitemap {
  margin-bottom: 40px;
}
.sitemap__item:not(:last-child) {
  margin-bottom: 35px;
}
.sitemap__sub {
  margin-top: 0;
}
.sitemap__sub .sitemap__item:not(:last-child) {
  margin-bottom: 25px;
}
.sitemap__parent {
  line-height: 1.3;
  border-bottom: 1px solid #005096;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0 15px;
  margin-bottom: 16px;
}
.sitemap__parent a {
  display: inline-flex;
  text-decoration: none;
  padding: 0 0 0 45px;
  color: #001432;
  position: relative;
}
.sitemap__parent a::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/common/arrow06.png") no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sitemap__parent.--is-level2 {
  font-size: 16px;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.sitemap__parent.--is-level2 a {
  padding-left: 18px;
}
.sitemap__parent.--is-level2 a::before {
  background-image: url("../images/common/arrow01.png");
  width: 8px;
  height: 10px;
  top: calc(50% + 2px);
}
.sitemap__child {
  line-height: 1.4;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.sitemap__child li {
  width: calc(100% / 3 - (7px / 3 * 2));
}
.sitemap__child a {
  display: inline-flex;
  text-decoration: none;
  color: #001432;
  position: relative;
  padding: 0 0 0 9px;
}
.sitemap__child a::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.sitemap__child a:hover {
  text-decoration: underline;
}
.thumbnail {
  margin-bottom: 40px;
}
.thumbnail.caption--style-1 figcaption {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
}
.thumbnail.has--box:not(.caption--style-2) {
  background-color: #fff;
  padding: 10px 10px 14px;
  border: 1px solid #e4e8ee;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.thumbnail.caption--style-2 {
  position: relative;
}
.thumbnail.caption--style-2 img {
  display: block;
}
.thumbnail.caption--style-2 figcaption {
  font-size: 14px;
  color: #fff;
  padding: 20px 8px 20px 17px;
  line-height: 1.4;
  background-color: rgba(0, 20, 40, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.yt-frame img,
.yt-frame iframe {
  width: 100%;
  display: block;
}
.text__caption {
  font-size: 14px;
  margin-top: 8px;
}
.text--align-center {
  text-align: center;
}
.text--align-right {
  text-align: right;
}
.text--weight-regular {
  font-weight: 400 !important;
}
.text--weight-medium {
  font-weight: 500 !important;
}
.text--color-body {
  color: #001432 !important;
}
.text--color-blue {
  color: #005096 !important;
}
.text--color-red {
  color: #dc003c !important;
}
.text--size-14 {
  font-size: 14px;
}
.media__box .text__caption {
  margin-top: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}
.frame__map img,
.frame__map iframe {
  display: block;
  width: 100%;
}
.h3-center {
  font-size: 24px !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 1.42 !important;
  margin: 40px 0 20px !important;
  border-left: none !important;
  padding-left: 0 !important;
}
.note__list {
  font-size: 12px;
  margin-bottom: 10px;
}
.note__list:last-child {
  margin-bottom: 0;
}
.text__note,
.note__list li {
  text-indent: -1em;
  padding-left: 1em;
}
.text__link {
  padding: 0 0 0 13px;
  position: relative;
  font-weight: 500;
  margin-bottom: 10px;
}
.text__link::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #005096;
  position: absolute;
  left: 0;
  top: 0.8em;
}
.text__link img {
  vertical-align: middle;
  margin-left: 3px;
}
.download__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.download__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 230px;
  height: 65px;
  text-decoration: none;
  color: #005096;
  font-weight: 500;
  line-height: 1.3;
  border: 1px solid #005096;
  position: relative;
  padding: 0 30px 0 10px;
  transition: all 0.3s ease;
}
.download__btn::after {
  content: "";
  width: 8px;
  height: 10px;
  background: url("../images/common/arrow01.png") no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.download__btn:hover {
  background-color: #005096;
  color: #fff;
}
.download__btn:hover::after {
  background-image: url("../images/common/arrow02.png");
}
.form__product_item figure {
  font-size: 0;
  margin-bottom: 5px;
}
.form__product_item figure img {
  width: 100%;
}
.form__product_name {
  background-color: #f3f7fa;
  border: 1px solid #e4e8ee;
  padding: 7px 10px 10px;
}
.box {
  background-color: #fff;
  border: 1px solid #e4e8ee;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.box.is--bg-blue {
  background-color: #f2f6fa;
}
.frame__map,
.table__scroll,
.cardlist {
  margin-bottom: 40px;
}
.cardlist .thumbnail {
  margin-bottom: 0;
}
.text__head,
.cardlist__text {
  margin-bottom: 20px;
}
.section.is--form {
  padding-top: 0;
}
.text__wrap {
  margin-bottom: 40px;
}
.text__wrap p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .box .blocks .thumbnail {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .h5 {
    font-size: 15px;
  }
  .sitemap__child li {
    width: calc(100% / 2 - (7px / 2 * 1));
  }
  .thumbnail img {
    width: 100%;
  }
  .cardlist li:not(:last-child) {
    margin-bottom: 20px;
  }
  h6 {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .cardlist.layout-6 li,
  .cardlist.layout-5 li,
  .cardlist.layout-4 li,
  .cardlist.layout-3 li {
    width: calc(100% / 2 - (15px / 2 * 1));
  }
}

/* modal */
.modal {
  max-width: 650px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  position: relative;
}
.mfp-close {
  top: -44px;
  opacity: 1;
}
.mfp-close:active {
  top: -44px;
}
.mfp-close-btn-in .mfp-close {
  color: #fff;
}

/* news */
.newsList li {
  border-bottom: 1px solid #005096;
}
.newsList li a {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  padding: 15px 0 13px;
}
.newsList .newsDate {
  color: #005096;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  padding-top: 3px;
  width: 128px;
}
.newsList .newsTitle {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  width: calc(100% - 128px);
  padding-top: 2px;
  transition: color 0.3s ease;
}
.newsList a:hover .newsTitle {
  color: #005096;
}
@media (max-width: 767px) {
  .newsList li a {
    display: block;
    padding: 13px 0;
  }
  .newsList .newsDate {
    width: 100%;
    padding: 0;
  }
  .newsList .newsTitle {
    width: 100%;
    padding-top: 0;
  }
}

/* faq */
.faq__item {
  border: 1px solid #e4e8ee;
  margin-bottom: 20px;
}
.faq__title {
  display: flex;
  flex-wrap: wrap;
  min-height: 56px;
  cursor: pointer;
}
.faq__title::before {
  content: "Q";
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: url("../images/bg_q.png") no-repeat left top / 100% 100%;
  font-size: 26px;
  font-weight: bold;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.faq__title span {
  color: #001432;
  font-weight: bold;
  font-size: 18px;
  padding: 15px;
  width: calc(100% - 60px);
}
.faq__body {
  padding: 20px;
  border-top: 1px solid #e4e8ee;
  display: none;
}
.faq__content {
  position: relative;
  padding: 0 0 0 50px;
}
.faq__content::before {
  content: "A";
  color: #fff;
  background-color: #005096;
  border-radius: 100%;
  font-size: 19px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  position: absolute;
  left: 0;
  top: 0;
}
.text--size-12 {
  font-size: 12px !important;
}
.j-content.opened {
  display: block;
}
.toppages {
  margin-bottom: 40px;
}
.toppages li .article__box {
  padding: 4px;
}
.toppages li .article__box .article__body {
  padding: 18px 10px;
}
.toppages li .article__box .article__title {
  text-align: center;
  font-size: 18px;
}
.toppages li .article__box .article__thumb {
  padding-right: 0;
  margin-top: 0;
}
.article__search {
  background-color: #c8d0d8;
  padding: 20px;
  display: flex;
  justify-content: center;
}
.icon__search {
  width: 100%;
  max-width: 570px;
  position: relative;
}
.icon__search::after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../images/common/icon_search_large.png") no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.article__search input[type="text"] {
  border: none;
  border-radius: 5px;
  background-color: #fff;
  padding: 0 20px;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 16px;
}
.newsList--block {
  border-top: 1px solid #ced4da;
}
.newsList--block li {
  border-bottom: 1px solid #ced4da;
}
.newsList--block li a {
  display: block;
  padding: 17px 20px 17px 0;
}
.newsList--block li a::after {
  content: "";
  width: 8px;
  height: 10px;
  background: url("../images/common/arrow01.png") no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.newsList--block .newsDate {
  display: block;
  width: auto;
  padding: 0;
  font-size: 14px;
  color: #001432;
  font-weight: 500;
  margin-bottom: 4px;
}
.newsList--block .newsTitle {
  color: #001432;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
}
.newsList--block .newsMeta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 4px;
}
.newsList--block .newsMeta .newsDate {
  margin-bottom: 0;
}
.newsList--block .newsCat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  background-color: #005096;
  color: #fff;
  height: 25px;
  width: 85px;
  font-weight: 500;
  font-size: 13px;
  padding: 0 5px;
}
.newsList--block .newsCat.is--bg-green {
  background-color: #1ea000;
}
.newsList--block .newsCat.is--bg-red {
  background-color: #dc003c;
}
h2.title2.is--small {
  font-size: 24px;
  margin-bottom: 50px;
}
h2.title2.is--small::after {
  bottom: -15px;
}
h2.title2.is--small + .service__status {
  margin-top: -20px;
  margin-bottom: 12px;
}
.service__status {
  text-align: center;
  font-size: 14px;
}
.status__list li {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border: 1px solid #e4e8ee;
  margin-bottom: 5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.status__title {
  width: 57.353%;
  border-right: 1px solid #ced4da;
  padding: 12px 20px;
  font-weight: bold;
}
.status__content {
  width: calc(100% - 57.353%);
  padding: 12px 20px;
  font-weight: bold;
}
.status__value {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.status__icon {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 0;
  background-color: #1ea000;
  border-radius: 100%;
  border: 3px solid #148c00;
}
.status__icon.is--off {
  background-color: #dc003c;
  border-color: #a00028;
}
.status__text {
  width: calc(100% - 40px);
}
.yt__box {
  border: 1px solid #ced4da;
  padding: 4px;
}
.yt__box .text__caption {
  text-align: center;
  margin: 0;
  padding: 15px 10px;
}
.table--layout-1 .cardlist {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .layout-4.gap-20 li:not(:last-child),
  .layout-3.gap-20 li:not(:last-child) {
    margin-bottom: 20px;
  }
  .toppages li .article__box .article__title {
    font-size: 16px;
  }
  .status__list li {
    display: block;
  }
  .status__title {
    width: 100%;
    border-bottom: 1px solid #ced4da;
    border-right: none;
  }
  .status__content {
    width: 100%;
  }
}

.info__text {
  padding-top: 10px;
}

/* Recruit */
.visual__sub.visual--recruit {
  background: url("../images/mv_bg03.jpg") no-repeat right top / cover;
  height: 38.125vw;
  min-height: 510px;
}
.visual__sub.visual--recruit .visual__recruit {
  position: absolute;
  left: 80px;
  bottom: 80px;
}
.visual__sub.visual--recruit .visual__recruit h1 {
  font-size: 49px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.visual__sub.visual--recruit .visual__recruit p {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}
.visual__sub.visual--recruit .visual__recruit p small {
  font-weight: 700;
  font-size: 27px;
  margin-left: 9px;
}
.visual__sub.visual--recruit .visual__recruit p strong {
  font-weight: 700;
  font-size: 93px;
  letter-spacing: 0.04em;
}
.visual__sub.visual--recruit .visual__recruit p::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background-color: #fff;
  margin-top: 15px;
}
.visual__sub.is--recruit-job {
  background-image: url("../images/mv_job.jpg");
}
.visual__sub.is--recruit-team {
  background-image: url("../images/mv_team.jpg");
}
.visual__sub.is--recruit-environment {
  background-image: url("../images/mv_environment.jpg");
}
.visual__sub.is--recruit-listings {
  background-image: url("../images/mv_listings.jpg");
}
.visual__sub.is--recruit-listings h1,
.visual__sub.is--recruit-environment h1,
.visual__sub.is--recruit-team h1,
.visual__sub.is--recruit-job h1 {
  font-size: 64px;
  margin: 0;
}
.visual__title.is--recruit-child {
  padding: 0;
}
.visual__title.is--recruit-child h1 {
  text-align: center;
  line-height: 1.2;
}
.visual__title.is--recruit-child h1 small {
  display: block;
}
@media (max-width: 990px) {
  .visual__sub.visual--recruit .visual__recruit {
    left: 20px;
    bottom: 30px;
  }
}
@media (min-width: 768px) {
  .visual__title.is--recruit-child h1 {
    font-size: 64px;
  }
  .visual__title.is--recruit-child h1 small {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .visual__sub.visual--recruit {
    background-image: url("../images/mv_bg03_sp.jpg");
    min-height: inherit;
    height: 74.6667vw;
  }
  .visual__sub.visual--recruit .visual__recruit {
    left: 5.333vw;
    right: 5.333vw;
    bottom: 3.4667vw;
    display: flex;
    align-items: center;
  }
  .visual__sub.visual--recruit .visual__recruit p {
    font-size: 6.4vw;
    position: relative;
    padding: 2.6667vw 4vw 0 0;
    margin-right: 3.2vw;
    margin-bottom: 0;
  }
  .visual__sub.visual--recruit .visual__recruit p::after {
    position: absolute;
    width: 0;
    height: auto;
    border-left: 2px solid #fff;
    left: inherit;
    right: 0;
    bottom: 1.333vw;
    top: 0;
    background: none;
  }
  .visual__sub.visual--recruit .visual__recruit p small {
    font-size: 3.7333vw;
    margin-left: 1.333vw;
  }
  .visual__sub.visual--recruit .visual__recruit p strong {
    font-size: 12.8vw;
  }
  .visual__sub.visual--recruit .visual__recruit h1 {
    font-size: 5.6vw;
    padding-top: 1.333vw;
  }
  .visual__sub.is--recruit-job {
    background-image: url("../images/mv_job_sp.jpg");
    padding: 15px;
  }
  .visual__sub.is--recruit-team {
    background-image: url("../images/mv_team_sp.jpg");
    padding: 15px;
  }
  .visual__sub.is--recruit-environment {
    background-image: url("../images/mv_environment_sp.jpg");
    padding: 15px;
  }
  .visual__sub.is--recruit-listings {
    background-image: url("../images/mv_listings_sp.jpg");
    padding: 15px;
  }
  .visual__sub.is--recruit-listings .visual__title,
  .visual__sub.is--recruit-environment .visual__title,
  .visual__sub.is--recruit-team .visual__title,
  .visual__sub.is--recruit-job .visual__title {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visual__sub.is--recruit-listings h1,
  .visual__sub.is--recruit-environment h1,
  .visual__sub.is--recruit-team h1,
  .visual__sub.is--recruit-job h1 {
    font-size: 37px;
    line-height: 1.2;
  }
  .visual__title.is--recruit-child {
    margin-top: -25px;
  }
}

/* Banner */
.consider__banner {
  background: url("../images/bg_banner.jpg") no-repeat center center / cover;
  padding: 0;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consider__banner_btn .button {
  width: 340px;
  height: 80px;
  color: #fff;
  border-color: #fff;
  font-size: 24px;
  border-radius: 50px;
  justify-content: center;
  text-align: center;
}
.consider__banner_btn .button::after {
  width: 16px;
  height: 20px;
  background-image: url("../images/common/arrow08.png");
}
@media (min-width: 768px) {
  .consider__banner_btn .button::before {
    width: 16px;
    height: 20px;
    background-image: url("../images/common/arrow08_o.png");
    opacity: 0;
  }
  .consider__banner_btn .button:hover {
    background-color: #fff;
    color: #005096;
  }
  .consider__banner_btn .button:hover::before {
    opacity: 1;
  }
  .consider__banner_btn .button:hover::after {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .consider__banner {
    background-image: url("../images/bg_banner_sp.jpg");
    height: 180px;
  }
  .consider__banner_btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .consider__banner_btn .button {
    height: 60px;
    width: 100%;
    max-width: 295px;
    font-size: 19px;
  }
}

/* Blocks Flex */
@media (min-width: 768px) {
  .blocks.blocks--flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .blocks.blocks--flex figure.thumbnail {
    float: none !important;
    width: 330px;
    margin: 0 !important;
  }
  .blocks.blocks--flex .blocks__content {
    width: calc(100% - 330px - 30px);
  }
}

/* process__list */
.process__list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.process__list li {
  width: calc(100% / 5 - (25px / 5 * 4));
  position: relative;
}
.process__list li:not(:last-child)::after {
  content: "";
  width: 40px;
  height: 30px;
  background: url("../images/recruit/arrow.png") no-repeat 0 0 / 100% 100%;
  position: absolute;
  z-index: 1;
}
.process__box {
  height: 100%;
  background-color: #fff;
  border: 1px solid #e4e8ee;
  padding: 15px 10px 18px;
}
.process__icon {
  text-align: center;
  margin-bottom: 9px;
}
.process__icon img {
  width: 120px;
}
.process__step {
  text-align: center;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #005096;
  margin-bottom: 6px;
}
.process__step strong {
  font-size: 26px;
}
.process__name {
  line-height: 1.2;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .process__list li::after {
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .process__list {
    gap: 10px;
  }
  .process__list li {
    width: 100%;
  }
  .process__list li:not(:last-child)::after {
    width: 35px;
    height: 25px;
    background-image: url("../images/recruit/arrow_sp.png");
    left: 50%;
    transform: translateX(-50%);
    bottom: -17px;
  }
  .process__box {
    height: auto;
    padding: 25px 10px 30px 120px;
    min-height: 110px;
  }
  .process__icon {
    width: 90px;
    position: absolute;
    left: 10px;
    top: 10px;
    margin-bottom: 0;
  }
  .process__step {
    font-size: 13px;
    text-align: left;
    margin-bottom: 0;
  }
  .process__step strong {
    font-size: 26px;
  }
  .process__name {
    font-size: 21px;
    text-align: left;
  }
}
