<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ##############################################################################

    KEYFRAMES

############################################################################## */

  @keyframes arrow {
    0% {
      margin-right: 0;
    }
    45.99% {
      margin-right: -8px;
      opacity: 0;
    }
    46% {
      margin-right: 8px;
      opacity: 0;
    }
    to {
      margin-right: 0;
      opacity: 1;
    }
  }
  @keyframes slide {
    0% {
      background-position: 0px 0px;
    }
    100% {
      background-position: -3598px 0px;
    }
  }
  @keyframes scroll {
    0% {
      opacity: 0;
      transform: scaleY(0);
      transform-origin: top;
    }
    5% {
      opacity: 1;
      transform: scaleY(0);
      transform-origin: top;
    }
    59% {
      opacity: 1;
      transform: scaleY(1);
      transform-origin: top;
    }
    60% {
      opacity: 1;
      transform: scaleY(1);
      transform-origin: bottom;
    }
    100% {
      opacity: 1;
      transform: scaleY(0);
      transform-origin: bottom;
    }
  }
  @keyframes move1 {
    0 {
      transform: translate3d(-40vw, 8%, 0);
    }
    10% {
      transform: translate3d(48vw, -16%, 0);
    }
    20% {
      transform: translate3d(32vw, 4%, 0);
    }
    30% {
      transform: translate3d(24vw, 24%, 0);
    }
    40% {
      transform: translate3d(4vw, 0, 0);
    }
    50% {
      transform: translate3d(-16vw, -12%, 0);
    }
    60% {
      transform: translate3d(-40vw, 20%, 0);
    }
    70% {
      transform: translate3d(-48vw, 40%, 0);
    }
    80% {
      transform: translate3d(8vw, 32%, 0);
    }
    to {
      transform: translate3d(-40vw, -32%, 0);
    }
  }
  @keyframes move2 {
    0 {
      transform: translate3d(20vw, 4%, 0);
    }
    10% {
      transform: translate3d(-48vw, -30%, 0);
    }
    20% {
      transform: translate3d(14vw, 26%, 0);
    }
    30% {
      transform: translate3d(-32vw, -14%, 0);
    }
    40% {
      transform: translate3d(40vw, -16%, 0);
    }
    50% {
      transform: translate3d(-10vw, 48%, 0);
    }
    60% {
      transform: translate3d(-48vw, -24%, 0);
    }
    70% {
      transform: translate3d(40vw, -30%, 0);
    }
    80% {
      transform: translate3d(14vw, -36%, 0);
    }
    to {
      transform: translate3d(-30vw, -48%, 0);
    }
  }

/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  body {
    height: 100%;
  }

/* layout
**************************************** */

  br.sp_only {
    display: none;
  }
  br.pc_only {
    display: inline;
  }

  /* --- inner --- */
  .inner {
    width: 70%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .inner-sm { max-width: 960px; }
  .inner-md { max-width: 1440px; }
  .inner-lg { max-width: 1560px; }
  .inner-xl { max-width: 1670px; }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .section_pdg-r {
    padding-top: 120px;
    padding-bottom: 1px;
  }
  .section_pdg-sm {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  @media screen and (max-width: 1080px) {
    /* --- inner --- */
    .inner {
      width: 90%;
    }
  }
  @media screen and (max-width: 767px) {
    br.sp_only {
      display: inline;
    }
    br.pc_only {
      display: none;
    }

    /* --- section_pdg --- */
    .section_pdg {
      padding-top: 62px;
      padding-bottom: 62px;
    }
    .section_pdg-r {
      padding-top: 62px;
      padding-bottom: 0px;
    }
    .section_pdg-sm {
      padding-top: 36px;
      padding-bottom: 36px;
    }
  }

/* flex
**************************************** */

  /* --- 縺悶▲縺上ｊflex繝ｬ繧､繧｢繧ｦ繝� --- */
  .flex-col1 {
    display: block;
  }
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 &gt; * {
    width: 48%;
    margin-right: 4%;
    /* margin-bottom: 4%; */
  }
  .flex-col2 &gt; *:nth-child(even) {
    margin-right: 0;
  }
  .flex-col3 &gt; * {
    width: 47.6%;
    margin-right: 5%;
    /* margin-bottom: 3%; */
  }
  .flex-col3 &gt; *:nth-child(2n) {
    margin-right: 0;
  }
  .flex-col4 &gt; * {
    width: 23.1%; /* 23.5% */
    margin-right: 2.3%;
    /* margin-bottom: 2%; */
  }
  /*
  .flex-col4 &gt; *:nth-child(2n) {
    margin-right: 0;
  }
  */
  .flex-col4 &gt; *:last-child {
    margin-right: 0;
    margin-bottom: 120px;
  }

  @media screen and (max-width: 767px) {
    /* --- 縺悶▲縺上ｊflex繝ｬ繧､繧｢繧ｦ繝� - sp --- */
    .flex-col2.flex-sp-block &gt; *,
    .flex-col3.flex-sp-block &gt; *,
    .flex-col4.flex-sp-block &gt; * {
      width: 100%;
      margin-bottom: 24px;
      margin-right: 0;
    }
    .flex-col2.flex-sp-block &gt; *:last-child,
    .flex-col3.flex-sp-block &gt; *:last-child,
    .flex-col4.flex-sp-block &gt; *:last-child {
      margin-bottom: 0;
    }
    .flex-sp-col2 &gt; *,
    .flex-sp-col2.flex-col3 &gt; *:nth-child(3n) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 &gt; *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 &gt; *,
    .flex-sp-col3.flex-col4 &gt; *:nth-child(4n) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 &gt; *:nth-child(3n) { margin-right: 0; }
  }

/* bg &amp; color
********************************************** */
  .bg-main,
  .lps_sec:nth-child(2n) {
    background-color: #f8f8f8;
  }
  .bg-wh {
    background-color: #ffffff;
  }
  .bg-bl {
    background-color: #242424;
  }

/* dl
********************************************** */
  .dl-line {
    display: flex;
    flex-wrap: wrap;
  }
  .dl-line dt,
  .dl-line dd {
    padding: 1.5em;
    border-top: 1px solid #e0e0e0;
  }
  .dl-line dt:last-of-type,
  .dl-line dd:last-of-type {
    border-bottom: 1px solid #e0e0e0;
  }
  .dl-line dt {
    width: 240px;
    color: #103306;
    font-family: '遘闍ｱ譏取悃 M', 'Shuei Mincho M';
    font-size: 112.5%; /* 18px */
  }
  .win .dl-line dt {
    transform: rotate(.04deg);
    padding-top: 1.4em;
    padding-bottom: 1.6em;
  }
  .dl-line dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 240px);
  }
  .dl-line .txt-lg:not(:last-child) {
    margin-bottom: 1em;
  }
  .dl-detail:not(:last-child) {
    margin-bottom: 1em;
  }

  @media screen and (max-width: 767px) {
    .dl-line {
      display: block;
    }
    .dl-line dt,
    .dl-line dd {
      width: 100%;
    }
    .dl-line dt {
      padding: 0;
      padding-bottom: .5em;
      border-top: 0;
    }
    .dl-line dd {
      border-color: #103306;
    }
    .dl-line dt:last-of-type,
    .dl-line dd:last-of-type {
      border-bottom: 0;
    }
  }

/* img
********************************************** */
  .img-ctr {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .img-trim {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img-trim.pos_rel::before {
    content: '';
    display: block;
  }
  .img-cover,
  .img-cover2,
  .img-cover3 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    font-family: 'object-fit: cover;';
  }

  @media screen and (max-width: 767px) {
    .img-cover {
      height: 540px;
      object-position: 50% 0;
    }
    .img-cover2 {
      object-fit: cover;
    }
    .img-cover3 {
      height: 60vw;
      object-position: 100% 0;
      object-fit: cover;
    }
  }

  /*
  .img-cover.pos_ab {
    top: 0;
    left: 0;
  }
  .img-cover3.pos_ab {
    top: 0;
    left: 0;
  }
  */
  /*
  .img-contain {
    object-fit: contain;
    font-family: 'object-fit: contain;';
  }
  */

/* ttl
********************************************** */
  /* --- page_ttl --- */
  .page_ttl {
    position: relative;
    z-index: 10;
    overflow: hidden;
    height: 600px;
    color: #ffffff;
    background-color: #ddd;
  }
  .page_ttl .img-cover {
    z-index: -1;
  }
  .page_ttl span {
    display: block;
  }
  .page_ttl-jp {
    font-size: 400%; /* 64px */
    margin-bottom: .4em;
  }
  .page_ttl-en {
    text-transform: uppercase;
    font-size: 150%; /* 24px */
    font-family: 'Cormorant Infant', serif;
  }
  .page_ttl .ttl-02 {
    text-shadow: 0 0 1em rgba(0,0,0,.16);
  }
  .page_ttl-interview::before,
  .page_ttl-job::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0,0,0,.08);
  }
  .page_ttl-interview,
  .page_ttl-job {
    height: 800px;
  }
  .profile--info li {
    transform: rotate(.04deg);
  }
  .profile--info li:not(:last-child)::after {
    content: '/';
    margin-left: .5em;
    margin-right: .5em;
  }
  .page_ttl-interview .cat_list:not(:first-child) {
    margin-top: 2em;
  }

  /* --- ttl --- */
  .ttl-01,
  .ttl-02,
  .ttl-03 {
    position: relative;
    font-family: '遘闍ｱ譏取悃 M', 'Shuei Mincho M';
  }
  .ttl-01:not(:last-child),
  .ttl-02:not(:last-child),
  .ttl-03:not(:last-child) {
    margin-bottom: 1.5em;
  }
  .ttl-01 {
    font-size: 200%; /* 425% */
    color: #0D0D0D;
    letter-spacing: .1em;
    line-height: 1.2;
  }
  .ttl-01.lg {
    font-size: 450%;
  }
  .ttl-01.xl {
    font-size: 250%; /* 425% */
    text-align: center;
    margin-bottom: .6em;
  }
  .ttl-01::after {
    content: '';
    display: block;
    width: 72px;
    height: 1px;
    /* border-bottom: 1px solid; */
    margin-top: .5em;
  }
  .ttl-01.txt-ctr::after {
    margin-left: auto;
    margin-right: auto;
  }
  .ttl-01 .font-en,
  .ttl-02 .font-en {
    font-weight: 500;
    white-space: nowrap;
  }
  .ttl-01 .font-en {
    display: block;
    font-size: 50%; /* 264.71% */
    color: #fabe7e;
    line-height: 1;
    /* text-indent: -.6em; */
    margin-bottom: -.4em;
    letter-spacing: .06em;
    /* 騾城℃ opacity: 0; */
  }
  .ttl-01.txt-ctr .font-en {
    text-indent: 0;
  }
  /*
  .ttl-01.txt-wh .font-en {
    color: rgba(255,255,255,.1);
  }
  */
  .ttl-02.txt-wh .font-en {
    color: rgba(255,255,255,.5);
  }
  .ttl-01.lg .font-en {
    font-size: 216.67%;
  }
  .ttl-01.xl .font-en {
    font-size: 50%; /* 225% */
    text-align: center;
  }
  .bg-main .ttl-01:not(.txt-wh) .font-en,
  .lps_sec:nth-child(2n) .ttl-01:not(.txt-wh) .font-en {
    color: #ffffff;
  }
  .ttl-02,
  .lps_parts--img_text .inner-md .ttl-03 {
    font-size: 300%;
  }
  .ttl-02 {
    color: #E89944;
  }
  .ttl-03 {
    font-size: 120%;
    color: #E89944;
  }
  .ttl-04 {
    font-size: 120%;
    color: #E89944;
    margin-bottom: 10px;
  }
  /*
  .lps_sec {
    counter-reset: num;
  }
  .ttl-03.num {
    counter-increment: num;
  }
  .ttl-03.num::before {
    content: counter(num, decimal-leading-zero);
    position: absolute;
    top: -.513em;
    left: -.449em;
    font-size: 325%;
    font-family: 'Cormorant Infant', serif;
    color: rgba(216,216,216,.5);
    font-weight: 500;
    z-index: -1;
    line-height: 1;
  }
  .lps_sec .column-3 .ttl-03,
  .lps_sec .column-4 .ttl-03 {
    font-size: 160%;
  }
  */

  @media screen and (max-width: 767px) {
    /* --- page_ttl --- */
    .page_ttl {
      height: 240px;
    }
    .page_ttl-jp {
      font-size: 20px;
      margin-bottom: 0;
    }
    .page_ttl-en {
      font-size: 16px;
    }
    .page_ttl-interview,
    .page_ttl-job {
      height: 100vw;
    }

    /* --- ttl --- */
    .ttl-01,
    .ttl-01.lg,
    .ttl-01.xl {
      font-size: 20px;
      line-height: 2;
    }
    .ttl-01::after {
      width: 56px;
    }
    .ttl-02 {
      font-size: 200%; /*28px*/
    }
    .ttl-03:not(:last-child),
    .lps_sec .column-3 .ttl-03,
    .lps_sec .column-4 .ttl-03,
    .lps_parts--img_text .inner-md .ttl-03 {
      font-size: 16px;
      margin-bottom: 5px;
    }
    .ttl-01 .font-en,
    .ttl-01.lg .font-en,
    .ttl-01.xl .font-en {
      font-size: 16px;
    }
    /*
    .ttl-01 .font-en {
      text-indent: -.4em;
    }
    */
  }

