@charset "UTF-8";
/* CSS Document */
/* CSS Document */
/*---------------------
カラム幅設定
----------------------*/
/*---------------------
カラー設定
----------------------*/
/*---------------------
ベンダープレフィックス初期設定
----------------------*/
/*---------------------
透明度　初期設定
----------------------*/
/*---------------------
フォントサイズ初期設定
----------------------*/
/*---------------------
フォントファミリー初期設定
----------------------*/
/*----------------
Retina,高解像度 対策
-----------------*/
/*---------------------
角丸　初期設定
----------------------*/
/*
.box {
     @include circle(100px);
     background: #fc0;
}
*/
/*---------------------
ボックスシャドウ　mixin
----------------------*/
/*
 div { @include box-shadow(8px, 8px);}
 */
/*---------------------
グラデーション　mixin
----------------------*/
/* 使用例
 div { @include gradient(#ff00ff, #ff00cc, vertical);}
*/
/*---------------------
デュレーション　mixin
----------------------*/
/*
.move{
    @include transition(0.5s);
}
*/
/*---------------------
キーフレーム　mixin
----------------------*/
@-webkit-keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #007235;
  }
}

@keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #007235;
  }
}

/*---------------------
カラムグリッド mixin
----------------------*/
/*---------------------
カラムグリッド mixin
----------------------*/
/*　使用例 
div { @include ghost-button(“Trebuchet”, 12px, #ffffff, 5px, #34dec6, 4px, 300ms, #000000 );}
*/
/*---------------------
リンクカラー初期設定
----------------------*/
/*---------------------
汎用BOX用　マージンMIXIN リセット
----------------------*/
.m_0 {
  margin: 0 !important;
}

.p_0 {
  padding: 0 !important;
}

/*---------------------
HTML BODY初期設定
----------------------*/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #111;
}

html {
  margin: 0;
  padding: 0;
}

html li {
  list-style-type: none;
}

body {
  overflow-x: hidden;
}

/*---------------------
wrapper設定 
----------------------*/
#wrapper {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.contentsWrap {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.headline {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

section.footerArea {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}

