@charset "UTF-8";
/***************************************
 *
 *base CSS
 *
 *2019/XX
 *
 ****************************************** */
/*****************************
 *
 *settings
 *
 ***************************** */
.trans_txt_parent .inner {
  overflow: hidden; }
.trans_txt_parent s {
  display: inline-block;
  transform: translateY(100px); }

.scroll_fadein {
  transform: translateY(100px);
  opacity: 0; }

/***********************
 *
 *common
 *
 ********************** */
* {
  box-sizing: border-box; }

a {
  text-decoration: none;
  color: inherit; }
  a:hover {
    opacity: 0.8; }

li {
  list-style: none; }

i, em {
  font-style: normal; }

body, html {
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%; }

body {
  overflow-x: hidden; }

ul {
  margin: 0;
  padding: 0; }

h2, h3, h4, h5 {
  font-weight: bold; }

.ib {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  max-width: 100%; }

table {
  border-collapse: collapse; }

#wpadminbar {
  display: none; }

.pc_content {
  display: block !important; }

.sp_content {
  display: none !important; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777; }

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  box-shadow: none; }

.btn_border {
  text-align: center;
  display: block;
  margin: 20px auto;
  position: relative;
  max-width: 300px;
  background: #f1f1f1; }
  .btn_border::before {
    right: 0;
    top: 0; }
  .btn_border::after {
    left: 0;
    bottom: 0; }
  .btn_border::before, .btn_border::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    transition: all 0.2s linear;
    background: #000;
    transition-delay: 0s; }
  .btn_border:hover::before, .btn_border:hover::after {
    width: 100%;
    transition-delay: 0.2s; }
  .btn_border:hover span::before, .btn_border:hover span::after {
    height: 100%;
    transition-delay: 0s; }
  .btn_border span {
    display: block;
    padding: 15px;
    font-size: 16px;
    color: #000;
    position: relative; }
    .btn_border span::before {
      left: 0;
      top: 0; }
    .btn_border span::after {
      right: 0;
      bottom: 0; }
    .btn_border span::before, .btn_border span::after {
      content: "";
      width: 1px;
      height: 0;
      position: absolute;
      transition: all 0.2s linear;
      background: #000;
      transition-delay: 0.2s; }

/*************************************
 *
 *404
 *
 ************************************* */
p.p404 {
  padding: 40px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  background: #f1f1f1;
  margin: 40px 0; }

/***************************************
 *
 *header
 *
 ************************************* */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 100px; }
  header a.logo {
    width: 166px;
    margin: 40px auto;
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    margin-top: 0; }
    header a.logo h1 {
      width: 100%; }
      header a.logo h1 img {
        display: block;
        width: 100%; }
  header #fixed_side_header {
    width: 200px;
    position: fixed;
    height: 100vh;
    left: 0;
    z-index: 99;
    position: relative; }
    header #fixed_side_header a.pp {
      position: absolute;
      font-size: 13px;
      bottom: 60px;
      left: 30px; }
    header #fixed_side_header nav {
      margin-top: 250px;
      width: 100%;
      padding-left: 30px; }
      header #fixed_side_header nav a {
        margin: 20px 0;
        font-size: 16px;
        font-weight: bold;
        display: block;
        width: 100%;
        position: relative;
        transition: 0.4s ease; }
        header #fixed_side_header nav a:hover {
          color: #009944; }
          header #fixed_side_header nav a:hover:before {
            background: #B8F5D3; }
          header #fixed_side_header nav a:hover:after {
            left: 95px; }
        header #fixed_side_header nav a:before {
          width: 20px;
          height: 5px;
          background: #ccc;
          border-radius: 10px;
          content: "";
          position: absolute;
          left: 80px;
          top: calc(50% - 2.5px);
          transition: 0.4s ease; }
        header #fixed_side_header nav a:after {
          content: "";
          position: absolute;
          left: 80px;
          height: 5px;
          width: 5px;
          display: block;
          border-radius: 50%;
          background: #009944;
          top: calc(50% - 2.5px);
          transition: 0.4s ease;
          z-index: 2; }

#fv {
  position: relative;
  width: 100%;
  height: 820px;
  z-index: 3; }
  #fv #fv_img {
    position: absolute;
    height: 100%;
    width: calc(100% - 200px);
    right: 0;
    top: 0;
    display: block;
    overflow: hidden;
    background: url(../img/fv1.jpg) 50% 50% fixed;
    background-size: cover;
    border-radius: 0 0 0 80px;
    display: flex;
    align-items: center; }
    #fv #fv_img h2 {
      height: 156px;
      padding-left: 80px;
      opacity: 0;
      animation: fadein_tit 2s linear forwards; }
@keyframes fadein_tit {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
      #fv #fv_img h2 img {
        display: block;
        height: 100%; }

