@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  レイアウト・基本カラー

---------------------------------*/
#globalContainer {
  position: relative;
}
:root {
  --co-bl: #241E20;
  --co-g: #258341;
  --co-b: #29b1bd;
  --width: 1200px;
  --marug: normal 4rem "Zen Maru Gothic", sans-serif;
}
.en {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .en {}
}
/*---------------------------------

  header

---------------------------------*/
header {}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
  padding: 3rem 5%;
}
header .wrap #logo {
  max-width: 38rem;
  margin-right: 2.5%;
  overflow: hidden;
}
header .wrap #logo a {
  display: block;
}
header .wrap #logo img {
  width: 100%;
  vertical-align: bottom;
}
/*---------------------------------
  グローバルナビゲーション
---------------------------------*/
#gnav {}
#gnav .SPmenu {
  display: none;
}
#gnav ul {
  display: flex;
  align-items: center;
}
#gnav ul li {}
#gnav ul li a {
  color: #333;
  display: block;
  font-weight: 600;
  position: relative;
}
#gnav ul li:not(._btn) {
  margin-right: 2.5rem;
}
#gnav ul li:not(._btn) a {
  padding: 1.5rem 1rem;
}
#gnav ul li:not(._btn) a::after {
  content: '';
  background: var(--co-g);
  border-radius: 3rem;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  width: 2rem;
  height: 4px;
}
#gnav ul li:not(._btn).current a {
  color: var(--co-g);
}
#gnav ul li:not(._btn).current a::after {
  opacity: 1;
}
#gnav ul li._btn a {
  background-image: url("../images/btn_arr_0_1.svg");
  background-position: center right 1.5rem;
  background-size: .5rem;
  background-repeat: no-repeat;
  border-radius: 3rem;
  color: #fff;
  font-weight: 500;
  padding: 1rem 4rem;
}
#gnav ul li._btn._recruit a {
  background-color: var(--co-b);
}
#gnav ul li._btn._contact {
  margin-left: 1rem;
}
#gnav ul li._btn._contact a {
  background-color: var(--co-g);
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  header .wrap {
    padding: 2rem 5%;
  }
  header .wrap #logo {
    max-width: 20rem;
  }
}
/*---------------------------------
  トグルメニュー（ipadサイズから）
---------------------------------*/
@media screen and (max-width: 1024px) {
  .navToggle {
    background: var(--co-g);
    color: #fff;
    cursor: pointer;
    position: fixed;
    top: .5rem;
    right: .5rem;
    z-index: 100;
    display: block;
    width: 6rem;
    height: 6rem;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  .navToggle::after {
    content: 'MENU';
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .navToggle span {
    background: #fff;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navToggle span:nth-of-type(1) {
    top: 10px;
  }
  .navToggle span:nth-of-type(2) {
    top: 20px;
  }
  .navToggle span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle.active::after {
    content: 'CLOSE';
  }
  .navToggle.active span:nth-of-type(1) {
    display: none;
  }
  .navToggle.active span:nth-of-type(2) {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 20px;
    right: 0;
  }
  .navToggle.active span:nth-of-type(3) {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 20px;
    right: 0;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.panelactive {
    display: block;
    animation-name: fade-in;
    animation-duration: .5s;
  }
  nav.globalMenuSp {
    background: rgba(249, 248, 244, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100vh);
    padding: 7.5rem 1.5rem 3rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #gnav {
    font-size: 1.1em;
  }
  #gnav #SPlogo {
    margin: 3rem auto;
    max-width: 25rem;
  }
  #gnav .PCmenu {
    display: none;
  }
  #gnav .SPmenu {
    display: block;
  }
  #gnav ._flex {
    display: flex;
    justify-content: space-between;
  }
  #gnav ._flex > ul {
    margin: 0;
    padding: 0 3%;
  }
  #gnav ul {
    display: block;
  }
  #gnav ul + ul {
    border-left: 2px dotted var(--co-g);
  }
  #gnav ul li:not(._btn) {
    margin: .7rem 0;
  }
  #gnav ul li:not(._btn) a {
    padding: 0;
  }
  #gnav ul li:not(._btn) a::after {
    display: none;
  }
  #gnav ul li:not(._btn).current a {
    color: #333;
  }
  #gnav ul li a span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
  }
  #gnav ul li a {
    background: url(../images/btn_arr_3_1.svg) no-repeat top 0.2rem left / 3rem;
    padding-left: 4rem !important;
  }
  #gnav ul li .childNav {
    font-size: .8em;
  }
  #gnav ul li .childNav li {}
  #gnav ul li .childNav li a {}
  #gnav ul li .childNav li ul {
    margin-left: 4rem;
  }
  #gnav ul li .childNav li ul li a {
    background: none;
    padding-left: 0 !important;
  }
  #gnav ._btn {
    margin: 5rem auto;
    max-width: 30rem;
  }
  #gnav ._btn a {
    background-color: var(--co-g);
    background-image: url("../images/btn_arr_0_1.svg");
    background-position: center right 1.5rem;
    background-size: .5rem;
    background-repeat: no-repeat;
    border-radius: 3rem;
    color: #fff;
    font-weight: 500;
    display: block;
    padding: 1rem 4rem;
  }
}
@media screen and (max-width: 480px) {
  nav.globalMenuSp {
    padding: 6.5rem .3rem 10rem;
  }
  #gnav ul li a {
    background-size: 2rem;
    padding-left: 3rem !important;
  }
  #gnav ul li .childNav li ul {
    margin-left: 3rem;
  }
}
/*---------------------------------

	copylight

---------------------------------*/
#copylight {
  color: var(--co-g);
  position: fixed;
  top: 30%;
  left: 2%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 10;
}
#copylight small {
  font-size: 1.2rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

	footer

