@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

video {
  vertical-align: bottom;
}

/* clearfix
----------------------------------------------------------- */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* =========================================================
デバイスごとの表示切り替え
========================================================= */
/*　　PCのみ表示　　*/
@media (max-width: 1024px) {
  .pc {
    display: none;
  }
}

/*　　Tabletのみ表示　　*/
@media (min-width: 768px) {
  .tab {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tab {
    display: none;
  }
}

/*　　SPのみ表示　　*/
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

/*　　PC,Tabletのみ表示　　*/
@media only screen and (max-width: 767px) {
  .pctab {
    display: none;
  }
}

/*　　Tablet,SPのみ表示　　*/
@media (min-width: 768px) {
  .tabsp {
    display: none;
  }
}

/*　　PC,SPのみ表示　　*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .pcsp {
    display: none;
  }
}

/* =========================================================
見出し、テキスト
========================================================= */
.secTitle {
  color: #589647;
  line-height: 1.4;
  margin: 30px 0 30px;
  font-family: "Signika Negative", sans-serif;
  font-size: 4.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .secTitle {
    margin: 20px 0 15px;
    font-size: 4.5rem;
  }
}

.secTitle:first-child {
  margin-top: 0;
}

.secTitle:only-child {
  margin-bottom: 0;
}

.secTitle + .secTitle02 {
  margin-top: -10px;
}

.secTitle.center {
  text-align: center;
}

.secTitle02 {
  margin: 20px 0 10px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #695C56;
}

@media only screen and (max-width: 767px) {
  .secTitle02 {
    margin: 10px 0 10px;
  }
}

.secTitle02:first-child {
  margin-top: 0;
}

.secTitle02:only-child {
  margin-bottom: 0;
}

.secTitle02.center {
  text-align: center;
}

.titleLead {
  font-size: 1.8rem;
}

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

strong {
  font-weight: bold;
}

.c_green {
  color: #589647;
}

/* =========================================================
リンク
========================================================= */
a {
  color: #877D78;
  text-decoration: none;
  transition: all .3s;
}

a:hover {
  opacity: .8;
}

@media only screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.btn {
  margin: 30px 0 0;
}

@media only screen and (max-width: 767px) {
  .btn {
    width: 100%;
    margin: 20px 0 0;
  }
}

.btn a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 35px;
  background: #589647;
  max-width: 100%;
  min-width: 300px;
  height: 67px;
  line-height: 67px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .btn a {
    display: block;
    min-width: 100%;
    max-width: 100%;
  }
}

.btn a[target="_blank"]::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: url("../img/common/icon_external.svg") no-repeat center;
  width: 14px;
  height: 11px;
  margin: 0 0 3px 7px;
}

.btn a:hover {
  background: #A8CF00;
}

.btn.center {
  text-align: center;
}

.btn:only-child {
  margin-top: 0;
}

.btn a:hover {
  opacity: .85;
}

.btnList {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .btnList {
    display: block;
  }
}

.btnList .btn {
  margin: 0 10px;
}

@media only screen and (max-width: 767px) {
  .btnList .btn {
    margin: 5px 0;
  }
}

/* =========================================================
背景
========================================================= */
section {
  background: #fff;
}

.bgGray {
  background: #F8F7F7;
}

.bgWhite {
  background: #fff;
}

/* =========================================================
table
========================================================= */
.table01 {
  width: 100%;
}

.table01 th,
.table01 td {
  border-top: 1px solid #E5F1B2;
  border-bottom: 1px solid #E5F1B2;
  background: #fff;
  padding: 7px 15px;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .table01 th,
  .table01 td {
    display: block;
    border: none;
    width: 100%;
  }
}

.table01 th {
  vertical-align: middle;
  border: 1px solid #fff;
  background: #E5F1B2;
  color: #695C56;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .table01 th {
    border: none;
  }
}

.table01 tr:first-child th,
.table01 tr:first-child td {
  border-top: none;
}

.table01 tr:last-child th,
.table01 tr:last-child td {
  border-bottom: none;
}

html,
body {
  font-size: 62.5%;
}

body {
  color: #877D78;
  font-size: 14px;
  font-family: fot-tsukuardgothic-std, YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  min-width: 1200px;
  padding-top: 100px;
  letter-spacing: .2em;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: 'palt';
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  body.scroll {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    overflow-x: hidden;
    min-width: 0;
  }
}

@media only screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    min-width: 0;
    padding-top: 75px;
    letter-spacing: .15em;
    line-height: 1.7;
  }
}

@media screen and (min-width: 1200px) {
  body {
    overflow-x: hidden;
  }
}