#content.front {
  min-height: 1500px;
  position: relative; }
  #content.front #morphSvg {
    position: fixed;
    left: -400px;
    bottom: -200px; }
#content p {
  font-size: 18px;
  line-height: 1.9;
  margin: 20px 0; }
#content a.btn {
  display: block;
  margin: 50px auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(#009944, #0CB657);
  border-radius: 50px;
  cursor: pointer;
  width: 230px; }
#content h2 {
  font-size: 44px;
  text-align: center;
  font-weight: bold;
  color: #009944;
  letter-spacing: 0.05rem;
  margin: 60px 0; }
  #content h2 s {
    text-decoration: none; }
#content .ib {
  padding: 70px 0; }
#content .top_recruit {
  margin-top: -50px; }
  #content .top_recruit .ib {
    width: 780px;
    padding: 70px 50px;
    z-index: 2; }
    #content .top_recruit .ib.active:after {
      transform: scale(1); }
    #content .top_recruit .ib h2, #content .top_recruit .ib p, #content .top_recruit .ib a {
      position: relative;
      z-index: 4; }
    #content .top_recruit .ib p {
      padding-left: 200px; }
    #content .top_recruit .ib .tr1 {
      position: absolute;
      bottom: 130px;
      left: -100px;
      z-index: 45; }
    #content .top_recruit .ib a.btn {
      margin-bottom: 0; }
    #content .top_recruit .ib:after {
      content: "";
      width: 108px;
      height: 108px;
      background: linear-gradient(#FF8752, #EA5514);
      border-radius: 50%;
      position: absolute;
      transform: scale(0);
      transition: 0.4s ease;
      top: -54px;
      right: -54px; }
    #content .top_recruit .ib:before {
      position: 4px;
      content: "";
      position: absolute;
      width: calc(50vw + 390px);
      top: 0;
      height: 100%;
      z-index: 2;
      background: #FFF8E7;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
      left: calc(0px - calc(50vw - 50%)); }
#content .intro {
  position: relative;
  margin-top: 140px; }
  #content .intro .ib {
    width: 780px;
    padding: 70px 50px 70px;
    z-index: 2; }
    #content .intro .ib.active:after {
      transform: scale(1); }
    #content .intro .ib:after {
      content: "";
      width: 108px;
      height: 108px;
      background: linear-gradient(#009944, #0CB657);
      border-radius: 50%;
      position: absolute;
      transform: scale(0);
      transition: 0.4s ease;
      top: -54px;
      left: -54px; }
    #content .intro .ib:before {
      position: 4px;
      content: "";
      position: absolute;
      width: calc(50vw + 390px);
      top: 0;
      height: 100%;
      z-index: 2;
      background: #fff;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
      right: calc(0px - calc(50vw - 50%)); }
    #content .intro .ib .tit2 {
      display: block;
      margin-bottom: 40px;
      position: relative;
      z-index: 5; }
    #content .intro .ib .star1 {
      position: absolute;
      z-index: 4;
      bottom: 130px;
      right: -100px; }
    #content .intro .ib p, #content .intro .ib a {
      position: relative;
      z-index: 4; }
    #content .intro .ib a.btn {
      margin-bottom: 0; }
#content .top_business .ib {
  width: 780px;
  padding-top: 50px; }
#content .top_business .biz_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  #content .top_business .biz_list .box {
    width: 48%;
    border: 5px solid #009944;
    height: 280px;
    background: #fff;
    margin-bottom: 40px; }
    #content .top_business .biz_list .box:nth-of-type(2) {
      border-color: #FFD262; }
    #content .top_business .biz_list .box:nth-of-type(3) {
      border-color: #EA5514; }
    #content .top_business .biz_list .box:nth-of-type(4) {
      border-color: #008CD6; }
    #content .top_business .biz_list .box:hover .img img {
      transform: scale(1.1); }
    #content .top_business .biz_list .box .img {
      height: 180px;
      display: block;
      overflow: hidden; }
      #content .top_business .biz_list .box .img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: 0.4s ease; }
    #content .top_business .biz_list .box p {
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #009944;
      font-weight: bold;
      margin: 0;
      position: relative; }
      #content .top_business .biz_list .box p:before {
        content: "";
        font-family: "material icons";
        position: absolute;
        right: 20px;
        top: calc(50% - 20px);
        color: #009944; }
#content .top_scroll {
  height: 180px;
  margin: 130px 0;
  width: 100%;
  position: relative;
  background: url(../img/scroll.png) 0 50% repeat-x;
  background-size: auto 173px;
  animation: top_scroll linear infinite 35s; }
@keyframes top_scroll {
  0% {
    background-position: 0 50%; }
  100% {
    background-position: -2144px 50%; } }
/*************************************
 *
 *subpage
 *
 *************************************** */