/* breadcrumbs
**************************************** */
  .breadcrumbs {
    padding: 16px 0;
    font-size: 87%;
  }
  .breadcrumbs a {
    color: #2c8843;
    text-decoration: underline;
  }
  .breadcrumbs a:hover {
    text-decoration: none;
  }
  .breadcrumbs .breadcrumb_last {
    display: table-cell; 
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  @media screen and (max-width: 767px) {
    .breadcrumbs {
      text-align: center;
    }
  }

/* txt
**************************************** */
  .txt-lg { font-size: 112.5%; /*18px*/ }
  .txt-xl { font-size: 125%; /*20px*/ }
  .txt-sm { font-size: 87.5%; /*14px*/ }
  .txt-wh,
  .txt-wh * { color: #ffffff; }
  .txt-main,
  .txt-main * { color: #1D7FB7; }
  .txt-sub,
  .txt-sub * { color: #eeeeee; }

  /* --- font --- */
  .font-jp {
    font-family: '遘闍ｱ譏取悃 M', 'Shuei Mincho M';
  }
  .font-en {
    font-family: 'Cormorant Infant', serif;
  }

  @media screen and (max-width: 767px) {
    .txt-lg { font-size: 107.14%; /*15px*/ }
    .txt-xl { font-size: 114.29%; /*16px*/ }
    .txt-sm { font-size: 92.86%; /*13px*/ }
  }

/* btn
********************************************** */
  .btn + .btn {
    margin-top: 8px;
  }
  .btn a,
  .btn span {
    position: relative;
    display: block;
  }
  .btn a {
    z-index: 1;
    width: 100%;
    max-width: 300px;
    text-align: center;
    color: #103306;
    border: 1px solid;
    font-size: 93.75%; /* 15px */
  }
  .btn a[target="_blank"]:hover,
  .btn a[href$=".pdf"]:hover,
  .btn a[href^="#"]:hover {
    color: #ffffff;
    background-color: #061609;
    border-color: #061609;
  }
  .btn span {
    padding: 1em;
  }
  .btn svg {
    fill: #061609;
    transition: all .4s ease-out;
  }
  .btn a:hover svg {
    fill: #ffffff;
  }
  .btn a:not([target="_blank"]):not([href$=".pdf"])::before,
  .btn a:not([target="_blank"]):not([href$=".pdf"]):not([href^="#"])::after,
  .btn a:not([target="_blank"]):not([href$=".pdf"]) span::before {
    content: '';
    position: absolute;
    top: 50%;
  }
  .btn a:not([target="_blank"]):not([href$=".pdf"])::before {
    right: 16px;
    width: 6px;
    height: 6px;
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-50%);
  }
  .btn a:not([target="_blank"]):not([href$=".pdf"])[href^="#"]::before {
    right: 32px;
    width: 8px;
    height: 8px;
    border-top: 0;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-100%);
  }
  .btn a:not([target="_blank"]):not([href$=".pdf"]):not([href^="#"]) span::before {
    right: 46px;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 26px);
    border-right: 1px solid;
  }
  .btn a:not([target="_blank"]):not([href$=".pdf"]):not([href^="#"])::after {
    right: 15px;
    width: 18px;
    height: 1px;
    border-bottom: 1px solid;
  }
  .btn a:hover:not([target="_blank"]):not([href$=".pdf"]):not([href^="#"])::before,
  .btn a:hover:not([target="_blank"]):not([href$=".pdf"]):not([href^="#"])::after {
    animation: arrow .4s ease-out;
  }
  .btn.btn-next_page a {
    max-width: 100%;
    border-radius: 0;
    font-size: 120%;
    text-align: left;
  }

  /* --- btn-wh --- */
  .btn-wh a {
    background-color: #ffffff;
  }

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

/* waypoint
**************************************** */
  @media only screen {
    .wrap--blc.waypoint .imgarea:not(.fixed),
    .wrap--blc.waypoint .imgarea2:not(.fixed) {
      overflow: hidden; /* 繝代ョ繧｣繝ｳ繧ｰ繝懊ャ繧ｯ繧ｹ縺ｫ蜷医ｏ縺帙※蛻�ｊ蜿悶ｊ */
    }
    .wrap--blc.waypoint .imgarea:not(.fixed)::before/*,
    .wrap--blc.waypoint .imgarea2:not(.fixed)::before*/ {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #f8f8f8;
      transition: all .4s ease-out;
    }
    .bg-main .wrap--blc.waypoint .imgarea:not(.fixed)::before,
    .lps_sec:nth-child(2n) .wrap--blc.waypoint .imgarea:not(.fixed)::before/*,
    .bg-main .wrap--blc.waypoint .imgarea2:not(.fixed)::before,
    .lps_sec:nth-child(2n) .wrap--blc.waypoint .imgarea2:not(.fixed)::before*/ {
      background-color: #ffffff;
    }
    .wrap--blc.waypoint .imgarea:not(.fixed)::before/*,
    .wrap--blc.waypoint .imgarea2:not(.fixed)::before*/ {
      transform: translateX(0);
    }
    .wrap--blc.waypoint.active:nth-of-type(even) .imgarea:not(.fixed)::before,
    .layout-wrap.lg .wrap--blc.waypoint.active:nth-of-type(odd) .imgarea:not(.fixed)::before/*,
    .wrap--blc.waypoint.active:nth-of-type(even) .imgarea2:not(.fixed)::before,
    .layout-wrap.lg .wrap--blc.waypoint.active:nth-of-type(odd) .imgarea2:not(.fixed)::before*/ {
      transform: translateX(100%);
    }
    .wrap--blc.waypoint.active:nth-of-type(odd) .imgarea:not(.fixed)::before,
    .layout-wrap.lg .wrap--blc.waypoint.active:nth-of-type(even) .imgarea:not(.fixed)::before/*,
    .wrap--blc.waypoint.active:nth-of-type(odd) .imgarea2:not(.fixed)::before,
    .layout-wrap.lg .wrap--blc.waypoint.active:nth-of-type(even) .imgarea2:not(.fixed)::before*/ {
      transform: translateX(-100%);
    }
    .layout--list.waypoint {
      opacity: 0;
      transition: all .4s ease-out;
    }
    .layout--list.waypoint.active {
      opacity: 1;
    }
  }

  @media screen and (max-width: 767px) {
    #point ul {
        display: flex;
        align-items: center;    /* 荳ｭ螟ｮ謠�∴ */
        justify-content: center;
      }
      #example ul {
        display: flex;
        align-items: center;    /* 荳ｭ螟ｮ謠�∴ */
        justify-content: center;
      }
    }

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 116px;
    z-index: 9990;
    transition: all .4s ease-out;
  }
  .header:not(.fixed) &gt; .inner,
  .header:not(.fixed) a {
    color: #ffffff;
  }
  .page-contact .header,
  .page-entry .header {
    position: absolute;
  }
  .header &gt; .inner {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding-left: 1em;
  }
  .header.on &gt; .inner {
    border-color: #0D0D0D;
  }
  .header--logo a,
  .footer--logo a {
    display: block;
    width: 225px; /* 250px */
  }
  .header--logo a {
    position: relative;
  }
  .header--logo a::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: #ffffff;
    border-radius: 3px;
    z-index: -1;
  }
  /*
  .header--logo svg {
    display: block;
    width: 183px;
    height: 58px;
  }
  */
  .header--logo path {
    fill: #00a63c;
  }
  .header--logo a:hover,
  .footer--logo a:hover {
    opacity: .7;
  }

  @media print, screen and (min-width: 1081px) {
    .header.fixed {
      height: 88px;
      background-color: rgba(255,255,255,.8);
    }
    .header &gt; .inner {
      border-bottom: 1px solid;
      width: calc(100% - 216px);
      max-width: calc(100% - 216px);
      margin-left: 50px;
      margin-right: 166px;
    }
    .page-contact .header &gt; .inner,
    .page-entry .header &gt; .inner {
      width: calc(100% - 100px);
      max-width: calc(100% - 100px);
      margin-right: 50px;
    }
  }
  @media screen and (max-width: 1080px) {
    .header {
      height: 64px;
    }
    .header.fixed {
      background-color: rgb(255, 255, 255, .8);
    }
    .header.active {
      background-color: #E89944;
    }
    .header * {
      color: #ffffff;
    }
    .header &gt; .inner {
      padding-left: 14px;
    }
    .header--logo {
      background-color: #E89944;
    }
    .header--logo img {
      height: 39px;
    }
    .header--logo a {
      width: 183px;
    }
    /*
    .header--logo svg {
      width: 122px;
      height: 39px;
    }
    */
    .header.active .header--logo a::before {
      background-color: transparent;
    }
    .header--logo path {
      transition: all .4s ease-out;
    }
    .header.active .header--logo path {
      fill: #ffffff;
    }
  }

