@charset "utf-8";
#main {
  margin-bottom: 50px;
}

.conceptLead {
  margin-bottom: 50px;
}

@media screen and (min-width: 767px) {
  .header-logo {
    margin-left: calc(5% - 30px);
  }
}

/*トップ用ローディング*/

.lcl-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  background-color: #fff;
  transition: 0.7s ease;
}

.lcl-loading--none {
  opacity: 0;
  transition: 0.7s ease;
}

.lcl-loading__in {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 170px;
}

.lcl-loading--logo-circle, .lcl-loading--logo-txt {
  position: absolute;
  transition: 0.7s ease;
}

.lcl-loading--logo-circle {
  width: 100px;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0);
}

.lcl-loading--logo-txt {
  width: 150px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.lcl-loading--logo-circle--active {
  transform: scale(1);
  transition: 0.7s ease;
}

.lcl-loading--logo-txt--active {
  bottom: -60px;
  transition: 0.7s ease;
}

/*right250*/

/* ---------------------------------------------------------------- box ---- */

.lcl-main {
  min-height: 650px;
  height: calc(100vh);
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.lcl-main {
  min-height: auto;
  height: auto;
}

.lcl-main-inner {
  background: url(../img/main_01.jpg) center /cover no-repeat;
  position: relative;
  transform: scale(1.03);
  width: 100%;
  height: 100%;
}

.lcl-main-inner.fadein {
  transform: scale(1);
  transition: all 2s ease;
}

.lcl-main-item {
  height: 100vh;
}

.lcl-main-item__block {
  width: 50%;
  margin-left: auto;
  display: block;
  height: 62px;
}

.lcl-main-item__img {
  width: 439px;
  height: 40px;
  /*background: url(../img/text-1.png) center /100% no-repeat;*/
  top: -60px;
  position: relative;
  opacity: 0;
}

.lcl-main-item__img-mi, .lcl-main-item__img-ra, .lcl-main-item__img-i {
  position: absolute;
  opacity: 0;
  top: 60px;
}

.lcl-main-item__img-mi {
  width: 439px;
  height: 40px;
  top: -20px;
  background: url(../img/text-1.png) center /100% no-repeat;
}

.lcl-main-item__img-ra {
  width: 439px;
  height: 62px;
  top: 40px;
  background: url(../img/text-2.png) center /100% no-repeat;
}

/*.lcl-main-item__img-i {
	width: 51px;
	height: 45px;
	left: 176px;
	top: 70px;
	background: url(../img/ttl_02-i.png) center /100% no-repeat;
}*/

.lcl-main-item__img--fade, .lcl-main-item__img-mi--fade, .lcl-main-item__img-i--fade {
  animation-name: fade-in2;
  animation-duration: 2s;
  /*//アニメーション時間*/
  animation-timing-function: ease-out;
  /*//アニメーションさせるイージング*/
  animation-delay: 1s;
  /*//アニメーション開始させる時間*/
  animation-iteration-count: 1;
  /*//繰り返し回数*/
  animation-direction: normal;
  /*//往復処理をするかどうか*/
  animation-fill-mode: forwards;
  /*//アニメーション後のスタイルをどうするか*/
}

.lcl-main-item__img-ra--fade {
  animation-name: fade-in2;
  animation-duration: 2s;
  /*//アニメーション時間*/
  animation-timing-function: ease-out;
  /*//アニメーションさせるイージング*/
  animation-delay: 3s;
  /*//アニメーション開始させる時間*/
  animation-iteration-count: 1;
  /*//繰り返し回数*/
  animation-direction: normal;
  /*//往復処理をするかどうか*/
  animation-fill-mode: forwards;
  /*//アニメーション後のスタイルをどうするか*/
}

/*// アニメーション*/

@keyframes fade-in2 {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.lcl-main-item__img-mi--fade {
  top: 10px;
}

.lcl-main-item__img-ra--fade {
  top: 65px;
}

.lcl-main-item__img-i--fade {
  top: 102px;
}

.p-index-eyecatch {
  position: absolute;
  bottom: 60px;
  left: 50%;
  margin-left: -100px;
  width: 200px;
  text-align: center;
  color: #fff;
}

.p-index-eyecatch__scroll {
  width: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  padding-top: 50px;
  margin: 0 auto;
  font-size: 12px;
  font-size: .75rem;
  font-family: Catamaran;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .32em;
}

.p-index-eyecatch__scroll-bar {
  width: 2px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #d7d7d7;
}

.p-index-eyecatch__scroll-bar-in {
  height: 80%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #e54b52;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.p-index-eyecatch__scroll-bar-in.is-animate {
  -webkit-animation-name: animateScrollBar;
  animation-name: animateScrollBar;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@-webkit-keyframes animateScrollBar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #e54b52;
  }
  33% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    background: #e54b52;
  }
  33.0001% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #eaa314;
  }
  66% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    background: #eaa314;
  }
  66.0001% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #5880ff;
  }
  100% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    background: #5880ff;
  }
}

