@charset "UTF-8";
/*==========================
common - 共通
==========================*/
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-size: 1.6rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  color: #525252;
  line-height: 1.75;
  letter-spacing: 1.5px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #4285f4;
  transition: .4s;
}
a:hover {
  opacity: .6;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.contents {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .contents {
    padding: 24px 0;
  }
}
.contents-wide {
  padding: 0;
}
.contents-ttl {
  margin-bottom: 56px;
  color: #252525;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .2em;
}
@media screen and (max-width: 1024px) {
  .contents-ttl {
    margin-bottom: 32px;
    font-size: 2.4rem;
  }
}
.contents-ttl::after {
  content: "";
  display: block;
  background-color: #85d65c;
  margin: 12px auto 0;
  width: 40px;
  height: 1px;
}
.contents-btn {
  text-align: center;
}
.contents-btn div {
  margin-bottom: 8px;
}
.contents-btn a {
  display: inline-block;
  background-color: #f33;
  border-radius: 4px;
  padding: 24px 16px;
  width: 60%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
.contents-btn a span {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .contents-btn a {
    padding: 16px;
    width: 80%;
  }
}

.inner {
  margin: 0 auto;
  width: 1050px;
}
@media screen and (max-width: 1024px) {
  .inner {
    margin: auto;
    width: auto;
    padding: 0 8px;
  }
}
.inner-wide {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .inner-wide {
    padding: 0;
  }
}
.inner-narrow {
  width: 945px;
}
@media screen and (max-width: 1024px) {
  .inner-narrow {
    width: auto;
  }
}

/*
main > .contents:nth-of-type(2n+1) {
    background-color: $contentsBgColor;
}
*/
.pcNone {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pcNone {
    display: block;
  }
}

.spNone {
  display: block;
}
@media screen and (max-width: 1024px) {
  .spNone {
    display: none;
  }
}

/*==========================
header - ヘッダー
==========================*/
#g-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10000;
}
@media screen and (max-width: 1024px) {
  #g-header {
    display: block;
    background: none;
  }
}
#g-header .g-header-logo {
  margin-right: auto;
  padding: 8px;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-logo {
    background: rgba(255, 255, 255, 0.8);
    margin-right: inherit;
    height: 54px;
  }
}
#g-header .g-header-logo img {
  margin-top: 6px;
  max-width: 100%;
  max-height: 30px;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-nav {
    display: none;
  }
}
#g-header .g-header-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-nav ul {
    background-color: #252525;
    width: 100%;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#g-header .g-header-nav ul li {
  margin-left: 32px;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-nav ul li {
    border-bottom: solid 1px #525252;
    margin-left: 0;
    width: 50%;
    font-weight: normal;
    text-align: center;
  }
  #g-header .g-header-nav ul li:nth-of-type(2n+1) {
    border-right: solid 1px #525252;
  }
}
#g-header .g-header-nav ul li a {
  display: block;
  height: 56px;
  line-height: 56px;
  color: #525252;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-nav ul li a {
    height: 40px;
    line-height: 40px;
    color: #f3f3f3;
  }
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-nav ul li.mark {
    display: none;
  }
}
#g-header .g-header-nav ul li.mark a {
  background-color: #f33;
  padding: 0 24px;
  color: #fff;
}
#g-header .g-header-spmenu {
  position: relative;
}
#g-header .g-header-spmenu .spmenu-mark {
  display: none;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-spmenu .spmenu-mark {
    position: fixed;
    display: block;
    top: 0;
    right: 60px;
    text-align: right;
  }
  #g-header .g-header-spmenu .spmenu-mark a {
    display: block;
    background-color: #f33;
    padding: 0 16px;
    height: 54px;
    line-height: 54px;
    color: #fff;
  }
}
#g-header .g-header-spmenu .spmenu-toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-spmenu .spmenu-toggle {
    position: fixed;
    display: block;
    background-color: #111;
    width: 60px;
    height: 54px;
    top: 0;
    right: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 9;
  }
  #g-header .g-header-spmenu .spmenu-toggle::before, #g-header .g-header-spmenu .spmenu-toggle::after {
    position: absolute;
    display: block;
    width: 28px;
    transition: all 0.3s ease;
  }
  #g-header .g-header-spmenu .spmenu-toggle::before {
    content: '';
    background-color: #fff;
    border: none;
    height: 2px;
    top: 17px;
    left: 16px;
  }
  #g-header .g-header-spmenu .spmenu-toggle::after {
    content: '';
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    height: 10px;
    top: 26px;
    left: 16px;
  }
  #g-header .g-header-spmenu .spmenu-toggle.active {
    transition: all 0.3s ease;
  }
  #g-header .g-header-spmenu .spmenu-toggle.active::before, #g-header .g-header-spmenu .spmenu-toggle.active::after {
    background-color: #fff;
    border: none;
    height: 2px;
    top: 25px;
    transform: translateX(-75%);
  }
  #g-header .g-header-spmenu .spmenu-toggle.active::before {
    content: '';
    transform: rotate(-45deg);
  }
  #g-header .g-header-spmenu .spmenu-toggle.active::after {
    content: '';
    transform: rotate(45deg);
  }
}