/* gnav
********************************************** */
  .gnav--menu {
    position: relative;
  }
  .gnav--menu a {
    padding: .5em 1em;
  }
  .gnav--link {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .gnav--link[href="javascript:void(0);"] {
    cursor: inherit;
  }
  .gnav--link span {
    position: relative;
    line-height: 1.4;
  }
  .gnav--link span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid;
    opacity: 0;
    transform: translateY(8px);
    transition: all .4s ease-out;
  }
  .gnav--link:not([href="javascript:void(0);"]):hover span::before,
  .gnav--menu li.current &gt; .gnav--link span::before {
    opacity: 1;
    transform: translateY(0);
  }
  .gnav_sub_toggle {
    display: none;
    cursor: pointer;
  }
  .head_sub_nav--wrap {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    display: block;
    width: 940px;
    z-index: 100;
    transition: .4s ease-out;
    opacity: 0;
    pointer-events: none;
  }
  .head_sub_nav--ttl {
    position: relative;
    color: #103306;
    font-size: 125%; /* 20px */
    padding-bottom: .6em;
    margin-bottom: 1em;
    border-bottom: 1px solid;
  }
  .head_sub_nav--img {
    width: 160px;
    height: 120px;
    margin-right: 1em;
  }
  .head_sub_nav span:not(.head_sub_nav--img) {
    flex: 1;
  }

  /* ---CTA --- */
  .gnav--tel {
    position: absolute;
    top: 124px;
    right: 166px;
    font-size: 200%;
    letter-spacing: .1em;
  }
  .header.on .gnav--tel {
    color: #0d0d0d;
  }
  .gnav--contacts {
    position: absolute;
    top: 0;
    right: 0;
  }
  .gnav--contacts a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 112px;
    height: 112px;
  }
  .cta-contact a,
  .cta-entry a,
  .layout-entry a {
    position: relative;
    overflow: hidden;
  }
  .cta-contact a::before,
  .cta-entry a::before,
  .layout-entry a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all .4s ease-out;
  }
  .cta-contact a {
    background-color: #0D0D0D;
  }
  .cta-entry a,
  .layout-entry a {
    background-color: #E89944;
  }
  .cta-contact a::before {
    background-color: #89bb39;
  }
  .cta-entry a::before,
  .layout-entry a::before {
    background-color: #89bb39;
  }
  .cta-contact a:hover::before,
  .cta-entry a:hover::before,
  .layout-entry a:hover::before {
    transform: translateX(0);
  }
  .cta-contact span,
  .cta-contact svg,
  .cta-entry span,
  .cta-entry svg,
  .layout-entry span {
    position: relative;
  }
  .gnav--contacts svg {
    margin-bottom: .8em;
  }

  @media print, screen and (min-width: 1081px) {
    .gnav,
    .gnav--menu,
    .gnav--menu li,
    .gnav--menu a {
      height: 100%;
    }
    .sub_nav-link &gt; a::before {
      content: '';
      position: absolute;
      bottom: 32px;
      left: 0;
      right: 0;
      margin: auto;
      width: 8px;
      height: 8px;
      border-top: 1px solid ;
      border-right: 1px solid ;
      transform: rotate(135deg);
    }
    .header.fixed .sub_nav-link &gt; a::before {
      bottom: 24px;
    }
    .gnav_btn,
    .head_sub_nav--wrap .gnav--entry {
      display: none;
    }
    .head_sub_nav--wrap {
      background-color: #ffffff;
      padding: 24px 40px;
    }
    .head_sub_nav a {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
      color: #0d0d0d !important;
    }
    .head_sub_nav a:hover {
      color: #2c8843 !important;
    }
    .header.fixed .gnav--tel {
      top: 96px;
      padding: 0 1em;
      background-color: rgba(255,255,255,.8);
    }
    /* hover */
    .gnav--menu .sub_nav-link:hover .head_sub_nav--wrap {
      opacity: 1;
      pointer-events: auto;
    }
  }
  @media screen and (max-width: 1080px) {
    .gnav {
      position: fixed;
      top: 64px;
      left: 0;
      z-index: 300;
      width: 100%;
      height: calc(100% - 64px);
      margin: 0;
      padding: 24px 7% 24px;
      overflow: scroll;
      background-color: #E89944;
      opacity: 0;
      pointer-events: none;
      transition: .4s ease-out;
      -webkit-overflow-scrolling: touch;
    }
    .gnav.active {
      opacity: 1;
      pointer-events: auto;
    }
    .gnav--menu {
      display: block;
      font-family: "遘闍ｱ譏取悃 M", "Shuei Mincho M";
      font-size: 114.29%; /* 16px */
    }
    .gnav--menu &gt; li {
      position: relative;
      display: block;
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .gnav--menu &gt; li:first-child {
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .menu-recruit {
      order: 1;
      /* padding-bottom: 32px; */
    }
    .gnav--menu a {
      padding: 1em;
    }
    .gnav--link {
      display: block !important;
      text-align: left;
    }    
    .gnav--link::before {
      content: '';
      position: absolute;
      top: 26px;
      right: 1.5em;
      width: 8px;
      height: 8px;
      border-top: 1px solid;
      border-right: 1px solid;
      transform: rotate(45deg);
    }
    .head_sub_nav--wrap {
      position: relative;
      width: 100%;
      margin: 0;
      padding-top: 0;
      transition: none;
      opacity: 1;
      pointer-events: inherit;
      display: none;
    }
    .menu-recruit .head_sub_nav--wrap {
      display: block;
    }
    .sub_nav-link.active .head_sub_nav--wrap {
      opacity: 1;
      pointer-events: auto;
    }
    .head_sub_nav--ttl,
    .head_sub_nav--img {
      display: none;
    }
    .head_sub_nav {
      position: relative;
    }
    .gnav_sub_toggle {
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      width: 50px;
      height: 60px;
      transition: all .4s ease-out;
    }
    .menu-recruit .gnav_sub_toggle {
      display: none;
    }
    .gnav_sub_toggle.active {
      transform: rotate(180deg);
    }
    .gnav_sub_toggle::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 8px;
      height: 8px;
      border-top: 1px solid;
      border-right: 1px solid;
      transform: rotate(135deg);
    }
    .current .gnav_sub_toggle {
      color: #ffffff;
    }
    .head_sub_nav {
      position: relative;
      padding-left: 1em;
    }
    .head_sub_nav li:not(:last-child) {
      margin-bottom: 0;
    }
    .head_sub_nav a {
      position: relative;
      padding: .25em 1em;
    }
    .head_sub_nav a::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: .2em;
      height: 1px;
      border-bottom: 1px solid;
    }
    .gnav_btn {
      position: fixed;
      top: 0;
      right: 0;
      width: 64px;
      height: 64px;
      z-index: 9999;
    }
    .gnav_btn--lines {
      position: relative;
      width: 32px;
      height: 22px;
    }
    .gnav_btn--lines span {
      transition: all .4s ease-out;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #ffffff;
    }
    .header.fixed .gnav_btn--lines span {
      background-color: #E89944;
    }
    .header.fixed .gnav_btn.active .gnav_btn--lines span {
      background-color: #ffffff;;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: 10px;
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .active .gnav_btn--lines span:nth-of-type(1) {
      transform: translateY(10px) rotate(-45deg);
    }
    .active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .active .gnav_btn--lines span:nth-of-type(3) {
      transform: translateY(-10px) rotate(45deg);
    }

    /* ---CTA --- */
    .gnav--tel,
    .gnav--contacts {
      position: static;
    }
    .gnav--tel {
      display: block !important;
      padding-top: 16px;
      padding-bottom: 16px;
      text-align: center;
    }
    .gnav--contacts .gnav--entry {
      display: none;
    }
    .gnav--entry {
      margin-top: 24px;
      font-size: 87.5%;
    }
    .gnav--contacts a,
    .gnav--entry a {
      position: relative;
      flex-direction: inherit;
      width: 100%;
      height: 56px;
      padding: 1em;
    }
    .gnav--entry a {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #ffffff;
    }
    .gnav--entry span {
      color: #E89944 !important;
    }
    .gnav--contacts svg,
    .gnav--entry svg {
      position: absolute;
      top: 50%;
      left: 36px;
      transform: translateY(-50%);
    }
    .gnav--entry path {
      fill: #E89944;
    }
  }


/* ##############################################################################

    FOOTER

############################################################################## */

  .footer {
    overflow: hidden;
  }
  .footer--logo svg {
    width: 200px;
    height: 64px;
  }
  .footer--logo path {
    fill: #00a63c;
  }

  @media print, screen and (min-width: 1830px) {
    .footer .inner {
      width: calc(100% - 296px);
      max-width: calc(100% - 296px);
      margin-left: 171px;
      margin-right: 125px;
    }
  }
  /*
  @media screen and (max-width: 1200px) {
    .footer_top {
      display: block;
    }
    .footer--logo {
      display: table;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 24px;
    }
  }
  */

  @media screen and (max-width: 767px) {
    .footer_top {
      display: block;
    }
    .footer--logo {
      display: table;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 24px;
    }
    .footer--logo a {
      text-align: center;
    }
    .footer--logo svg {
      width: 148px;
      height: 47px;
    }
  }

/* footer_top
********************************************** */
  .fnav {
    margin-left: auto;
  }
  .fnav--menus {
    font-size: 14px;
    margin-right: 0;
  }
  .fnav--menu:not(:last-child) {
    /* margin-bottom: 1.25em; */
    justify-content: right;
  }
  .fnav--menu a {
    display: block;
    padding: .5em 1em;
  }
  .fnav--menu a:hover {
    color: #E89944;
  }
  .fnav--contacts li:not(:last-child) {
    margin-bottom: 32px;
  }
  .fnav--contacts a {
    display: flex;
    align-items: center;
    width: 240px;
    height: 56px;
    padding: .5em 1em;
  }
  .fnav--contacts svg {
    margin-right: 3em;
  }
  .fnav--contact svg {
    width: 24px;
    height: 17px;
  }
  .fnav--entry svg {
    width: 25px;
    height: 24px;
  }
  .fnav--ttl {
    font-weight: 500;
    color: #b7b3b3;
    padding-left: 1em;
  }

  @media screen and (max-width: 767px) {
    .fnav {
      display: block;
      width: 100%;
      justify-content: space-between;
    }
    .fnav--menu {
      display: block;
    }
    .fnav--menu a {
      position: relative;
      padding-left: 0;
      padding-right: 0;
    }
    .fnav--menu a::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      width: 6px;
      height: 6px;
      border-top: 1px solid;
      border-right: 1px solid;
      transform: rotate(45deg);
    }
    .fnav--ttl {
      position: relative;
      display: table;
      margin-left: auto;
      margin-right: auto;
      padding-right: 1em;
    }
    .fnav--ttl::before,
    .fnav--ttl::after {
      content: '';
      position: absolute;
      top: 50%;
      width: .5em;
      height: 1px;
      border: 1px solid;
    }
    .fnav--ttl::before {
      left: 0;
    }
    .fnav--ttl::after {
      right: 0;
    }
    .fnav--contacts li:not(:last-child) {
      margin-bottom: 8px;
    }
    .fnav--contacts a {
      position: relative;
      width: 100%;
      justify-content: center;
    }
    .fnav--contacts svg {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 2em;
    }
  }