.head_tit {
  height: 350px;
  margin-top: 80px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center; }
  .head_tit.single:before {
    display: none; }
  .head_tit.single .df {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap; }
    .head_tit.single .df .r, .head_tit.single .df .l {
      width: 50%;
      height: 100%;
      display: flex;
      justify-content: flex-end; }
      .head_tit.single .df .r .inner, .head_tit.single .df .l .inner {
        width: 600px;
        padding: 50px; }
      .head_tit.single .df .r img, .head_tit.single .df .l img {
        object-fit: cover;
        width: 100%;
        height: 100%; }
    .head_tit.single .df .l {
      background: #f5f5f5;
      position: relative;
      z-index: 4; }
      .head_tit.single .df .l h1 {
        margin-top: 5px;
        color: #212121; }
      .head_tit.single .df .l .meta {
        font-size: 24px;
        color: #888;
        font-weight: bold; }
  .head_tit:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../img/pattern10.png); }
  .head_tit h1 {
    width: 1100px;
    max-width: 100%;
    font-size: 46px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05rem;
    position: relative;
    z-index: 3; }
  .head_tit .bg_mov {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .head_tit .bg_mov video {
      object-fit: cover;
      width: 100%;
      height: 100%; }

.panlist .ib {
  padding: 40px 0px 0;
  display: flex;
  flex-wrap: wrap; }
  .panlist .ib a, .panlist .ib span {
    font-size: 14px;
    color: #777;
    align-items: center;
    display: flex; }
    .panlist .ib a:not(.home):before, .panlist .ib span:not(.home):before {
      content: "";
      font-family: material icons;
      font-size: 26px;
      display: inline-block;
      padding: 0 10px; }
    .panlist .ib a.home:after, .panlist .ib span.home:after {
      content: "";
      font-family: material icons;
      font-size: 24px; }

#pager {
  margin: 50px 0;
  overflow: hidden; }
  #pager .wp-pagenavi {
    display: flex; }
    #pager .wp-pagenavi a, #pager .wp-pagenavi span {
      padding: 12px 20px;
      font-size: 16px;
      align-items: center;
      justify-content: center;
      display: flex;
      border: none;
      background: #f5f5f5;
      margin-right: 5px; }
      #pager .wp-pagenavi a.current, #pager .wp-pagenavi span.current {
        background: #333;
        color: #fff; }

#content.single .info_list, #content.archive .info_list {
  margin-top: 0; }
#content.single .ib h2, #content.archive .ib h2 {
  font-size: 32px; }
  #content.single .ib h2:nth-of-type(1), #content.archive .ib h2:nth-of-type(1) {
    margin-top: 0; }
#content.single .next_prev, #content.archive .next_prev {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  width: 500px;
  max-width: 100%;
  margin: 100px 0 50px; }
  #content.single .next_prev .next, #content.single .next_prev .prev, #content.archive .next_prev .next, #content.archive .next_prev .prev {
    border-bottom: 1px solid #363636;
    width: 32%;
    font-size: 18px;
    font-weight: bold; }
    #content.single .next_prev .next a, #content.single .next_prev .prev a, #content.archive .next_prev .next a, #content.archive .next_prev .prev a {
      display: block;
      padding: 25px;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center; }
  #content.single .next_prev .next, #content.archive .next_prev .next {
    border-right: none; }
    #content.single .next_prev .next a, #content.archive .next_prev .next a {
      align-items: center;
      justify-content: flex-end;
      display: flex; }
  #content.single .next_prev .prev, #content.archive .next_prev .prev {
    justify-content: flex-start;
    border-left: none;
    margin-right: 2%; }
  #content.single .next_prev .back, #content.archive .next_prev .back {
    width: 32%;
    margin-right: 2%; }
    #content.single .next_prev .back a, #content.archive .next_prev .back a {
      width: 100%;
      height: 100%;
      display: block;
      padding: 25px;
      align-items: center;
      justify-content: center;
      display: flex;
      color: #fff;
      font-size: 18px;
      font-weight: bold; }

/*************************************
 *
 *footer
 *
 ************************************** */
#pagetop {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 64px;
  height: 64px;
  z-index: 999;
  background: linear-gradient(#FF8752, #EA5514);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  border-radius: 8px 8px 0 0; }
  #pagetop:before {
    content: "";
    font-family: "material icons";
    transform: rotate(-90deg); }

footer {
  background: #fff;
  position: relative;
  z-index: 9; }
  footer .ib {
    padding: 100px 0; }
    footer .ib nav {
      display: flex;
      justify-content: center; }
      footer .ib nav a {
        padding: 0 20px;
        font-size: 15px; }
    footer .ib p.copy {
      text-align: center;
      font-size: 13px; }
    footer .ib .logo {
      width: 140px;
      display: block;
      margin: 50px auto; }

/*# sourceMappingURL=style.css.map */