---------------------------------*/
footer {
  background: #fff;
  border-top-right-radius: 5rem;
  border-top-left-radius: 5rem;
  margin-top: -10rem;
  padding: 10rem 0 0;
  position: relative;
  z-index: 1;
}
footer .wrap {
  margin: auto;
  width: 80%;
}
footer .wrap ._flex {
  display: flex;
  justify-content: space-between;
}
footer .wrap .in_co_Box {
  margin: auto;
  margin-bottom: 5rem;
  max-width: 120rem;
}
footer .wrap .in_co_Box .infoTxt {
  flex-basis: 38%;
}
footer .wrap .in_co_Box .infoTxt .logo {
  max-width: 35rem;
}
footer .wrap .in_co_Box .infoTxt address {
  font-style: normal;
  margin-top: 1.5rem;
}
footer .wrap .in_co_Box .contactBox {
  flex-basis: 58%;
}
footer .wrap .in_co_Box .contactBox > p {
  font-size: .9em;
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
footer .wrap .in_co_Box .contactBox .__telBox {
  border: 1px solid var(--co-g);
  color: var(--co-g);
  padding: 2rem 1rem;
  flex-basis: 50%;
  text-align: center;
}
footer .wrap .in_co_Box .contactBox .__telBox p.tel {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
footer .wrap .in_co_Box .contactBox .__telBox p.tel span {
  font-size: 1.8em;
  margin-left: .2em;
}
footer .wrap .in_co_Box .contactBox .__telBox p.tel a {
  color: var(--co-g);
  pointer-events: none;
}
footer .wrap .in_co_Box .contactBox .__telBox p.tel + p {
  font-size: .75em;
  margin-top: .5rem;
}
footer .wrap .in_co_Box .contactBox .__mailBox {
  flex-basis: 50%;
  text-align: center;
}
footer .wrap .in_co_Box .contactBox .__mailBox a {
  background: rgb(119, 187, 84);
  background: linear-gradient(45deg, rgba(119, 187, 84, 1) 0%, rgba(41, 177, 189, 1) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 100%;
}
footer .wrap .in_co_Box .contactBox .__mailBox a span {
  background: url("../images/btn_arr_0_1.svg") no-repeat center right/.5rem;
  display: block;
  padding-right: 3rem;
}
footer .wrap .map {
  flex-basis: 60%;
}
footer .wrap .map iframe {
  width: 100%;
  vertical-align: bottom;
}
footer .wrap .fnav {
  flex-basis: 40%;
  padding-left: 4%;
}
footer .wrap .fnav dl {
  font-weight: 600;
}
footer .wrap .fnav dl a {
  display: inline-block;
  padding: 0 .5rem;
}
footer .wrap .fnav dl dt {
  margin: 1rem 0 .5rem;
}
footer .wrap .fnav dl dt a {
  color: var(--co-g);
}
footer .wrap .fnav dl dd a {
  color: var(--co-bl);
  font-size: .85em;
}
footer .wrap .fnav dl a:hover {
  background: var(--co-g);
  color: #fff;
}
footer .wrap .fnav dl dd ul {
  font-weight: 500;
  margin-left: 1em;
  list-style: none;
}
footer .wrap .fnav dl dd.sns {
  margin-top: 2rem;
}
footer .wrap .fnav dl dd.sns a img {
  width: 4rem;
  vertical-align: bottom;
}
footer .wrap .fnav dl dd.sns a:hover {
  background: none;
  opacity: .7;
}
footer .copylight {
  color: var(--co-g);
  padding: 5rem 0;
  text-align: center;
}
footer .copylight small {
  font-size: 1.2rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  footer .wrap .in_co_Box {
    display: block;
  }
  footer .wrap .in_co_Box .infoTxt {
    margin-bottom: 3rem;
    text-align: center;
  }
  footer .wrap .in_co_Box .infoTxt .logo {
    margin: auto;
  }
  footer .wrap .map {
    flex-basis: 50%;
  }
  footer .wrap .fnav {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 896px) {
  footer .wrap .map {
    flex-basis: 100%;
  }
  footer .wrap .in_co_Box .contactBox .__telBox p.tel span {
    font-size: 1.6em;
  }
  footer .wrap .fnav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  footer {
    border-top-right-radius: 3rem;
    border-top-left-radius: 3rem;
    margin-top: -6rem;
    padding: 5rem 0 0;
  }
  footer .wrap ._flex {
    display: block;
  }
  footer .wrap .in_co_Box {
    margin-bottom: 3rem;
  }
  footer .wrap .in_co_Box .contactBox .__telBox p.tel {
    font-size: 1.6rem;
  }
  footer .wrap .in_co_Box .contactBox .__telBox p.tel span {
    font-size: 2em;
  }
  footer .wrap .in_co_Box .contactBox .__telBox p.tel a {
    pointer-events: auto;
  }
  footer .wrap .in_co_Box .contactBox .__mailBox a {
    padding: 3rem 1rem;
  }
  footer .wrap .fnav {
    display: none;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
}
#page-top a {
  text-decoration: none;
  color: #fff;
  width: 40px;
  height: 12rem;
  text-align: center;
  display: block;
  position: relative;
}
#page-top a::after {
  background: rgb(119, 187, 84);
  background: linear-gradient(45deg, rgba(119, 187, 84, 1) 0%, rgba(41, 177, 189, 1) 100%);
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
}
#page-top a .arrow {
  background: url("../images/pagetop_arrow.svg") no-repeat center top/1rem;
  color: var(--co-g);
  font-weight: 900;
  display: block;
  padding-top: .8em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#page-top a:hover {}
#page-top a:hover .arrow::before {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

	ボタン

---------------------------------*/
.btn {
  border-radius: .5rem;
  max-width: 28rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn a {
  color: #fff;
  display: block;
  padding: 2rem 1.5rem;
  position: relative;
}
.btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: rgb(119, 187, 84);
  background: linear-gradient(45deg, rgba(119, 187, 84, 1) 0%, rgba(41, 177, 189, 1) 100%);
}
.btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: rgb(255, 0, 0);
  background: linear-gradient(45deg, rgba(16, 160, 229, 1.00) 0%, rgba(168, 225, 20, 1.00) 100%);
}
.btn a span {
  background: url("../images/btn_arr_0_1.svg") no-repeat center right/.5rem;
  display: block;
  letter-spacing: .07em;
  position: relative;
  z-index: 1;
}
.btn a:hover:before {
  opacity: 0;
}
/*--- btn2 --*/
.btn2 {
  border-radius: 0;
}
.btn2 a {
  border: 4px solid #2C9E36;
  color: var(--co-g);
  font-weight: 600;
}
.btn2 a span {
  background-image: url("../images/btn_arr_0_2.svg");
}
.btn2 a:hover {
  background: #2C9E36;
  color: #fff;
}
.btn2 a:hover span {
  background-image: url("../images/btn_arr_0_1.svg");
}
.btn2 a::before , .btn2 a::after {
  content: none;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

	inview

---------------------------------*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}