/*==========================
footer - フッター
==========================*/
#g-footer {
  background-color: #fff;
  padding: 8px;
  text-align: center;
}
#g-footer small {
  font-size: 1.0rem;
}

#page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
}
#page-top a {
  position: relative;
  display: block;
  background-color: #85d65c;
  border: solid 4px #fff;
  border-radius: 4px;
  width: 52px;
  height: 52px;
  overflow: hidden;
}
#page-top a::before {
  content: '';
  position: absolute;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 20px;
  height: 20px;
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -10px;
}

/*==========================
keyv - キービジュアル
==========================*/
#keyv {
  padding-top: 54px;
}
#keyv .keyv-top-responsive {
  position: relative;
  width: 100%;
}
#keyv .keyv-top-responsive::before {
  content: "";
  display: block;
  padding-top: 81.19%;
}
@media screen and (max-width: 1024px) {
  #keyv .keyv-top-responsive::before {
    content: "";
    display: block;
    padding-top: 118.67%;
  }
}
#keyv .keyv-top-ph {
  background-image: url(../img/mainimg/keyv-pc.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}
@media screen and (max-width: 1024px) {
  #keyv .keyv-top-ph {
    background-image: url(../img/mainimg/keyv-sp.jpg);
  }
}

/*==========================
ph - 画像レイアウト(画像コンテンツが増えるごとに、01、02...と増やしてください)
==========================*/
.layout-ph {
  background-repeat: no-repeat;
}
.layout-ph-01 > div {
  background-image: url(../img/contents/ph-contents-01-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 477px;
}
@media screen and (max-width: 1024px) {
  .layout-ph-01 > div {
    background-image: url(../img/contents/ph-contents-01-sp.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
  }
}
.layout-ph-01-responsive {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .layout-ph-01-responsive::before {
    content: "";
    display: block;
    padding-top: 59.33%;
  }
}
.layout-ph-02 > div {
  background-image: url(../img/contents/ph-contents-02-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 701px;
}
@media screen and (max-width: 1024px) {
  .layout-ph-02 > div {
    background-image: url(../img/contents/ph-contents-02-sp.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
  }
}
.layout-ph-02-responsive {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .layout-ph-02-responsive::before {
    content: "";
    display: block;
    padding-top: 86.40%;
  }
}
.layout-ph-03 > div {
  background-image: url(../img/contents/ph-contents-03-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 913px;
}
@media screen and (max-width: 1024px) {
  .layout-ph-03 > div {
    background-image: url(../img/contents/ph-contents-03-sp.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
  }
}
.layout-ph-03-responsive {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .layout-ph-03-responsive::before {
    content: "";
    display: block;
    padding-top: 140.53%;
  }
}
.layout-ph-04 > div {
  background-image: url(../img/contents/ph-contents-04-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 390px;
}
@media screen and (max-width: 1024px) {
  .layout-ph-04 > div {
    background-image: url(../img/contents/ph-contents-04-sp.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
  }
}
.layout-ph-04-responsive {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .layout-ph-04-responsive::before {
    content: "";
    display: block;
    padding-top: 53.33%;
  }
}

.layout-wide-01 > div {
  background-image: url(../img/contents/ph-wide-contents-01-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .layout-wide-01 > div {
    background-image: url(../img/contents/ph-wide-contents-01-sp.png);
  }
}
.layout-wide-01-responsive {
  position: relative;
  width: 100%;
}
.layout-wide-01-responsive::before {
  content: "";
  display: block;
  padding-top: 60.79%;
}
@media screen and (max-width: 1024px) {
  .layout-wide-01-responsive::before {
    padding-top: 157.33%;
  }
}

/*==========================
table - テーブルレイアウト
==========================*/
.layout-table {
  margin-bottom: 40px;
}
.layout-table-normal dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .layout-table-normal dl {
    display: block;
  }
}
.layout-table-normal dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #85d65c;
  padding: 24px;
  width: 180px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .layout-table-normal dt {
    display: block;
    padding: 12px 8px;
    width: 100%;
  }
}
.layout-table-normal dd {
  background-color: #fff;
  border: solid 1px #85d65c;
  margin-left: 6px;
  padding: 24px;
  vertical-align: top;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .layout-table-normal dd {
    border-top: none;
    display: block;
    margin-left: 0;
    padding: 12px 8px;
    width: auto;
  }
}
.layout-table-line {
  margin-bottom: 56px;
}
.layout-table-line dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #85d65c;
  width: 100%;
}
.layout-table-line dl:last-child {
  border-bottom: none;
}
.layout-table-line dt {
  padding: 24px;
  width: 180px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .layout-table-line dt {
    padding: 16px 8px;
    width: 100px;
  }
}
.layout-table-line dd {
  border-left: solid 1px #85d65c;
  padding: 24px;
  vertical-align: middle;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .layout-table-line dd {
    padding: 16px 8px;
  }
}

/*==========================
column - カラムレイアウト
==========================*/
.layout-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layout-column-2 > li {
  margin: 0 12px;
  width: 488px;
}
@media screen and (max-width: 1024px) {
  .layout-column-2 > li {
    width: calc( calc(945px / 2 ) - 24px );
  }
}
.layout-column-3 > li {
  margin: 0 12px;
  width: calc( calc(945px / 3 ) - 24px );
}
.layout-column-4 > li {
  margin: 0 12px;
  width: calc( calc(945px / 4 ) - 24px );
}

/*==========================
joblist - 求人一覧
==========================*/
.layout-joblist > li {
  background-color: #fff;
  border: solid 2px #85d65c;
  margin-bottom: 24px;
  padding: 16px;
}
.layout-joblist > li .icon-koyo {
  font-size: 0;
  letter-spacing: 0;
  margin: 0 -10px -10px 0;
}
.layout-joblist > li .icon-koyo .joblist-tag {
  border: solid 1px #85d65c;
  padding: 6px 16px;
  color: #85d65c;
  font-size: 1.2rem;
  display: inline-block;
  margin: 0 10px 10px 0;
}
.layout-joblist > li p {
  margin: 16px 0 8px;
  min-height: 94px;
}
.layout-joblist > li table {
  border-top: solid 1px #85d65c;
  border-collapse: collapse;
  margin-bottom: 24px;
  width: 100%;
  font-size: 1.4rem;
}
.layout-joblist > li table th {
  border-bottom: solid 1px #85d65c;
  padding: 16px;
  width: 114px;
  color: #85d65c;
  font-weight: normal;
  vertical-align: top;
}
.layout-joblist > li table td {
  border-bottom: solid 1px #85d65c;
  padding: 16px;
  vertical-align: top;
}
.layout-joblist .joblist-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .layout-joblist .joblist-btn {
    display: block;
  }
}
.layout-joblist .joblist-btn li {
  border: solid 2px #85d65c;
  margin: 0 12px;
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .layout-joblist .joblist-btn li {
    width: 100%;
    margin: 0 0 12px;
  }
}
.layout-joblist .joblist-btn li.joblist-btn-oubo {
  background-color: #f33;
  border: solid 2px #f33;
}
.layout-joblist .joblist-btn li.joblist-btn-oubo a {
  color: #fff;
}
.layout-joblist .joblist-btn a {
  display: block;
  padding: 16px;
  color: #85d65c;
  font-size: 1.6rem;
}

/*==========================
free - フリースペース
==========================*/
.dayslist li {
  display: inline-block;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .dayslist li {
    display: block;
    width: auto;
  }
}

.map-responsive {
  position: relative;
  width: 100%;
}
.map-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media screen and (max-width: 1024px) {
  .map-responsive::before {
    padding-top: 100%;
  }
}
.map #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

.contents-bg {
  background-color: #d1f0c2;
}

.comment {
  background-color: #fff;
  border: 1px solid #85d65c;
  text-align: center;
  padding: 16px 8px;
}

#g-header .g-header-nav ul li:last-child {
  margin-right: 32px;
}
@media screen and (max-width: 1024px) {
  #g-header .g-header-nav ul li:last-child {
    margin-right: 0;
  }
}