img {
  vertical-align: top;
  max-width: 100%;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .wrapper {
    width: auto;
    max-width: 100%;
    padding: 0 20px;
  }
}

.contents .wrapper {
  padding: 80px 0 90px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contents .wrapper {
    padding: 60px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .contents .wrapper {
    padding: 30px 20px;
  }
}

.text_en {
  font-family: "Signika Negative", sans-serif;
}

.text_jp {
  font-family: fot-tsukuardgothic-std, YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-weight: 500;
}

/* =========================================================
global_header
========================================================= */
.globalHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  border-bottom: 1px solid #F0EFEE;
  background: #fff;
  width: 100%;
  line-height: 1.6;
}

.globalHeader .wrapper {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 15px 0;
}

@media only screen and (max-width: 767px) {
  .globalHeader .wrapper {
    height: 75px;
    padding: 0;
  }
}

.globalHeaderLogo {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .globalHeaderLogo {
    margin: 0 auto;
    padding-right: 10px;
  }
}

.globalHeaderLogo img {
  vertical-align: top;
  width: 211px;
}

@media only screen and (max-width: 767px) {
  .globalHeaderLogo img {
    width: 140px;
  }
}

.globalHeader a {
  display: block;
  color: inherit;
}

.gnavBtn {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  z-index: 2;
  border-radius: 50%;
  background: #589647;
  width: 50px;
  height: 50px;
  margin: auto;
  text-align: center;
  cursor: pointer;
  transition: all .5s;
  color: #fff;
  font-family: "Signika Negative", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .gnavBtn {
    display: block;
  }
}

.gnavBtn a {
  display: block;
  height: 100%;
}

.gnavBtn .bd,
.gnavBtn .bd:before,
.gnavBtn .bd:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 0;
  right: 0;
  background: #fff;
  width: 16px;
  height: 1px;
  margin: auto;
  transition: all .3s;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .gnavBtn .bd,
  .gnavBtn .bd:before,
  .gnavBtn .bd:after {
    bottom: 15px;
  }
}

.gnavBtn .bd:before {
  top: -4px;
  bottom: auto;
}

.gnavBtn .bd:after {
  bottom: -4px;
  top: auto;
}

.gnavBtn.open .bd {
  background: transparent;
}

.gnavBtn.open .bd:before {
  top: 0;
  transform: rotate(45deg);
}

.gnavBtn.open .bd:after {
  bottom: 0;
  transform: rotate(-45deg);
}

.gnavBtn .text {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  letter-spacing: 0;
}

.gnavBtn:hover {
  opacity: 1;
}

/* =========================================================
globalNav
========================================================= */
.globalNav {
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .globalNav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
  }
  .globalNav.nav_open {
    visibility: visible;
    opacity: 1;
  }
  .globalNav.nav_open .globalNavList {
    margin-right: 0;
  }
}

.globalNavList {
  display: flex;
  color: #695C56;
  letter-spacing: .15em;
  font-family: "Signika Negative", sans-serif;
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  .globalNavList {
    display: block;
    background: #589647;
    width: 220px;
    height: 100%;
    margin-left: auto;
    margin-right: -50px;
    padding-top: 75px;
    transition: all .3s;
  }
}

@media only screen and (max-width: 767px) {
  .globalNavList > li + li {
    margin-top: 20px;
  }
}

.globalNavList > li a {
  display: block;
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .globalNavList > li a {
    color: #fff;
    padding: 0 30px;
  }
}

.globalNavList > li.current a {
  color: #589647;
}

@media only screen and (max-width: 767px) {
  .globalNavList > li.current a {
    color: #fff;
  }
}

.fixedLink {
  display: none;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .fixedLink {
    top: 45%;
  }
}

.fixedLink li + li {
  margin-top: 10px;
}

.fixedLink li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  height: 100px;
  padding: 0 30px;
  font-size: 1.3rem;
  box-shadow: 3px 3px 14px 0 rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767px) {
  .fixedLink li a {
    display: block;
    width: 100px;
    height: auto;
    padding: 8px 10px 13px;
    text-align: center;
    font-size: 1.2rem;
  }
}

.fixedLink li a span {
  display: block;
  font-family: "Signika Negative", sans-serif;
}

.fixedLink .line a {
  background: #F8F7F7;
  color: #589647;
  font-weight: bold;
}

