@charset "utf-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

html {
  font-size: 62.5%;
}

/*****基本設定*****/
/* basic
----------------------------------------------------------- */
body {
  font-family: "Hiragino kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",  Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding: 55px 0 0 0;
}

@media only screen and (min-width: 1000px) {
  body {
    padding: 0;
  }
}
.fade {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

/* drawer
----------------------------------------------------------- */
#container {
  position: relative;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#container .overlay {
  display: none;
}
#container.open {
  -webkit-transform: translate3d(-280px, 0, 0);
  -moz-transform: translate3d(-280px, 0, 0);
  -ms-transform: translate3d(-280px, 0, 0);
  -o-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}
#container.open .overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #aec783;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#drawer.open {
  -webkit-transform: translate3d(-280px, 0, 0);
  -moz-transform: translate3d(-280px, 0, 0);
  -ms-transform: translate3d(-280px, 0, 0);
  -o-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}
#drawer .global > li > a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: #aec783;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
}
#drawer .global > li > a:before {
  position: absolute;
  left: 10px;
  top: 50%;
  margin: -5px 0 0 0;
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #ffffff;
}
#drawer .global > li > a:after {
  position: absolute;
  left: 8px;
  top: 50%;
  margin: -5px 0 0 0;
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #aec783;
}
#drawer .global > li > a.hassub:before {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  margin: 0 0 0 0;
  content: ' ';
  display: block;
  border: none;
}
#drawer .global > li > a.hassub:after {
  border: none;
}
#drawer .global > li > a.hassub.close:after {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 2px;
  height: 10px;
  background: #fff;
  margin: -4px 0 0 0;
  content: ' ';
  display: block;
  border: none;
}
#drawer .global > li.entry a {
  padding-left: 10px;
}
#drawer .global > li.entry a:before, #drawer .global > li.entry a:after {
  display: none;
}
#drawer .global > li.entry a i {
  padding-right: 10px;
}
#drawer .global > li ul {
  margin: 0 0 -1px 0;
}
#drawer .global > li ul > li > a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: #cedbad;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
}
#drawer .global > li ul > li > a:before {
  position: absolute;
  left: 20px;
  top: 50%;
  margin: -5px 0 0 0;
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #ffffff;
}
#drawer .global > li ul > li > a:after {
  position: absolute;
  left: 18px;
  top: 50%;
  margin: -5px 0 0 0;
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #cedbad;
}

@media only screen and (min-width: 1000px) {
  #drawer {
    position: relative;
    top: auto;
    right: auto;
    z-index: 20;
    width: 1000px;
    margin: auto;
    overflow: visible;
    background: none;
  }
  #drawer .global {
    display: table;
    width: 100%;
  }
  #drawer .global li {
    display: none;
  }
  #drawer .global li.page {
    display: table-cell;
    border-right: 3px solid #fff;
  }
  #drawer .global li.page:last-child {
    border-right: none;
  }
  #drawer .global li.page a {
    padding: 10px;
    text-align: center;
    border-bottom: 3px solid #cedbad;
    background: #fff;
    color: #333;
    font-weight: bold;
  }
  #drawer .global li.page a:after, #drawer .global li.page a:before {
    border: none;
    background: none;
  }
  #drawer .global li.page a:hover {
    background: #f8faf4;
  }
  #drawer .global li.page ul {
    display: none;
  }
  #drawer .global li.page.entry a {
    border-bottom: 3px solid #CB383D;
    background: #CB383D;
    color: #fff;
  }
  #drawer .global li.page.entry a i {
    padding: 0 5px 0 0;
  }
  #drawer .global li.page.entry a:hover {
    background: #d66064;
  }
  #drawer .global li.now a {
    background: #eef2e2;
    border-bottom: 3px solid #aec783;
  }
  #drawer .global li.now a:hover {
    background: #eef2e2;
  }
}
/* header
----------------------------------------------------------- */
#header {
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  border-bottom: 5px solid #50612b;
}
#header.open {
  -webkit-transform: translate3d(-280px, 0, 0);
  -moz-transform: translate3d(-280px, 0, 0);
  -ms-transform: translate3d(-280px, 0, 0);
  -o-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}
#header.open .overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#header .logo {
  position: absolute;
  left: 10px;
  top: 20px;
  font-size: 10px;
  font-size: 1rem;
}
#header .logo a {
  color: #000;
  text-decoration: none;
}
#header .logo a img {
  padding: 0 10px 0 0;
  width: 50px;
}
#header .toggle_menu {
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 200;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  padding: 13px 10px;
  background: transparent;
}
#header .toggle_menu span {
  display: block;
  width: 24px;
  height: 5px;
  background: #50612b;
  margin: 0 0 3px 0;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}
#header .toggle_menu.opend {
  padding-top: 20px;
}
#header .toggle_menu.opend span.first {
  margin: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#header .toggle_menu.opend span.second {
  display: none;
}
#header .toggle_menu.opend span.third {
  margin: -5px 0 0 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#header .header_menu {
  display: none;
}

@media only screen and (min-width: 480px) {
  #header .logo {
    top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1000px) {
  #header {
    overflow: hidden;
    width: 1000px;
    margin: auto;
    position: relative;
    height: auto;
    border-bottom: 1px solid #cedbad;
  }
  #header .logo {
    position: relative;
    top: auto;
    left: auto;
    float: left;
    padding: 20px 0 10px 20px;
    font-size: 20px;
    font-size: 2rem;
  }
  #header .logo a img {
    width: auto;
  }
  #header .toggle_menu {
    display: none;
  }
  #header .header_menu {
    float: right;
    display: block;
    padding: 30px 0 10px 0;
    text-align: right;
    font-size: 1px;
  }
  #header .header_menu li {
    display: inline-block;
    margin: 0 0 0 5px;
  }
  #header .header_menu li a {
    display: block;
    padding: 5px 10px;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
  }
  #header .header_menu li a i {
    padding: 0 10px 0 0;
  }
  #header .header_menu li a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
  #header .header_menu li.fb a {
    background: #3B5998;
  }
  #header .header_menu li.tw a {
    background: #4099ff;
  }
  #header .header_menu li.bl a {
    background: #97b760;
  }
}
/* title
----------------------------------------------------------- */
.title {
  display: none;
}

