/* ----------------------------------------
 * /vlj/
 ---------------------------------------- */
/* init */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover {
  opacity: .6;
}

a.arrow {
  text-decoration: none;
  position: relative;
}

a.arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #E87102;
  border-right: 2px solid #E87102;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 10px;
  vertical-align: .02em;
}

a.fc-blue {
  color: #009DD6;
}

a.fc-blue.arrow::after {
  border-top-color: #009DD6;
  border-right-color: #009DD6;
}

/* flex */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-j_s {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-j_b {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-j_c {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-j_e {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-w_w {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

/* grid */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .row.gutter {
    margin-left: -24px;
  }
  .row.gutter > div {
    padding-left: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .row.gutter .span-s-12 + .span-s-12 {
    margin-top: 24px;
  }
}

/*.row .span-1*/
.span-1 {
  width: 8.33333%;
}

/*.row .span-2*/
.span-2 {
  width: 16.66667%;
}

/*.row .span-3*/
.span-3 {
  width: 25%;
}

/*.row .span-4*/
.span-4 {
  width: 33.33333%;
}

/*.row .span-5*/
.span-5 {
  width: 41.66667%;
}

/*.row .span-6*/
.span-6 {
  width: 50%;
}

/*.row .span-7*/
.span-7 {
  width: 58.33333%;
}

/*.row .span-8*/
.span-8 {
  width: 66.66667%;
}

/*.row .span-9*/
.span-9 {
  width: 75%;
}

/*.row .span-10*/
.span-10 {
  width: 83.33333%;
}

/*.row .span-11*/
.span-11 {
  width: 91.66667%;
}

/*.row .span-12*/
.span-12 {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  /*.row {*/
  .span-s-3 {
    width: 25% !important;
  }
  .span-s-4 {
    width: 33.33% !important;
  }
  .span-s-6 {
    width: 50% !important;
  }
  .span-s-12 {
    width: 100% !important;
  }
  /*}*/
}

/* text */
.ta-c {
  text-align: center !important;
}

.ta-l {
  text-align: left !important;
}

.ta-r {
  text-align: right !important;
}

.fw-n {
  font-weight: normal;
}

.fw-b {
  font-weight: bold;
}

.fc-blue {
  color: #009DD6;
}

.fc-blue2 {
  color: #495C72;
}

.fc-black {
  color: #000;
}

.fc-orange {
  color: #E87102;
}

.fs-l {
  font-size: 1.125em;
}

.fs-s {
  font-size: .875em;
}

.fs-ss {
  font-size: .750em;
}

/* clearfix */
.clear {
  clear: both;
  content: "";
  display: table;
}

/* width */
.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

.w-80 {
  width: 80%;
}

.w-70 {
  width: 70%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-40 {
  width: 40%;
}

.w-30 {
  width: 30%;
}

.w-20 {
  width: 20%;
}

.w-10 {
  width: 10%;
}

.w-0 {
  width: 0%;
}

/* margin */
.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-1em {
  margin-top: 1em !important;
}

.mt-2em {
  margin-top: 2em !important;
}

/* responsive */
@media print, screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

/* colors */
.fill-color_01 {
  background: #F2F7FA;
}

.fill-color_02 {
  background: #FCF9F5;
}

.fs-ss {
  font-size: 12px;
}

/* layout
------------------------------ */
/* max-wrap */
.l-inner {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

/* page wrap
------------------------------ */
/* page header */
.page-header {
  background: url(/images/top/img_pagehead.jpg) no-repeat 50% 0/cover;
  height: 450px;
  margin-top: -56px;
  padding-top: 56px;
  position: relative;
}

.page-header_full {
  height: 555px;
}

.page-header_inner {
  max-width: 610px;
  margin-right: 0;
  margin-left: auto;
}

.page-header_title,
.page-header_catch {
  font-weight: bold;
}

.page-header_title {
  font-size: 46px;
  line-height: 1.39;
  margin-top: 114px;
}

.page-header_catch {
  font-size: 20px;
  margin-top: 14px;
  margin-bottom: 56px;
}

/* page main */
.page-main {
  font-size: 16px;
  line-height: 1.5;
}

/* section */
.section {
  padding: 64px 0 72px;
}

.section + .section {
  border-top: 1px solid #D6DCE6;
}

.section-title {
  margin-bottom: 34px;
  text-align: center;
}

.section-title > span {
  display: block;
}

.section-title .jp {
  font-weight: bold;
  font-size: 32px;
}

.section-title .en {
  color: #009DD6;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.section-title_lower {
  background: #F2F7FA;
  margin-bottom: 56px;
  padding: 32px;
}

.section-lead {
  color: #495C72;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.44;
  margin-bottom: 48px;
  text-align: center;
}

/* title */
.title {
  font-weight: bold;
}

.title-sub {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 48px;
  position: relative;
  text-align: center;
}

.title-sub::after {
  background: #009DD6;
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  margin: 19px auto 0;
}

/* btn */
.btn-wrap {
  margin-top: 56px;
}

a.btn {
  border: 2px solid #E87102;
  border-radius: 6px;
  color: #E87102;
  font-weight: bold;
  display: block;
  line-height: 1;
  max-width: 385px;
  margin: 0 auto;
  padding: 18px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

a.btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #E87102;
  border-right: 2px solid #E87102;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -5px;
}

a.btn.btn-pdf::after {
  background: url(/images/vlj/icon_link_pdf.png) no-repeat 50% 50%/contain;
  border: none;
  width: 20px;
  height: 24px;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  margin-top: -12px;
}

a.fc-blue.btn {
  border-color: #009DD6;
  color: #009DD6;
}

a.fc-blue.btn::after {
  border-top-color: #009DD6;
  border-right-color: #009DD6;
}

/* common unit */
/* box */
.box-item {
  background: #FFF;
  border: 1px solid #D6DCE6;
}

/* about */
.section-about {
  background: #F2F7FA;
}

.block-about {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-about .image {
  width: 344px;
  height: 379px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.block-about .text {
  font-size: 20px;
  line-height: 1.9;
  margin-left: 64px;
}

.block-about .text p + p {
  margin-top: 1em;
}

/* reason */
.section-reason {
  border-top: none !important;
}

.section-reason .box-note {
  color: #495C72;
  margin-top: 48px;
}

.list-reason {
  margin: 0 -28px;
  counter-reset: num;
}

.list-reason .item {
  margin: 0 28px;
  width: 322px;
}

.list-reason .item .thumb {
  height: 460px;
  margin-bottom: 24px;
  position: relative;
}

.list-reason .item .thumb::after {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  display: block;
  background: #FFF;
  border-radius: 0 12px 0 0;
  color: #B1B9BE;
  font-size: 36px;
  width: 60px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.list-reason .item .title {
  font-size: 26px;
  margin-bottom: 1em;
}

.list-reason .item .title .en {
  color: #D6DCE6;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 1em;
}

.list-reason .item .desc p + p {
  margin-top: .5em;
}

/* solution */
.section-solution {
  background: #009DD6 url(/images/top/bg_solution.png) no-repeat 0 0/cover;
}

.section-solution .section-title .jp, .section-solution .section-title .en {
  color: #FFF;
}

.list-solution {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -16px;
}

.list-solution .item {
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 338px;
  margin: 16px;
  padding: 32px;
  text-align: center;
}

.list-solution .item .thumb {
  margin-bottom: 20px;
}

.list-solution .item .title {
  font-size: 22px;
  line-height: 1.27;
  margin: auto 0 20px;
  min-height: 2.55em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-solution .item .desc {
  font-size: 14px;
  line-height: 1.43;
  margin: 20px 0;
}

.list-solution .item .link {
  margin-top: auto;
  margin-bottom: 0;
  text-align: center;
}

/* find */
.list-find .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
}

.list-find .item + .item {
  margin-top: 32px;
}

.list-find .item .thumb {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 296px;
  overflow: hidden;
}

.list-find .item .thumb img {
  width: auto;
  max-width: none;
  height: 100%;
}

.list-find .item .text {
  padding: 30px 40px;
}

.list-find .item .text .title {
  font-size: 22px;
  font-weight: bold;
}

.list-find .item .text .desc {
  margin-top: 1em;
}

.list-find .item .link {
  margin: auto 0;
  white-space: nowrap;
}

.list-find .item .link a {
  color: #E87102;
  font-weight: bold;
  text-decoration: none;
}

/* voice */
.list-voice {
  margin: 0 -16px;
  position: relative;
}

.list-voice .item {
  margin: 0 16px;
  padding: 32px;
}

.list-voice .item .title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.27;
}

.list-voice .item .desc {
  line-height: 1.5;
  margin: 1em 0;
}

.list-voice .item .data {
  font-size: 14px;
  text-align: right;
}

/* news */
/*
.list-news {
	a {
		color: $color__link;
		text-decoration: none;
	}
	li {
		display: flex;
		.date {
			font-weight: bold;
		}
		.tag {
			border: 1px solid $color__border;
			font-size: 12px;
			margin: 0 24px;
			padding: 2px 8px;
		}
		.title {
			font-size: 14px;
			font-weight: normal;
		}
		+ li {
			border-top: 1px solid $color__border;
			margin-top: 1em;
			padding-top: 1em;
		}
	}
}
*/
@media only screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  .page-header {
    background-size: auto 400px;
    background-position: 23% -5%;
    height: auto;
    margin-top: 0;
    overflow: hidden;
    padding-top: 0;
    text-align: center;
  }
  .page-header::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    content: "";
    display: block;
    height: 225px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 175px;
    z-index: 0;
  }
  .page-header_inner {
    margin-right: auto;
  }
  .page-header_title, .page-header_catch {
    position: relative;
    z-index: 1;
  }
  .page-header_title {
    font-size: 26px;
    line-height: 1.38;
    margin-top: 352px;
  }
  .page-header_catch {
    font-size: 15px;
    line-height: 1.47;
    margin-top: 14px;
    margin-bottom: 40px;
  }
  .page-header_btn {
    margin: 0 32px;
  }
  .section {
    padding: 56px 16px 64px;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title .jp {
    font-size: 28px;
    line-height: 1.14;
  }
  .section-title .en {
    font-size: 15px;
    margin-top: 4px;
  }
  .btn-wrap {
    margin: 48px 16px 0;
  }
  a.btn {
    padding: 16px;
  }
  a.btn::after {
    right: 24px;
  }
  .flex {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .block-about {
    text-align: center;
  }
  .block-about .image {
    width: 100%;
    height: auto;
  }
  .block-about .text {
    font-size: 18px;
    line-height: 1.89;
    margin-top: 32px;
    text-align: left;
    margin-right: auto;
    margin-left: auto;
  }
  .section-reason .box-note {
    margin-top: 1em;
  }
  .list-reason {
    display: block;
    margin: 0;
  }
  .list-reason .item {
    margin: 0;
    width: 100%;
  }
  .list-reason .item .thumb {
    max-height: 257px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
  }
  .list-reason .item .thumb img {
    width: 100%;
    height: auto;
  }
  .list-reason .item + .item {
    margin-top: 48px;
  }
  .list-reason .item .title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .list-reason .item .title .en {
    font-size: 14px;
  }
  .list-solution .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 12px 16px;
    max-width: none;
    padding: 24px 20px;
  }
  .list-solution .item + :nth-child(n+4) {
    width: 100%;
  }
  .list-solution .item .thumb {
    margin-bottom: 0;
    padding-top: 1em;
    width: 100px;
  }
  .list-solution .item .text {
    width: calc(100% - 120px);
    text-align: left;
  }
  .list-solution .item .text .title {
    font-size: 20px;
    margin-bottom: 16px;
    min-height: 1em;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .list-solution .item .text .desc {
    margin-top: .75em;
    margin-bottom: .5em;
  }
  .list-solution .item .link {
    text-align: right;
    width: 100%;
  }
  .list-find .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
  .list-find .item .thumb {
    width: 100%;
  }
  .list-find .item .thumb img {
    width: 100%;
  }
  .list-find .item .text {
    padding: 24px;
  }
  .list-find .item .text .title {
    font-size: 20px;
  }
  .list-find .item .link {
    padding: 0 24px 24px;
    text-align: right;
  }
  .list-voice .item {
    padding: 32px 24px 24px;
  }
  .list-voice .item + .item {
    margin-top: 22px;
  }
  .list-voice .item .title {
    font-size: 20px;
  }
  .list-voice .item .desc {
    margin-bottom: .5em;
  }
}

.section-info .l-inner{
	max-width: 900px;
}
.list-info{
	padding-top: 16px;
	border-top: 1px dotted #ddd;
}
.list-info .item{
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px dotted #ddd;
}
.list-info .item .title{
	font-weight: normal;
}
.list-info .item a,.list-info .item a:visited{
	color: #009DD6;
}