@keyframes animateScrollBar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #e54b52;
  }
  33% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    background: #e54b52;
  }
  33.0001% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #eaa314;
  }
  66% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    background: #eaa314;
  }
  66.0001% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #5880ff;
  }
  100% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    background: #5880ff;
  }
}

/* ---------------------------------------------------------------- box ---- */

.lcl-feature {
  padding: 15px;
}

.lcl-feature-list {
  font-size: 0;
}

.lcl-feature-item {
  display: inline-block;
  width: calc((100% / 3) - 10px);
  height: 410px;
  text-align: center;
}

/*.lcl-feature-item:not(:last-child){
	margin-right: 15px;
}*/

.lcl-feature-item.lcl-feature-item--01:before {
  background: url(../img/bg_01.jpg) center 35% /cover no-repeat;
  z-index: 1;
}

.lcl-feature-item.lcl-feature-item--02:before {
  background: url(../img/bg_02.jpg) center 30% /cover no-repeat;
  z-index: 1;
}

.lcl-feature-item.lcl-feature-item--03:before {
  background: url(../img/bg_03.jpg) center 20% /cover no-repeat;
  z-index: 1;
}

/*.lcl-feature-item:after{
	content: "";
	position: absolute;
	top: 0;
	left: auto;
	right: auto;
	margin: 0 auto;
	width: 2px;
	height: 0px;
	background-color: #e54b52;
	transition: .3s ease;
}*/

.lcl-feature-item:after {
  content: "";
  border-radius: 50%;
  width: 310px;
  height: 310px;
  z-index: 20;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -155px 0 0 -155px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  /*border-right: 2px solid rgba(255, 255, 255 ,0);*/
  border-right: 2px solid #00a1e9;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  border-left: 2px solid #00a1e9;
  text-indent: -9999px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: edgeloader .8s infinite linear;
  animation: edgeloader .8s infinite linear;
  opacity: 0;
  z-index: 2;
}

.lcl-feature-item.lcl-feature-item--02:after {
  border-left: 2px solid #00a1e9;
}

.lcl-feature-item.lcl-feature-item--03:after {
  border-left: 2px solid #00a1e9;
}

@-webkit-keyframes edgeloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes edgeloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ---------------------- option ---- */

.lcl-feature-item-inner {
  width: 100%;
  height: 100%;
  padding: 90px 0;
  color: #fff;
  display: block;
  position: relative;
  z-index: 3;
}

.lcl-feature-item__ttl {
  font-size: 34px;
  letter-spacing: 0.2em;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 100;
  height: 190px;
}

.lcl-feature-item__ttl--sub {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 0.3em;
  font-weight: 200;
  position: relative;
}

/* ---------------------------------------------------------------- hdlist ---- */

.lcl-hdlist {
  padding: 60px 0 70px;
}

.lcl-hdlist-list {
  font-size: 0;
}

