@charset "UTF-8";
/**
 * Table of Contntens:
 *
 * 1.0 - Reset
 * 2.0 - Basic Structure
 * 3.0 - Header
 * 4.0 - Page
 *   4.1 - Top
 *   4.2 - Page
 *   4.3 - Concept
 *   4.4 - Reason1
 *   4.5 - Reason2
 *   4.6 - company
 *   4.7 - Recruit
 *   4.8 - Contact
 * 5.0 - Footer
* -----------------------------------------------------------------------------
*/
/**
* 1.0 Reset
* -----------------------------------------------------------------------------
*/
/* images */
img {
  border: none;
}

/* typography */
body {
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

.tsuku_a {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.yu_gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
}

.sofia {
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.bold {
  font-weight: bold;
}

.green {
  color: #53a533;
}

/* link */
a:hover {
  text-decoration: none;
  color: #53a533;
}

/* button */
.btn {
  width: 256px;
  border: 2px solid #000;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 700;
  color: #000;
  padding-top: 2px;
  padding-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}
.btn:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c5ff49+0,4ca121+99 */
  background: #c5ff49; /* Old browsers */ /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #c5ff49 0%, #4ca121 99%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#c5ff49), color-stop(99%, #4ca121));
  background: linear-gradient(to right, #c5ff49 0%, #4ca121 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#c5ff49", endColorstr="#4ca121",GradientType=1 ); /* IE6-9 */
  color: #000;
  border: none;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* visibility */
.sponly {
  display: none !important;
}

@media (max-width: 750px) {
  .sponly {
    display: block !important;
  }
  .pconly {
    display: none !important;
  }
}
/* animation */
.anim {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.anim_on {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/**
* 2.0 Basic Structure
* -----------------------------------------------------------------------------
*/
body {
  margin: 0;
  overflow-x: hidden;
}

.inner {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/**
* 3.0 Header
* -----------------------------------------------------------------------------
*/
.main_header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 102;
  width: 105px;
  background-color: #fff;
  padding-left: 13px;
  padding-right: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
}
.main_header h1 {
  margin-bottom: 90px;
}
.main_header h1 img {
  max-width: 70px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.main_header .address {
  font-size: 8px;
  line-height: 1.6;
}
.main_header .address .bold {
  margin-top: 10px;
  display: block;
}
.main_header .toggle {
  cursor: pointer;
  background-image: url("../images/common/btn_toggle_open.png");
  background-size: contain;
  width: 33px;
  height: 36px;
  background-repeat: no-repeat;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
  -webkit-transition: background-image 0.1s linear;
  transition: background-image 0.1s linear;
}
.main_header .toggle.open {
  background-image: url("../images/common/btn_toggle_close.png");
}
.main_header .logo_puregreenland {
  max-width: 79px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 750px) {
  .main_header {
    width: 100%;
    height: auto;
    padding: 10px 10px;
  }
  .main_header h1 {
    margin-bottom: 0;
    margin-top: 0;
  }
  .main_header h1 img {
    max-width: 100%;
    margin-left: 0;
  }
  .main_header .toggle {
    margin-bottom: 0;
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
/* nav */
.drawer {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 600px;
  background: #fff;
  padding: 150px 0 0 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 101;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.drawer ul li {
  margin-bottom: 40px;
  list-style: none;
}
.drawer ul li a {
  color: #000;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
}
.drawer ul li a:before {
  content: "・";
  color: #53a533;
}
.drawer ul li a:hover {
  color: #53a533;
}
.drawer ul li .sub {
  padding-left: 20px;
}
.drawer ul .sm {
  margin-bottom: 20px;
  margin-top: 30px;
  margin-left: -10px;
  font-size: 12px;
}

.drawer.open {
  left: 105px !important;
}

@media (max-width: 750px) {
  .drawer {
    left: -100% !important;
    width: 100%;
  }
  .drawer.open {
    left: 0 !important;
    padding: 80px 0 0 40px;
  }
}
/**
* 4.1 Home
* -----------------------------------------------------------------------------
*/
.slider_wrap {
  margin-left: 105px;
  position: relative;
}
.slider_wrap .inner {
  max-width: 900px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 100;
}
.slider_wrap .inner p {
  color: #fff;
  font-size: 20px;
}
.slider_wrap .scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  width: 62px;
  height: 55px;
  background-image: url("../images/home/btn_scroll.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  z-index: 100;
}
.slider_wrap .wave_bottom {
  bottom: -53px;
  z-index: 100;
}

@media (max-width: 750px) {
  .slider_wrap {
    margin-left: 0;
  }
  .slider_wrap .inner {
    padding-left: 70px;
    padding-right: 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .slider_wrap .inner p {
    font-size: 12px;
  }
  .slider_wrap .wave_bottom {
    bottom: -23px;
  }
}
.txt_slider {
  max-width: 441px;
  width: 100%;
}

.bx-wrapper {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  margin-bottom: 0 !important;
}

.slider div {
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-width: 1100px;
  height: 100vh;
  min-height: 700px;
  -webkit-animation: bgscale 20s linear infinite;
  animation: bgscale 20s linear infinite;
}
.slider div:first-child {
  background-image: url("../images/home/slider1.jpg");
}
.slider div:nth-child(2) {
  background-image: url("../images/home/slider2.jpg");
}
.slider div:nth-child(3) {
  background-image: url("../images/home/slider3.jpg");
}
.slider div:nth-child(4) {
  background-image: url("../images/home/slider4.jpg");
}
.slider div:nth-child(5) {
  background-image: url("../images/home/slider5.jpg");
}

@-webkit-keyframes bgscale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes bgscale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media (max-width: 750px) {
  .slider div {
    min-width: 100%;
  }
}
.home_sec {
  margin-left: 105px;
  position: relative;
}
.home_sec .contents {
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

@media (max-width: 750px) {
  .home_sec {
    margin-left: 0;
  }
  .home_sec .contents {
    width: 100%;
  }
}
/* home_section1 */
.home_section1 {
  margin-top: 70px;
  margin-bottom: 150px;
}
.home_section1 .inner {
  position: relative;
}
.home_section1 .contents {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  padding-top: 150px;
  padding-bottom: 150px;
}
.home_section1 .contents p {
  font-size: 18px;
}
.home_section1 .bg {
  background-image: url("../images/home/bg_home_section1.jpg");
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50% - 50px);
  height: 850px;
}
.home_section1 .catch_home_section1 {
  max-width: 317px;
  margin-bottom: 35px;
}
.home_section1 .txt_home_concept {
  max-width: 152px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 750px) {
  .home_section1 {
    margin-left: 0;
    margin-bottom: 0;
  }
  .home_section1 .bg {
    width: 100%;
    position: static;
    height: auto;
    padding-top: 50px;
    padding-bottom: 110px;
  }
  .home_section1 .contents {
    max-width: 100%;
    padding-top: 45px;
    padding-bottom: 45px;
    padding-left: 40px;
    padding-right: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .home_section1 .contents p {
    font-size: 16px;
  }
  .home_section1 .catch_home_section1 {
    max-width: 280px;
    margin-bottom: 10px;
  }
  .home_section1 .txt_home_concept {
    max-width: 90px;
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-left: auto;
    margin-right: auto;
  }
}
/* home_bnr_company_pr */
.bnr_company_pr_wrap {
  margin-top: 70px;
  margin-bottom: 70px;
}
.bnr_company_pr_wrap .bnr_company_pr {
  margin: auto;
  max-width: 617px;
}
.bnr_company_pr_wrap .bnr_company_pr a {
  display: inline-block;
  font-size: 0;
}
.bnr_company_pr_wrap .bnr_company_pr a img {
  border: 2px solid #000;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bnr_company_pr_wrap .bnr_company_pr a:hover img {
  border-color: #53a533;
}

@media (max-width: 750px) {
  .bnr_company_pr_wrap .bnr_company_pr {
    padding: 0 40px;
  }
}
/* home_reason */
.home_reason h2 {
  text-align: center;
  font-size: 57px;
  line-height: 1.3;
  margin-bottom: 90px;
}
.home_reason h2 .sm {
  font-size: 30px;
}

.home_reason1 .contents,
.home_reason2 .contents {
  width: 400px;
}
.home_reason1 .bg,
.home_reason2 .bg {
  position: absolute;
  height: 550px;
  background-size: cover;
  background-position: center center;
  width: calc(100% - (100% - 900px) / 2 - 400px);
  right: 0;
  top: 0;
  overflow: hidden;
}
.home_reason1 .bg .wave_top,
.home_reason2 .bg .wave_top {
  top: -53px;
}
.home_reason1 .bg .wave_bottom,
.home_reason2 .bg .wave_bottom {
  bottom: -53px;
}

.home_reason1 {
  position: relative;
  margin-bottom: 250px;
}
.home_reason1 .bg {
  background-image: url("../images/home/bg_home_reason1.jpg");
}

.home_reason2 {
  position: relative;
  margin-bottom: 250px;
}
.home_reason2 .bg {
  background-image: url("../images/home/bg_home_reason2.jpg");
}

@media (max-width: 750px) {
  .home_reason h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .home_reason h2 .sm {
    font-size: 18px;
  }
  .home_reason1 .contents,
  .home_reason2 .contents {
    padding-left: 40px;
    padding-right: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 50px;
  }
  .home_reason1 .bg,
  .home_reason2 .bg {
    position: relative;
    width: 100%;
  }
  .home_reason1 .bg .wave_top,
  .home_reason2 .bg .wave_top {
    top: -23px;
  }
  .home_reason1 .bg .wave_bottom,
  .home_reason2 .bg .wave_bottom {
    bottom: -23px;
  }
  .home_reason1 {
    margin-bottom: 60px;
  }
  .home_reason2 {
    margin-bottom: 0;
  }
}
/* home_recruit */
.home_recruit {
  background-image: url("../images/home/bg_home_recruit.jpg");
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}
.home_recruit .home_recruit_inner {
  max-width: 617px;
  background-color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 90px;
  padding-bottom: 90px;
  border-radius: 10px;
}
.home_recruit .home_recruit_inner h2 {
  text-align: center;
  font-size: 57px;
  line-height: 1.3;
  margin: 0;
}
.home_recruit .home_recruit_inner h2 .sm {
  font-size: 30px;
}
.home_recruit .home_recruit_inner p {
  font-size: 18px;
}
.home_recruit .wave_top {
  top: -52px;
}
.home_recruit .wave_bottom {
  bottom: -52px;
}

@media (max-width: 750px) {
  .home_recruit {
    background: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .home_recruit .home_recruit_inner {
    text-align: left;
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
  }
  .home_recruit .home_recruit_inner h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
  }
  .home_recruit .home_recruit_inner h2 .sm {
    font-size: 18px;
  }
  .home_recruit .home_recruit_inner p {
    font-size: 16px;
    line-height: 1.5;
  }
  .bg_home_recruit {
    width: 100%;
    margin-top: 45px;
  }
}
/**
* 4.2 Page
* -----------------------------------------------------------------------------
*/
.wave {
  position: absolute;
  width: 100%;
  background-image: url("../images/common/wave.png");
  background-size: contain;
  background-repeat: repeat-x;
  left: 0;
  height: 67px;
}

@media (max-width: 750px) {
  .wave {
    background-image: url("../images/common/wave_sp.png");
    height: 30px;
  }
}
.page_wrap {
  margin-left: 105px;
}

.page_header {
  height: 435px;
  background-size: cover;
  position: relative;
}
.page_header .page_title {
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  left: 10.33%;
  font-size: 50px;
  line-height: 1.1;
  margin: 0;
}
.page_header .page_title .sm {
  font-size: 20px;
}
.page_header .wave {
  bottom: -55px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}
.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin-bottom: 42px;
}
.breadcrumb ul li {
  display: inline;
  font-size: 12px;
}
.breadcrumb ul li:not(:last-child):after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon_arrow_r.png");
  margin-right: 10px;
  margin-left: 20px;
}

.page_catch {
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}
.page_catch:before {
  content: "";
  display: block;
  width: 100px;
  height: 91px;
  background-image: url("../images/common/logo_yamadai.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

.page_catch_sub {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 90px;
}

@media (max-width: 750px) {
  .page_wrap {
    margin-left: 0;
  }
  .page_header .page_title {
    text-align: center;
    font-size: 32px;
    left: 0;
    right: 0;
  }
  .page_header .page_title .sm {
    font-size: 13px;
  }
  .page_header .wave {
    background-image: url("../images/common/wave_sp.png");
    height: 38px;
    bottom: -8px;
  }
  .page_catch {
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .page_catch_sub {
    font-size: 16px;
    margin-bottom: 70px;
  }
}
.line_wave {
  height: 4px;
  width: 100%;
  background-image: url("../images/common/line_wave_sp.png");
  background-size: contain;
  position: relative;
  z-index: 1;
}

/**
* 4.3 Concept
* -----------------------------------------------------------------------------
*/
.page_concept .page_header {
  background-image: url("../images/concept/bg_page_header_concept.jpg");
}

.sec_concept {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sec_concept .contents {
  width: 60%;
  padding-left: 6.66%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 60px;
  padding-bottom: 60px;
}
.sec_concept .contents .contents_inner {
  max-width: 400px;
}
.sec_concept .contents .contents_inner .concept_num {
  font-size: 12px;
  margin-bottom: 10px;
}
.sec_concept .contents .contents_inner .concept_catch {
  margin-bottom: 40px;
}
.sec_concept .contents .contents_inner .concept_catch img {
  max-width: 100%;
}
.sec_concept .contents .contents_inner .concept_contents p:not(:last-child) {
  margin-bottom: 30px;
  margin-top: 0;
}
.sec_concept .bg {
  width: 40%;
  position: relative;
}
.sec_concept .bg .wave_top {
  top: -52px;
}
.sec_concept .bg .wave_bottom {
  bottom: -52px;
}

@media (max-width: 750px) {
  .sec_concept {
    display: block;
  }
  .sec_concept .contents {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .sec_concept .contents .contents_inner .concept_contents {
    font-size: 14px;
    line-height: 1.8;
  }
  .sec_concept .bg {
    height: 430px;
    width: 100%;
  }
  .sec_concept .bg .wave_top {
    top: -24px;
  }
  .sec_concept .bg .wave_bottom {
    bottom: -24px;
  }
}
.sec_concept1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 90px;
}
.sec_concept1 .bg {
  background-image: url("../images/concept/bg_sec_concept1.jpg");
  background-size: cover;
  background-position: center;
}

.sec_concept2 {
  margin-bottom: 90px;
}
.sec_concept2 .contents .contents_inner {
  margin-left: auto;
  padding-right: 6.66%;
}
.sec_concept2 .bg {
  background-image: url("../images/concept/bg_sec_concept2.jpg");
  background-size: cover;
  background-position: center;
}

.sec_concept3 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 90px;
}
.sec_concept3 .bg {
  background-image: url("../images/concept/bg_sec_concept3.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 750px) {
  .sec_concept1 {
    margin-bottom: 60px;
  }
  .sec_concept2 {
    margin-bottom: 60px;
  }
  .sec_concept3 .bg {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
/**
* 4.4 Reason1
* -----------------------------------------------------------------------------
*/
.page_reason1 .page_header {
  background-image: url("../images/reason1/bg_page_header_reason1.jpg");
}
.page_reason1 .page_catch_sub {
  margin-bottom: 40px;
}

@media (max-width: 750px) {
  .page_reason1 .page_header {
    background-image: url("../images/reason1/bg_page_header_reason1_sp.jpg");
  }
  .page_reason1 .page_catch_sub {
    margin-bottom: 70px;
  }
}
.sec_reason1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
}
.sec_reason1 .contents {
  width: 60%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 60px;
  padding-bottom: 60px;
}
.sec_reason1 .contents .contents_inner {
  max-width: 500px;
  margin-left: auto;
  margin-right: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.sec_reason1 .contents .contents_inner .reason1_num {
  font-size: 12px;
  margin-bottom: 10px;
}
.sec_reason1 .contents .contents_inner .reason1_catch {
  margin-bottom: 40px;
}
.sec_reason1 .contents .contents_inner .reason1_catch img {
  max-width: 100%;
}
.sec_reason1 .contents .contents_inner .reason1_contents p:not(:last-child) {
  margin-bottom: 30px;
  margin-top: 0;
}
.sec_reason1 .contents .contents_inner .reason1_contents .img_certified {
  border: 1px solid #ccc;
  pointer-events: none;
  max-width: 500px;
  width: 100%;
}
.sec_reason1 .bg {
  width: 40%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.sec_reason1 .bg .wave_top {
  top: -12px;
}
.sec_reason1 .bg .wave_bottom {
  bottom: -12px;
}

@media (max-width: 750px) {
  .sec_reason1 {
    display: block;
  }
  .sec_reason1 .contents {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .sec_reason1 .contents .contents_inner {
    max-width: 100%;
    margin-right: 0;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 45px;
    padding-bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec_reason1 .contents .contents_inner .reason1_contents p {
    font-size: 14px;
  }
  .sec_reason1 .bg {
    height: 430px;
    width: 100%;
  }
}
.sec_reason1-1 .bg {
  background-image: url("../images/reason1/bg_sec_reason1-1.jpg");
}

.sec_reason1-2 .bg {
  background-image: url("../images/reason1/bg_sec_reason1-2.jpg");
}

.sec_reason1-3 .bg {
  background-image: url("../images/reason1/bg_sec_reason1-3.jpg");
}

.sec_reason1-4 .contents {
  padding-bottom: 180px;
}
.sec_reason1-4 .btn {
  width: auto;
  padding: 5px 50px;
  margin-top: 20px;
}
.sec_reason1-4 .bg {
  background-image: url("../images/reason1/bg_sec_reason1-4.jpg");
}

.sec_reason1-2,
.sec_reason1-3,
.sec_reason1-4 {
  padding-top: 60px;
}

@media (max-width: 750px) {
  .sec_reason1-2,
  .sec_reason1-3,
  .sec_reason1-4 {
    padding-top: 0px;
  }
  .sec_reason1-4 .contents {
    padding-bottom: 0;
  }
  .sec_reason1-4 .btn_wrapper {
    margin-bottom: 30px;
  }
  .sec_reason1-4 .btn {
    font-size: 15px;
  }
  .sec_reason1-4 .btn .sm {
    font-size: 13px;
  }
  .logo_certified,
  .img_certified {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
/* Reason1&Reason2共通 */
.page_title .reason {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.page_title .reason span {
  background: #fff;
  border-radius: 7px;
  color: #4ca121;
  font-size: 12px;
  display: inline-block;
  padding: 5px 10px;
}

@media (max-width: 750px) {
  .page_title .reason {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .page_title .reason span {
    font-size: 10px;
  }
}
.sec_reason_contact {
  position: relative;
  background-image: url("../images/reason1/bg_sec_contact.jpg");
  background-size: cover;
  background-position: center center;
  padding-top: 160px;
  padding-bottom: 160px;
}
.sec_reason_contact .sec_reason_contact_inner {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec_reason_contact .sec_reason_contact_inner h3 {
  font-size: 30px;
  margin: 0;
}
.sec_reason_contact .sec_reason_contact_inner p {
  line-height: 1.5;
  margin-bottom: 20px;
}
.sec_reason_contact .wave_top {
  top: -12px;
}
.sec_reason_contact .wave_bottom {
  bottom: -12px;
}

@media (max-width: 750px) {
  .sec_reason_contact {
    background: none;
    padding: 0;
  }
  .sec_reason_contact .sec_reason_contact_inner {
    padding-right: 40px;
    padding-left: 40px;
  }
  .sec_reason_contact .sec_reason_contact_inner h3 {
    font-size: 28px;
  }
  .sec_reason_contact .sec_reason_contact_inner p {
    text-align: left;
  }
  .sec_reason_contact .btn_wrapper {
    text-align: left;
  }
  .sec_reason_contact .bg {
    height: 430px;
    width: 100%;
    background-image: url("../images/reason1/bg_sec_contact.jpg");
    background-size: cover;
    background-position: center center;
    position: relative;
  }
}
/**
* 4.5 Reason2
* -----------------------------------------------------------------------------
*/
.page_reason2 .page_header {
  background-image: url("../images/reason2/bg_page_header_reason2.jpg");
  background-position: center;
}

@media (max-width: 750px) {
  .page_reason2 .page_header {
    background-image: url("../images/reason2/bg_page_header_reason2_sp.jpg");
  }
}
.sec_reason2 h3 {
  font-size: 45px;
  line-height: 1.4;
}
.sec_reason2 h3 .reason2_num {
  font-size: 12px;
}

@media (max-width: 750px) {
  .sec_reason2 h3 {
    font-size: 32px;
    margin-top: 70px;
  }
  .sec_reason2 h3 .reason2_num {
    font-size: 18px;
  }
  .sec_reason2 h3 .reason2_num .green {
    color: #000;
  }
}
.sec_reason2-1 h3 {
  text-align: center;
  margin-bottom: 10px;
}
.sec_reason2-1 h3 + p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
}

@media (max-width: 750px) {
  .sec_reason2-1 h3 + p {
    font-size: 16px;
  }
}
.process h4 {
  font-size: 30px;
}
.process h4 .sm {
  font-size: 12px;
  display: inline-block;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  margin-right: 10px;
}
.process h4:after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-image: url("../images/common/line_wave2.png");
  background-size: contain;
}
.process .process_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.process .process_inner .text {
  -webkit-flex-basis: 44.44%;
      -ms-flex-preferred-size: 44.44%;
          flex-basis: 44.44%;
  padding-right: 11.11%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.process .process_inner .text p {
  margin: 0;
}
.process .process_inner .thum {
  -webkit-flex-basis: 55.56%;
      -ms-flex-preferred-size: 55.56%;
          flex-basis: 55.56%;
}
.process .process_inner .thum img {
  width: 100%;
}
.process .process_inner + .process_inner {
  margin-top: 30px;
}

@media (max-width: 750px) {
  .process {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .process h4 {
    line-height: 1.2;
    margin-bottom: 25px;
  }
  .process h4 .sm {
    display: block;
  }
  .process .process_inner {
    display: block;
  }
  .process .process_inner .text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .process .process_inner .text p {
    font-size: 14px;
  }
}
.sec_reason2-2 {
  background-image: url("../images/reason2/bg_reason2-2.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-top: 40px;
}
.sec_reason2-2 .wave_top {
  top: -12px;
}
.sec_reason2-2 .wave_bottom {
  bottom: -22px;
}

.sec_reason2-2_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 180px;
  padding-bottom: 110px;
}
.sec_reason2-2_inner .text {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding-right: 5.55%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec_reason2-2_inner .text p {
  font-size: 18px;
}
.sec_reason2-2_inner .thum {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5.55%;
}
.sec_reason2-2_inner .thum img {
  max-width: 100%;
}

@media (max-width: 750px) {
  .sec_reason2-2 {
    background: none;
  }
  .sec_reason2-2 h3 {
    margin-top: 50px;
    font-size: 28px;
  }
  .sec_reason2-2_inner {
    display: block;
    padding-top: 0;
    padding-bottom: 50px;
  }
  .sec_reason2-2_inner .text {
    padding-left: 40px;
    padding-right: 40px;
  }
  .sec_reason2-2_inner .text p {
    font-size: 14px;
  }
  .sec_reason2-2_inner .thum {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 65px;
    padding-bottom: 70px;
    background-image: url("../images/reason2/bg_reason2-2_sp.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
  }
}
/**
* 4.6 Company
* -----------------------------------------------------------------------------
*/
.page_company .page_header {
  background-image: url("../images/company/bg_page_header_company.jpg");
  background-position: center;
}
.page_company .profile table {
  width: 100%;
  border-collapse: collapse;
}
.page_company .profile table tr {
  border-bottom: 1px solid #e9e9e9;
}
.page_company .profile table th, .page_company .profile table td {
  padding-top: 5px;
  padding-bottom: 5px;
  vertical-align: top;
}
.page_company .profile table th {
  white-space: nowrap;
  text-align: left;
  width: 16.94%;
  padding-right: 50px;
}
.page_company .profile table td .bold .sm {
  font-size: 12px;
}
.page_company .profile table td .btn_wrapper {
  margin-top: 10px;
  margin-bottom: 10px;
}
.page_company .profile table .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
.page_company .profile table .flex div:first-child {
  width: 30%;
  -webkit-flex-basis: 30%;
      -ms-flex-preferred-size: 30%;
          flex-basis: 30%;
}
.page_company .profile table .flex div:nth-child(2) {
  width: 70%;
  -webkit-flex-basis: 70%;
      -ms-flex-preferred-size: 70%;
          flex-basis: 70%;
}
.page_company .profile table .flex div:nth-child(2) .sm {
  font-size: 12px;
  margin-left: 10px;
  display: inline-block;
  line-height: 1.1;
  text-indent: -0.5em;
  padding-left: 1em;
}
.page_company .profile table .flex ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.page_company .gm {
  position: relative;
  width: 100%; /* 左右に余白が必要なら値を変更してもOK */
  height: 0;
  padding-bottom: 60.77%; /* padding-topでもOK */
  overflow: hidden;
  margin-top: 10px;
}
.page_company .gm iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 必要であれば!importantを付けてください */
  height: 100%; /* 必要であれば!importantを付けてください */
}
.page_company .to_gmap {
  text-align: center;
  margin-top: 4px;
}
.page_company .to_gmap a {
  color: #000;
  font-size: 14px;
}
.page_company .ul_access {
  font-size: 14px;
}

@media (max-width: 750px) {
  .page_company .profile table th, .page_company .profile table td {
    display: block;
    font-size: 14px;
  }
  .page_company .profile table th {
    padding-bottom: 0;
  }
  .page_company .profile table td {
    padding-top: 0;
  }
  .page_company .profile table .flex {
    font-size: 12px;
    padding-left: 35px;
  }
  .page_company .profile table .flex div:first-child {
    width: 37%;
  }
  .page_company .profile table .flex div:nth-child(2) {
    width: 63%;
  }
  .page_company .ul_access {
    padding-left: 20px;
    font-size: 12px;
  }
}
.sec_company:not(:last-child) {
  margin-bottom: 80px;
}
.sec_company:not(:first-child) {
  margin-top: 80px;
}
.sec_company .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sec_company_l {
  width: 33.05%;
}
.sec_company_l h3 {
  font-size: 30px;
  margin: 0;
}

.sec_company_r {
  width: 66.95%;
}
.sec_company_r .lg {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 0;
}

@media (max-width: 750px) {
  .sec_company .inner {
    display: block;
    padding-left: 40px;
    padding-right: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec_company:not(:first-child) {
    margin-top: 30px;
  }
  .sec_company:not(:last-child) {
    margin-bottom: 45px;
  }
  .sec_company_r {
    width: 100%;
  }
  .sec_company_r .lg {
    font-size: 16px;
  }
  .sec_company_l {
    width: 100%;
  }
  .sec_company_l h3 {
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
  }
}
/* 経営理念 */
.dl_philosophy {
  padding-left: 1.7em;
  margin-top: 0;
}
.dl_philosophy dt {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-indent: -1.7em;
  padding-left: 1em;
}
.dl_philosophy dt .num {
  font-size: 24px;
  margin-right: 20px;
}
.dl_philosophy dt:not(:first-of-type) {
  margin-top: 40px;
}
.dl_philosophy dd {
  margin-left: 20px;
}

@media (max-width: 750px) {
  .dl_philosophy {
    padding-left: 0;
  }
  .dl_philosophy dt {
    text-indent: 0;
    padding-left: 0;
    font-size: 16px;
  }
  .dl_philosophy dt:not(:first-of-type) {
    margin-top: 60px;
  }
  .dl_philosophy dd {
    margin-left: 0;
    font-size: 14px;
  }
}
/* 品質方針 */
.policy h4 {
  margin-top: 30px;
}
.policy ul {
  list-style: none;
  padding-left: 16px;
  letter-spacing: -0.1em;
}
.policy ul li {
  text-indent: -1.9em;
  padding-left: 2em;
}

@media (max-width: 750px) {
  .policy h4 {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .policy ul {
    margin-top: 0;
  }
  .policy ul li {
    font-size: 14px;
  }
}
/* 社会絵の取り組み CSR */
.dl_csr dd {
  margin-left: 16px;
}
.dl_csr dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.dl_csr .img_csr {
  width: 230px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.poito {
  border: 1px solid #ccc;
  padding: 0 20px 40px 20px;
}
.poito h4 img {
  max-width: 300px;
  width: 100%;
}
.poito img {
  max-width: 100%;
}
.poito .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 420px) {
  .poito .flex {
    display: block;
  }
}
.poito .flex .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  margin-right: 20px;
}
.poito .flex .text p {
  margin-top: 0;
}
.poito .flex .image {
  -webkit-flex-basis: 180px;
      -ms-flex-preferred-size: 180px;
          flex-basis: 180px;
}
.poito .flex .image img {
  width: 100%;
}
.poito .flex .box {
  -webkit-flex-basis: 30%;
      -ms-flex-preferred-size: 30%;
          flex-basis: 30%;
  background-color: #53a533;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
}
.poito .flex .box:nth-child(2) {
  position: relative;
}
.poito .flex .box:nth-child(2):before, .poito .flex .box:nth-child(2):after {
  position: absolute;
  color: #53a533;
  content: "＞";
  display: block;
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 420px) {
  .poito .flex .box:nth-child(2):before, .poito .flex .box:nth-child(2):after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    left: 0 !important;
    right: 0 !important;
    margin-left: auto;
    margin-right: auto;
    top: auto;
  }
}
.poito .flex .box:nth-child(2):before {
  left: -20px;
}
@media (max-width: 420px) {
  .poito .flex .box:nth-child(2):before {
    top: -27px;
  }
}
.poito .flex .box:nth-child(2):after {
  right: -20px;
}
@media (max-width: 420px) {
  .poito .flex .box:nth-child(2):after {
    bottom: -27px;
  }
}
.poito .flex_image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 420px) {
  .poito .flex_image {
    display: block;
  }
}
.poito .flex_image div {
  -webkit-flex-basis: 45%;
      -ms-flex-preferred-size: 45%;
          flex-basis: 45%;
}
.poito .flex_image div img {
  max-width: 100%;
}
.poito .flex_image div:nth-child(1) {
  position: relative;
}
@media (max-width: 420px) {
  .poito .flex_image div:nth-child(1) {
    margin-bottom: 30px;
  }
}
.poito .flex_image div:nth-child(1):after {
  content: "▶︎";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -32px;
}
@media (max-width: 420px) {
  .poito .flex_image div:nth-child(1):after {
    top: auto;
    bottom: -30px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: none;
            transform: none;
    content: "▼";
    text-align: center;
  }
}

@media (max-width: 750px) {
  .csr h3 {
    line-height: 1.3;
  }
  .csr .dl_csr dt {
    font-size: 14px;
  }
  .csr .dl_csr dd {
    font-size: 14px;
  }
}
/**
* 4.7 Recruit
* -----------------------------------------------------------------------------
*/
.page_recruit .page_header {
  background-image: url("../images/recruit/bg_page_header_recruit.jpg");
  background-position: center;
  height: 800px;
}
.page_recruit .page_header .catch {
  position: absolute;
  top: 300px;
  left: 10.33%;
}
.page_recruit .page_header .catch img {
  max-width: 405px;
}
.page_recruit .page_header .page_title {
  -webkit-transform: none;
          transform: none;
  top: 14%;
}

@media (max-width: 750px) {
  .page_recruit .page_header .catch {
    left: 0;
    right: 0;
    text-align: center;
  }
  .page_recruit .page_header .catch img {
    width: 80%;
  }
}
.nav_recruit {
  margin-top: 70px;
  margin-bottom: 80px;
}
.nav_recruit ul {
  border: 2px solid #000;
  border-radius: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 8px 0;
}
.nav_recruit ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  line-height: 1;
  border-left: 1px solid #000;
}
.nav_recruit ul li a {
  text-decoration: none;
  color: #000;
}
.nav_recruit ul li a:hover {
  color: #53a533;
}
.nav_recruit ul li:first-child {
  border-left: none;
}

@media (max-width: 750px) {
  .nav_recruit {
    padding-right: 40px;
    padding-left: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .nav_recruit ul li a {
    font-size: 12px;
  }
}
.sec_recruit {
  padding-bottom: 120px;
}
.sec_recruit h3 {
  font-size: 45px;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 750px) {
  .sec_recruit {
    padding-bottom: 40px;
  }
  .sec_recruit h3 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
/* 採用メッセージ */
#message {
  text-align: center;
}
#message p {
  font-size: 22px;
  line-height: 1.7;
}
#message .sm {
  font-size: 16px;
}

@media (max-width: 750px) {
  #message p {
    font-size: 16px;
  }
  #message .sm {
    font-size: 12px;
  }
}
/* 職種紹介ムービー */
#movie {
  text-align: center;
}
#movie h3 {
  margin-bottom: 40px;
}

.nav_movie {
  margin-top: 60px;
}
.nav_movie ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav_movie ul li {
  -webkit-flex-basis: 30%;
      -ms-flex-preferred-size: 30%;
          flex-basis: 30%;
}
.nav_movie ul li .thum {
  border-radius: 10px;
  overflow: hidden;
}
.nav_movie ul li .thum img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}
.nav_movie ul li .name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-top: 20px;
}
.nav_movie ul li .text {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  margin: 15px 0 20px;
}

@media (max-width: 750px) {
  .nav_movie {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 0;
  }
  .nav_movie ul {
    display: block;
  }
  .nav_movie ul li {
    margin-top: 40px;
  }
}
/* 社員インタビュー */
#interview {
  padding-bottom: 80px;
}

.nav_interview {
  margin-bottom: 120px;
}
.nav_interview ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}
.nav_interview ul li {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  position: relative;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.nav_interview ul li .thum {
  border: 3px solid #000;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  margin-bottom: 10px;
}
.nav_interview ul li .thum img {
  width: 100%;
  vertical-align: bottom;
}
.nav_interview ul li .thum:hover {
  border-color: #53a533;
}
.nav_interview ul li:nth-child(2) {
  margin: 0 4.77%;
}
.nav_interview ul li .name {
  font-size: 20px;
  text-align: center;
  line-height: 1;
}
.nav_interview ul li .name .sm {
  font-size: 12px;
  margin-right: 10px;
  position: relative;
  top: -3px;
}

@media (max-width: 750px) {
  .nav_interview {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 40px;
  }
  .nav_interview ul {
    display: block;
  }
  .nav_interview ul li {
    margin-bottom: 20px;
  }
  .nav_interview ul li:nth-child(2) {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.interview_header {
  background-size: cover;
  background-position: center;
  height: 800px;
  position: relative;
  margin-bottom: 80px;
}
.interview_header:before, .interview_header:after {
  content: "";
  width: 100%;
  height: 67px;
  background-image: url("../images/common/wave.png");
  background-size: contain;
  position: absolute;
}
.interview_header:before {
  top: -54px;
}
.interview_header:after {
  bottom: -54px;
}
.interview_header .inner {
  position: relative;
  height: 100%;
}
.interview_header .inner .header_inner {
  width: 400px;
  margin-right: auto;
  background-color: #4ca121;
  color: #fff;
  padding: 65px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 10px;
}
.interview_header .inner .header_inner .number {
  font-size: 14px;
  margin-bottom: 15px;
}
.interview_header .inner .header_inner .catch {
  font-size: 30px;
  line-height: 1.6;
}
.interview_header .inner .header_inner .catch:after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-image: url("../images/common/line_wave_w.png");
  background-size: contain;
  margin: 15px 0;
}
.interview_header .inner .header_inner .name {
  font-size: 21px;
}
.interview_header .inner .header_inner .name .sm {
  font-size: 12px;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

@media (max-width: 750px) {
  .interview_header {
    background: none !important;
    height: auto;
    margin-bottom: 40px;
  }
  .interview_header:before, .interview_header:after {
    display: none;
  }
  .interview_header .inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .interview_header .inner .header_inner {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 40px;
  }
  .interview_header .inner .header_inner .catch {
    font-size: 24px;
    letter-spacing: normal;
  }
}
.interview_contents .lg {
  font-size: 33px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 40px;
}
.interview_contents p {
  margin-bottom: 40px;
}

@media (max-width: 750px) {
  .interview_contents .lg {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 30px;
    font-size: 26px;
    margin-bottom: 20px;
  }
  .interview_contents p {
    padding-left: 40px;
    padding-right: 40px;
  }
  .sec_interview {
    padding-top: 40px;
  }
  .img_recruit {
    width: 100%;
  }
}
.interview_contents_bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 100px;
}
.interview_contents_bottom .text {
  width: 500px;
  padding-right: 60px;
}
.interview_contents_bottom .image {
  width: 40%;
  position: absolute;
  height: 500px;
  background-size: cover;
  background-position: center center;
  width: calc(100% - (100% - 900px) / 2 - 560px);
  right: 0;
  top: 0;
  overflow: hidden;
}

@media (max-width: 750px) {
  .interview_contents_bottom {
    margin-bottom: 40px;
    display: block;
  }
  .interview_contents_bottom .text {
    width: 100%;
    padding-right: 0;
  }
  .interview_contents_bottom .image {
    position: static;
    height: auto;
    background: none;
    width: 100%;
  }
  .interview_contents_bottom .image img {
    width: 100%;
  }
}
/* インタビュー1 */
#interview1 {
  margin-bottom: 200px;
}
#interview1 .interview_header {
  background-image: url("../images/recruit/bg_interview_header1.jpg");
}
#interview1 .interview_contents_bottom .image {
  background-image: url("../images/recruit/img_interview1.jpg");
}

@media (max-width: 750px) {
  #interview1 {
    margin-bottom: 0;
  }
}
/* インタビュー2 */
#interview2 .interview_header {
  background-image: url("../images/recruit/bg_interview_header2.jpg");
}
#interview2 .interview_contents_bottom .image {
  background-image: url("../images/recruit/img_interview2.jpg");
}

/* インタビュー1 */
#interview3 .interview_header {
  background-image: url("../images/recruit/bg_interview_header3.jpg");
}
#interview3 .interview_contents_bottom {
  margin-bottom: 0;
}
#interview3 .interview_contents_bottom .image {
  background-image: url("../images/recruit/img_interview3.jpg");
}

/* 募集要項 */
.sec_summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sec_summary .summary_l {
  width: 33.33%;
  font-size: 30px;
  white-space: nowrap;
  font-weight: bold;
}
.sec_summary .summary_r {
  width: 66.67%;
}

.summary_mb {
  margin-bottom: 80px;
}

@media (max-width: 750px) {
  .sec_summary {
    display: block;
  }
  .sec_summary .summary_l,
  .sec_summary .summary_r {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sec_summary .summary_l {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
  .summary_career {
    padding-top: 40px;
  }
}
.tb_recruit {
  width: 100%;
  border-collapse: collapse;
}
.tb_recruit th, .tb_recruit td {
  padding: 20px 0;
}
.tb_recruit tr {
  border-bottom: 1px solid #e9e9e9;
}
.tb_recruit .bb_none {
  border-bottom: none;
}
.tb_recruit th {
  vertical-align: top;
  white-space: nowrap;
  width: 150px;
  text-align: left;
  font-weight: bold;
}
.tb_recruit td dt {
  font-weight: bold;
}
.tb_recruit td dd {
  margin: 0;
}
.tb_recruit td dd:not(:last-of-type) {
  margin-bottom: 40px;
}
.tb_recruit td .btn_wrapper {
  margin-top: 20px;
}

@media (max-width: 750px) {
  .tb_recruit th, .tb_recruit td {
    display: block;
  }
  .tb_recruit th {
    padding-bottom: 0;
  }
  .tb_recruit td {
    font-size: 14px;
  }
}
.airwork {
  margin-top: 80px;
  text-align: center;
  max-width: 260px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-top: 10px;
}
.airwork h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.airwork a img {
  max-width: 200px;
}

/**
* 4.8 Contact
* -----------------------------------------------------------------------------
*/
.page_contact .page_header {
  background-image: url("../images/contact/bg_page_header_contact.jpg");
  background-position: center;
}

.contact_top {
  text-align: center;
}
.contact_top h3 {
  font-size: 45px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.contact_top h3 + p {
  font-size: 18px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact_top .contact_num {
  font-size: 12px;
}

.sec_contact1 {
  padding-bottom: 100px;
}

@media (max-width: 750px) {
  .contact_top h3 {
    font-size: 36px;
  }
  .contact_top h3 + p {
    font-size: 14px;
  }
  .sec_contact {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.tb_contact {
  width: 100%;
  margin-top: 50px;
}
.tb_contact th, .tb_contact td {
  padding: 7px 0;
}
.tb_contact th {
  text-align: left;
  position: relative;
  font-size: 18px;
}
.tb_contact th .required {
  background-color: #db4829;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  padding: 0 10px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-align: center;
  font-weight: normal;
  position: absolute;
  right: 10px;
  line-height: 1.8;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tb_contact th.vat {
  vertical-align: top;
}
.tb_contact th.vat .required {
  top: 16px;
  -webkit-transform: none;
          transform: none;
}
.tb_contact td input[type=text],
.tb_contact td textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tb_contact td textarea {
  height: 393px;
}
.tb_contact td label {
  display: block;
}

@media (max-width: 750px) {
  .tb_contact th, .tb_contact td {
    display: block;
  }
  .tb_contact th {
    font-size: 14px;
    padding-bottom: 0;
  }
  .tb_contact th .required {
    position: static;
    display: inline-block;
    -webkit-transform: none;
            transform: none;
    margin-left: 10px;
    font-size: 10px;
  }
  .tb_contact td input,
  .tb_contact td textarea {
    font-size: 14px;
  }
  .tb_contact td textarea {
    height: 200px;
  }
}
.submit {
  text-align: center;
  margin-top: 30px;
}
.submit button, .submit input {
  border: 2px solid #000;
  background: #fff;
  border-radius: 10px;
  font-size: 18px;
  width: 256px;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
.submit button:hover, .submit input:hover {
  background: #4ca121;
  border-color: #4ca121;
  color: #fff;
}
.submit button[type=submit] {
  margin-left: 15px;
}

@media (max-width: 750px) {
  .submit button {
    width: 100%;
    margin-bottom: 20px;
  }
  .submit button[type=submit] {
    margin-left: 0px;
  }
}
.tel_box {
  font-size: 60px;
  text-align: center;
  border: 1px solid #000;
  line-height: 1.5;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}
.tel_box .sofia {
  letter-spacing: normal !important;
}
.tel_box .sm {
  font-size: 15px;
  margin-top: 0;
}

@media (max-width: 750px) {
  .tel_box {
    font-size: 28px;
    padding: 10px;
  }
  .tel_box .sm {
    font-size: 13px;
  }
}
/* 確認画面 */
@media (max-width: 750px) {
  #formWrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/**
* 5.0 Footer
* -----------------------------------------------------------------------------
*/
footer {
  margin-top: 220px;
  position: relative;
  margin-left: 105px;
}
footer .footer_top {
  padding-top: 60px;
}
footer .wave {
  top: -53px;
}

.footer_top {
  background-color: #e1e9e8;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer_top .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer_l {
  width: 33.05%;
}
.footer_l .logo {
  max-width: 276px;
}
.footer_l .footer_l_bottom {
  margin-left: 70px;
}
.footer_l .address {
  font-size: 13px;
  line-height: 1.3;
}
.footer_l .tel {
  font-weight: bold;
  font-size: 23px;
  letter-spacing: normal;
  margin-bottom: 10px;
}

.totop {
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  width: 42px;
  height: 41px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.totop img {
  width: 100%;
}

.footer_r {
  width: 66.95%;
  padding-left: 2%;
}
.footer_r nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_r nav ul {
  list-style: none;
  padding-left: 0;
}
.footer_r nav ul li {
  font-size: 14px;
}
.footer_r nav ul li a {
  color: #000;
  text-decoration: none;
}
.footer_r nav ul li a:hover {
  color: #53a533;
}
.footer_r ul.horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.footer_r ul.horizontal li {
  margin-right: 10px;
}
.footer_r ul.vertical {
  width: 20%;
}
.footer_r ul.vertical li {
  margin-bottom: 10px;
}

.copyright {
  font-size: 13px;
  font-weight: 300 !important;
  font-family: sofia-pro-soft, sans-serif;
  padding: 5px 0;
  letter-spacing: 0.1em;
}

@media (max-width: 750px) {
  footer {
    margin-left: 0;
  }
  footer .wave {
    top: -6px;
  }
  .footer_top {
    padding-top: 40px;
  }
  .footer_top .inner {
    display: block;
  }
  .footer_l {
    width: 100%;
    text-align: center;
  }
  .footer_l .footer_l_bottom {
    margin-left: 0;
    margin-top: 30px;
  }
  .footer_l .tel {
    font-size: 18px;
  }
  .footer_r {
    width: 100%;
  }
  .logo_footer_sp {
    max-width: 181px;
    margin-left: auto;
    margin-right: auto;
  }
  .copyright {
    text-align: center;
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */