@charset "UTF-8";

/* ============================================
  font import
============================================ */
@import url("reset.css");
@import url("jquery.css");
@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900");

/* ============================================
  共通
============================================ */

html {
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  font-size: 1.6rem;
  line-height: 2;
  font-style: normal;
  letter-spacing: 0;
  min-width: 1240px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
       -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}

a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

/* pc sp
--------------------------------- */
.pc {
  display: inline-block !important;;
}
.sp {
  display: none !important;;
}
.sp-min {
  display: none !important;;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline-block !important;;
  }
}
@media only screen and (max-width: 480px) {
  .sp-min {
    display: inline-block !important;;
  }
}

/* flex
--------------------------------- */
.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content:         space-between;
}
.flex-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap:         wrap;
}
.flex-center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content:         center;
  -webkit-align-items: center;
  align-items:         center;
}
.flex-around {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content:         space-around;
}

/* ease
--------------------------------- */
.ease,
.ease *,
.ease *::after,
.ease *::before {
  -webkit-transition: .2s all ease;
     -moz-transition: .2s all ease;
      -ms-transition: .2s all ease;
       -o-transition: .2s all ease;
          transition: .2s all ease;
}

/* opacity
--------------------------------- */
.opacity a:hover {
  opacity: 0.7;
}

/* container
--------------------------------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* clearfix
--------------------------------- */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}

/* font
--------------------------------- */
.f-red {
  color: #990000;
}
.f-blue {
  color: #226db6;
}
.f-bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-underline {
  text-decoration: underline;
}


/* inview
--------------------------------- */
.js-inview {
  opacity: 0;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  transition-delay: .4s;
}
.js-inview_view {
  opacity: 1;
}


@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
    font-size: 1.4rem;
  }
}



/* ============================================
  header
============================================ */