/* footer_btm
*************************************************** */
  .footer-btm {
    border-top: 1px solid #E6E6E6;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .copyright small {
    text-align: center;
    margin-right: 1em;
  }
  .copyright small {
    color: #666;
    font-size: 75%;
  }
  .pbl a {
    display: block;
    text-align: center;
    opacity: .5;
  }
  .pbl a:hover {
    opacity: 1;
  }

  @media screen and (max-width: 767px) {
    .footer-btm .inner {
      justify-content: center;
    }
  }


/* ##############################################################################

    INDEX

############################################################################## */

/* hero
********************************************** */
  .hero {
    position: relative;
    height: auto; /* 鬮倥＆繧定�蜍戊ｪｿ謨ｴ */
    width: 100%;  /* 讓ｪ蟷�ｒ100%縺ｫ */
  }
  .hero_slide {
    overflow: hidden;
    height: auto; /* 鬮倥＆繧定�蜍戊ｪｿ謨ｴ */
  }
  .hero_slide,
  .hero_slide .slick-list,
  .hero_slide .slick-track,
  .hero_slide .slick-slider,
  .hero_slide .slick-slide {
    width: 100%;
    height: 100%;
  }
  .hero_slide .slick-list {
    position: relative;
    overflow: hidden;
  }
  .hero_slide .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 縺ｾ縺溘� 'contain' 縺ｫ螟画峩縺励※隱ｿ謨ｴ蜿ｯ閭ｽ */
  }
  .hero .txtarea,
  .hero .txtarea2 {
    position: absolute;
    top: 72%;
    left: 6.04%;
    transform: translateY(-50%);
  }
  .hero--ttl {
    font-size: 275%;
    line-height: 1.3;
    letter-spacing: .1em;
  }
  .hero--txt {
    font-size: 150%;
    letter-spacing: .1em;
  }
  /*
  .hero_scroll {
    position: absolute;
    bottom: 0;
    left: 7.4%;
    width: 1px;
    height: 150px;
    background-color: rgba(255,255,255,.3);
  }
  .hero_scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 2px;
    height: 100%;
    background-color: #ffffff;
    animation: scroll 2s forwards infinite;
    transform: scaleY(0);
  }
  */

  @media (max-width: 1080px) and (min-width: 768px) {
    .hero_slide .img-cover {
      width: 1080px;
    }
  }

  @media screen and (max-width: 767px) {
    .hero {
      height: 502px;
    }
    .img-cover {
      /* background-image: url('../images/hero-01_sp.jpg'); */
      /* src: url('./images/hero-01_sp.jpg'); */
      height: 502px!important;
    }
    .hero .txtarea {
      top: 85%;
      left: 5%;
    }
    .hero--ttl {
      margin-bottom: 40px;
    }
    .hero--ttl {
      font-size: 30px;
    }
    .hero--txt {
      font-size: 114.29%;
    }
  }

/* home_news
********************************************** */
  /*
  .home_news {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 88px;
    padding-left: 67px;
    padding-right: 60px;
  }
  .home_news::before,
  .home_news::after {
    content: '';
    position: absolute;
    top: 50%;
    color: #3c8332;
  }
  .home_news::before {
    right: 41px;
    width: 6px;
    height: 6px;
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-50%);
  }
  .home_news::after {    
    right: 40px;
    width: 18px;
    height: 1px;
    border-bottom: 1px solid;
  }
  .home_news.hover::before,
  .home_news.hover::after {
    animation: arrow .4s ease-out;
  }
  .home_news .slick-slider,
  .home_news .slick-track,
  .home_news .slick-list {
    position: static !important;
  }
  .home_news .news_list::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 91.67%;
    height: 1px;
    border-bottom: 1px solid #E2E2E2;
  }
  .home_news .news_list .post {
    display: flex !important;
    padding-top: 1.9em;
    padding-bottom: 1.9em;
  }
  .home_news .cat_list {
    pointer-events: none;
  }
  .home_news .post--ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  @media screen and (max-width: 767px) {
    .home_news {
      width: 93%;
      padding-left: 32px;
      padding-right: 24px;
    }
    .home_news::before {
      right: 21px;
    }
    .home_news::after {    
      right: 20px;
    }
    .home_news .news_list .post {
      display: block !important;
      padding-top: 1.4em;
      padding-bottom: 1.4em;
    }
  }
  */

/* home_bg 繧ｹ繝ｩ繧､繝�
********************************************** 
  .home_bg {
    width: 93.75%;
    height: 400px;
    background-image: url(../images/top_message_slide.jpg);
    background-repeat: repeat-x;
    background-position: center;
    animation: slide 60s linear infinite;
  }

  @media screen and (max-width: 767px) {
    .home_bg {
      width: 100%;
      height: 30vw;
      background-size: auto 30vw;
      animation: slide 120s linear infinite;
    }
  }
*/

/* ##############################################################################

    LAYOUT

############################################################################## */

/* layout-wrap-lg
********************************************** */
  .layout-wrap.lg {
    padding-bottom: 120px;
  }
  .layout-wrap.lg .imgarea {
    position: absolute;
    top: 0;
    width: 35%; /* 54.17% */
    height: 500px; /* 633px */
  }
  .layout-wrap.lg .imgarea2 {
    position: absolute;
    top: 10%;
    width: 20%;
    min-height: 350px;
  }
  .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea,
  .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea2 {
    right: 15%;
  }
  .layout-wrap.lg .wrap--blc:nth-of-type(even) .imgarea,
  .layout-wrap.lg .wrap--blc:nth-of-type(even) .imgarea2 {
    left: 0;
  }
  .layout-wrap.lg .txtarea {
    position: relative;
    width: 44.9%;
  }
  .layout-wrap.lg .txtarea2 {
    position: relative;
    width: 66%;
  }
  /*
  .home .layout-wrap.lg .txtarea::before {
    content: '';
    position: absolute;
    bottom: -180px;
    left: 0;
    width: 96.08%;
    padding-top: calc(421/673*100%);
    background-image: url(../images/top_message_map.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  */
  .layout-wrap.lg .ttl-01:not(:last-child) {
    margin-bottom: .6em;
  }
  .layout-wrap.lg .txtarea p:not(:last-child),
  .layout-wrap.lg .txtarea2 p:not(:last-child) { /* 譛蠕御ｻ･螟� */
    margin-bottom: 2em;
  }
  .layout-wrap.lg .txtarea p:last-child,
  .layout-wrap.lg .txtarea2 p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 1080px) and (min-width: 768px) {
    .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea,
    .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea2 {
      right: 5%;
    }
    .layout-wrap.lg .imgarea {
      width: 47%;
    }
    .layout-wrap.lg .imgarea2 {
      top: 9%;
      width: 26%;
    }
    .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea,
    .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea2 {
      right: 5%;
    }
    .layout-wrap.lg .txtarea {
      min-height: 500px;
      /* padding-bottom: 120px; */
    }
    .layout-wrap.lg .txtarea2 {
      min-height: 750px;
      width: 69%;
    }
    .layout-wrap.lg .wrap--blc:nth-child(odd) .txtarea,
    .layout-wrap.lg .wrap--blc:nth-child(odd) .txtarea2 {
      padding-right: 3%;
    }
    .layout-wrap.lg .wrap--blc:nth-child(even) .txtarea,
    .layout-wrap.lg .wrap--blc:nth-child(even) .txtarea2 {
      margin-left: auto;
      padding-left: 5%; /* 4.11% */
    }
  }

  @media screen and (max-width: 767px) {
    .layout-wrap.lg {
      padding-top: 62px;
      padding-bottom: 62px;
    }
    .layout-wrap.lg .imgarea,
    .layout-wrap.lg .imgarea2,
    .layout-wrap.lg .txtarea,
    .layout-wrap.lg .txtarea2 {
      width: 100%;
    }
    .layout-wrap.lg .imgarea {
      top: 0;
      height: 60vw;
    }
    .layout-wrap.lg .imgarea2 {
      top: -62px;
      height: 60vw;
    }
    .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea,
    .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea2 {
      right: 0;
    }
    .layout-wrap.lg .txtarea,
    .layout-wrap.lg .txtarea2 {
      padding-top: calc(60vw + 24px);
    }
    .home .layout-wrap.lg .txtarea,
    .home .layout-wrap.lg .txtarea2 {
      /* padding-bottom: 30vw; */
      font-size: 14px;
    }
    .home .layout-wrap.lg .txtarea::before,
    .home .layout-wrap.lg .txtarea2::before {
      bottom: -90px;
    }
  }