.footerContents {
  width: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url(../img/bg_footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 70px 0 60px;
  margin-top: -25px;
  z-index: 1;
}

.footerContentsInner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
  padding-bottom: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footerContentsInner .boxTel {
  position: relative;
  width: 50%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #848484;
  text-align: center;
}

.footerContentsInner .boxMail {
  position: relative;
  width: 50%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.footerContentsInner .headline {
  width: 100%;
  text-align: center;
}

.footerContentsInner .headline h3 {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
}

.footerContentsInner .headline h3 span {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 1.7rem;
  letter-spacing: 0.025em;
  color: #fff;
  margin-bottom: 10px;
}

@media only screen and (max-width: 979px) {
  section.footerArea {
    margin-top: 80px;
  }
  .footerContents {
    padding: 50px 0 40px;
    margin-top: -25px;
  }
  .footerContentsInner {
    padding-bottom: 50px;
  }
  .footerContentsInner .boxTel {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footerContentsInner .boxMail {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footerContentsInner .headline h3 {
    display: block;
    font-size: 5rem;
    margin-bottom: 30px;
  }
  .footerContentsInner .headline h3 span {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  section.footerArea {
    margin-top: 60px;
  }
  .footerContents {
    padding: 40px 0 40px;
    margin-top: -25px;
  }
  .footerContentsInner {
    padding-bottom: 20px;
  }
  .footerContentsInner .boxTel {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footerContentsInner .boxMail {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .footerContentsInner .headline h3 {
    display: block;
    font-size: 4rem;
    margin-bottom: 30px;
  }
  .footerContentsInner .headline h3 span {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .footerContents {
    padding: 40px 0 40px;
    margin-top: -25px;
  }
  .footerContentsInner {
    padding-bottom: 20px;
  }
  .footerContentsInner .headline h3 {
    display: block;
    font-size: 3.8rem;
    margin-bottom: 30px;
  }
  .footerContentsInner .headline h3 span {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.footerContentsInner .boxTel {
  position: relative;
}

.footerContentsInner .boxTel .boxTelInner {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.footerContentsInner .boxTel .boxTelInner {
  text-align: center;
}

.footerContentsInner .boxTel .boxTelInner h4 {
  font-size: 2.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #fff;
}

.footerContentsInner .boxTel .telNumber {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.footerContentsInner .boxTel .telNumber span {
  font-size: 2.8rem;
  letter-spacing: 0.025em;
  color: #fff;
}

.footerContentsInner .boxTel .telTxt {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-size: 1.7rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #fff;
}

.footerContentsInner .boxMail {
  position: relative;
}

.footerContentsInner .boxMail .boxMailInner {
  text-align: center;
}

.footerContentsInner .boxMail .boxMailInner h4 {
  font-size: 2.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 979px) {
  .footerContentsInner .boxTel .boxTelInner h4 {
    font-size: 2rem;
  }
  .footerContentsInner .boxTel .telNumber {
    font-size: 4rem;
    margin-bottom: 5px;
  }
  .footerContentsInner .boxTel .telNumber span {
    font-size: 2.5rem;
  }
  .footerContentsInner .boxTel .telTxt {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .footerContentsInner .boxTel .boxTelInner h4 {
    font-size: 2rem;
  }
  .footerContentsInner .boxTel .telNumber {
    font-size: 3.8rem;
    margin-bottom: 5px;
  }
  .footerContentsInner .boxTel .telNumber span {
    font-size: 2.2rem;
  }
  .footerContentsInner .boxTel .telTxt {
    font-size: 1.6rem;
  }
}

.footerSubInner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footerSubInner .footerLogo {
  width: 35%;
}

.footerSubInner .footerLogo img {
  display: block;
  width: 100%;
  max-width: 260px;
}

.footerSubInner .footerLogo .addressTxt {
  margin-top: 40px;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.footerSubInner .footerMenu ul {
  width: 100%;
  max-width: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footerSubInner .footerMenu ul li {
  padding: 0 15px;
}

.footerSubInner .footerMenu ul li a {
  font-size: 1.7rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #111;
  text-decoration: none;
}

.footerSubInner .footerMenu ul li a:hover {
  color: #007235;
}

@media only screen and (max-width: 979px) {
  .footerSubInner {
    padding: 30px 20px;
  }
  .footerSubInner .footerLogo {
    width: 100%;
    margin-top: 30px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footerSubInner .footerLogo img {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  .footerSubInner .footerLogo .addressTxt {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .footerSubInner .footerMenu {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footerSubInner .footerMenu ul {
    max-width: 100%;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footerSubInner .footerMenu ul li {
    width: 50%;
    display: block;
    padding: 0 15px;
    border-bottom: 1px solid #e8e8e8;
  }
  .footerSubInner .footerMenu ul li a {
    display: block;
    padding: 15px 0;
    font-size: 1.7rem;
    text-decoration: none;
  }
  .footerSubInner .footerMenu ul li a:hover {
    color: #007235;
  }
  .footerSubInner .footerMenu ul li:last-child {
    border-bottom: none;
  }
}

@media only screen and (max-width: 767px) {
  .footerSubInner {
    padding: 30px 20px;
  }
  .footerSubInner .footerLogo {
    width: 100%;
    margin-top: 30px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footerSubInner .footerLogo img {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .footerSubInner .footerLogo .addressTxt {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .footerSubInner .footerMenu {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footerSubInner .footerMenu ul {
    max-width: 100%;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footerSubInner .footerMenu ul li {
    width: 100%;
    display: block;
    padding: 0 15px;
    border-bottom: 1px solid #e8e8e8;
  }
  .footerSubInner .footerMenu ul li a {
    position: relative;
    display: block;
    padding: 15px 0;
    margin-bottom: 5px;
    font-size: 1.7rem;
    text-decoration: none;
  }
  .footerSubInner .footerMenu ul li a:hover {
    color: #007235;
  }
  .footerSubInner .footerMenu ul li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .footerSubInner .footerMenu ul li a:hover::after {
    right: 10px;
  }
  .footerSubInner .footerMenu ul li:last-child {
    border-bottom: none;
  }
}

.footerEnd {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #c8c8c8;
}

.footerEndInner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footerEndInner .copyright {
  width: 50%;
}

.footerEndInner .copyright p {
  font-size: 1.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #111;
}

.footerEndInner .others {
  width: 50%;
  text-align: right;
}

.footerEndInner .others a {
  color: #111;
}

.footerEndInner .others a:hover {
  color: #007235;
}

@media only screen and (max-width: 979px) {
  .footerEndInner .copyright {
    width: 100%;
    text-align: center;
  }
  .footerEndInner .others {
    width: 100%;
    text-align: center;
  }
}

#page_top {
  position: fixed;
  bottom: 10%;
  right: 30px;
  z-index: 10;
}

#page_top a {
  text-align: center;
}

#page_top a img {
  display: block;
  width: 100%;
  max-width: 62px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#page_top a:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 640px) {
  #page_top a img {
    max-width: 40px;
  }
}

@media screen and (max-width: 480px) {
  #page_top {
    bottom: 15%;
  }
  #page_top a img {
    max-width: 30px;
  }
}

section.pageNavi {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

section.pageNavi .pnImg {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  padding-top: 20.8%;
  border-bottom: 7px solid #007235;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

section.pageNavi .pnImgBottom {
  z-index: 0;
  display: block;
  width: 100%;
  height: 80px;
  background: #f6f6f6;
}

@media only screen and (max-width: 1279px) {
  section.pageNavi .pnImg {
    height: 300px;
  }
}

@media only screen and (max-width: 979px) {
  section.pageNavi .pnImg {
    height: 250px;
  }
}

@media only screen and (max-width: 767px) {
  section.pageNavi .pnImg {
    height: 200px;
  }
}

.pn_about {
  background: url(../img/pn/about.jpg) no-repeat top center;
  background-size: cover;
}

.pn_service {
  background: url(../img/pn/service.jpg) no-repeat top center;
  background-size: cover;
}

.pn_recruit {
  background: url(../img/pn/recruit.jpg) no-repeat top center;
  background-size: cover;
}

.pn_company {
  background: url(../img/pn/company.jpg) no-repeat top center;
  background-size: cover;
}

.pn_contact {
  background: url(../img/pn/contact.jpg) no-repeat top center;
  background-size: cover;
}

.pageHeadlineWrap {
  position: relative;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  text-align: left;
  margin-top: -150px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.pageHeadline {
  position: relative;
  width: 50%;
  max-width: 1480px;
  padding: 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
  background: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 1440px) {
  .pageHeadline {
    padding: 20px 20px;
  }
}

@media only screen and (max-width: 1279px) {
  .pageHeadlineWrap {
    margin-top: -130px;
  }
  .pageHeadline {
    width: 60%;
  }
}

@media only screen and (max-width: 979px) {
  .pageHeadlineWrap {
    margin-top: -110px;
  }
  .pageHeadline {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .pageHeadlineWrap {
    margin-top: -110px;
  }
  .pageHeadline {
    width: 70%;
  }
}

@media only screen and (max-width: 480px) {
  .pageHeadlineWrap {
    margin-top: -100px;
  }
  .pageHeadline {
    width: 80%;
  }
}

.breadCrumb {
  position: relative;
  width: 100%;
  max-width: 1440px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  margin-bottom: 70px;
  border-bottom: 1px solid #ebebeb;
}

.breadCrumb p {
  font-size: 1.65rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.breadCrumb p a {
  color: #111;
}

.breadCrumb p a:hover {
  color: #007235;
  text-decoration: underline;
}

@media only screen and (max-width: 1279px) {
  .breadCrumb {
    padding: 0 20px;
    padding-bottom: 20px;
  }
  .breadCrumb p {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 979px) {
  .breadCrumb {
    margin-bottom: 50px;
    padding: 0 20px;
    padding-bottom: 20px;
  }
  .breadCrumb p {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .breadCrumb {
    margin-bottom: 40px;
    padding: 0 20px;
    padding-bottom: 10px;
  }
  .breadCrumb p {
    font-size: 1.5rem;
  }
}

.baseWidth {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

@media only screen and (max-width: 979px) {
  .baseWidth {
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.baseWidth2 {
  width: 100%;
  max-width: 1440px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
/*# sourceMappingURL=style.css.map */