.header {
  min-width: 1240px;
  width: 100%;
  height: 130px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.header_in {
  max-width: 1400px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.header_logo {
  max-width: 308px;
  padding: 0;
}
.header_logo a {
  transition: .2s;
  -webkit-transition: .2s;
}
.header_logo a:hover {
  opacity: 0.7;
}
.header_navList {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.header_navList .item {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  margin: 10px 20px;
  position: relative;
}
.header_navList .item a {
  padding: 7px;
  display: inline-block;
}
.header_navList .item a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 3px;
  margin: auto;
  content: '';
  -webkit-transition: width 300ms;
  transition: width 300ms;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  background-color: #b8ce3a;
}
.header_navList .item a:hover::after {
  width: 100%;
}

.header_navList .btn-entry {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  width: 220px;
  line-height: 70px;
  text-align: center;
  margin-left: 30px;
}
.header_navList .btn-entry a {
  color: #fff;
  display: block;
  border-radius: 50px;
  background: #b8ce3a;
  transition: .2s;
  -webkit-transition: .2s;
}
.header_navList .btn-entry a:hover {
  opacity: 0.7;
}


@media only screen and (min-width: 768px) {
  .is-header-scroll {
    height: 80px;
    background: rgba(255, 255, 255, .95);
  }
  .is-header-scroll .header_logo {
    max-width: 230px;
  }
  .is-header-scroll .header_in {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .is-header-scroll .header_navList .btn-entry {
    line-height: 50px;
  }
  .is-header-scroll .header_navList .item {
    margin: 0px 20px;
  }
  .is-header-scroll .header_navList .item a {
    padding: 5px 7px;
  }
}

@media only screen and (max-width: 1360px) {

  .header_navList .item {
      font-size: 1.6rem;
      margin: 10px;
      position: relative;
  }

}

@media only screen and (max-width: 767px) {

  .header {
    min-width: auto;
    height: 55px;
    background: #fff;
  }
  .header_in {
    padding: 10px;
  }
  .header_logo {
    max-width: 170px;
  }
  .header_nav {
    display: none;
    background: #fff;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 55px;
    left: 0;
  }
  .header_navList {
    padding-top: 2%;
  }
  .header_navList .item {
    margin: 1.5%;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .header_navList .item a {
    color: #000;
    padding: 15px;
    min-width: 100px;
  }
  .header_navList .item a:hover::after {
    content: none;
  }
  .header_navList .btn-entry {
    font-size: 1.8rem;
    line-height: 55px;
    margin: 6% auto;
    width: 70%;
    min-width: 160px;
  }
  .header_navList .btn-entry a {
    width: 100%;
  }

  .header_menuBtn {
    width:55px;
    height: 55px;
    display:block;
    background: #b8ce3a;
    position:absolute;
    right: 0;
    top: 0;
    z-index: 101;
  }
  .header_menuBtn i {
    display:block;
    width:26px;
    height:2px;
    border-radius:3px;
    background:#fff;
    transition:background 0.5s;
    position:relative;
    left: 15px;
    top: 26px;
  }
  .header_menuBtn i:before,
  .header_menuBtn i:after{
    content:"";
    display:block;
    width:26px;
    height:2px;
    border-radius:3px;
    background:#fff;
    position:absolute;
    transform:rotate(0deg);
    transition:all 0.3s;
    line-height:1;
  }
  .header_menuBtn i:before{
    transform:translateY(9px);
  }
  .header_menuBtn i:after{
    transform:translateY(-9px);
  }
  .is-open .header_menuBtn {
    background: none;
  }
  .is-open .header_menuBtn i{
    background:transparent;
  }
  .is-open .header_menuBtn i:before,
  .is-open .header_menuBtn i:after{
    background:#b8ce3a;
  }
  .is-open .header_menuBtn i:after{
    transform:translateY(0px) rotate(45deg);
  }
  .is-open .header_menuBtn i:before{
    transform:translateY(0px) rotate(-45deg);
  }

}


/* ============================================
  footer
============================================ */

.footer {
  background: #b8ce3a;
  text-align: center;
  padding: 15px;
}
.copyright {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 1.2rem;
  }

}


/* ============================================
  mainContent
============================================ */

.mainContent {
  padding-top: 130px;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.sec_title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
}
.sec_title_lg {
  font-size: 5rem;
}
.sec_title_sm {
  font-size: 3.5rem;
  line-height: 1.2;
}
.sec_title .underline::after {
  content: "";
  display: block;
  height: 5px;
  width: 380px;
  background: #b8ce3a;
  margin-top: 40px;
  margin-left: -10px;
}

.cont_block_sub_title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.sec_title_header {
  position: relative;
}
.sec_title_header .sec_title {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sec_title_header_img {
  width: 100%;
}

.sec_title_sm {
  margin-left: 5px;
}

/* about
------------------------------------*/
.sec_about {
  padding-bottom: 30px;
}
.about_in {
  position: relative;
}
.about_title {
  margin-bottom: 70px;
}
.about_cont_block_img {
  width: 540px;
}
.about_cont_block_text {
  text-align: justify;
  text-justify: inter-ideograph;
  width: 620px;
  margin-right: 40px;
}
.about_cont_block_dl {
  margin-top: 20px;
}


/* work
------------------------------------*/
.work_cont_block_img {
  width: 500px;
}
.work_cont_block_text {
  width: 700px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.work_cont_block_dl {
  margin-top: 10px;
}
.work_cont_block_dl:first-of-type {
  margin-top: 20px;
}
.work_cont_block_dl dd {
  line-height: 1.6;
}
.work_cont_block01 .work_cont_block_text {
  padding-left: 50px;
}
.work_cont_block02 .work_cont_block_text {
  padding-right: 50px;
}
.work_cont_block02 .work_cont_block_img {
  padding-top: 20px;
}
.work_cont_block02 {
  margin-top: 50px;
}

/* advantage
------------------------------------*/
.bg_grad {
  background: url("../img/bg_grad.png") no-repeat center top / cover;
  margin-top: -200px;
  padding-top: 240px;
}
.advantage_cont {
  background: #fff;
  border: 10px solid #226db6;
  border-radius: 6px;
  padding: 50px 70px 80px;
}
.lutsuku_logo {
  width: 80px;
  margin: 0 auto 40px;
}
.advantage_cont_block {
  padding-top: 80px;
}
.advantage_cont_block_img {
  width: 500px;
}
.advantage_cont_block_text {
  width: calc(100% - 500px);
  text-align: justify;
  text-justify: inter-ideograph;
}
.advantage_cont_block_text01 {
  padding: 20px 20px 0 40px;
}
.advantage_cont_block_text02 {
  padding: 20px 40px 0 20px;
}
.advantage_cont_block_title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.advantage_cont_block_title .underline::after {
    content: "";
    display: block;
    height: 3px;
    width: 280px;
    background: #b8ce3a;
    margin-top: 5px;
    margin-left: -40px;
}
.advantage_cont_block_text02 .underline::after {
  margin-left: auto;
  margin-right: -40px;
}



/* company
------------------------------------*/
.sec_company.section {
  padding-top: 0;
}
.company_in {
  margin-top: 80px;
}
.company_title {
  position: relative;
  margin-bottom: 80px;
}
.txt_aboutus {
  width: 277px;
  position: absolute;
  left: 50%;
  bottom: -75px;
}
.company_message {
  position: relative;
  margin-bottom: 40px;
  padding-top: 40px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.company_message_title {
  color: #fff;
  background: #b8ce3a;
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 30px;
  padding-left: 450px;
}
.company_message_title_fs {
  font-size: 3rem;
}
.company_message_img {
  width: 420px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.company_message_text {
  background: #e3e3e3;
  padding: 40px;
  padding-left: 475px;
}

.recruit_table {
  width: 100%;
}
.recruit_table tr {
  border-bottom: 2px solid #e3e3e3;
}
.recruit_table tr:first-child {
  border-top: 2px solid #e3e3e3;
}
.recruit_table th,
.recruit_table td {
  padding: 25px;
  vertical-align: middle;
}
.recruit_table th {
  text-align: center;
  background: #b8ce3a;
  font-size: 1.8rem;
  font-weight: bold;
  width: 30%;
}
.recruit_table td {
  text-align: left;
  padding-left: 80px;
}

@media only screen and (max-width: 767px) {

  .mainContent {
    padding-top: 55px;
  }
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .sec_title {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  .sec_title_lg {
    font-size: 2.4rem;
  }
  .sec_title_sm {
    font-size: 1.8rem;
  }
  .sec_title .underline::after {
    height: 4px;
    width: 280px;
    margin-top: 15px;
    margin-left: -20px;
  }
  .cont_block_sub_title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }


  .about_cont_block_text,
  .about_cont_block_img {
    width: 100%;
    margin: auto;
    padding: 0;
  }
  .about_cont_block_text {
    margin-bottom: 20px;
  }


  .work_cont_block_text,
  .work_cont_block_img {
    width: 100%;
    margin: auto;
    padding: 0;
  }
  .work_cont_block01 .work_cont_block_img,
  .work_cont_block02 .work_cont_block_img {
    padding-top: 30px;
  }
  .work_cont_block01 .work_cont_block_text,
  .work_cont_block02 .work_cont_block_text {
    padding: 0;
  }
  .work_cont_block01 .work_cont_block_text {
    order: 0;
    -webkit-order: 0;
  }
  .work_cont_block01 .work_cont_block_img {
    order: 1;
    -webkit-order: 1;
  }
  .work_cont_block02 {
    margin-top: 40px;
  }

  .bg_grad {
    margin-top: -60vw;
    padding-top: 60vw;
  }
  .advantage_cont_block_img,
  .advantage_cont_block_text {
    width: 100%;
  }
  .advantage_cont {
    border: 6px solid #226db6;
    padding: 40px 20px 20px;
  }
  .lutsuku_logo {
    width: 50px;
    margin: 0 auto 20px;
  }
  .advantage_cont_block {
    padding-top: 20px;
  }
  .advantage_cont_block_text {
    padding: 20px 0;
  }
  .advantage_cont_block_title {
    font-size: 2rem;
    text-align: left;
  }
  .advantage_cont_block_title .underline::after {
    width: 250px;
    margin-left: -20px;
    margin-right: auto;
  }
  .advantage_cont_block02 .advantage_cont_block_text  {
    order: 1;
    -webkit-order: 1;
  }

  .company_in {
    margin-top: 20px;
  }
  .company_message {
    padding-top: 0;
  }
  .company_message_title {
    padding: 15px;
  }
  .company_message_text {
    padding: 20px;
  }
  .company_message_title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .company_message_title_fs {
    font-size: 1.8rem;
    margin-top: 10px;
    display: block;
  }
  .company_message_img {
    width: 100%;
    position: static;
    background: #e3e3e3;
  }
  .company_message_img img {
    display: block;
    width: 70%;
    max-width: 200px;
    margin: auto;
  }
  .txt_aboutus {
    width: 130px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -40px;
    z-index: 11;
  }
  .recruit_table tr {
    border-bottom: 1px solid #e3e3e3;
  }
  .recruit_table tr:first-child {
    border-top: 1px solid #e3e3e3;
  }
  .recruit_table th,
  .recruit_table td {
    font-size: 1.2rem;
    padding: 10px;
  }
  .recruit_table th {
    width: 80px;
  }
  .recruit_table td {
    padding: 10px 5px 10px 15px;
  }

}