/* layout-wrap
********************************************** */
  .wrap--blc {
    position: relative;
  }
  .wrap--blc:not(:last-child) {
    margin-bottom: 152px;
  }
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc::before {
    content: '';
    position: absolute;
    background-color: #EAEAEA;
    z-index: -1;
  }
  /*
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc::before {
    content: '';
    position: absolute;
    background-color: #242424;
    z-index: -1;
  }
  */
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:nth-of-type(-n+3)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-of-type(-n+3)::before {
    right: 0;
  }
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:nth-of-type(-n+2)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:nth-last-of-type(-n+2)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-of-type(-n+2)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-last-of-type(-n+2)::before {
    width: 100%; /* 51.2% */
  }
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:first-of-type::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:first-of-type::before {
    top: -300px; /* -270px */
    height: calc(100% + 400px); /* calc(100% + 270px) */
  }
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:nth-of-type(2n)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:nth-last-of-type(-n+2)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-of-type(2n)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-last-of-type(-n+2)::before {
    /* top: -152px; */
    height: calc(100% + 450px); /* calc(100% + 152px) */
  }
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:nth-of-type(3n)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-of-type(3n)::before {
    top: -308px;
    bottom: -96px;
    width: 100%;
    height: calc(100% + 420px); /* calc(100% + 404px) */
  }
  .layout-wrap:not(.lg):not(.bg):not(.bg-wh):not(.sm) .wrap--blc:nth-of-type(5n)::before,
  .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-of-type(5n)::before {
    height: calc(100% + 278px);
  }
  .inner + .wrap--blcs {
    margin-top: 0; /* 88px; */
  }
  .layout-wrap:not(.sm) .wrap--blc:nth-of-type(even) &gt; .flex {
    flex-direction: row-reverse;
  }
  .wrap--blc .flex .imgarea {
    position: relative;
    width: 59.04%; /* 986px */
    /* height: 632px; */
  }
  .wrap--blc .flex .txtarea,
  .wrap--blc .flex .txtarea2 {
    width: 100%; /* 40.24% */
  }
  .layout-wrap {
    /* counter-reset: num; */
    overflow: hidden;
  }
  .layout-wrap:not(.bg) .ttl-02 {
    font-size: 150%; /* 350% */
    color: #061609;
    text-align: center;
  }
  .layout-wrap .ttl-02 span {
    position: relative;
  }
  .layout-wrap .ttl-02 .num {
    counter-increment: num;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 171.43%; /* 96px */
    font-weight: 500;
    width: 186px;
    height: 186px;
    padding-bottom: 14px;
    border: 2px dotted;
    border-radius: 50%;
    margin-top: -169px;
    margin-bottom: 40px;
  }
  .layout-wrap:not(.sm) .wrap--blc:nth-of-type(even) .ttl-02 .num {
    margin-left: auto;
  }
  .layout-wrap:not(.sm) .wrap--blc:nth-of-type(3) .ttl-02 .num,
  .layout-wrap:not(.sm) .wrap--blc:nth-of-type(5) .ttl-02 .num {
    padding-bottom: 0;
  }
  .layout-wrap .ttl-02 .num::before {
    content: counter(num, decimal-leading-zero);
  }
  .layout-wrap .ttl-02 .num::after {
    content: '';
    position: absolute;
    top: -92px;
    bottom: 0;
    left: -20px;
    right: 0;
    margin: auto;
    width: 221px;
    height: 2px;
    border-bottom: 2px solid;
    transform-origin: right;
    transform: rotate(-45deg);
  }
  .layout-wrap:not(.sm) .ttl-02 span:not(.num)::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 80px;
    height: 1px;
    /* border-top: 1px solid; */
    vertical-align: middle;
    margin-left: -128px;
    margin-right: 48px;
    padding-bottom: .2em;
    z-index: -1;
  }
  .layout-wrap .btn {
    margin-top: 2em;
  }

  @media print, screen and (min-width: 768px) {
    .layout-wrap:not(.sm) .wrap--blc:nth-of-type(odd) .flex .txtarea,
    .layout-wrap:not(.sm) .wrap--blc:nth-of-type(odd) .flex .txtarea2 {
      padding-left: 0; /* 7.66% */
    }
    .layout-wrap:not(.sm) .wrap--blc:nth-of-type(even) .flex .txtarea,
    .layout-wrap:not(.sm) .wrap--blc:nth-of-type(even) .flex .txtarea2 {
      padding-right: 0; /* 7.66% */
    }
    .layout-wrap:not(.sm) .wrap--blc:nth-of-type(2n) .ttl-02 .num {
      margin-top: -180px;
      margin-right: -23%;
    }
    .layout-wrap:not(.sm) .wrap--blc:nth-of-type(4n) .ttl-02 .num {
      margin-top: -72px;
      margin-right: -32%;
    }
  }
  @media screen and (max-width: 767px) {
    .wrap--blc:not(:last-child) {
      margin-bottom: 52px;
    }
    .inner + .wrap--blcs {
      margin-top: 0px;
    }
    .layout-wrap:not(.sm) .wrap--blc:nth-of-type(even) &gt; .flex {
      flex-direction: column;
    }
    .wrap--blc .flex .imgarea,
    .wrap--blc .flex .imgarea2,
    .wrap--blc .flex .txtarea,
    .wrap--blc .flex .txtarea2 {
      width: 100%;
    }
    .wrap--blc .flex .imgarea,
    .wrap--blc .flex .imgarea2 {
      height: 60vw;
    }
    .layout-wrap:not(.bg) .ttl-02 {
      font-size: 18px;
    }
    .layout-wrap .ttl-02 .num {
      width: 104px;
      height: 104px;
      padding-bottom: 0;
      margin-top: -24px;
      margin-left: 24px;
      margin-bottom: 16px;
    }
    .layout-wrap .ttl-02 .num::after {
      width: 116px;
      top: -50px;
      left: -8px;
    }
    .layout-wrap .wrap--blc:nth-of-type(even) .ttl-02 .num {
      margin-right: 24px;
    }
  }

/* layout-wrap-sm
********************************************** */
  .layout-wrap.sm {
    position: relative;
  }
  .layout-wrap.sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background-image: url(../images/recruit/recruit_about_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .layout-wrap.sm .wrap--blcs {
    position: relative;
    padding-top: 136px;
    padding-bottom: 136px;
  }
  .layout-wrap.sm .wrap--blcs::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 92.71%; /* 1780px */
    height: 100%;
    background-color: #ffffff;
  }
  .layout-wrap.sm .wrap--blc:not(:last-child) {
    margin-bottom: 56px;
  }

  @media print, screen and (min-width: 768px) {
    .layout-wrap.sm {
      padding-top: 104px;
    }
    .layout-wrap.sm .wrap--blc .flex {
      flex-direction: row-reverse;
    }
    .layout-wrap.sm .wrap--blc .flex .imgarea {
      width: 50%;
      height: 544px;
    }
    .layout-wrap.sm .wrap--blc .flex .imgarea2 {
      width: 33%;
      height: 544px;
    }
    .layout-wrap.sm .wrap--blc .flex .txtarea,
    .layout-wrap.sm .wrap--blc .flex .txtarea2 {
      width: 51.39%; /* 740px */
      padding-left: 8.55%; /* 123px */
      padding-right: 5.14%; /* 74px */
    }
    .layout-wrap.sm .ttl-02 .num {
      margin-left: -120px;
      margin-bottom: -12px;
    }
  }
  @media screen and (max-width: 1780px) {
    .layout-wrap.sm .inner-md {
      max-width: 1200px;
    }
  }
  @media screen and (max-width: 1520px) {
    .layout-wrap.sm .inner-md {
      max-width: 1080px;
    }
  }
  @media screen and (max-width: 767px) {
    .layout-wrap.sm .wrap--blcs {
      padding-top: 68px;
      padding-bottom: 68px;
      width: 86%;
      margin-left: auto;
      margin-right: auto;
    }
    .layout-wrap.sm .wrap--blcs::before {
      width: 100%;
    }
    .layout-wrap.sm .wrap--blc:nth-of-type(even) .ttl-02 .num {
      margin-left: auto;
    }
  }

/* layout-wrap-bg
********************************************** */
  .layout-wrap.bg {
    padding-top: 0;
    padding-bottom: 180px;
  }
  .layout-wrap.bg .wrap--blc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 41.67%; /* 800px */
    height: 100%;
    background-image: url(../images/top_recruit_img-l.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #1d1818;
    z-index: -1;
  }
  .layout-wrap.bg .wrap--blc::after {
    content: '';
    position: absolute;
    bottom: -180px;
    right: 0;
    width: 91.09%; /* 1749px */
    height: 180px;
    background-color: #EAEAEA;
    z-index: -1;
  }
  .layout-wrap.bg .imgarea {
    position: absolute;
    top: 0;
    right: 0;
    width: 58.33%; /* 1120px */
    height: 740px;
  }
  .layout-wrap.bg .ttl-02:not(:last-child) {
    margin-bottom: .2em;
  }
  .layout-wrap.bg .ttl-02 .font-en {
    font-size: 325%; /* 156px */
    margin-right: .2em;
    letter-spacing: .08em;
  }
  .layout-wrap.bg .ttl-02 .font-en::before {
    width: 112px;
    margin-right: 16px;
    color: #ffffff;
  }
  .layout-wrap.bg .ttl-03 {
    font-size: 250%; /* 40px */
  }
  .layout-wrap.bg .txtarea p,
  .layout-wrap.bg .txtarea2 p {
    width: 100%;
    max-width: 402px;
  }
  .layout-wrap.bg .btn {
    position: absolute;
    bottom: -85px;
    right: 0;
    width: 46.04%; /* 884px */
    height: 214px;
    box-shadow: 0 0 64px rgba(0,0,0,.16);
  }
  .layout-wrap.bg .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border: 0;
    font-size: 131.25%; /* 21px */
  }
  .layout-wrap.bg .btn a:hover {
    background-color: #061609;
    color: #ffffff;
  }
  .layout-wrap.bg .btn a::before {
    right: 48px;
  }
  .layout-wrap.bg .btn a::after {
    right: 47px !important;
  }
  .layout-wrap.bg .btn span {
    color: #0d0d0d;
    transition: all .4s ease-out;
  }
  .layout-wrap.bg .btn a:hover span {
    color: #ffffff;
  }
  .layout-wrap.bg .btn span::before {
    display: none;
  }

  @media print, screen and (min-width: 768px) {
    .layout-wrap.bg .txtarea,
    .layout-wrap.bg .txtarea2 {
      min-height: 740px;
    }
  }
  @media screen and (max-width: 767px) {
    .layout-wrap.bg {
      background-image: url(../images/top_recruit_img-l.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      background-color: #1d1818;
      padding-bottom: 160px;
    }
    .layout-wrap.bg .wrap--blc::before {
      display: none;
    }
    .layout-wrap.bg .wrap--blc &gt; .inner {
      display: flex;
      flex-direction: column-reverse;
    }
    .layout-wrap.bg .ttl-02 {
      display: block;
      text-align: center;
    }
    .layout-wrap.bg .ttl-02:not(:last-child) {
      margin-bottom: 1em;
    }
    .layout-wrap.bg .ttl-02 .font-en {
      font-size: 200%; /* 56px */
      display: block;
      margin-bottom: -.6em;
      margin-right: 0;
    }
    .layout-wrap.bg .imgarea,
    .layout-wrap.bg .imgarea2 {
      position: static;
      width: 100%;
      height: 60vw;
      width: 116%;
      margin-left: -8%;
    }
    .layout-wrap.bg .txtarea,
    .layout-wrap.bg .txtarea2 {
      padding-top: 62px;
      padding-bottom: 62px;
    }
    .layout-wrap.bg .ttl-03 {
      font-size: 175%;
    }
    .layout-wrap.bg .btn {
      width: 86%;
      height: 112px;
    }
    .layout-wrap.bg .btn a {
      font-size: 114.29%; /* 16px */
    }
    .layout-wrap.bg .btn a::before {
      right: 32px;
    }
    .layout-wrap.bg .btn a::after {
      right: 31px !important;
    }
  }

/* layout-wrap-bg-wh
********************************************** */
  /*
  .layout-wrap.bg-wh .txtarea,
  .layout-wrap.bg-bl .txtarea2 {
    margin-left: auto;
  }
  .layout-wrap.bg-wh .ttl-01:not(:last-child),
  .layout-wrap.bg-bl .ttl-01:not(:last-child) {
    margin-bottom: .5em;
  }
  .layout-wrap.bg-wh .ttl-01 .font-en,
  .layout-wrap.bg-bl .ttl-01 .font-en {
    font-size: 180.56%;
    text-indent: 0;
  }

  @media print, screen and (min-width: 768px) {
    .layout-wrap.bg-wh {
      background-color: #f8f8f8;
    }
    .layout-wrap.bg-wh .wrap--blc::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background-color: #ffffff;
    }
    .layout-wrap.bg-bl .wrap--blc::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background-color: #242424;
    }
    .layout-wrap.bg-wh .imgarea,
    .layout-wrap.bg-bl .imgarea2,
    .layout-wrap.bg-wh .txtarea,
    .layout-wrap.bg-bl .txtarea2 {
      width: 50%;
    }
    .layout-wrap.bg-wh .imgarea,
    .layout-wrap.bg-bl .imgarea2 {
      position: absolute;
      top: 0;
      left: 0;
      height: 744px;
    }
    .layout-wrap.bg-wh .txtarea,
    .layout-wrap.bg-bl .txtarea2 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 610px;
      padding-left: 7.19%;
    }
  }

  @media screen and (max-width: 767px) {
    .layout-wrap.bg-wh,
    .layout-wrap.bg-bl {
      padding-top: 0;
    }
    .layout-wrap.bg-wh .imgarea,
    .layout-wrap.bg-bl .imgarea2 {
      width: 116%;
      margin-left: -8%;
      margin-bottom: 24px;
    }
  }
  */

/* layout-col
********************************************** */
  .layout-col {
    position: relative;
  }
  .layout-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28.33vw;
    z-index: -1;
  }
  .layout-col .ttl-03 {
    font-size: 130%;
  }