.fixedLink .line a span {
  letter-spacing: 0.05em;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .fixedLink .line a span {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .fixedLink .line a img {
    width: 45px;
    margin-top: 5px;
  }
}

.fixedLink .recruit a {
  background: #589647;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.fixedLink .recruit a span {
  font-size: 3rem;
}

@media only screen and (max-width: 767px) {
  .fixedLink .recruit a span {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .fixedLink .recruit a img {
    width: 16px;
    margin-top: 5px;
  }
}

/* =========================================================
.contents
========================================================= */
.contents {
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .contents {
    padding-bottom: 80px;
  }
}

.titleArea {
  background: #F8F7F7;
}

.contents .titleArea .wrapper {
  padding: 50px 0;
}

@media only screen and (max-width: 767px) {
  .contents .titleArea .wrapper {
    padding: 30px 20px;
  }
}

.titleArea .pageTitle {
  line-height: 1.5;
  color: #695C56;
  font-weight: bold;
  font-size: 1.8rem;
}

.titleArea .pageTitle span {
  display: block;
  color: #589647;
  font-size: 4.8rem;
  font-family: "Signika Negative", sans-serif;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .titleArea .pageTitle span {
    font-size: 3.2rem;
  }
}

.breadCrumbs {
  background: #589647;
  padding: 10px 0;
}

@media only screen and (max-width: 767px) {
  .breadCrumbs {
    display: none;
  }
}

.breadCrumbs ul {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.breadCrumbs ul li {
  margin-right: 5px;
  letter-spacing: .05em;
  color: #fff;
  font-size: 1.3rem;
}

.breadCrumbs ul li:last-child {
  margin-right: 0;
}

.breadCrumbs ul li a {
  background: url("../img/common/icon_arrow.svg") no-repeat right center;
  padding-right: 17px;
  color: inherit;
  text-decoration: underline;
}

.breadCrumbs ul li a:hover {
  text-decoration: none;
}

/* =========================================================
globalFooter
========================================================= */
.globalFooter {
  position: relative;
  z-index: 1;
  background: #589647;
  color: #fff;
}

.globalFooter a {
  color: inherit;
}

.globalFooter .wrapper {
  position: relative;
  display: flex;
  padding: 70px 0 50px;
}

@media only screen and (max-width: 767px) {
  .globalFooter .wrapper {
    display: block;
    padding: 40px 10px 120px;
    text-align: center;
  }
}

.globalFooter .lineLink a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F7F7;
  height: 110px;
  color: #589647;
  font-weight: bold;
  font-size: 1.3rem;
}

.globalFooter .lineLink a span {
  letter-spacing: 0.05em;
  font-family: "Signika Negative", sans-serif;
  font-size: 2rem;
}

.globalFooter .lineLink a img {
  margin-left: 30px;
}

.globalFooter .address {
  display: flex;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .globalFooter .address {
    display: block;
    width: 100%;
    padding-bottom: 25px;
  }
}

.globalFooter .address dt {
  width: 120px;
  margin: -20px 40px 0 0;
}

@media only screen and (max-width: 767px) {
  .globalFooter .address dt {
    width: 100%;
    margin: 0 0 20px;
  }
}

.globalFooter .address dd {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.globalFooter .copyright {
  margin-top: auto;
  font-family: "Signika Negative", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  .globalFooter .copyright {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
  }
}

.globalFooter .footerNav {
  display: flex;
  width: 50%;
  padding-left: 70px;
}

@media only screen and (max-width: 767px) {
  .globalFooter .footerNav {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}

.globalFooter .footerNavList {
  font-size: 2rem;
  font-family: "Signika Negative", sans-serif;
}

.globalFooter .footerNavList + .footerNavList {
  margin-left: 50px;
}

@media only screen and (max-width: 767px) {
  .globalFooter .footerNavList + .footerNavList {
    margin-left: 0;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .globalFooter .footerNavList li + li {
    margin-top: 5px;
  }
}

.globalFooter .illust01 {
  position: absolute;
  top: -80px;
  right: -70px;
}

@media only screen and (max-width: 767px) {
  .globalFooter .illust01 {
    top: -220px;
    right: 20px;
    width: 75px;
  }
}

.pagetop {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  height: 90px;
  text-indent: -9999px;
  cursor: pointer;
}

.pagetop::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -64px;
  right: -64px;
  border: 64px solid transparent;
  border-left: 64px solid #A8CF00;
  width: 0;
  height: 0;
  transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .pagetop {
    right: 0;
  }
}

.pagetop span {
  position: absolute;
  right: 0;
  bottom: 0;
}

.pagetop span::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 15px;
  right: 22px;
  background: #fff;
  width: 1px;
  height: 20px;
}

.pagetop span::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 19px;
  right: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 14px;
  height: 14px;
  transform: rotate(-45deg);
}

/*# sourceMappingURL=map/style.css.map */