@media only screen and (min-width: 1000px) {
  .title {
    display: block;
    margin: -1px 0 0 0;
    border-top: 1px solid #cedbad;
  }
  .title .title_inner {
    width: 1000px;
    margin: 0 auto;
    text-align: right;
    line-height: 51px;
    font-size: 1px;
  }
  .title .title_inner iframe {
    width: 105px;
    vertical-align: middle;
    margin-right: 2px !important;
  }
  .title .title_inner .line {
    display: inline-block;
  }
  .title .title_inner img {
    vertical-align: middle;
    margin-right: 2px !important;
  }
  .title .title_inner iframe#twitter-widget-0 {
    width: 95px !important;
  }
  .title .title_inner iframe.hatena-bookmark-button-frame {
    width: 50px !important;
  }
  .title .title_inner #___plusone_0 {
    margin-top: -2px !important;
    width: 70px !important;
  }
  .title .title_inner #___plusone_0 iframe {
    width: 70px !important;
  }
  .title .title_inner #tumblr_button_abc123 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px !important;
    line-height: 20px;
  }
  .title .title_inner .pocket-btn {
    display: inline-block;
    vertical-align: middle;
  }
}
/* visual
----------------------------------------------------------- */
#visual {
  height: 150px;
  margin: 0 0 20px 0;
  padding: 0 20px 0 0;
  background: url(../images/visual.jpg) no-repeat center top;
  background-size: cover;
  text-align: right;
  line-height: 1.2;
}
#visual h1 {
  margin: 0 0 10px 0;
  padding: 65px 0 0 0;
  color: #779240;
  font-size: 14px;
  font-size: 1.4rem;
}
#visual p {
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  text-shadow: 0 0 3px #779240, 0 0 5px #779240;
}

.company #visual {
  background: url(../images/company.jpg) no-repeat center center;
  background-size: 500px auto;
  padding: 0 0 0 20px;
  text-align: left;
}
.company #visual p {
  padding: 40px 0 0 0;
}

.voice #visual {
  background: url(../images/voice.jpg) no-repeat left top;
  background-size: 70%;
}
.voice #visual p {
  padding: 40px 0 0 0;
}

.career #visual {
  background: url(../images/career.jpg) no-repeat left top;
  background-size: 100%;
}
.career #visual p {
  padding: 50px 0 0 0;
}

@media only screen and (min-width: 480px) {
  #visual {
    height: 300px;
    padding-right: 30px;
    background: url(../images/visual.jpg) no-repeat -100px 0 #f8f8f6;
    background-size: cover;
    vertical-align: middle;
    font-weight: bold;
  }
  #visual h1 {
    padding: 90px 0 0 0;
    font-size: 20px;
    font-size: 2rem;
  }
  #visual p {
    font-size: 30px;
    font-size: 3rem;
  }

  .company #visual {
    background: url(../images/company.jpg) no-repeat center center;
    background-size: cover;
  }
  .company #visual p {
    padding-top: 100px;
  }

  .voice #visual p {
    padding-top: 100px;
  }

  .career #visual p {
    padding-top: 110px;
  }
}
@media only screen and (min-width: 1000px) {
  #visual {
    height: 386px;
    margin: 0 0 40px 0;
    background: url(../images/visual.jpg) no-repeat left top #f8f8f6;
    background-size: contain;
  }
  #visual h1 {
    width: 1000px;
    margin: 0 auto 10px;
    padding: 140px 0 0 0;
    font-size: 25px;
    font-size: 2.5rem;
  }
  #visual p {
    width: 1000px;
    margin: auto;
    font-size: 40px;
    font-size: 4rem;
  }
  #visual p br {
    display: none;
  }

  .company #visual p {
    padding-top: 120px;
    padding-left: 100px;
    box-sizing: border-box;
  }
  .company #visual p br {
    display: block;
  }

  .voice #visual p {
    padding-top: 140px;
  }
  .voice #visual p br {
    display: block;
  }

  .career #visual p {
    padding-top: 160px;
  }
}
.inline_ancher {
  overflow: hidden;
  margin: 0 15px;
}
.inline_ancher li {
  float: left;
  width: 32%;
  margin: 0 1.3% 1.3% 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.inline_ancher li:last-child {
  margin: 0;
}
.inline_ancher li a {
  position: relative;
  display: block;
  padding: 10px 0 20px;
  border: 1px solid #dcdcdc;
  color: #666;
  text-decoration: none;
  text-align: center;
}
.inline_ancher li a:hover {
  text-decoration: none;
}
.inline_ancher li a:after {
  position: absolute;
  bottom: 8px;
  left: 50%;
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 0 0 -5px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (min-width: 480px) {
  .inline_ancher {
    text-align: center;
  }
  .inline_ancher li {
    float: none;
    width: auto;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .inline_ancher li a {
    padding: 10px 35px 10px 20px;
  }
  .inline_ancher li a:hover {
    text-decoration: none;
    border: 1px solid #999;
  }
  .inline_ancher li a:after {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 12px;
    content: " ";
    display: block;
    width: 5px;
    height: 5px;
    margin: -5px 0 0 0;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media only screen and (min-width: 1000px) {
  .inline_ancher {
    width: 1000px;
    margin: auto;
  }
  .inline_ancher li a {
    padding: 15px 85px 15px 70px;
  }
}
#main .secTitle {
  position: relative;
  margin: 0 0 25px 0;
  padding: 20px 0 0 0;
  text-align: center;
  color: #666;
}
#main .secTitle h2, #main .secTitle h1 {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
}
#main .secTitle h2 span, #main .secTitle h1 span {
  position: relative;
  display: block;
  padding: 0 0 15px 0;
}
#main .secTitle h2 span:before, #main .secTitle h1 span:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0 0 0 15px;
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background: #67381f;
}
#main .secTitle h2:before, #main .secTitle h1:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0 0 0 -25px;
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background: #50612b;
}
#main .secTitle h2:after, #main .secTitle h1:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0 0 0 -5px;
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background: #52adc5;
}
#main .secTitle p {
  margin: 8px 0 0 0;
  font-size: 12px;
  font-size: 1.2rem;
}
#main > section {
  margin: -55px 10px 30px;
  padding: 55px 0 0 0;
}