/*
  .layout-col .ttl-03::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    border-top: 1px solid;
    vertical-align: middle;
    margin-right: .2em;
    padding-bottom: .2em;
  }
*/
  .layout-col .btn {
    margin-top: auto;
  }
  .layout-col .btn a {
    max-width: 100%;
  }
  .layout-col img {
    margin: 0 !important;
  }

  @media screen and (max-width: 767px) {
    .layout-col .ttl-03 {
      font-size: 16px;
      text-align: center;
    }
    .layout-col {
      padding-bottom: 62px;
    }
    #example.layout-col {
      padding-bottom: 62px;
    }
    #example p {
      margin-bottom: 30px;
    }
  }

/* layout-entry
********************************************** */
  .layout-entry::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 91.09%; /* 1749px */
    height: 304px;
    background-color: #e6e6e6;
    z-index: -1;
  }
  .layout-entry a {
    height: 248px;
  }
  .layout-entry span {
    display: block;
  }
  .layout-entry .font-en {
    font-size: 640%; /* 96px */
    line-height: 1.2;
    letter-spacing: .08em;
  }

  @media screen and (max-width: 767px) {
    .layout-entry::before {
      width: 100%;
      height: 124px;
    }
    .layout-entry a {
      height: 180px;
    }
    .layout-entry .font-en {
      font-size: 428.57%; /* 60px */
    }
  }

/* table
********************************************** */
tr {
  border-bottom: 1px solid #b5b1b1;
}
th, td {
  padding: 24px 0;
  border: none;
  vertical-align: middle;
}
th {
  width: 30%;
}

/* sp */
@media screen and (max-width: 767px) {
  th {
    font-size: 16px;
    width: 100%;
    display: block;
    padding: 20px 0;
  }
/*  #app_req table th:nth-of-type(1) {
    padding: 0 0 10px 0;
  }*/
  td {
    padding: 0 0 20px 0;
    font-size: 100%;
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* form
********************************************** */
.box_con {
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .box_con {
    width: 100%;
  }
}
.box_con form {
  width: 100%;
}
.box_con form table {
  width: 100%;
}
.box_con form table tr {
  position: relative;
}
.box_con form table tr:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: dotted #cdcdcd 1px;
}
.box_con form table tr th {
  width: 30%;
  /* font-weight: normal; */
  /* padding: 1em .5em; */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr th {
    text-align: center;
    width: 100%;
    display: block;
    padding: 20px 0;
  }
}
.box_con form table tr th span {
  background: #f55555;
  padding: 3px 5px;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: normal;
  border-radius: 3px;
}
.box_con form table tr td {
  /* padding: 1em .5em; */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr td {
    padding: 0 0 20px 0;
    display: block;
    width: 100%;
  }
}
.box_con form table tr .box_br {
  display: block;
}
.box_con form table tr select {
  border: 1px solid #E89944;
}
.box_con form table tr label input {
  cursor: pointer;
  display: none;
  vertical-align: middle;
}
.box_con form table tr .radio02-input + label {
  padding-left: 23px;
  /* margin-right: 20px; */
  position: relative;
}
.box_con form table tr .radio02-input + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr .radio02-input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #E89944;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr select, .box_con form table tr input, .box_con form table tr textarea {
  width: 95%;
  height: 3em;
  padding: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #b5b1b1;
}
.box_con form table tr textarea {
  height: 10em;
}

/* 繝励Λ繧､繝舌す繝ｼ縺ｮ繝�じ繧､繝ｳcss 竊� */
.con_pri {
  max-width: 700px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 150%;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}

.box_check {
  text-align: center;
  margin: 1em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
}

.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #eee;
  padding: .5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  /* filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); */
  opacity: 0.7;
}

.form-wrap {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1200px;
}
.form-wrap table {
  margin: 0 0 30px 0;
  width: 100%;
}
.form-wrap th {
  width: 30%;
  border-bottom: 1px solid #b5b1b1;
}
.form-wrap td {
  text-align: left;
  border-bottom: 1px solid #b5b1b1;
}
#CONTACT table td:nth-child(2){
  width: 60px;
}

/* 蠢��医�繝ｼ繧ｯ */
.form-wrap td span.req {
  display: inline-block;
  margin: 0;
  padding: 1px 6px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background: #f55555;
  border-radius: 0;
  vertical-align: middle;
}
.form-wrap td input[type="text"].t01{
  max-width: 100%;
}
.form-wrap td input[type="text"], .form-wrap td input[type="email"],.form-wrap td select, .form-wrap td textarea,
.form-wrap td input[type="tel"], .form-wrap td input[type="date"] {
  width: 90%;
  height: 37px;
  padding: 9px 10px;
  font-size: 15px;
  border: 1px solid #b5b1b1;
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 0 0 #108fd6, inset 1px 1px 3px #eee;
  box-shadow: 0 0 0 #108fd6, inset 1px 1px 3px #eee;
  box-sizing: border-box;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
.form-wrap td textarea {
  width: 90%;
  max-width: 1200px;
  height: 140px;
  vertical-align: top;
}
.form-wrap td select {
  width: 100%;
  height: 37px;
  padding: 0 10px;
  max-width: 100%;
}

/* 騾∽ｿ｡繝懊ち繝ｳ */
input[type="submit"] {
  background: linear-gradient(to right, #89bb39 50%, #E89944 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.5s ease;
  display: block;
  margin: 30px auto 0;
  padding: 24px;
  width: 200px;
  border: none;
  color: #ffffff;
  font-size: 100%;
}

/* 繝帙ヰ繝ｼ譎ゅ�繧ｹ繧ｿ繧､繝ｫ */
input[type="submit"]:hover {
  background-position: left bottom;
}

@media screen and (max-width: 767px) {
  .form-wrap {
    margin: 0 auto 0;
/*    padding-bottom: 30px; */
    width: 100%;
  }
  .form-wrap th {
    text-align: left;
    font-size: 18px;
  }
  .form-wrap td {
    text-align: left;
    font-size: 100%;
  }

  /* 蠢��医�繝ｼ繧ｯ */
  .form-wrap th span.req {
    padding: 0 0.5em;
    font-size: 9px;
  }
  .form-wrap .btn input[type="submit"] {
    padding: 1em;
    width: 15em;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* recruit
********************************************** */
  .recruit_bg + .layout-wrap {
    padding-top: 64px;
  }
  .page-recruit .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:first-of-type::before {
    top: -480px;
    height: calc(100% + 480px);
  }
  .page-recruit .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-of-type(3n)::before {
    top: -256px;
    bottom: -96px;
    width: 100%;
    height: calc(100% + 352px);
  }
  .page-recruit .layout-wrap:not(.lg):not(.bg):not(.bg-bl):not(.sm) .wrap--blc:nth-of-type(5n)::before {
    top: -152px;
    height: calc(100% + 152px);
  }
  .page-recruit .layout-wrap.lg .wrap--blc:nth-of-type(odd) .imgarea {
    left: 0;
    right: inherit;
  }
  .page-recruit .layout-wrap.lg .wrap--blc:nth-of-type(even) .imgarea {
    left: inherit;
    right: 0;
  }
  .page-recruit .layout-wrap.lg .txtarea p:not(:last-child),
  .page-recruit .layout-wrap.lg .txtarea2 p:not(:last-child) {
    margin-bottom: 3em;
  }
  .recruit_bg {
    height: 100%;
    height: 600px;
    background-image: url(../images/recruit/recruit_full-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .page-recruit .layout-col {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .page-recruit .layout-col .ttl-03 {
    font-size: 250%; /* 40px */
  }
  .page-recruit .layout-col .ttl-03 span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding-right: 40px;
    font-size: 37.5%; /* 15px */
    font-family: 'YuGothic', '貂ｸ繧ｴ繧ｷ繝�け', '繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 500;
  }
  .page-recruit .layout-col::before {
    height: 447px;
    top: inherit;
    bottom: 0;
  }
  .page-recruit .layout-col span::before,
  .page-recruit .layout-col span::after {
    content: '';
    position: absolute;
    top: 50%;
  }
  .page-recruit .layout-col span::before {
    right: 1px;
    width: 6px;
    height: 6px;
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg) translateY(-50%);
  }
  .page-recruit .layout-col span::after {    
    right: 0px;
    width: 18px;
    height: 1px;
    border-bottom: 1px solid;
  }
  .page-recruit .layout-col a:hover span::before,
  .page-recruit .layout-col a:hover span::after {
    animation: arrow .4s ease-out;
  }
  .page-recruit .layout-col .imgarea {
    transition: all .4s ease-out;
  }
  
  @media print, screen and (min-width: 768px) {
    .page-recruit .layout-wrap.lg .imgarea,
    .page-recruit .layout-wrap.lg .imgarea2 {
      width: 50vw; /* 960px */
      height: 900px;
    }
    .page-recruit .layout-wrap.lg .imgarea.fixed .img-cover,
    .page-recruit .layout-wrap.lg .imgarea2.fixed .img-cover {
      left: 0;
      width: 50vw;
      height: 100vh;
    }
    .page-recruit .layout-wrap.lg .txtarea,
    .page-recruit .layout-wrap.lg .txtarea2 {
      width: 50%; /* 780px */
      min-height: 900px;
    }
    .page-recruit .layout-wrap.lg .wrap--blc:nth-child(odd) .txtarea,
    .page-recruit .layout-wrap.lg .wrap--blc:nth-child(odd) .txtarea2 {
      margin-left: auto;
      padding-left: 9.36%; /* 164px */
      padding-right: 0;
    }
    .page-recruit .layout-wrap.lg .wrap--blc:nth-child(even) .txtarea,
    .page-recruit .layout-wrap.lg .wrap--blc:nth-child(even) .txtarea2 {
      margin-left: 0;
      padding-left: 0;
      padding-right: 9.36%; /* 164px */
    }
    .page-recruit .layout-wrap:not(.sm) .wrap--blc:nth-of-type(2n) .ttl-02 .num {
      margin-top: -140px;
      margin-right: -29%;
    }
    .page-recruit .layout-wrap:not(.sm) .wrap--blc:nth-of-type(4n) .ttl-02 .num {
      margin-top: -60px;
      margin-right: -37%;
    }
    .page-recruit .layout-col a:hover .imgarea,
    .page-recruit .layout-col a:hover .imgarea2 {
      opacity: .7;
    }
  }
  @media screen and (max-width: 767px) {
    .page-recruit .layout-wrap.lg .imgarea,
    .page-recruit .layout-wrap.lg .imgarea2 {
      height: 100vw;
    }
    .page-recruit .layout-wrap.lg .txtarea,
    .page-recruit .layout-wrap.lg .txtarea2 {
      padding-top: calc(100vw + 24px);
    }
    .recruit_bg {
      height: 30vw;
    }
    .page-recruit .layout-col .ttl-03 {
      font-size: 171.43%; /* 24px */
    }
    .page-recruit .layout-col .imgarea::before,
    .page-recruit .layout-col .imgarea2::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,.16);
    }
    .page-recruit .layout-col .imgarea .pc-none,
    .page-recruit .layout-col .imgarea2 .pc-none {
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      padding: 1em;
      border: 1px solid;
      width: 86%;
      max-width: 240px;
    }
    .page-recruit .layout-col span::before {
      right: 16px;
    }
    .page-recruit .layout-col span::after {
      right: 15px;
    }
  }

/* contact
********************************************** */
  .cta_tel {
    display: flex !important;
    width: 100%;
    max-width: 400px;
    height: 140px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
  }
  .cta_tel span {
    display: block;
  }
  .cta_tel .num {
    font-size: 200%; /* 32px */
    letter-spacing: .1em;
  }
  .cta_tel .hour {
    transform: rotate(.04deg);
  }

  @media screen and (max-width: 767px) {
    .cta_tel {
      height: 96px;
      padding-bottom: 8px;
    }
    .cta_tel .num {
      font-size: 171.43%; /* 24px */
    }
  }

/* company
********************************************** */
  #company {
    text-align: center;   /* 繧ｳ繝ｳ繝�Φ繝�ｒ荳ｭ螟ｮ謠�∴縺ｫ */
    width: 100%;          /* 蟷�ｒ100%縺ｫ縺吶ｋ */
    margin: 0 auto;       /* 繝悶Ο繝�け隕∫ｴ�繧剃ｸｭ螟ｮ縺ｫ驟咲ｽｮ */
  }
  #company td {
    text-align: left;     /* 繝��繝悶Ν繝��繧ｿ縺ｮ蟾ｦ謠�∴ */
  }

  @media screen and (max-width: 767px) {
    #company td {
      text-align: center;     /* 繝��繝悶Ν繝��繧ｿ縺ｮ蟾ｦ謠�∴ */
    }
  }

  #company iframe {
    max-width: 100%;          /* 蝨ｰ蝗ｳ縺ｮ讓ｪ蟷�ｒ繝ｬ繧ｹ繝昴Φ繧ｷ繝悶↓縺吶ｋ */
    height: 400px;             /* 蠢�ｦ√↓蠢懊§縺ｦ鬮倥＆繧りｪｿ謨ｴ */
    border: 0;
  }

  @media (max-width: 1080px) and (min-width: 768px) {
    iframe {
      width: 90%;
    }
  }

  @media screen and (max-width: 767px) {
    iframe {
      width: 90%;
      height: 250px;
    }
  }

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
  .main_column {
    flex: 1;
    margin-right: 80px;
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all .4s ease-out;
  }
  .post--img {
    background-color: #EAEAEA;
  }
  .post--img svg {
    width: 183px;
    height: 58px;
  }
  .post--img path {
    fill: #ffffff;
  }
  .post--date {
    font-size: 93.75%; /* 15px */
  }
  /*
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post--date + .cat_list {
    margin-left: 1em;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 75%;
    background-color: #F1F1F1;
    color: #727272;
    line-height: 1;
    padding: .5em 1em;
    border-radius: 3em;
    float: left;
    margin: 2px;
    white-space: nowrap;
  }
  .cat_list a:hover {
    background-color: #727272;
    color: #F1F1F1;
  }
  */
  .no-image {
    background-size: 80% auto!important;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #eee;
  }

  @media print, screen and (max-width: 1100px) {
    .main_column {
      width: 100%;
      margin-bottom: 40px;
      margin-right: 0;
    }
  }