.lcl-hdlist-item {
  display: inline-block;
  width: 200px;
  text-align: center;
}

.lcl-hdlist-item:nth-child(1) .lcl-hdlist-item__img {
  max-width: 200px;
}

.lcl-hdlist-item:nth-child(2) .lcl-hdlist-item__img {
  max-width: 200px;
}

.lcl-hdlist-item:nth-child(3) .lcl-hdlist-item__img {
  max-width: 200px;
}

.lcl-hdlist-item:nth-child(4) .lcl-hdlist-item__img {
  max-width: 200px;
}

@media screen and (min-width: 767px) {
  .lcl-feature-item:hover:after {
    opacity: 1;
    transition: .3s ease;
  }
}

/* ---------------------------------------------------------------- box ---- */

.lcl-vision {
  background: url(../img/bg_01_a.jpg) center /cover no-repeat fixed;
  position: relative;
  text-align: center;
  padding-top: calc(2vw + 30px);
  padding-bottom: calc(2vw + 45px);
  color: #fff;
}

.lcl-vision__ttl {
  font-size: 65px;
  letter-spacing: 0.06em;
  font-weight: 200;
  line-height: 1.3em;
}

.lcl-vision__ttl02 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 0.3em;
}

.lcl-vision__txt {
  font-size: 14px;
}

/* ---------------------------------------------------------------- box ---- */

.lcl-contents {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1920px;
  margin: 60px auto 0;
  padding: 0 15px;
}

.lcl-contents-web {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0px auto 0;
  padding: 0 15px;
}

.lcl-company, .lcl-news {
  width: calc(50% - 7.5px);
  position: relative;
}

.lcl-web {
  width: 100%;
  position: relative;
}

.lcl-contents__ttl {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
  position: relative;
}

.lcl-contents__ttl:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -25px;
  height: 2px;
  width: 50px;
  background-color: #333;
}

.lcl-company-item {
  height: calc(27vw - 15px);
  min-height: 275px;
  max-height: 488px;
  margin-bottom: 15px;
}

.lcl-company-item01:before {
  background: url(../img/inaka.jpg) center /cover no-repeat;
}

.lcl-company-item02:before {
  background: url(../img/bg_02.jpg) center /cover no-repeat;
}

.lcl-company-item03:before {
  background: url(../img/bg_03.jpg) center /cover no-repeat;
}

.lcl-company-list {
  position: relative;
}

.lcl-company-list .lcl-company-item {
  width: calc(50% - 7.5px);
}

.lcl-company-item__link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* ---------------------- 一個目用 ---- */

.lcl-company-item01 .lcl-company-item__link {
  padding: 15% 0 0 10%;
}

.lcl-company-item01__ttl {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  margin-bottom: 5%;
}

@media screen and (min-width: 767px) {
  .lcl-company-item01:hover .lcl-company-item__link .btnlink {
    background-color: #333;
    color: #fff;
    transition: 0.7s ease;
    cursor: pointer;
  }
}

/* ---------------------- 2,3 ---- */

.lcl-company-item__ttl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 100%;
  height: 0;
}

.lcl-company-item02 .lcl-company-item__ttl {
  max-width: 300px;
  padding-top: 35.1401869%;
  background: url(../img/ttl_01.png) center /90% no-repeat;
}

.lcl-company-item03 .lcl-company-item__ttl {
  width: 84%;
  max-width: 260px;
  padding-top: 36.9432314%;
  background: url(../img/ttl_02.png) center /90% no-repeat;
}

/* ---------------------- option ---- */

.news-list-item:nth-child(2n) {
  margin-right: 0;
}

/* ---------------------------------------------------------------- box ---- */

.lcl-recruit {
  padding-top: 50px;
}

.lcl-recruit__ttl {
  font-size: 30px;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
  position: relative;
}

.lcl-recruit__ttl:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -25px;
  height: 2px;
  width: 50px;
  background-color: #333;
}