@media only screen and (min-width: 480px) {
  #main .secTitle {
    margin: 0 0 50px 0;
    padding: 50px 0 0 0;
  }
  #main .secTitle h2, #main .secTitle h1 {
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
  }
  #main .secTitle p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1000px) {
  #main .secTitle {
    padding: 100px 0 0 0;
  }
  #main .secTitle h2, #main .secTitle h1 {
    font-size: 40px;
    font-size: 4rem;
  }
  #main .secTitle p {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #main > section {
    margin-top: 0;
    padding-top: 0;
  }
}
.index01_01 {
  margin: 0 0 40px 0;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.index01_01 li {
  display: inline-block;
  width: 100px;
  margin: 0 10px;
  padding: 0 0 60px 0;
  color: #4f6228;
}
.index01_01 li.index01_01_01 {
  background: url(../images/index01_01_01.png) no-repeat center bottom;
  background-size: 80px;
}
.index01_01 li.index01_01_02 {
  background: url(../images/index01_01_02.png) no-repeat center bottom;
  background-size: 61px;
}

@media only screen and (min-width: 1000px) {
  .index01 {
    width: 1000px;
    margin: auto !important;
  }
  .index01 .index01_01 {
    float: left;
    width: 240px;
    padding: 0 0 0 150px;
  }
  .index01 .index01_01 li {
    display: block;
    width: 240px;
    margin: 0 0 30px 0;
    padding: 0 0 130px 0;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .index01 .index01_01 li br {
    display: none;
  }
  .index01 .index01_01 li.index01_01_01 {
    background-size: 160px;
  }
  .index01 .index01_01 li.index01_01_02 {
    margin: 0;
    background-size: 122px;
  }
}
.index01_lead {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}

.index01_sec {
  margin: 15px 0;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}

.entryBtn {
  padding: 35px 0 0 0;
  background: url(../images/logo.png) no-repeat center top;
  background-size: 50px;
}
.entryBtn .tel-link {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  background: #779240;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  line-height: 3;
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: none;
}
.entryBtn .tel-link i {
  padding: 0 0.5em 0 0;
  font-size: larger;
  vertical-align: -0.1em;
}
.entryBtn .tel-link:after {
  position: absolute;
  top: 50%;
  right: 5%;
  content: " ";
  display: block;
  width: 8px;
  height: 8px;
  margin: -5px 0 0 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 480px) {
  .entryBtn .tel-link {
    line-height: 3;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
  }
  .entryBtn .tel-link:after {
    width: 16px;
    height: 16px;
    margin: -10px 0 0 0;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media only screen and (min-width: 1000px) {
  .index01_lead {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .index01_sec {
    clear: both;
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
  }

  .entryBtn {
    width: 800px;
    margin: 0 auto;
    padding: 70px 0 0 0;
    background-size: 100px;
  }
  .entryBtn a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
  .entryBtn .tel-link {
    line-height: 3;
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
  }
  .entryBtn .tel-link:after {
    border: none;
  }
}
.index02 .inner,
.index03 .inner {
  margin: 0 -10px;
  background: #c4d59d;
}
.index02 ol,
.index03 ol {
  padding: 30px 0 5px 0;
}
.index02 ol li,
.index03 ol li {
  display: table;
  width: 70%;
  height: 30px;
  margin: 0 auto 25px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 0 4px #779240;
  -moz-box-shadow: 0 0 0 4px #779240;
  box-shadow: 0 0 0 4px #779240;
  background: #fff;
  line-height: 1.4;
  font-size: 14px;
  font-size: 1.4rem;
}
.index02 ol li br,
.index03 ol li br {
  display: none;
}
.index02 ol li span,
.index03 ol li span {
  padding: 0 10px;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  color: #4f6228;
}
.index02 ol li span.no,
.index03 ol li span.no {
  width: 2em;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #c4d59d;
}

@media only screen and (min-width: 480px) {
  .index02 ol li,
  .index03 ol li {
    height: 50px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1000px) {
  .index02 .inner,
  .index03 .inner {
    overflow: hidden;
    padding: 50px 0;
  }
  .index02 ol,
  .index03 ol {
    width: 1000px;
    margin: auto;
    padding: 0;
  }
  .index02 ol li,
  .index03 ol li {
    float: left;
    display: block;
    width: 180px;
    height: 180px;
    box-sizing: border-box;
    margin: 0 10px;
    padding: 30px 0 0 0;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    -ms-border-radius: 90px;
    -o-border-radius: 90px;
    border-radius: 90px;
  }
  .index02 ol li br,
  .index03 ol li br {
    display: block;
  }
  .index02 ol li span,
  .index03 ol li span {
    padding: 0 10px;
    display: block;
    text-align: center;
    color: #4f6228;
  }
  .index02 ol li span.no,
  .index03 ol li span.no {
    width: auto;
    font-size: 30px;
    font-size: 3rem;
  }
  .index02 ol li span.step,
  .index03 ol li span.step {
    padding: 15px 10px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
  }
  .index02 ol li span.step.db,
  .index03 ol li span.step.db {
    padding: 5px 10px;
  }
}
.index04 table {
  width: 100%;
  margin: 0 0 15px 0;
}
.index04 table th, .index04 table td {
  padding: 5px 0;
  border-bottom: 1px dotted #999;
  color: #666;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  font-size: 14px;
  font-size: 1.4rem;
}
.index04 table th {
  white-space: nowrap;
  padding-right: 2em;
}

@media only screen and (min-width: 480px) {
  .index04 {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .index04 {
    padding: 0;
  }

  .index04 table {
    width: 1000px;
    margin: 0 auto 30px;
  }
  .index04 table th, .index04 table td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.index05 h3 {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}
.index05 p {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (min-width: 480px) {
  .index05 {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .index05 {
    padding: 0;
  }
  .index05 h3 {
    width: 1000px;
    margin: 0 auto 15px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .index05 p {
    width: 1000px;
    margin: 0 auto 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.index06_inner {
  margin: 0 -10px;
  padding: 20px 20px 1px;
  background: #38869b;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}
.index06_inner section {
  margin: 0 0 20px 0;
}
.index06_inner h3 {
  margin: 10px 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
}
.index06_inner p.from {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-size: 1.2rem;
}
.index06_inner a {
  display: table;
  width: 100%;
  color: #fff;
  text-decoration: none;
}
.index06_inner a:hover {
  text-decoration: none;
}
.index06_inner a img {
  display: table-cell;
  width: 100%;
}
.index06_inner a p {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: center;
}
.index06_inner .index06_01 a,
.index06_inner .index06_02 a {
  background: #779240;
}
.index06_inner .index06_03 a,
.index06_inner .index06_04 a {
  background: #52adc5;
}

@media only screen and (min-width: 480px) {
  .index06_inner {
    overflow: hidden;
  }
  .index06_inner section {
    float: left;
    width: 41%;
    padding: 2%;
    margin: 0 2% 2%;
  }
  .index06_inner section h3 {
    font-weight: bold;
  }
  .index06_inner section p.from {
    margin: 0 0 10px 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .index06_inner section a {
    display: inline;
    width: 100%;
    color: #fff;
    text-decoration: none;
  }
  .index06_inner section a:hover {
    text-decoration: none;
  }
  .index06_inner section a img {
    display: inline;
    width: 100%;
  }
  .index06_inner section a p {
    display: none;
  }
  .index06_inner section.index06_01, .index06_inner section.index06_02 {
    background: #779240;
  }
  .index06_inner section.index06_03, .index06_inner section.index06_04 {
    background: #52adc5;
  }
}
@media only screen and (min-width: 1000px) {
  .index06_inner {
    padding: 0;
  }
  .index06_inner .index06_inner_inner {
    width: 1000px;
    margin: auto;
    padding: 50px 0;
    overflow: hidden;
  }
  .index06_inner section {
    width: 210px;
    padding: 14px;
    margin: 0 15px 0 0;
    cursor: pointer;
  }
  .index06_inner section:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
  .index06_inner section:last-child {
    margin: 0;
  }
  .index06_inner section h3 {
    font-weight: bold;
  }
  .index06_inner section p.from {
    margin: 0 0 10px 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .index06_inner section a {
    display: inline;
    width: 100%;
    color: #fff;
    text-decoration: none;
  }
  .index06_inner section a:hover {
    text-decoration: none;
  }
  .index06_inner section a img {
    display: inline;
    width: 100%;
  }
  .index06_inner section a p {
    display: none;
  }
  .index06_inner section.index06_01, .index06_inner section.index06_02 {
    background: #779240;
  }
  .index06_inner section.index06_03, .index06_inner section.index06_04 {
    background: #52adc5;
  }
}
.index07 ul li {
  margin: 0 0 10px 0;
}
.index07 ul li a {
  display: block;
  height: 60px;
  padding: 0 10px;
  line-height: 60px;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}
.index07 ul li.index07_01 a {
  background: url(../images/index07_01.jpg) no-repeat left top #779240;
  background-size: 90px;
}
.index07 ul li.index07_02 a {
  background: url(../images/index07_02.jpg) no-repeat left top #50612b;
  background-size: 90px;
}
.index07 ul li.index07_03 a {
  background: url(../images/index07_03.jpg) no-repeat left top #663b2f;
  background-size: 90px;
}

@media only screen and (min-width: 480px) {
  .index07 ul {
    width: 50%;
    margin: 0 auto 100px;
  }
  .index07 ul li {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .index07 ul li a {
    padding: 10px;
    background-position: 10px 10px !important;
  }
}
@media only screen and (min-width: 1000px) {
  .index07 ul {
    width: 1000px;
    margin: 0 auto 200px;
    overflow: hidden;
  }
  .index07 ul li {
    float: left;
    width: 320px;
    margin: 0 10px 0 0;
    font-weight: bold;
  }
  .index07 ul li:last-child {
    margin: 0;
  }
  .index07 ul li a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
}
footer {
  padding: 0 0 10px 0;
  text-align: center;
}
footer ul {
  font-size: 1px;
}
footer ul li {
  display: inline;
  font-size: 10px;
  font-size: 1rem;
}
footer a {
  color: #31859c;
  text-decoration: none;
}
footer .copyright {
  font-size: 10px;
  font-size: 1rem;
}

@media only screen and (min-width: 480px) {
  footer ul li {
    font-size: 12px;
    font-size: 1.2rem;
  }
  footer .copyright {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1000px) {
  footer ul li a:hover {
    text-decoration: underline;
  }
}
.company01 p {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.company01 table {
  width: 100%;
  margin: 0 0 15px 0;
}
.company01 table th, .company01 table td {
  padding: 5px 0;
  border-bottom: 1px dotted #999;
  color: #666;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  font-size: 14px;
  font-size: 1.4rem;
}
.company01 table th {
  white-space: nowrap;
  padding-right: 2em;
}

@media only screen and (min-width: 480px) {
  .company01 {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .company01 {
    padding: 0;
  }

  .company01 p {
    width: 1000px;
    margin: 0 auto 15px;
  }

  .company01 table {
    width: 1000px;
    margin: 0 auto 30px;
  }
  .company01 table th, .company01 table td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.company02 .inner {
  margin: 0 -10px;
  padding: 0 10px 5px;
  background: #ebf1de;
}
.company02 .inner .img {
  height: 100px;
  margin: 0 -10px 20px;
  background: url(../images/company02.jpg) no-repeat center top;
  background-size: cover;
}
.company02 .inner p {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (min-width: 480px) {
  .company02 .inner {
    padding: 0 20px 5px;
  }
  .company02 .inner .img {
    height: 200px;
    margin: 0 -20px 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .company02 .inner {
    overflow: hidden;
  }
  .company02 .inner .inner_inner {
    display: table;
    width: 1000px;
    margin: 0 auto;
    padding: 50px 0 35px;
  }
  .company02 .inner .img {
    display: table-cell;
    width: 300px;
  }
  .company02 .inner .txt {
    display: table-cell;
    padding: 0 0 0 30px;
    vertical-align: top;
  }
}
.company03 section {
  margin: 0 -10px;
  padding: 0 10px 5px;
}
.company03 section .img {
  height: 100px;
  margin: 0 -10px 20px;
  background: url(../images/company03.jpg) no-repeat center top;
  background-size: cover;
}
.company03 section h2 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.company03 section p {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.company03 section p.indent {
  padding: 0 0 0 20px;
}
.company03 section .president {
  margin: 20px -10px 0;
  padding: 20px;
  background: #f2f2f2;
}
.company03 section .president .sig {
  display: table;
  width: 100%;
  margin: 0 0 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.company03 section .president .sig p {
  margin: 0 !important;
  display: table-cell;
  vertical-align: middle;
}
.company03 section .president .sig p:first-child {
  padding-right: 0;
}
.company03 section .president .sig p:last-child {
  width: 150px;
  padding-left: 0;
}
.company03 section .president .sig span {
  font-family: "ＭＳ Ｐ明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;
  font-size: 18px;
  font-size: 1.8rem;
}
.company03 section .president .sig img {
  float: right;
  width: 150px;
}
.company03 section .president b {
  font-weight: bold;
}

@media only screen and (min-width: 480px) {
  .company03 section {
    padding: 0 20px 5px;
  }
  .company03 section .img {
    height: 200px;
    margin: 0 -20px 20px;
  }
  .company03 section .president {
    margin: 20px -20px 0;
  }
  .company03 section .president .sig {
    width: auto;
    margin: 0 auto 15px;
  }
  .company03 section .president .sig p:first-child {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .company03 section {
    overflow: hidden;
  }
  .company03 section h2 br {
    display: none;
  }
  .company03 section .inner_inner {
    display: table;
    direction: rtl;
    width: 1000px;
    margin: 0 auto;
    padding: 50px 0 35px;
  }
  .company03 section .img {
    display: table-cell;
    width: 200px;
  }
  .company03 section .txt {
    display: table-cell;
    padding: 0 30px 0 0;
    vertical-align: top;
    direction: ltr;
  }
  .company03 section .president {
    width: 1000px;
    box-sizing: border-box;
    margin: 20px auto 0;
  }
  .company03 section .president .sig {
    float: right;
    margin: 0 0 15px 30px;
    background: #fff;
    padding: 10px;
  }
  .company03 section .president .sig p:first-child {
    padding-left: 10px;
    padding-right: 20px;
  }
}
.company04 section {
  margin: 0 0 20px 0;
}
.company04 section h2 {
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}
.company04 section p {
  font-size: 14px;
  font-size: 1.4rem;
}
.company04 section .map {
  position: relative;
  margin: 10px -10px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.company04 section .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (min-width: 1000px) {
  .company04 section {
    width: 1000px;
    margin: 0 auto 20px;
  }
  .company04 section .map {
    margin: 10px 0;
  }
}
.company05 section {
  margin: 0 0 30px 0;
}
.company05 .ttl {
  display: table;
  width: 100%;
  background: #77933c;
}
.company05 .ttl img {
  display: table-cell;
  width: 200px;
}
.company05 .ttl h2 {
  display: table-cell;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  direction: ltr;
}
.company05 .company05_02 .ttl,
.company05 .company05_04 .ttl {
  direction: rtl;
}
.company05 p {
  margin: 15px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (min-width: 480px) {
  .company05_inner {
    overflow: hidden;
  }

  .company05 section {
    float: left;
    width: 41%;
    padding: 2%;
    margin: 0 2% 2%;
  }
  .company05 section .ttl {
    background: none;
  }
  .company05 section .ttl img {
    display: block;
    width: 100%;
  }
  .company05 section .ttl h2 {
    display: block;
    width: auto;
    margin: 0 0 -20px 0;
    padding: 15px 0;
    text-align: left;
    color: #333;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1000px) {
  .company05 {
    margin: 0 0 50px 0;
  }
  .company05 .company05_inner {
    width: 1000px;
    margin: auto;
    overflow: hidden;
  }
  .company05 section {
    width: 235px;
    padding: 0;
    margin: 0 20px 0 0;
  }
  .company05 section:last-child {
    margin: 0;
  }
}
#main > section.voiceBox {
  position: relative;
  margin: 0 10px 50px;
  	/*
  	&:before{
  		position: absolute;
  		bottom: 0;
  		left: 50%;
  		margin: 0 0 0 -25px;
  		content: " ";
  		display: block;
  		width: 10px;
  		height: 10px;
  		@include border-radius(5px);
  		background: #50612b;
  	}
  
  	&:after{
  		position: absolute;
  		bottom: 0;
  		left: 50%;
  		margin: 0 0 0 -5px;
  		content: " ";
  		display: block;
  		width: 10px;
  		height: 10px;
  		@include border-radius(5px);
  		background: #52adc5;
  	}
  	*/
}
#main > section.voiceBox .voice_title {
  margin: 0 -10px 20px;
  font-weight: bold;
}
#main > section.voiceBox .voice_title img {
  max-width: 100%;
}
#main > section.voiceBox .voice_title h1 {
  margin: 20px 10px 10px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
}
#main > section.voiceBox .voice_title p.sec {
  margin: 0 10px 20px 10px;
  font-size: 12px;
  font-size: 1.2rem;
}
#main > section.voiceBox .voice_title p.lead {
  margin: 0 10px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #779240;
}
#main > section.voiceBox .voice_inner {
  		/*
  		position: relative;
  		display: block;
  		padding: 0 0 15px 0;
  
  		&:before{
  			position: absolute;
  			bottom: 0;
  			left: 50%;
  			margin: 0 0 0 15px;
  			content: " ";
  			display: block;
  			width: 10px;
  			height: 10px;
  			@include border-radius(5px);
  			background: #67381f;
  		}
  		*/
}
#main > section.voiceBox .voice_inner section h2 {
  margin: 20px 0 5px 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
#main > section.voiceBox .voice_inner section p {
  margin: 0 0 20px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (min-width: 480px) {
  #main > section.voiceBox {
    margin: 70px 20px;
  }
  #main > section.voiceBox .voice_title {
    margin: 0 0 20px 0;
  }
  #main > section.voiceBox .voice_title img {
    float: right;
    width: 50%;
    margin: 0 0 20px 20px;
  }
  #main > section.voiceBox .voice_title h1, #main > section.voiceBox .voice_title p.sec, #main > section.voiceBox .voice_title p.lead {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1000px) {
  #main > section.voiceBox {
    width: 1000px;
    margin: 100px auto;
  }
  #main > section.voiceBox .voice_title {
    margin: 0 0 20px 0;
  }
  #main > section.voiceBox .voice_title img {
    width: 500px;
    margin: 0 0 30px 30px;
  }
  #main > section.voiceBox .voice_title h1 {
    margin: 0 0 10px 0;
  }
  #main > section.voiceBox .voice_title p.sec {
    margin: 0 0 20px 0;
  }
  #main > section.voiceBox .voice_title p.lead {
    margin: 0;
  }
}
.voice05 {
  overflow: hidden;
}

.badge {
  width: 80px;
  height: 80px;
  background: #50612b;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 0 1px #50612b;
  -moz-box-shadow: 0 0 0 1px #50612b;
  box-shadow: 0 0 0 1px #50612b;
  color: #fff;
  text-align: center;
}
.badge .badge01 {
  display: block;
  margin: 0 0 2px 0;
  padding: 15px 0 0 0;
  font-size: 10px;
  line-height: 1;
}
.badge .badge02 {
  display: block;
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.badge .badge03 {
  display: block;
  font-size: 12px;
  line-height: 1;
}

.voice05_01 {
  padding: 1px 0 0 0;
}
.voice05_01 .badge {
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.voice05_01 .voice05_01_box01 {
  display: table;
  width: 100%;
  margin: -82px 0 10px 0;
}
.voice05_01 .voice05_01_box01 .voice05_01_box01_inner {
  display: table-cell;
  vertical-align: bottom;
}
.voice05_01 .voice05_01_box01 .voice05_01_box01_inner p {
  margin: 10px 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
}
.voice05_01 .voice05_01_box01 img {
  display: table-cell;
  width: 160px;
}
.voice05_01 .voice05_01_box02 {
  display: table;
  width: 100%;
  margin: 0 0 20px 0;
}
.voice05_01 .voice05_01_box02 img {
  display: table-cell;
  width: 160px;
}
.voice05_01 .voice05_01_box02 p {
  display: table-cell;
  padding: 0 0 0 10px;
  vertical-align: bottom;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
}

.voice05_02 {
  position: relative;
  overflow: hidden;
  margin: 0 -10px 20px;
  padding: 1px 0 0 0;
}
.voice05_02 h2 {
  height: 372px;
  box-sizing: border-box;
  padding: 250px 20px 10px;
  background: url(../images/voice05_03.jpg) no-repeat center top;
  background-size: cover;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
}
.voice05_02 .badge {
  position: absolute;
  right: 5px;
  top: 5px;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
  width: 160px;
  height: 160px;
  background: transparent;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  border-radius: 80px;
  border: 3px double #fff;
}
.voice05_02 .badge .badge01 {
  margin: 0 0 4px 0;
  padding: 30px 0 0 0;
  font-size: 20px;
}
.voice05_02 .badge .badge02 {
  margin: 0 0 16px 0;
  font-size: 48px;
}
.voice05_02 .badge .badge03 {
  font-size: 24px;
}
.voice05_02 p {
  padding: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

.voice05_03 {
  padding: 1px 0 0 0;
}
.voice05_03 .badge {
  float: right;
}
.voice05_03 h2 {
  padding: 20px 0 0 0;
  color: #50612b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.voice05_03 p {
  clear: both;
  margin: 0 0 10px 0;
  padding: 10px 0 0 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.voice05_03 img {
  width: 100%;
}
.voice05_03 section .lead {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
  color: #50612b;
}
.voice05_03 section h3 {
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 5px 10px;
  background: #50612b;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
}

.voice05_04 {
  margin: 0 -10px 20px;
  padding: 1px 0 0 0;
}
.voice05_04 .badge {
  position: relative;
  z-index: 10;
  float: right;
  margin: 0 10px 0 0;
}
.voice05_04 h2 {
  margin: 0 0 0 10px;
  padding: 20px 0 0 0;
  color: #50612b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.voice05_04 img {
  clear: both;
  width: 100%;
  margin: -10px 0 10px;
}
.voice05_04 p {
  margin: 0 10px 10px 10px;
  font-size: 14px;
  font-size: 1.4rem;
}
.voice05_04 .photos {
  overflow: hidden;
}
.voice05_04 .photos img {
  clear: none;
  float: left;
  display: block;
  width: 50%;
  margin: 0;
}

.voice05_05 {
  position: relative;
  padding: 1px 0 0 0;
}
.voice05_05 .badge {
  position: absolute;
  left: 10px;
  top: 0;
  z-index: 10;
}
.voice05_05 h2 {
  margin: 0 0 10px 100px;
  padding: 10px 0 0 0;
  color: #50612b;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.voice05_05 img {
  clear: both;
  float: left;
  width: 60%;
}
.voice05_05 ul li {
  float: left;
  width: 19%;
  height: 40px;
  margin: 0 0 1% 1%;
  padding: 14px 1% 0;
  box-sizing: border-box;
  background: #9baf70;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.voice05_05 ul li.line2 {
  padding: 7px 1% 0;
}
.voice05_05 ul li span {
  font-weight: normal;
  font-size: 7px;
  font-size: 0.7rem;
  letter-spacing: -0.1em;
}

@media only screen and (min-width: 480px) {
  .voice05 {
    margin: 0 20px !important;
  }

  .voice05_01 {
    float: left;
    width: 49%;
    margin: 0 0 50px 0;
  }
  .voice05_01 .badge {
    margin: 0 auto 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .voice05_01 .voice05_01_box01 {
    position: relative;
    float: left;
    display: block;
    width: 45%;
    margin: 0 2% 0 0;
  }
  .voice05_01 .voice05_01_box01 .voice05_01_box01_inner {
    display: block;
    margin: 0 0 10px 0;
    padding: 0;
  }
  .voice05_01 .voice05_01_box01 img {
    display: block;
    width: 100%;
  }
  .voice05_01 .voice05_01_box02 {
    float: left;
    display: block;
    width: 45%;
    margin: 0;
  }
  .voice05_01 .voice05_01_box02 img {
    display: block;
    width: 100%;
  }
  .voice05_01 .voice05_01_box02 p {
    display: block;
    margin: 10px 0 0 0;
    padding: 0;
  }

  .voice05_02 {
    float: right;
    width: 49%;
    margin: 0 0 50px 0;
  }
  .voice05_02 h2 {
    height: auto;
    padding: 0;
    background: none;
    margin: 0 0 10px 0;
    color: #50612b;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
  }
  .voice05_02 .img {
    height: 150px;
    margin: 0 0 10px 0;
    background: url(../images/voice05_03.jpg) no-repeat center center;
    background-size: cover;
  }
  .voice05_02 .badge {
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #50612b;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0 0 1px #50612b;
    -moz-box-shadow: 0 0 0 1px #50612b;
    box-shadow: 0 0 0 1px #50612b;
    color: #fff;
    text-align: center;
  }
  .voice05_02 .badge .badge01 {
    display: block;
    margin: 0 0 2px 0;
    padding: 15px 0 0 0;
    font-size: 10px;
    line-height: 1;
  }
  .voice05_02 .badge .badge02 {
    display: block;
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
  }
  .voice05_02 .badge .badge03 {
    display: block;
    font-size: 12px;
    line-height: 1;
  }
  .voice05_02 p {
    padding: 0;
  }

  .voice05_03 {
    clear: both;
    float: left;
    width: 49%;
    margin: 0 0 50px 0;
    padding: 0 20px 0 0;
    box-sizing: border-box;
  }
  .voice05_03 .badge {
    float: none;
    margin: 0 auto 20px;
  }
  .voice05_03 h2 {
    padding: 0;
    text-align: center;
  }

  .voice05_04 {
    float: right;
    width: 49%;
    margin: 0 0 50px 0;
  }
  .voice05_04 .badge {
    float: none;
    margin: 0 auto 20px;
  }
  .voice05_04 h2 {
    margin: 0 0 10px 0;
    padding: 0;
    text-align: center;
  }
  .voice05_04 img {
    margin: 0;
  }
  .voice05_04 p {
    margin: 10px 0;
  }

  .voice05_05 {
    float: right;
    width: 49%;
    margin: 0 0 20px 0;
  }
  .voice05_05 .badge {
    position: relative;
    top: auto;
    left: auto;
    float: none;
    margin: 0 auto 20px;
  }
  .voice05_05 h2 {
    margin: 0 0 10px 0;
    padding: 0;
    text-align: center;
  }
}
@media only screen and (min-width: 1000px) {
  .voice05 {
    width: 1000px;
    margin: 0 auto !important;
  }
  .voice05 .voice05_01,
  .voice05 .voice05_02,
  .voice05 .voice05_03,
  .voice05 .voice05_04,
  .voice05 .voice05_05 {
    width: 30%;
  }
  .voice05 .voice05_02 {
    float: left;
  }
  .voice05 .voice05_03 {
    clear: none;
    float: right;
  }
  .voice05 .voice05_01,
  .voice05 .voice05_04 {
    float: left;
    margin-right: 5%;
  }
  .voice05 .voice05_04 h2 br {
    display: none;
  }
  .voice05 .voice05_05 {
    clear: none;
    float: left;
  }
}
.mainLead {
  margin: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

.career01 h1 {
  margin: 20px 0 10px 0;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}

.careerBox {
  margin: 0 0 20px 0;
}
.careerBox .careerBox_inner {
  margin: 0 -10px;
  padding: 20px;
  background: #c4d59d;
  color: #506252;
}
.careerBox .careerBox_inner h2 {
  margin: 0 0 20px 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
.careerBox .careerBox_inner dt {
  margin: -10px 0 0 0;
  padding: 10px 10px 0 10px;
  border: 5px solid #789240;
  border-bottom: none;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  background: #fff;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}
.careerBox .careerBox_inner dd {
  padding: 0 10px 20px 10px;
  border-left: 5px solid #789240;
  border-right: 5px solid #789240;
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
.careerBox .careerBox_inner dd:last-child {
  padding-bottom: 10px;
  border-bottom: 5px solid #789240;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

@media only screen and (min-width: 1000px) {
  .mainLead,
  .career01 h1,
  .careerBox .careerBox_inner h2,
  .careerBox .careerBox_inner dl {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.images {
  text-align: center;
}
.images img {
  margin: 0 0 10px 0;
  max-width: 100%;
}

@media only screen and (min-width: 1000px) {
  .images {
    display: table;
    width: 1000px;
    margin: 0 auto;
  }
  .images p {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 10px;
  }
  .images p:first-child {
    width: 60%;
    padding: 0;
  }
}
#main > section.career02 {
  margin: 0;
  padding: 0;
}
#main > section.career02 h1 {
  border-bottom: 5px solid #945646;
  text-align: center;
}
#main > section.career02 h1 img {
  width: 50%;
}
#main > section.career02 .career02_01 {
  margin: 0 0 10px 0;
}
#main > section.career02 .career02_01 ul {
  margin: 1%;
  overflow: hidden;
}
#main > section.career02 .career02_01 ul li {
  float: left;
  width: 47%;
  margin: 1%;
  padding: 2% 0;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 12px;
  font-size: 1.2rem;
  color: #666;
}
#main > section.career02 .career02_02 {
  padding: 30px 0 0;
  background: #c2a27f;
  text-align: center;
}
#main > section.career02 .career02_02 h2 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #5d2621;
  line-height: 1.2;
}
#main > section.career02 .career02_02 h2 span {
  font-size: 12px;
  font-size: 1.2rem;
}
#main > section.career02 .career02_02 > ul {
  overflow: hidden;
  padding: 20px 0 0 10px;
  max-width: 260px;
  margin: 0 auto;
}
#main > section.career02 .career02_02 > ul li {
  float: left;
  width: 120px;
  height: 120px;
  margin: 0 10px 10px 0;
  background: #663b2f;
  border: 1px solid #c2a27f;
  -webkit-box-shadow: 0 0 0 1px #663b2f;
  -moz-box-shadow: 0 0 0 1px #663b2f;
  box-shadow: 0 0 0 1px #663b2f;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 40px 0 0 0;
  box-sizing: border-box;
}
#main > section.career02 .career02_02 > ul li.single {
  padding-top: 47px;
}
#main > section.career02 .career02_02 .career02_03 {
  position: relative;
  background: #945646;
  padding: 80px 0 20px 0;
}
#main > section.career02 .career02_02 .career02_03:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: " ";
  display: block;
  width: 0;
  height: 0;
  margin: 0 0 0 -160px;
  border-style: solid;
  border-width: 60px 160px 0 160px;
  border-color: #c2a27f transparent transparent transparent;
}
#main > section.career02 .career02_02 .career02_03 h3 {
  margin: 0 0 30px 0;
  color: #5a2424;
  line-height: 1.3;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px white, -1px 1px 2px white, 1px -1px 2px white, -1px -1px 2px white;
}
#main > section.career02 .career02_02 .career02_03 h3 span {
  font-size: 12px;
  font-size: 1.2rem;
}
#main > section.career02 .career02_02 .career02_03 ul li {
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.3;
}
#main > section.career02 .career02_02 dl {
  padding: 20px 10px;
  background: #fff;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
}
#main > section.career02 .career02_02 dl dt {
  font-weight: bold;
}
#main > section.career02 .career02_02 dl dd {
  margin: 0 0 20px 0;
}

@media only screen and (min-width: 480px) {
  #main > section.career02 .career02_02 > ul {
    max-width: 520px;
    margin: 0 auto;
    padding-left: 10px;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 1000px) {
  #main > section.career02 h1 img {
    width: auto;
  }
  #main > section.career02 .career02_01 {
    width: 1000px;
    margin: 0 auto 10px;
  }
  #main > section.career02 .career02_01 ul {
    margin: 1%;
    overflow: hidden;
  }
  #main > section.career02 .career02_01 ul li {
    float: left;
    width: 47%;
    margin: 1%;
    padding: 2% 0;
    text-align: center;
    border: 1px solid #ccc;
    font-size: 12px;
    font-size: 1.2rem;
    color: #666;
  }
}