/* side_column
**************************************** */
  .side_column,
  .side_fixed { width: 264px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl.editor-ttl3 {
    padding-left: 0;
  }
  .side--ttl.editor-ttl3:not(:last-child) {
    margin-bottom: 1em;
  }
  .side--ttl::before {
    display: none;
  }
  .side--ttl small {
    font-size: 62.5%; /* 15px */
    opacity: .5;
    display: block;
    line-height: 2;
  }
  .side--list a {
    display: block;
  }
  .side--list a::before {
    content: '';
    display: inline-block;
    width: .5em;
    height: 1px;
    border-bottom: 1px solid;
    vertical-align: middle;
    margin-right: .5em;
  }
  .side--list a:hover {
    color: #00a63c;
  }

  /* --- post --- */
  .posts-side .post:not(:last-child) {
    margin-bottom: 16px;
  }
  .posts-side .post--img {
    margin-right: 16px;
    width: 64px;
    height: 64px;
  }
  .posts-side .txtarea,
  .posts-side .txtarea2 {
    flex: 1;
  }
  .posts-side .post--date {
    margin-bottom: 0;
  }
  .posts-side .post--ttl {
    font-weight: 500;
  }
  .posts-side .post--link:hover {
    color: #2c8843;
  }

  /* --- archive --- */
  .side_column .archive-year {
    cursor: pointer;
    transition: all .4s ease-out;
  }
  .side_column .archive-year:hover {
    color: #00a63c;
  }
  .side_column .archive-year::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: all .4s ease-out;
  }
  .side_column .archive-year.active::after { transform: rotate(315deg); }
  .side_column .archive-month { display: none; }

  @media screen and (max-width: 1100px) {
    .side_column,
    .side_fixed { width: 100%; }
  }

  /* --- archive-pulldown --- */
  .archive-pulldown {
    position: relative;
    margin-left: auto;
    z-index: 1;
  }
  .archive-pulldown .pulldown_list:not(:last-child) { margin-right: 24px; }
  .archive-pulldown .pulldown_list a {
    display: block;
    padding: 2px 16px;
    text-align: left;
  }
  .archive-pulldown .pulldown_list a:not(:last-child) { border-bottom: 1px solid #eee; }
  .archive-pulldown .pulldown_list--label { margin-right: 8px; }
  .archive-pulldown .pulldown_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding: 8px 54px 8px 32px;
    background-color: #ffffff;
    border: 1px solid #ccc;
  }
  .archive-pulldown .pulldown_list--btn::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 10px;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #0D0D0D;
    border-right: 2px solid #0D0D0D;
    transform: rotate(45deg);
    transition: .2s ease-out;
    transform-origin: 50% 50%;
  }
  .archive-pulldown .active .pulldown_list--btn::after {
    top: 14px;
    transform: rotate(225deg);
  }
  .archive-pulldown .pulldown_list--menu {
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ccc;
    visibility: hidden;
    margin-top: -1px;
    opacity: 0;
    transition: .2s ease-out;
  }
  .archive-pulldown .active .pulldown_list--menu {
    visibility: visible;
    opacity: 1;
  }

/* pulldown
**************************************** */
  .pulldown--txt {
    margin-right: 1em;
  }
  .pulldown--lists {
    cursor: pointer;
    width: 12em;
    z-index: 1;
  }
  .pulldown--lists::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    transition: all .4s ease-out;
  }
  .pulldown--lists:hover::before,
  .pulldown--current:hover {
    color: #2c8843;
  }
  .pulldown--lists.active::before {
    transform: rotate(-135deg);
  }
  .pulldown--current, 
  .pulldown--list a {
    padding: .5em 1em;
  } 
  .pulldown--current {
    border: 1px solid;
    transition: all .4s ease-out;
  }
  .pulldown--list {
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid;
    border-top: 0;
    display: none;
  }
  .pulldown--list li:not(:last-child) {
    border-bottom: 1px solid;
  }
  .pulldown--list a {
    display: block;
    background-color: #ffffff;
  }
  .pulldown--list a:hover {
    background-color: #eff7f1;
  }

/* works
**************************************** */
  .posts-works .post--info {
    top: 16px;
    right: 16px;
  }
  .posts-works .post--txtarea,
  .posts-works .post--txtarea2 {
    padding: 32px 40px 40px;
  }
  .posts-works .editor-ttl3:not(:last-child) {
    margin-bottom: 1em;
  }
  .posts-works .post--img {
    width: 100%;
  }
  .posts-works .post--img::before {
    padding-top: calc(3/4*100%);
  }

  @media print, screen and (min-width: 768px) {
    .posts-works .dl-line dt,
    .posts-works .dl-line dd {
      padding: 1em;
    }
    .posts-works .dl-line dt {
      width: 120px;
      font-size: 100%;
    }
    .posts-works .dl-line dd {
      width: calc(100% - 120px);
    }
    .posts-works .dl-line dt:first-of-type,
    .posts-works .dl-line dd:first-of-type {
      border-top: 0;
      padding-top: 0;
    }
    .posts-works .dl-line dt:last-of-type,
    .posts-works .dl-line dd:last-of-type {
      border-bottom: 0;
      padding-bottom: 0;
    }
  }
  @media screen and (max-width: 1100px) {
    .posts-works { margin-bottom: 56px; }
    .archive-works .container &gt; .inner.flex,
    .single-works .container &gt; .inner.flex {
      display: block;
    }
  }
  @media screen and (max-width: 767px) {
    .posts-works .post--txtarea,
    .posts-works .post--txtarea2 {
      padding: 24px;
    }
  }