.js-recruit-slide {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------- box ---- */

.slick-arrow {
  width: 40px;
  height: 70px;
  position: absolute;
  background-color: #e54b52;
  top: calc(50% - 37px);
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
  font-size: 0;
  transition: .4s ease;
}

.slick-arrow:after {
  font-family: fontawesome;
  font-size: 20px;
  position: relative;
  color: #fff;
  transition: 0.7s ease;
  z-index: 2;
  transition: .4s ease;
}

.slick-prev:after {
  content: '\f100';
}

.slick-next:after {
  content: '\f101';
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

@media screen and (min-width: 767px) {
  .slick-arrow:hover {
    background-color: #fff;
    transition: .4s ease;
  }
  .slick-arrow:hover::after {
    color: #e54b52;
    transition: .4s ease;
  }
}

.js-recruit-slide .lcl-recruit-item {
  width: 100%;
  height: 600px;
  transition: .4s ease;
}

.js-recruit-slide .lcl-recruit-item .lcl-recruit-item__img {
  height: 600px;
  background: 0 center /cover no-repeat;
  padding: 40px 40px;
  transition: .4s ease;
}

.lcl-recruit-item--green {
  background-color: #bdd9d3;
}

.lcl-recruit-item--yellow {
  background-color: #e0d397;
}

.lcl-recruit-item--pink {
  background-color: #e1cccb;
}

@media screen and (min-width: 767px) {
  .js-recruit-slide .lcl-recruit-item:hover .lcl-recruit-item__img {
    background: 30px center /cover no-repeat;
  }
  .js-recruit-slide .lcl-recruit-item:hover.lcl-recruit-item--green {
    background-color: #223e38;
  }
  .js-recruit-slide .lcl-recruit-item:hover.lcl-recruit-item--yellow {
    background-color: #453800;
  }
  .js-recruit-slide .lcl-recruit-item:hover.lcl-recruit-item--pink {
    background-color: #463130;
  }
}

.lcl-recruit-item-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -ms-align-items: flex-start;
  align-items: flex-start;
  position: relative;
}

.lcl-recruit-item-inner.link-icon-tab::after {
  position: absolute;
  top: 0px;
  right: 0px;
}

.lcl-recruit-detail {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 26px;
  margin-bottom: auto;
}

.lcl-recruit-name {
  font-size: 72px;
  letter-spacing: 0.05em;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  line-height: 1em;
  margin-bottom: 40px;
}

.lcl-recruit-item--green {
  color: #9db3ae;
}

.lcl-recruit-item--yellow {
  color: #bdb280;
}

.lcl-recruit-item--pink {
  color: #bda6a5;
}

.lcl-recruit-txt {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 36px;
  color: #fff;
}

/* ---------------------------------------------------------------- box ---- */

.lcl-other {
  margin: 0 auto;
  padding: 15px;
  max-width: 1920px;
}

.lcl-other-item {
  width: calc(50% - 7.5px);
  text-align: center;
  position: relative;
  height: 12vw;
  min-height: 270px;
  max-height: 500px;
  overflow: hidden;
  transition: all .4s ease;
  background-color: #000;
  position: relative;
  margin-bottom: 15px;
}

.lcl-other-item.link-icon-tab::after {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
}

.lcl-other-item__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}

.lcl-other-item__link:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .4s ease;
}

.lcl-other-item--01 .lcl-other-item__link:before {
  background: url(../img/bg_01.jpg) center /cover no-repeat;
}

.lcl-other-item--02 .lcl-other-item__link:before {
  background: url(../img/bg_02.jpg) center /cover no-repeat;
}

.lcl-other-item--03 .lcl-other-item__link:before {
  background: url(../img/bg_03.jpg) center /cover no-repeat;
}

.lcl-other-item--04 .lcl-other-item__link:before {
  background: url(../img/bg_04.jpg) center /cover no-repeat;
}