/* interview
**************************************** */
  .posts-interview .post {
    padding: 24px;
    transition: all .4s ease-out;
  }
  .posts-interview .post:hover {
    transform: scale(.99);
  }
  .posts-interview .post--txtarea,
  .posts-interview .post--txtarea2 {
    flex: 1;
  }
  .posts-interview .post--img {
    width: 100%;
    margin-bottom: 24px;
    pointer-events: none;
  }
  .posts-interview .post--img::before {
    padding-top: calc(3/4*100%);
  }
  .posts-interview .editor-ttl3,
  .posts-news .editor-ttl3 {
    pointer-events: none;
  }
  .posts-interview .editor-ttl3:not(:last-child),
  .posts-news .editor-ttl3:not(:last-child) {
    margin-bottom: 1em;
  }

  @media print, screen and (max-width: 1100px) {
    .archive-interview .container &gt; .inner.flex,
    .single-interview .container &gt; .inner.flex {
      display: block;
    }
  }

/* job
**************************************** */
  .posts-works .post,
  .posts-interview .post,
  .posts-job .post,
  .posts-news .post {
    box-shadow: 0 0 16px rgba(0,0,0,.08);
  }
  .posts-job .post--img {
    width: 100%;
  }
  .posts-job .post--img::before {
    padding-top: calc(3/4*100%);
  }
  .posts-job .post--txtarea,
  .posts-job .post--txtarea2 {
    padding: 40px;
  }
  .posts-job .editor-ttl3,
  .posts-works .editor-ttl3 {
    position: static;
    padding-left: 0;
  }
  .posts-works .editor-ttl3::before,
  .posts-job .editor-ttl3::before {
    display: none;
  }
  .posts-works .post--link:hover::before,
  .posts-job .post--link:hover::before {
    background-color: rgba(255,255,255,.3);
  }

  @media screen and (max-width: 767px) {
    .posts-job .post--txtarea {
      padding: 24px;
    }
  }

/* news
**************************************** */
  .posts-news .post {
    transition: all .4s ease-out;
  }
  .posts-news .post:not(:last-child) {
    margin-bottom: 40px;
  }
  .posts-news .post:hover {
    transform: translateY(-4px);
  }
  .posts-news .post--img {
    width: 280px;
    pointer-events: none;
  }
  .posts-news .post--img::before {
    padding-top: calc(4/3*100%);
  }
  .posts-news .post--txtarea {
    flex: 1;
    padding: 40px;
  }

  /* --- news_list --- */
  .news_list .post {
    padding-bottom: 1em;
    padding-top: 1em;
  }
  .archive .news_list .post {
    border-bottom: 1px solid #dedede;
  }
  .news_list .post--info {
    margin-right: 1em;
  }
  .news_list .post--ttl {
    font-size: 93.75%; /* 15px */
    font-weight: 500;
  }

  @media print, screen and (max-width: 1100px) {
    .archive-news .container &gt; .inner.flex,
    .single-news .container &gt; .inner.flex {
      display: block;
    }
  }
  @media screen and (max-width: 767px) {
    .posts-news .post--img {
      width: 100%;
    }
    .posts-news .post--img::before {
      padding-top: calc(3/4*100%);
    }
    .posts-news .post--txtarea {
      padding: 24px;
    }

    /* --- news_list --- */
    .news_list .post { display: block; }
    .news_list .post--info {
      margin-right: 0;
      margin-bottom: .5em;
    }
  }


/* check
**************************************** */
#check p {
  color: red;
}

#check input[type="button"] {
  background: linear-gradient(to right, #89bb39 50%, #E89944 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.5s ease;
  display: block;
  margin: 30px auto 0;
  padding: 24px;
  width: 200px;
  border: none;
  color: #ffffff;
  font-size: 100%;
}

/* 繝帙ヰ繝ｼ譎ゅ�繧ｹ繧ｿ繧､繝ｫ */
#check input[type="button"]:hover {
  background-position: left bottom;
}

/* thanks
**************************************** */
#thanks p {
  text-align: center;
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* pass
**************************************** */
  #pass p {
    margin-bottom: 1em;
  }
  #pass input[name="post_password"] {
    padding: 5px;
    border: solid 1px #aaa;
    outline: none;
  }
  #pass input[type="submit"] {
    padding: 4px 16px;
    letter-spacing: .15em;
    background-color: #ddd;
    border-radius: 4px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all .4s ease-out;
  }
  #pass input[type="submit"]:hover {
    opacity: .7;
  }

/* works
**************************************** */
  .single-works .lps_parts--slide:not(:last-child),
  .works--article .mce-content-body:not(:last-child) {
    margin-bottom: 48px;
  }
  .single-works .lps_parts--child {
    width: 100%;
    max-width: 100%;
  }

  @media screen and (max-width: 767px) {
    .single-works .lps_parts--slide:not(:last-child),
    .works--article .mce-content-body:not(:last-child) {
      margin-bottom: 24px;
    }
  }

/* interview
**************************************** */
  .pagenavi {
    padding-top: 80px;
  }
  .single-interview .lps_sec:last-of-type {
    padding-bottom: 0;
  }
  .lps_sec:nth-child(2n) + .pagenavi {
    background-color: #f8f8f8;
  }

  @media screen and (max-width: 767px) {
    .pagenavi {
      padding-top: 40px;
    }
    .interview--article .box {
      border: 1px solid;
      padding: 24px;
    }
  }

/* job
**************************************** */
  .single-job .box {
    padding: 80px;
  }

  @media screen and (max-width: 767px) {
    .single-job .box {
      padding: 24px;
    }
  }

/* wp-pagenavi
**************************************** */
  .wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 80px;
  }
  .archive .wp-pagenavi {
    font-family: 'Cormorant Infant', serif;
  }
  .single .wp-pagenavi {
    font-size: 93.75%; /* 15px */
  }
  .wp-pagenavi .pages {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
  }
  .wp-pagenavi a {
    position: relative;
    padding: .5em 1em;
    background-color: #0D0D0D;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .wp-pagenavi a:hover {
    opacity: .7;
  }
  .wp-pagenavi a {
    color: #ffffff;
  }
  .wp-pagenavi &gt; *:not(.pages) {
    max-width: calc(100% / 2.6);
  }
  .archive .wp-pagenavi &gt; *:not(.pages) {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
  .wp-pagenavi-single a[rel="prev"],
  .wp-pagenavi-single a[rel="next"] {
    width: 40px;
  }
  .wp-pagenavi &gt; *:not(.pages) {
    margin-bottom: 4px; 
  }
  .wp-pagenavi &gt; *:not(.pages):not(:last-child) {
    margin-right: 4px;
  }
  .wp-pagenavi .extend {
    width: 24px !important;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-top: 1px solid;
    border-right: 1px solid;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    width: 8px;
    height: 8px;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .first::after {
    transform: rotate(-135deg);
  }
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .last::after {
    transform: rotate(45deg);
  }
  .wp-pagenavi-single a[rel="prev"]::before {
    transform: rotate(45deg);
  }
  .wp-pagenavi-single a[rel="next"]::before {
    transform: rotate(-135deg);
  }
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -6px;
  }
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -6px;
  }

  @media screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 40px;
    }
    .archive .wp-pagenavi &gt; *:not(.pages) {
      width: 32px;
      height: 32px;
    }
    .wp-pagenavi-single a[rel="prev"],
    .wp-pagenavi-single a[rel="next"] {
      width: 32px;
    }
    .wp-pagenavi .first::before,
    .wp-pagenavi .last::before {
      left: -5px;
    }
    .wp-pagenavi .first::after,
    .wp-pagenavi .last::after {
      right: -5px;
    }
  }


/* ##############################################################################

    FORMY

############################################################################## */
  #formy_form table { width: 100%; }
  #formy_form th,
  #formy_form td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: solid 1px #eee;
  }
  #formy_form th {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    width: 34%;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form table textarea {
    width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    vertical-align: bottom;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form select,
  #formy_form textarea {
    margin: 0;
    padding: 5px 15px;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 100%;
  }
  #formy_form textarea { height: 100px; }
  #formy_form select { height: 40px; }
  #formy_form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #formy_form input:hover { opacity:.7; }
  #formy_form textarea:hover { opacity:.7; }
  #formy_form input:focus { outline: none; }
  #formy_form .parsley-validated {  background-color: #eee; }
  #formy_form .parsley-error {  background-color: #fee; }
  #formy_form .parsley-success {  background-color: #ffffff; }
  .help_text {
    font-size: 85%;
    color: #999;
  }
  .hidden_help { display: none; }
  .formy_privacy div {
    overflow-y: scroll;
    height: 140px;
    border: solid 1px #ccc;
    font-size: 85%;
    padding: 8px 16px;
  }
  .requiredIcon {
    background-color: #f55;
    color: #ffffff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 2px 5px;
    float: right;
  }
  #formy_btn {
    padding-top: 32px;
    text-align: center;
  }
  #formy_btn input {
    font-size: inherit;
    border: none;
    cursor: pointer;
    color: #ffffff;
    border-radius: 3px;
    padding: 16px 32px;
    -webkit-appearance: none;
    appearance: none;
  }
  #formy_form ul li input[type="radio"],
  #formy_form ul li input[type="checkbox"] { display: none !important; }
    #formy_form ul li label {
    position: relative;
    display: inline-block;
    padding: .5em 8px .5em 40px;
    line-height: 1.6;
    vertical-align: top;
    cursor: pointer;
  }
  #formy_form ul li label:hover { opacity: .7; }
  #formy_form ul li label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #788b93;
    left: 16px;
    top: 12px;
  }
  #formy_form ul li input[type="radio"] + label::before { border-radius: 10px; }
  #formy_form ul li input[type="radio"]:checked + label,
  #formy_form ul li input[type="checkbox"]:checked + label {
    color: #e75f5f;
    font-weight: bold;
  }
  #formy_form ul li input[type="radio"]:checked + label::before,
  #formy_form ul li input[type="checkbox"]:checked + label::before {
    border-color: #e75f5f;
  }
  #formy_form ul li input[type="radio"]:checked + label::after,
  #formy_form ul li input[type="checkbox"]:checked + label::after {
    content: "";
    width: 10px;
    height: 18px;
    top: 4px;
    left: 20px;
    border-right: 2px solid #e75f5f;
    border-bottom: 2px solid #e75f5f;
    display: block;
    position: absolute;
    z-index: 10;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .formy_confirm { background-color: #4dbaff; }
  .formy_submit_disabled { background-color: #ccc; }
  #formy_btn .formy_submit_disabled:hover {
    opacity: 1;
    cursor: default;
  }
  .autoConfirmBack { background-color: #aaa; }
  .formy_send { background-color: #ff6600; }
  #total_required {
    padding: 16px;
    color: #f55555;
    text-align: center;
  }

  @media screen and (max-width: 767px) {
    #formy_form { padding: 0 16px; }
    #formy_form th,
    #formy_form td {
      display: block;
      width: auto;
      padding-left: 0;
      padding-right: 0;
    }
    #formy_form th {
      border-bottom:none;
      padding-bottom: 0;
      white-space: normal;
      font-weight: bold;
    }
    #formy_form td { padding-top: 0; }
    #formy_btn { padding-top: 8px; }
    #formy_btn input {
      width: 100%;
      background-size: contain;
      background-position: center;
    }
    .autoConfirmBack { margin-bottom: 8px; }
  }</pre></body></html>