.lcl-other-01__ttl {
  width: 500px;
  height: 271px;
  background: url(../img/ttl_02_01.png) center /100% no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.lcl-other-02__ttl {
  width: 500px;
  height: 271px;
  background: url(../img/ttl_02_02.png) center /100% no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.lcl-other-03__ttl {
  width: 500px;
  height: 271px;
  background: url(../img/ttl_02_03.png) center /100% no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.lcl-other-04__ttl {
  width: 500px;
  height: 271px;
  background: url(../img/ttl_02_04.png) center /100% no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .lcl-other-01__ttl, .lcl-other-02__ttl, .lcl-other-03__ttl, .lcl-other-04__ttl {
    width: 100%;
  }
}

@media screen and (min-width: 767px) {
  .lcl-other-item:hover .lcl-other-item__link::before {
    transform: scale(1.08);
    opacity: 0.6;
    transition: all .4s ease;
  }
}

@media screen and (max-width: 767px) {
  /* ---------------------------------------------------------------- SP ---- */
  .lcl-loading--logo-circle {
    top: -10px;
    width: 80px;
  }
  .lcl-loading--logo-txt {
    width: 110px;
  }
  .lcl-loading--logo-txt--active {
    bottom: -40px;
  }
  .header-logo {
    width: 160px;
    height: 50px;
    transition: all .3s ease;
  }
  .scroll .header-logo {
    width: 80px;
    height: 50px;
  }
  .lcl-main {
    min-height: auto;
    /* height: 100vh; */
    position: relative;
  }
  #contact>.lcl-main {
    height: auto;
  }
  .lcl-main-inner {
    background: url(../img/bg_01.jpg) center /cover no-repeat;
  }
  .lcl-main-item__block {
    width: 100%;
    height: 100vh;
  }
  .lcl-main-item__img {
    width: 100%;
    height: 100vh;
    /*background: url(../img/ttl_01.png) center /100% no-repeat;*/
    padding-top: 55.275862%;
    position: absolute;
    right: 0%;
    bottom: 15%;
    margin: auto;
  }
  .lcl-main-item__img-mi {
    width: 9.4vw;
    height: 9.5vw;
    top: 15vw;
  }
  .lcl-main-item__img-ra {
    width: 7.4vw;
    height: 9.5vw;
    left: 16vw;
    top: 15vw;
  }
  .lcl-main-item__img-i {
    width: 8.8vw;
    height: 9.5vw;
    top: 15vw;
    left: 30vw;
  }
  .lcl-main-item__img-mi--fade {
    /*top: 18vw;*/
    width: 200px;
    top: 53%;
    left: 24%;
  }
  .lcl-main-item__img-ra--fade {
    /*top: 18vw;*/
    width: 200px;
    top: 58%;
    left: 24%;
  }
  .lcl-main-item__img-i--fade {
    top: 18vw;
  }
  /* ---------------------------------------------------------------- box ---- */
  .lcl-feature-list {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .lcl-feature-item {
    display: block;
    width: 100%;
    height: 60vw;
    max-height: 310px;
  }
  .lcl-feature-item:not(:last-child) {
    margin: 0 auto 15px;
  }
  .lcl-feature-item--01:before, .lcl-feature-item--02:before, .lcl-feature-item--03:before {
    background-position: center top;
  }
  .lcl-feature-item.lcl-feature-item--03:before {
    background-position: center 30%;
  }
  .lcl-feature-item-inner {
    padding: 30px 0;
    position: relative;
  }
  .lcl-feature-item__ttl {
    font-size: 20px;
    top: 3%;
    min-height: 110px;
    height: 25vw;
    text-align: center;
    right: 0;
    left: 0;
    margin: auto;
  }
  .lcl-feature-item__ttl--sub {
    font-size: 18px;
    position: absolute;
    left: 0;
    right: 0;
  }
  .lcl-feature-item:after {
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -95px;
    opacity: .3;
    -webkit-animation: edgeloader 1.5s infinite linear;
    animation: edgeloader 1.5s infinite linear;
  }
  /* ---------------------------------------------------------------- box ---- */
  .lcl-hdlist {
    padding: 0px 15px 5px;
  }
  .lcl-hdlist-list {
    padding-left: 0;
  }
  .lcl-hdlist-item {
    display: inline-block;
    width: 50%;
    margin-bottom: 15px;
    text-align: left;
  }
  .lcl-hdlist-item:nth-child(1) .lcl-hdlist-item__img {
    max-width: calc( 122px / 1.5);
  }
  .lcl-hdlist-item:nth-child(2) .lcl-hdlist-item__img {
    max-width: calc( 150px / 1.5);
  }
  .lcl-hdlist-item:nth-child(3) .lcl-hdlist-item__img {
    max-width: calc( 114.5px / 1.5);
  }
  .lcl-hdlist-item:nth-child(4) .lcl-hdlist-item__img {
    max-width: calc( 181px / 1.5);
  }
  /* ---------------------------------------------------------------- box ---- */
  .lcl-vision {
    padding: calc(2vw + 24px) 15px calc(2vw + 35px);
    background-attachment: scroll;
  }
  .lcl-vision__ttl {
    font-size: 30px;
  }
  .lcl-vision__ttl02 {
    font-size: 20px;
    line-height: 1.5em;
    letter-spacing: 0.2em;
  }
  .lcl-vision__txt {
    font-size: 13px;
    text-align: left;
    line-height: 22px;
  }
  /* ---------------------------------------------------------------- box ---- */
  .lcl-company, .lcl-news {
    width: 100%;
    position: relative;
  }
  .lcl-company-item01 .lcl-company-item__link {
    padding: 10% 0 0 5%;
  }
  .lcl-contents {
    margin: 25px auto 15px;
    padding: 0 15px;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .lcl-contents__ttl {
    font-size: 25px;
  }
  .lcl-company-item {
    height: calc(65vw - 45px);
    min-height: auto;
    max-height: 100%;
    margin-bottom: 10px;
  }
  .lcl-company-item01__ttl {
    font-size: 12px;
    line-height: 21px;
  }
  .lcl-company-list .lcl-company-item {
    width: calc(50% - 5px);
    height: calc(56vw - 10px);
  }
  .news-more {
    font-size: 10px;
    width: 100px;
  }
  .news-list, .slick-list {
    width: 100%;
  }
  .news-list-item {
    height: 200px;
    min-height: auto;
    max-height: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .news-list-item span {
    width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 22px;
    padding: 10px;
  }
  .web-more {
    font-size: 10px;
    width: 100px;
  }
  .web-list {
    width: 100%;
  }
  .web-list-item {
    height: 200px;
    min-height: auto;
    max-height: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .web-list-item span {
    width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 22px;
    padding: 10px;
  }
  /* ---------------------------------------------------------------- box ---- */
  .lcl-recruit {
    padding-top: 30px;
  }
  .lcl-recruit__ttl {
    font-size: 25px;
  }
  .js-recruit-slide .lcl-recruit-item {
    height: 110vw;
  }
  .js-recruit-slide .lcl-recruit-item .lcl-recruit-item__img {
    height: 110vw;
    padding: 25px 35px;
  }
  .lcl-recruit-detail {
    font-size: 13px;
    line-height: 22px;
  }
  .lcl-recruit-name {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .lcl-recruit-txt {
    font-size: 13px;
    line-height: 22px;
  }
  /* ---------------------------------------------------------------- box ---- */
  .lcl-other {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .lcl-other-item {
    width: 100%;
    height: 47vw;
    min-height: auto;
  }
  .lcl-other-item--qa {
    margin-bottom: 15px;
  }
  .lcl-other-qa__ttl {
    width: 80%;
    background-size: contain;
    height: 80%;
    min-width: 110px;
    min-height: 102px;
  }
  .p-index-eyecatch {
    bottom: 40px;
    font-size: 10px;
  }
  .p-index-eyecatch__scroll-bar {
    height: 55%;
  }
}