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

    KEYFRAMES

############################################################################## */
  @-webkit-keyframes yajirushi {
    0% {
      height: 0;
      opacity: 0;
    }
    20% {
      height: 0;
      opacity: 1;
    }
    80% {
      height: 10vh;
      opacity: 1;
    }
    100% {
      height: 10vh;
      opacity: 0;
    }
  }
  @keyframes yajirushi {
    0% {
      height: 0;
      opacity: 0;
    }
    20% {
      height: 0;
      opacity: 1;
    }
    80% {
      height: 20vh;
      opacity: 1;
    }
    100% {
      height: 20vh;
      opacity: 0;
    }
  }

  @-webkit-keyframes bgposition {
    0% {
      opacity: 0;
      transform: scale(1);
    }
    100% {
      opacity: 1;
      transform: scale(1.1);
    }
  }
  @keyframes bgposition {
    0% {
      opacity: 0;
      transform: scale(1);
    }
    100% {
      opacity: 1;
      transform: scale(1.1);
    }
  }


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

    COMMON

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

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

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

  #wrapper {
    padding-left: 216px;
  }

  .hide { display: none; }

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .inner-xs { max-width: 720px; }
  .inner-sm { max-width: 1000px; }
  .inner-lg { max-width: calc(100% - 112px); }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* --- section_border --- */
  .section_border {
    border-top: 1px solid #000;
  }

  /* --- float --- */
  .flt-rgt { float: right; }
  .flt-lft { float: left; }

  /* --- position --- */
  .pos_rel {
    position: relative;
    z-index: 0;
  }

  /* --- margin --- */
  .mgn-btm8 { margin-bottom: 8px; }
  .mgn-btm16 { margin-bottom: 16px; }
  .mgn-btm24 { margin-bottom: 24px; }
  .mgn-btm32 { margin-bottom: 32px; }
  .mgn-btm40 { margin-bottom: 40px; }
  .mgn-btm48 { margin-bottom: 48px; }
  .mgn-btm56 { margin-bottom: 56px; }
  .mgn-btm64 { margin-bottom: 64px; }
  .mgn-btm72 { margin-bottom: 72px; }
  .mgn-btm80 { margin-bottom: 80px; }

  /* --- pc or sp --- */
  .pc-none,
  .pc-none-inline,
  .pc-none-table,
  .pc-none-flex { display: none; }
  .sp-none { display: block; }
  .sp-none-inline { display: inline; }
  .sp-none-table { display: table; }
  .sp-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  @media only screen and (max-width: 768px) {
    #wrapper {
      padding-left: 0;
    }

    .section_pdg {
      padding-top: 48px;
      padding-bottom: 48px;
    }

    .inner { width: 86%; }
    .mgn-btm16 { margin-bottom: 8px; }
    .mgn-btm24 { margin-bottom: 16px; }
    .mgn-btm32 { margin-bottom: 16px; }
    .mgn-btm40 { margin-bottom: 24px; }
    .mgn-btm48 { margin-bottom: 24px; }
    .mgn-btm56 { margin-bottom: 32px; }
    .mgn-btm64 { margin-bottom: 32px; }
    .mgn-btm72 { margin-bottom: 40px; }
    .mgn-btm80 { margin-bottom: 40px; }
    .sp-none,
    .sp-none-inline,
    .sp-none-table,
    .sp-none-flex { display: none; }
    .pc-none { display: block; }
    .pc-none-inline { display: inline; }
    .pc-none-table { display: table; }
    .pc-none-flex {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }

    .txt p br { display: none; }
    .txt p br.sp-br { display: inline-block; }
  }

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

  /* --- ブロック要素 --- */
  .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- インライン要素 --- */
  .flex-inline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  /* --- 逆向き --- */
  .flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  /* --- 縦並び --- */
  .flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- 水平方向揃え --- */
  .flex-j-start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex-j-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-j-ctr {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-j-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-j-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* --- 垂直方向揃え --- */
  .flex-a-start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-a-end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-a-ctr {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-a-baseline {
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .flex-a-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  /* --- 子要素の折り返し設定 --- */
  .flex-c-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-c-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* --- 子要素の複数行設定 --- */
  .flex-c-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-c-start {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-start {
    -webkit-align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-end {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .flex-c-ctr {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .flex-c-baseline {
    -webkit-align-content: baseline;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
  }
  .flex-c-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  /* --- ざっくりflexレイアウト --- */
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 6%;
  }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col2.flex-reverse > *:nth-child(even) { margin-right: 6%; }
  .flex-col2.flex-reverse > *:nth-child(odd) { margin-right: 0; }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n+3) { margin-right: 0; }
  .flex-col4>* {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n+4) { margin-right: 0; }

  /* --- フルサイズレイアウトの画像とテキスト --- */
  .flex-txt-img {
    display: flex;
    border-bottom: 1px solid;
  }
  .flex-txt-img > * {
    width: 50%;
  }
  .flex-txt-img:nth-child(odd) .txtarea,
  .flex-txt-img:nth-child(even) .imgarea {
    border-right: 1px solid;
  }
  .flex-txt-img .txtarea {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 880px;
  }
  .flex-txt-img .section_ttl-en {
    position: absolute;
    top: 10%;
    left: 0;
    width: 200%;
    opacity: 0;
    -webkit-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .6s cubic-bezier(.78, .2, .32, .91);
    transition: .6s cubic-bezier(.78, .2, .32, .91);
    text-align: center;
  }
  .flex-txt-img.flex-reverse .section_ttl-en {
    left: auto;
    right: 0;
  }
  .flex-txt-img.active .section_ttl-en {
    opacity: 1;
  }
  .flex-txt-img .txtarea,
  .flex-txt-img .imgarea {
    opacity: 0;
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .flex-txt-img.active .txtarea,
  .flex-txt-img.active .imgarea {
    opacity: 1;
  }
  .flex-txt-img .txt {
    max-width: 504px;
    width: 80%;
    opacity: 0;
    transform: scale(.95);
    transition-delay: .3s;
    -webkit-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .6s cubic-bezier(.78, .2, .32, .91);
    transition: .6s cubic-bezier(.78, .2, .32, .91);
  }
  .flex-txt-img.active .txt {
    opacity: 1;
    transform: scale(1);
  }
  .flex-txt-img .imgarea {
    position: relative;
    overflow: hidden;
  }
  .flex-txt-img .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    -webkit-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .6s cubic-bezier(.78, .2, .32, .91);
    transition: .6s cubic-bezier(.78, .2, .32, .91);
    transform: scale(1);
  }
  .flex-txt-img.active .img {
    transform: scale(1.05);
  }

  .box {
    padding: 48px 56px;
    border-radius: 6px;
  }

  @media only screen and (max-width: 1250px) {
    .flex-txt-img { display: block; }
    .flex-txt-img >* { width: 100%; }
    .flex-txt-img .txtarea {
      display: block;
      min-height: auto;
      padding: 80px 0;
    }
    .flex-txt-img:nth-child(odd) .txtarea,
    .flex-txt-img:nth-child(even) .imgarea {
      border-right: none;
    }
    .flex-txt-img .section_ttl-en {
      position: static;
      width: 77%;
      margin: 0 auto 40px;
      text-align: left;
    }
    .flex-txt-img .txt {
      max-width: 77%;
      width: 77%;
      margin: 0 auto;
    }
    .flex-txt-img .imgarea {
      height: 400px;
    }
  }
  @media only screen and (max-width: 768px) {

    /* --- 縦並び - sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    /* --- ざっくりflexレイアウト - sp --- */
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 > *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n+3) { margin-right: 0; }

    .flex-txt-img .txtarea {
      padding: 48px 0;
    }
    .flex-txt-img .txt {
      max-width: 85%;
      width: 85%;
    }
    .flex-txt-img .imgarea {
      height: 256px;
    }
    .flex-txt-img:nth-child(odd) .txtarea,
    .flex-txt-img:nth-child(even) .imgarea {
      border-right: none;
    }

    .box {
      padding: 26px 18px;
    }

  }

/* bg
**************************************** */
  .bg-white { background-color: #fff; }
  .bg-black { background-color: #131318; }
  .bg-dark { background-image: url(../images/common/pt-dark01.png); }
  .bg-light01 { background-image: url(../images/common/pt-light01.png); }
  .bg-light02 { background-image: url(../images/common/pt-light02.png); }

/* ttl
**************************************** */

  /* --- page_ttl --- */
  .page_ttl {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 404px;
    background: #000;
    padding: 80px 0;
    color: #fff;
    background-image: url(../images/page_ttl/page_ttl-news.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
  }
  .page-service .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-service.jpg);
  }
  .page-company .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-company.jpg);
  }
  .page-feature .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-feature.jpg);
  }
  .page-recruit .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-recruit.jpg);
  }
  .page-interview .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-interview.jpg);
  }
  .page-bosyu .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-bosyu.jpg);
  }
  .archive-news .page_ttl,
  .single-news .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-news.jpg);
  }
  .page_ttl-jp,
  .page_ttl-en {
    position: relative;
    z-index: 1;
    display: block;
  }
  .page_ttl-jp {
    font-size: 320%;
  }
  .page_ttl-en {
    font-size: 120%;
    text-transform: uppercase;
  }

  /* --- section_ttl --- */
  .section_ttl {
    font-size: 400%;
    line-height: 1.15;
    letter-spacing: .15em;
    font-family: 'din-2014', sans-serif;
    font-weight: 800;
  }
  .section_ttl-en {
    font-size: 150%;
    line-height: 1.3;
    letter-spacing: .15em;
    font-family: 'din-2014', sans-serif;
    z-index: 3;
  }
  .section_catch {
    position: relative;
    margin-bottom: 100px;
    font-size: 200%;
    line-height: 1.5;
    letter-spacing: .15em;
  }
  .section_catch::after {
    content: "";
    position: absolute;
    bottom: -48px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3236e8;
  }

  /* --- heading --- */
  .heading-1,
  .heading-2,
  .heading-3 {
    letter-spacing: .09em;
  }
  .heading-1 {
    font-size: 200%;
    line-height: 1.18;
  }
  .heading-2 {
    font-size: 160%;
    line-height: 1.5;
  }
  .heading-3 {
    padding-left: 12px;
    border-left: 8px solid;
    font-size: 120%;
    line-height: 1.45;
  }
  @media only screen and (max-width: 768px) {
    .section_ttl {
      font-size: 10vw;
      line-height: 1.1;
    }
    .section_catch {
      margin-bottom: 48px;
      font-size: 164%;
    }
    .section_catch::after {
      bottom: -24px;
    }

    .page_ttl {
      height: 194px;
      margin-top: 65px;
      background-attachment: scroll;
      background-size: cover;
    }
    .page_ttl-jp {
      font-size: 200%;
      line-height: 1.7;
      letter-spacing: .1em;
    }
    .page_ttl-en {
      font-size: 94%;
      letter-spacing: .08em;
    }

    .heading-1 {
      font-size: 172%;
      line-height: 1.5;
    }
    .heading-2 {
      font-size: 150%;
    }
  }

/* txt
**************************************** */
  .txt-sm {
    font-size: 88%;
    line-height: 1.7;
  }
  .txt-lg {
    font-size: 114%;
    line-height: 1.7;
  }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-attention {
    font-size: 88%;
    color: #999;
  }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1em; }
  .strong {
    color: #3236e8;
  }
  .txt-link {
    text-decoration: underline;
    color: #3236e8;
  }
  .txt-link:hover {
    text-decoration: none;
    color: #1d2088;
  }

/* table & list
**************************************** */
  table { width: 100%; }

  /* --- table_default --- */
  .table_default th,
  .table_default td {
    padding: 16px 8px;
  }
  .table_default th {
    min-width: 165px;
    border-bottom: 2px solid #1D2088;
    color: #1D2088;
  }
  .table_default td {
    padding: 16px 60px;
    border-bottom: 1px solid #1D2088;
    border-left: 4px solid rgba(255,255,255,.01);
  }
  @media only screen and (max-width: 768px) {
    .table_default th,
    .table_default td {
      display: block;
      width: 100%;
      padding: 8px 0 14px;
      border-bottom: none;
    }
    .table_default th {
      padding: 8px 12px;
      background-color: #4244a5;
      color: #fff;
    }
  }

  /* --- table_line --- */
  .table_line th,
  .table_line td {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .table_line th {
    background-color: #1D2088;
    border: 1px solid #D2D2D2;
    color: #fff;
    font-size: 107%;
  }
  .table_line td {
    border: 1px solid #D2D2D2;
    font-size: 93%;
  }

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 16px; }
  .list li {
    position: relative;
    padding-left: 1.4em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .75em;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #1D2088;
  }
  /* 数字付きリスト */
  .list-num {
    padding-left: 1.4em;
    list-style-type: decimal;
  }
  .list-num li { padding-left: 0; }
  .list-num li::before { display: none; }
  /* 白丸付きリスト */
  .list-circle li::before {
    border: 1px solid #1D2088;
    background-color: transparent;
  }
  /* 四角付きリスト */
  .list-square li::before {
    border-radius: 0;
    background-color: #1D2088;
  }
  /* 入れ子のスタイル */
  .list li ul { margin-top: 16px; }
  .list li ul li::before {
    width: 6px;
    height: 6px;
    top: .8em;
  }

  /* --- dlリスト --- */
  .list-dl {
    position: relative;
    border-top: 1px solid #BFBFBF;
  }
  .list-dl dt {
    position: absolute;
    padding-top: 16px;
    color: #1D2088;
    font-weight: 700;
  }
  .list-dl dd {
    padding-left: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #BFBFBF;
  }

  @media only screen and (max-width: 768px) {
    .list li { padding-left: 1.2em; }
    .list-disc li::before,
    .list-square li::before,
    .list-circle li::before {
      top: .65em;
      width: 8px;
      height: 8px;
    }
  }

/* btn
**************************************** */
  .btn {
    position: relative;
    display: inline-block;
    font-size: 151%;
    letter-spacing: .15em;
    line-height: 1.3;
    color: #3136E8;
    font-family: 'din-2014', sans-serif;
  }
  .btn::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    margin-left: 8px;
    transform: skewX(40deg);
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .btn:hover::after {
    width: 48px;
  }
  .btn:hover {
    color: #1D2088;
  }
  .btn-jp {
    display: inline-block;
    padding: 20px 75px;
    background-color: #3136E8;
    font-size: 94%;
    line-height: 2;
    letter-spacing: .075em;
    color: #fff;
  }
  .btn-jp:hover {
    background-color: #1D2088;
  }

/* color
**************************************** */
  .color-white { color: #eee; }
  .color-navy { color: #1d2088; }
  .color-blue { color: #3136e8; }

/* font
**************************************** */
  .font-en {
    font-family: 'din-2014', sans-serif;
  }

/* animetion
**************************************** */
  .fade > * {
    opacity: 0;
    transform: scale(.95);
    -webkit-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .6s cubic-bezier(.78, .2, .32, .91);
    transition: .6s cubic-bezier(.78, .2, .32, .91);
  }
  .fade.active > * {
    opacity: 1;
    transform: scale(1);
  }


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

    HEADER

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

  .header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 216px;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 999;
  }
  .header--logo {
    margin: 4vh 0;
    text-align: center;
  }

  .gnav--list {
    border-top: 1px solid #222222;
  }
  .gnav--list a,
  .gnav--list span.parent {
    display: block;
  }
  .gnav--list .parent {
    position: relative;
    padding: 1.58vh 40px;
    border-bottom: 1px solid #222222;
  }
  .gnav--list .parent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #1D2088;
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .gnav--list li:hover .parent::before,
  .gnav--list .parent:hover::before {
    width: 100%;
  }
  .gnav--list .parent strong,
  .gnav--list .parent small {
    position: relative;
    display: block;
    letter-spacing: .15em;
    line-height: 1.65;
    z-index: 1;
  }
  .gnav--list .parent strong {
    font-size: 2.3vh;
    color: #eee;
  }
  .gnav--list .parent small {
    font-size: 82%;
    color: #4F679E;
  }
  .gnav--list .open { display: none; }
  .gnav--child {
    position: absolute;
    top: 0;
    left: 100%;
    width: 70%;
    height: 100%;
    background-color: rgba(29, 32, 136, .9);
    display: flex;
    align-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .gnav--list li:hover .gnav--child {
    opacity: 1;
    width: 100%;
    pointer-events: auto;
  }
  .gnav--child ul {
    width: 216px;
  }
  .gnav--child li:not(:last-child) {
    margin-bottom: 12px;
  }
  .gnav--child a {
    color: #eee;
  }
  .gnav--child a:hover {
    opacity: .7;
  }
  .gnav--grandchild li {
    margin-top: 2px;
    margin-bottom: 0 !important;
    padding-left: 8px;
  }
  .gnav--grandchild li a::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 2px;
    background-color: #fff;
    vertical-align: middle;
  }
  .gnav .qoncut {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .gnav .qoncut a {
    display: block;
    position: relative;
    background-color: #3136E8;
    overflow: hidden;
    padding: 16px 14px 4px 0;
    text-align: center;
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .gnav .qoncut a::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -88px;
    width: 40px;
    height: 155px;
    background: rgba(255,255,255,.5);
    opacity: .8;
    z-index: 0;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .gnav .qoncut a:hover {
    background: #8286F8;
  }
  .gnav .qoncut a:hover::before {
    left: 120%;
  }
  .gnav .qoncut img { position: relative; }

  @media only screen and (max-height: 730px) {
    .header--logo { margin: 2vh 0; }
    .header--logo img { max-width: 55%; }
    .gnav .qoncut img { max-width: 80%; }
  }
  @media only screen and (max-width: 768px) {
    .header {
      width: 100%;
      height: 65px;
      background-color: #1d2088;
    }
    .header--logo {
      display: inline;
      margin: 0;
    }
    .header--logo img {
      max-width: none;
      width: auto;
      height: 100%;
    }
    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: calc(100% - 65px);
      margin-top: 65px;
      padding-bottom: 24px;
      background-color: #0a0a0a;
      opacity: 0;
      pointer-events: none;
      transition: .4s ease-out;
      transform: translateY(-100%);
      overflow-x: hidden;
      overflow-y: scroll;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }
    .gnav_btn {
      position: fixed;
      top: 0;
      right: 0;
      width: 65px;
      height: 65px;
      background-color: #0a0a0a;
      z-index: 9999;
    }
    .gnav_btn--lines {
      position: relative;
      width: 34px;
      height: 26px;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #fff;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: 12px;
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(12px) rotate(-45deg);
      transform: translateY(12px) rotate(-45deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-11px) rotate(45deg);
      transform: translateY(-11px) rotate(45deg);
    }

    .gnav--list li {
      position: relative;
    }
    .gnav--list .parent {
      padding: 14px 24px;
    }
    .gnav--list .parent strong {
      font-size: 120%;
    }
    .gnav--list .parent small {
      font-size: 94%;
    }
    .gnav--list .parent::before {
      display: none;
    }
    .gnav--list .open {
      position: absolute;
      top: 17px;
      right: 13px;
      display: inline-block;
      width: 40px;
      height: 40px;
      background-color: #1d2088;
      border-radius: 2px;
      z-index: 1;
    }
    .gnav--list .open::before,
    .gnav--list .open::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      width: 50%;
      height: 2px;
      background-color: rgba(255,255,255,.7);
      -webkit-transition: all .2s ease-out;
      -moz-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out;
    }
    .gnav--list .open::after {
      transform: rotate(90deg);
    }
    .gnav--list .open.close::after {
      transform: rotate(0);
    }
    .gnav--child {
      display: none;
      position: static;
      width: 100%;
      opacity: 1;
      padding: 8px 24px 16px;
      -webkit-transition: all .4s ease-out;
      -moz-transition: all .4s ease-out;
      -o-transition: all .4s ease-out;
      transition: all .4s ease-out;
    }
    .gnav--child ul {
      width: 100%;
    }
    .gnav--child li:not(:last-child) {
      margin-top: 6px;
      margin-bottom: 0;
    }
    .gnav--grandchild {
      margin-bottom: 12px;
      padding-left: 8px;
    }
    .gnav--grandchild li a::before {
      content: "";
      display: inline-block;
      width: 12px;
      height: 2px;
      background-color: #fff;
      vertical-align: middle;
    }
    .gnav .qoncut {
      position: static;
      width: 90%;
      margin: 18px auto 0;
    }
  }


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

    FOOTER

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

  #contact {
    position: relative;
    background-color: #000;
  }
  #contact::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 360px);
    height: 100%;
    background-image: url(../images/common/pt-light02.png);
  }
  .contact--bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 360px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../images/common/contact_bg.jpg);
  }
  #contact .inner {
    position: relative;
    z-index: 1;
  }
  #contact .section_ttl {
    margin-right: 88px;
    line-height: 1;
  }
  #contact .txt p:not(.tel) {
    font-size: 94%;
    line-height: 1.6;
    letter-spacing: .070em;
  }
  #contact .txt .tel a {
    font-size: 150%;
    line-height: 1.3;
    letter-spacing: .09em;
  }
  .contact--form {
    padding: 60px 0;
    background-color: #fff;
  }
  .map {
    position: relative;
    height: 440px;
    background-color: #aaa;
  }
  .map iframe {
    width: 100%;
    height: 100%;
  }
  .map--ttl {
    position: absolute;
    top: 0;
    left: 3%;
    bottom: 0;
    height: 102px;
    margin: auto;
    z-index: 10;
  }
  .footer {
    background-image: url(../images/common/pt-dark01.png);
    padding: 60px 0;
  }
  .footer--nav {
    margin-bottom: 18px;
    justify-content: flex-end;
  }
  .footer--nav li {
    padding-right: 14px;
    margin-right: 14px;
    border-right: 2px solid #666;
    line-height: 1;
  }
  .footer--nav li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .footer--nav a {
    color: #fff;
  }
  .footer--nav a:hover {
    opacity: .7;
  }
  .footer--copyright {
    text-align: right;
    color: #666;
  }

  @media only screen and (max-width: 1175px) {
    .contact--bg {
      width: 220px;
    }
    #contact::before {
      width: calc(100% - 220px);
    }
    #contact .flex {
      display: block;
    }
    #contact .section_ttl {
      margin-right: 0;
      margin-bottom: 18px;
      text-align: center;
    }
    #contact .txt {
      text-align: center;
    }
  }
  @media only screen and (max-width: 768px) {
    .contact--bg { display: none; }
    #contact::before { width: 100%; }
    #contact .inner {
      width: 98%;
    }
    #contact .txt {
      width: 86%;
      margin: 0 auto;
      text-align: center;
    }
    .contact--form {
      padding: 12px 0 28px;
    }
    .map {
      height: 300px;
    }
    .footer { padding: 20px 0; }
    .footer--nav { display: none; }
    .footer--copyright { text-align: center; }
  }


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

    INDEX

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

  .hero {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100vh;
    padding: 6% 5%;
    background-color: #000;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../video/pt_video.png);
    z-index: 1;
  }
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .hero .bx-wrapper {
    position: absolute !important;
    left: 5%;
    bottom: 7%;
    width: 100%;
    z-index: 100;
    display: flex !important;
  }
  .hero--slider {
    height: 186px;
  }
  .hero--ttl {
    opacity: 1;
    display: flex !important;
    align-items: center;
    top: 0;
    bottom: 0;
    margin: auto;
    height: auto !important;
    font-size: 250%;
    line-height: 1.56;
    letter-spacing: .15em;
    color: #fff;
    -webkit-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .6s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .6s cubic-bezier(.78, .2, .32, .91);
    transition: .6s cubic-bezier(.78, .2, .32, .91);
  }
  .hero--ttl:not(.active-slide) {
    opacity: 0;
  }
  .hero--ttl p {
    font-size: 125%;
    line-height: 1.9;
    letter-spacing: .15em;
  }
  .hero--ttl .scroll {
    position: absolute;
    top: 0;
    left: -140px;
  }

  .home_message,
  .home_recruit {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    overflow: hidden;
  }
  .home_message::after,
  .home_recruit::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0;
    background-image: url(../images/home_message_bg.jpg);
  }
  .home_recruit::after {
    background-image: url(../images/home_recruit_bg.jpg);
  }
  .home_message.active::after,
  .home_recruit.active::after {
    transition-delay: 6s;
    -webkit-animation: bgposition .6s cubic-bezier(.78, .2, .32, .91) forwards;
    animation: bgposition .6s cubic-bezier(.78, .2, .32, .91) forwards;
  }
  .home_recruit .section_ttl,
  .home_company .section_ttl {
    line-height: .75;
  }
  .home_recruit .section_ttl small,
  .home_company .section_ttl small {
    font-size: 44%;
  }
  .home_company {
    border-bottom: 1px solid;
  }
  .home_company::after {
    background-image: url(../images/home_company_bg.jpg);
  }
  .home_message .home_message--inner {
    position: relative;
    max-width: 880px;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 85%;
    margin: 0 auto;
    z-index: 1;
  }
  .home_message .deco_txt {
    position: absolute;
    top: 0;
    left: 0;
  }
  .home_message .section_catch,
  .home_message p {
    padding-left: 138px;
    font-size: 150%;
    line-height: 2;
    letter-spacing: .15em;
  }
  .home_message .section_catch {
    margin-bottom: 16px;
  }
  .home_recruit .section_catch {
    margin-bottom: 40px;
  }
  .home_message .section_catch::after,
  .home_recruit .section_catch::after {
    display: none;
  }

  .home_feature,
  .home_feature .flex-txt-img {
    position: relative;
  }
  .home_feature::before {
    content: "";
    display: block;
    width: 4px;
    height: 200px;
    background: #3136e8;
    position: absolute;
    top: -160px;
    right: 80px;
    z-index: 10;
    -webkit-animation: yajirushi 2s cubic-bezier(.78, .2, .32, .91) infinite;
    animation: yajirushi 2s cubic-bezier(.78, .2, .32, .91) infinite;
  }
  .home_feature .home_feature--ttl {
    position: absolute;
    width: 48%;
    z-index: 10;
    top: 56px;
  }
  .home_feature .home_feature--ttl01 {
    left: 50%;
    margin-left: -88px;
  }
  .home_feature .home_feature--ttl02 {
    right: 50%;
    margin-right: -88px;
  }
  .home_feature .flex-txt-img:nth-of-type(1) .img {
    background-image: url(../images/home_feature_img3.jpg);
  }
  .home_feature .flex-txt-img:nth-of-type(2) .img {
    background-image: url(../images/home_feature_img2.jpg);
  }
  .home_feature .flex-txt-img:nth-of-type(3) .img {
    background-image: url(../images/home_feature_img1.jpg);
  }
  .home_feature .flex-txt-img:nth-of-type(4) .img {
    background-image: url(../images/home_feature_img4.jpg);
  }

  .home_recruit .txt {
    position: relative;
    z-index: 1;
  }
  .home_recruit .btn {
    color: #fff;
    background-color: #3136e8;
    padding: 12px 18px 10px 38px;
  }
  .home_recruit .btn:hover {
    background-color: #1D2088;
  }
  .home_recruit .btn::after {
    margin-right: -26px;
  }
  .home_news .section_ttl {
    font-size: 150%;
  }
  @media only screen and (max-width: 1540px) {
    .home_news .post .post--img {
      width: 140px;
      height: 140px;
      margin-right: 16px;
    }
    .home_news .post .post--txt {
      width: calc(100% - 156px);
    }
  }
  @media only screen and (max-width: 1420px) {
    .home_news .inner {
      max-width: 720px;
      width: 80%;
    }
    .home_news .posts-home_news {
      display: block;
    }
    .home_news .posts-home_news > * {
      width: 100%;
      margin-right: 0;
      padding-left: 24px;
      padding-right: 24px;
    }
    .home_news .posts-home_news > *:not(:last-child) {
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid #eee;
    }
  }
  @media only screen and (max-width: 1250px) {
    .home_feature::before {
      display: none;
    }
    .home_feature .home_feature--ttl {
      top: -5px;
    }
    .home_feature .home_feature--ttl01 {
      left: auto;
      right: 0;
      margin-left: 0;
    }
    .home_feature .home_feature--ttl02 {
      left: 0;
      right: auto;
      margin-right: 0;
    }
  }
  @media only screen and (max-width: 1080px) {
    .home_message,
    .home_recruit {
      min-height: auto;
    }
    .home_message::after,
    .home_recruit::after {
      background-attachment: scroll;
    }
  }
  @media only screen and (max-width: 768px) {
    .hero {
      margin-top: 65px;
      height: 80vh;
    }
    .hero .bx-wrapper { bottom: 5%; }
    .hero--slider { width: 89% !important; }
    .hero--ttl {
      width: 100% !important;
      font-size: 156%;
    }
    .hero video { left: -60%; }

    .home_message,
    .home_recruit {
      padding: 60px 0;
      height: auto;
      min-height: auto;
    }
    .home_message::after,
    .home_recruit::after {
      background-position: center right 30%;
      background-attachment: scroll;
    }

    .home_message::before {
      top: -40px;
      right: 18px;
    }
    .home_message .home_message--inner {
      width: 90%;
      padding-top: 0;
      padding-bottom: 0;
    }
    .home_message .section_catch,
    .home_message p {
      padding-left: 0;
      font-size: 108%;
      line-height: 1.8;
    }

    .home_feature .home_feature--ttl01,
    .home_feature .home_feature--ttl02 {
      width: 60%;
      top: -8px;
      left: auto;
      right: 0;
      text-align: right;
      margin-left: 0;
      margin-right: 0;
    }

    .home_recruit .section_catch {
      margin-bottom: 24px;
    }
    .home_news .posts-home_news {
      margin-bottom: 34px;
    }
    .home_news .post .post--img {
      width: 80px;
      height: 80px;
    }
    .home_news .posts-home_news > * {
      padding-left: 0;
      padding-right: 0;
    }
    .home_recruit .btn::before {
      bottom: 17px;
    }
    .home_recruit .btn {
      margin-top: 24px;
    }

  }


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

    PAGE
    ―会社概要（company）
    ―機械刃物事業（service）
    ―自社製品（product）
    ―採用情報（recruit）
    ―募集要項（bosyu）
    ―先輩社員の声（interview）
    ―サイトマップ（sitemap）

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

/* 会社概要（company）
*************************************************** */
  .company_about {
    padding-top: 80px;
  }
  .company_about--intro .txt {
    margin-right: 80px;
  }
  .company_about .box .img {
    width: 200px;
  }
  .company_about .box .img.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    border: 1px solid #ddd;
    padding: 16px;
  }
  .company_about .box .txt {
    flex: 1;
    margin-left: 40px;
  }
  .company_outline .table_default th,
  .company_history .table_default th {
    width: 200px;
  }
  .company_history {
    background-size: cover;
    background-position: center;
    background-image: url(../images/company/company_history_bg.jpg);
  }
  .company_history--inner {
    background-color: rgba(255,255,255,.9);
    padding: 20px 40px 40px;
  }
  .company_history .table_default td {
    border-left: 4px solid rgba(255, 255, 255, .01);
  }

  @media only screen and (max-width: 768px) {
    .company_about .box .flex {
      display: block;
    }
    .company_about .box .txt {
      margin-left: 0;
    }
    .company_about .box .img {
      width: 100%;
      height: 150px;
      margin: 0 auto 20px;
      text-align: center;
      background-color: #cdbdad;
    }
    .company_about .box .img.logo {
      height: 150px;
      background-color: #fff;
    }
    .company_about .box .img img {
      max-width: auto;
      width: auto;
      height: 100%;
    }
    .company_outline .table_default th,
    .company_history .table_default th {
      width: 100%;
    }
    .company_history--inner {
      padding: 20px;
    }
  }

/* 機械刃物事業（service）
*************************************************** */
  .service_about--intro {
    margin-top: 80px;
    margin-bottom: 28px;
    font-size: 120%;
    line-height: 1.8;
  }
  .service_about_col .txtarea {
    width: 52%;
    padding: 40px 4% 40px 9%;
  }
  .service_about_col.flex-reverse .txtarea {
    padding: 40px 9% 40px 4%;
  }
  .service_about_col .img {
    width: 60%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
  }
  .service_about .section_catch { margin-bottom: 80px; }
  .service_about .section_catch::after { bottom: -40px; }
  .service_about .box {
    padding: 18px 28px 22px;
    border: 1px solid;
    border-radius: 0;
  }
  .service_about .list-disc li {
    margin-bottom: 2px;
    font-size: 94%;
  }
  .service_about .list-disc li::before { top: .6em; }
  #service_about1 .img {
    background-image: url(../images/service/service_about1.jpg);
  }
  #service_about2 .img {
    background-image: url(../images/service/service_about2.jpg);
  }
  #service_about3 .img {
    background-image: url(../images/service/service_about3.jpg);
  }
  #service_about4 .img {
    background-image: url(../images/service/service_about4.jpg);
  }

  .service_case--list > * {
    width: 49%;
    margin-bottom: 32px;
    border: 1px solid;
    background-color: #fff;
  }
  .service_case--list .txt {
    width: 55%;
    padding: 34px 18px;
  }
  .service_case--list .img {
    position: relative;
    width: 45%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 18px 12px;
    background-position: top 20% center;
    background-color: #f1f5e7;
    background-repeat: no-repeat;
  }
  .service_case--list li:nth-child(1) .img {
    background-image: url(../images/service/case1.jpg);
  }
  .service_case--list li:nth-child(2) .img {
    background-image: url(../images/service/case2.jpg);
  }
  .service_case--list li:nth-child(3) .img {
    background-image: url(../images/service/case3.jpg);
  }
  .service_case--list li:nth-child(4) .img {
    background-image: url(../images/service/case4.jpg);
  }
  .service_case--list .img .heading-2 {
    position: absolute;
    top: 18px;
    left: -14px;
    padding-right: 18px;
    line-height: 1.3;
    letter-spacing: .04em;
  }
  .service_case--list .img .heading-2 strong {
    font-size: 108%;
    color: #3136e8;
  }
  .service_case--list .img p {
    line-height: 1.5;
    text-align: right;
  }
  .case_table th,
  .case_table td {
    display: block;
  }
  .case_table th {
    text-align: left;
  }
  .case_table th span {
    background-color: #3136e8;
    border-radius: 18px;
    padding: 0 24px;
    color: #fff;
    font-size: 94%;
  }
  .case_table td {
    line-height: 1.4;
    padding-bottom: 16px;
  }
  .case_table tr:last-of-type td {
    padding-bottom: 0;
  }

  .service_qoncut {
    position: relative;
    overflow: hidden;
    padding: 64px 0 88px;
    background-color: #1d2088;
    color: #fff;
    text-align: center;
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .service_qoncut:hover {
    background-color: #3136E8;
  }
  .service_qoncut a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .service_qoncut a::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -360px;
    width: 180px;
    height: 170%;
    background: rgba(255,255,255,.25);
    opacity: .8;
    z-index: 0;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .service_qoncut a:hover::before {
    left: 120%;
  }
  .service_qoncut p {
    font-size: 224%;
    letter-spacing: .1em;
    opacity: .9;
  }
  .service_qoncut p img {
    vertical-align: baseline;
    display: inline-block;
    margin-bottom: -2px;
  }

  .service_flow {
    position: relative;
    padding-bottom: 200px;
  }
  .service_flow--step {
    position: relative;
  }
  .service_flow--step::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 99.3%;
    height: 40px;
    display: block;
    text-align: center;
    border: 2px solid #1d2088;
    border-top: none;
  }
  .step_ttl {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 320px;
    bottom: -83px;
    font-size: 158%;
    color: #1d2088;
    background-color: #fff;
    text-align: center;
  }
  .service_flow--step .step {
    width: 62.5%;
    padding: 0 40px 40px;
    border: 2px solid #aaa;
  }
  .service_flow--step .step:first-child {
    width: 36%;
    margin-right: 8px;
  }
  .service_flow--step .step h4 {
    margin-top: -24px;
    margin-bottom: 28px;
    margin-left: -13px;
    font-size: 158%;
  }
  .service_flow--step .step h4 span {
    background-color: #fff;
    padding: 8px;
    color: #1d2088;
  }
  .service_flow--step .flow {
    display: flex;
  }
  .service_flow--step .flow li {
    position: relative;
    counter-increment: title;
  }
  .service_flow--step .flow li:not(:last-child) {
    margin-right: 50px;
  }
  .service_flow--step .flow li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 24px;
    right: -38px;
    margin: auto;
    width: 29px;
    height: 2px;
    background-color: #aaa;
  }
  .service_flow--step .flow li img { width: 91%; }

  @media only screen and (max-width: 1500px) {
    .service_case--list > * { width: 100%; }
  }
  @media only screen and (max-width: 1250px) {
    .service_about_col {
      flex-direction: column;
      padding-top: 0;
    }
    .service_about_col:last-of-type {
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .service_about_col .txtarea,
    .service_about_col .img {
      width: 100%;
    }
    .service_about_col .txtarea {
      padding: 40px 5% 60px 5%;
    }
    .service_about_col.flex-reverse .txtarea {
      padding: 0 5% 60px 5%;
    }
    .service_about_col .img {
      min-height: 490px;
    }
    .service_flow {
      padding-bottom: 100px;
    }
    .service_flow--step .flow {
      display: block;
    }
    .service_flow--step .step {
      padding: 0 24px 24px;
      border: 2px solid #aaa;
      width: 100%;
    }
    .service_flow--step .step:first-child {
      width: 100%;
      margin-right: 0;
      margin-bottom: 34px;
    }
    .service_flow--step .step h4 {
      margin-top: -28px;
      margin-bottom: 15px;
      margin-left: -13px;
      font-size: 184%;
    }
    .service_flow--step .flow li {
      font-size: 120%;
    }
    .service_flow--step .flow li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 4px;
    }
    .service_flow--step .flow li::before,
    .service_flow--step .flow li:not(:last-child)::before {
      content: "";
      position: static;
      display: inline-block;
      width: 8px;
      height: 8px;
      background-color: #1d2088;
      transform: translateY(-2px);
    }
    .service_flow--step .flow li img.sp-none { display: none; }
    .service_flow--step .flow li span.pc-none-inline { display: inline; }
    .service_flow--step::before {
      display: none;
    }
    .step_ttl {
      position: static;
      width: 100%;
      font-size: 150%;
      color: #fff;
      background-color: #1d2088;
      margin-top: 30px;
      padding: 14px 10px;
    }
  }
  @media only screen and (max-width: 768px) {
    .service_about--intro {
      margin-top: 50px;
      margin-bottom: 18px;
    }
    .service_about--intro .txt-ctr {
      text-align: left;
    }
    .company_about--intro .txt {
      margin-right: 0;
    }
    .service_about--intro p br {
      display: none;
    }
    .company_about--intro .img {
      overflow: hidden;
      height: 210px;
      margin-top: 24px;
      background-color: #e8e7e5;
      text-align: center;
    }
    .company_about--intro .img img {
      width: auto;
      height: 100%;
    }
    .service_about_col .img {
      min-height: 240px;
    }

    .service_about .section_catch {
      margin-bottom: 48px;
    }
    .service_about .section_catch::after {
      bottom: -24px;
    }
    .service_case--list > * {
      width: 100%;
      flex-direction: column-reverse;
    }
    .service_case--list .txt {
      padding: 18px 24px;
    }
    .service_case--list .txt,
    .service_case--list .img {
      width: 100%;
    }
    .service_case--list .img {
      height: 248px;
      padding: 0 14px 8px;
      background-position: center;
    }
    .service_case--list li:nth-child(1) .img { background-image: url(../images/service/case1_sp.jpg); }
    .service_case--list li:nth-child(2) .img { background-image: url(../images/service/case2_sp.jpg); }
    .service_case--list li:nth-child(3) .img { background-image: url(../images/service/case3_sp.jpg); }
    .service_case--list li:nth-child(4) .img { background-image: url(../images/service/case4_sp.jpg); }
    .service_case--list .img p {
      line-height: 1.35;
    }
    .service_case--list .img .heading-2 {
      position: absolute;
      top: 13px;
      left: 14px;
    }
    .service_case--list .img p {
      text-align: left;
    }
    .service_qoncut {
      padding: 50px 0 60px;
    }
    .service_qoncut p {
      font-size: 3.8vw;
      margin-bottom: 14px;
    }
    .service_qoncut p img {
      width: 14px;
      height: 14px;
    }

    .service_flow {
      padding-bottom: 70px;
    }
    .service_flow--step .step:first-child {
      width: 100%;
      margin-right: 0;
      margin-bottom: 24px;
    }
    .service_flow--step .step h4 {
      margin-top: -16px;
      margin-bottom: 15px;
      margin-left: -13px;
      font-size: 134%;
    }

  }

/* 自社製品（product）
*************************************************** */
  .product_item li.flex:not(:last-child) {
    margin-bottom: 58px;
  }
  .product_item .txt {
    flex: 1;
    margin-right: 40px;
  }
  .product_item .txt .heading-3 {
    font-size: 148%;
  }
  .product_item table th,
  .product_item table td {
    padding: 16px 18px;
  }
  .product_item table th {
    min-width: 108px;
  }

  @media only screen and (max-width: 1220px) {
    .product_item li.flex {
      display: block;
    }
    .product_item .txt {
      margin-right: 0;
    }
    .product_item li .img {
      display: flex;
      justify-content: space-between;
      margin-top: 34px;
      width: 100%;
    }
    .product_item li .img > * {
      width: 49%;
    }
  }
  @media only screen and (max-width: 768px) {
    .product_item li .img {
      flex-wrap: wrap;
    }
    .product_item li .img > * {
      width: 100%;
    }
    .product_item table {
      margin-top: 20px;
    }
    .product_item table th,
    .product_item table td {
      padding: 8px;
    }
  }

/* 採用情報（recruit）
*************************************************** */
  .recruit_contents--img {
    background-image: url(../images/recruit/recruit_contents_img1.jpg);
    height: 400px;
    background-position: center;
  }
  .recruit_contents--img.v2 {
    background-image: url(../images/recruit/recruit_contents_img2.jpg);
  }
  .recruit_contents .list li {
    margin-bottom: 6px;
  }
  .recruit_contents .thought .txt {
    flex: 1;
    margin-left: 40px;
  }

  .recruit_flow--step {
    padding-left: 34px;
  }
  .recruit_flow--step .step {
    position: relative;
  }
  .recruit_flow--step .step:not(:last-child) {
    margin-bottom: 38px;
  }
  .recruit_flow--step .step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 26px;
    left: -27px;
    width: 2px;
    height: calc(100% + 38px);
    background-color: #1d2088;
  }
  .recruit_flow--step .heading-2 {
    text-indent: -1.3em;
    margin-bottom: 8px;
  }
  .recruit_flow--step .heading-2::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #1d2088;
    vertical-align: initial;
    line-height: 1;
    margin-right: 15px;
    margin-bottom: 2px;
  }
  .recruit_flow--step .process {
    display: flex;
    flex-wrap: wrap;
  }
  .recruit_flow--step .process li {
    border: 1px solid #888;
    width: calc(100%/4 - (8px*3/4));
    margin-bottom: 8px;
    margin-right: 8px;
    padding: 16px 12px;
    line-height: 1.45;
    display: flex;
    align-items: center;
  }
  .recruit_flow--step .process li:nth-child(4n) {
    margin-right: 0;
  }

  .recruit_bosyu {
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-image: url(../images/recruit/recruit_bosyu_bg.jpg);
  }
  .recruit_bosyu .inner {
    width: 85%;
  }
  .recruit_bosyu .bx-wrapper {
    position: relative;
    margin-bottom: 40px;
  }
  .recruit_bosyu .bx-prev,
  .recruit_bosyu .bx-next {
    position: absolute;
    top: 40%;
    font-size: 0;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .recruit_bosyu .bx-prev {
    left: -5%;
    transform: rotate(135deg);
  }
  .recruit_bosyu .bx-next {
    right: -5%;
    transform: rotate(-45deg);
  }
  #bosyu_slider_pager {
    display: flex !important;
    justify-content: center;
  }
  #bosyu_slider_pager li {
    margin: 0 6px;
  }
  #bosyu_slider_pager li a {
    display: block;
    padding: 12px 56px;
    background-color: rgba(255,255,255,.75);
    border-radius: 28px;
  }
  #bosyu_slider_pager li a:hover {
    background-color: rgba(255,255,255,.85);
  }
  #bosyu_slider_pager li a.active {
    background-color: rgba(255,255,255,1);
  }
  .recruit_bosyu--posts {
    display: flex;
  }
  .bosyu_post {
    position: relative;
    display: flex !important;
    min-height: 510px;
    background-image: url(../images/common/pt-light01.png);
    border-radius: 6px !important;
  }
  .bosyu_post .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    border-radius: 6px;
  }
  .bosyu_post .link:hover {
    background-color: rgba(0,0,0,.35);
  }
  .bosyu_post .img {
    width: 40%;
    border-radius: 6px 0 0 6px;
    background-position: center;
    background-size: cover;
  }
  .bosyu_post .txt {
    width: 60%;
    padding: 50px;
  }
  .bosyu_post .txt table th,
  .bosyu_post .txt table td {
    padding: 6px 0;
  }
  .bosyu_post .txt table th {
    width: 120px;
    text-align: left;
  }
  .bosyu_post .txt table .sp-none {
    display: table-row;
  }

  .recruit_interview {
    display: flex;
    align-items: center;
    height: 740px;
    background-position: bottom left 40%;
    background-image: url(../images/recruit/recruit_interview_bg.jpg);
  }
  .recruit_interview .txt {
    width: 430px;
  }

  .recruit_faq--nav li {
    background-color: rgba(255,255,255,.75);
    cursor: pointer;
    padding: 12px 56px;
    border-radius: 28px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    margin: 0 8px;
  }
  .recruit_faq--nav li:hover {
    background-color: rgba(255,255,255,.85);
  }
  .recruit_faq--nav li.select {
    background-color: rgba(255,255,255,1);
  }
  .recruit_faq--col dt {
    position: relative;
    background-color: #fbfbfb;
    font-size: 120%;
    border-radius: 8px;
    padding: 18px 82px 18px 32px;
    margin-top: 24px;
    cursor: pointer;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
  }
  .recruit_faq--col dt::before {
    content: "Q";
    margin-right: 28px;
    color: #3136e8;
    font-size: 209%;
    font-family: 'din-2014', sans-serif;
    vertical-align: middle;
    line-height: 1;
  }
  .recruit_faq--col dt::after {
    content: "";
    position: absolute;
    top: -7px;
    bottom: 0;
    right: 36px;
    margin: auto;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(-45deg) skew(5deg, 5deg);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }
  .recruit_faq--col dt.active {
    border-radius: 8px 8px 0 0;
  }
  .recruit_faq--col dt.active::after {
    top: 7px;
    transform: rotate(135deg) skew(5deg, 5deg);
  }
  .recruit_faq--col dd {
    display: none;
    background-color: #fff;
    padding: 26px 62px 38px;
    border-radius: 0 0 8px 8px;
  }

  .recruit_schedule a {
    text-decoration: underline;
    color: #3236e8;
  }

  @media only screen and (max-width: 1200px) {
    .bosyu_post {
      display: block !important;
    }
    .bosyu_post .txt {
      width: 100%;
    }
    .bosyu_post .img {
      width: 100%;
      height: 400px;
    }
  }
  @media only screen and (max-width: 768px) {
    .recruit_video .video {
      position: relative;
      padding-bottom: 56.26%;
    }
    .recruit_video .video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .recruit_contents--img {
      height: 200px;
      background-size: cover;
    }
    .recruit_flow--step .step:not(:last-child)::before {
      top: 20px;
      left: -27px;
    }
    .recruit_flow--step .heading-2::before {
      margin-left: -7px;
    }
    .recruit_flow--step .process li {
      width: calc(100%/2 - (8px*1/2));
      padding: 12px;
    }
    .recruit_flow--step .process li:nth-child(2n) {
      margin-right: 0;
    }
    .recruit_contents .thought .txt {
      margin-left: 0;
      margin-top: 24px;
    }

    #bosyu_slider_pager li a {
      padding: 12px 24px;
    }
    .recruit_bosyu .bx-prev,
    .recruit_bosyu .bx-next {
      display: none;
    }
    .bosyu_post .img {
      height: 210px;
      border-radius: 6px 6px 0 0;
    }
    .bosyu_post .txt {
      padding: 20px;
    }
    .bosyu_post .txt table th {
      width: 80px;
    }
    .bosyu_post .txt table .sp-none {
      display: none;
    }

    .recruit_interview {
      height: auto;
      padding-bottom: 170px;
      background-size: 100%;
      background-position: bottom -8% left;
      background-repeat: no-repeat;
      background-color: #f0efeb;
      background-image: url(../images/recruit/recruit_interview_bg_sp.jpg);
    }
    .recruit_interview .txt {
      width: 100%;
    }
    .recruit_interview .txt-block {
      text-align: right;
    }

    .recruit_faq--nav li {
      padding: 12px 8px;
      text-align: center;
      width: 100%;
      margin-top: 8px;
    }
    .recruit_faq--col dt {
      padding: 12px 34px 12px 43px;
      font-size: 108%;
      line-height: 1.5;
    }
    .recruit_faq--col dt::before {
      position: absolute;
      top: 9px;
      left: 12px;
      margin-right: 0;
      font-size: 190%;
    }
    .recruit_faq--col dt::after {
      right: 17px;
      width: 12px;
      height: 12px;
    }
    .recruit_faq--col dd {
      padding: 14px 16px 18px;
    }
    .recruit_faq--col dd br {
      display: none;
    }
  }

/* 募集要項一覧（bosyu）
*************************************************** */
  .post_bosyu {
    background-color: #fafafa;
  }
  .post_bosyu:not(:first-child) {
    border-top: 1px solid;
  }
  .post_bosyu:nth-child(even) {
    background-color: #f5f5f5;
  }
  .post_bosyu .img {
    width: 720px;
    height: 440px;
    margin: 0 auto 40px;
    background-size: cover;
    background-position: center;
  }

/* 募集要項詳細（bosyu）
*************************************************** */
  .bosyu_detail--inner {
    max-width: 840px;
    width: 90%;
    margin: 0 auto;
  }
  .bosyu_detail--inner .table_default th {
    min-width: 195px;
    text-align: left;
  }
  .bosyu_detail--inner .table_default td {
    padding: 16px 24px;
  }
  .bosyu_detail--inner .table_default td a {
    text-decoration: underline;
    color: #3236e8;
  }
  .bosyu_detail--inner .table_default td a:hover {
    opacity: .7;
  }

  @media only screen and (max-width: 768px) {
    .bosyu_detail--inner .table_default td {
      padding: 16px 12px;
    }
  }

/* 先輩社員の声（interview）
*************************************************** */
  .interview_nav {
    position: relative;
  }
  .interview_nav::after {
    content: "READ MORE";
    position: absolute;
    bottom: -10px;
    right: 32px;
    font-size: 180%;
    font-family: 'din-2014', sans-serif;
    color: #3136e8;
    line-height: 1;
    transform: rotate(-90deg);
  }
  .interview_nav::before {
    content: "";
    display: block;
    width: 4px;
    height: 200px;
    background: #3136e8;
    position: absolute;
    top: 80%;
    right: 80px;
    z-index: 10;
    -webkit-animation: yajirushi 2s cubic-bezier(.78, .2, .32, .91) infinite;
    animation: yajirushi 2s cubic-bezier(.78, .2, .32, .91) infinite;
  }
  .interview_nav li {
    counter-increment: title;
  }
  .interview_nav li::before {
    content: '0'counter(title);
    font-size: 218%;
    line-height: 1;
    font-family: 'din-2014', sans-serif;
    color: #3136e8;
  }
  .interview_nav li a {
    background-color: #fff;
    border: 1px solid #ddd;
  }
  .interview_nav li a:hover {
    opacity: .7;
  }
  .interview_nav .img {
    margin-right: 24px;
  }
  .interview_nav h3 > * {
    display: block;
  }
  .interview_nav h3 small {
    font-size: 94%;
    opacity: .7;
  }
  .interview_nav .name {
    font-size: 160%;
    text-indent: -.04em;
    line-height: 1.5;
  }

  /* --- インタビューパーツ --- */
    .interview_section--head {
      display: flex;
      align-items: center;
      height: 480px;
      background-position: center;
      background-image: url(http://placehold.it/1920x480);
    }
    #interview1 .interview_section--head {
      background-image: url(../images/interview/main_miyamoto.jpg);
    }
    #interview2 .interview_section--head {
      background-image: url(../images/interview/main_ogura.jpg);
    }
    #interview3 .interview_section--head {
      background-image: url(../images/interview/main_nagano.jpg);
    }
    #interview4 .interview_section--head {
      background-image: url(../images/interview/main_kitamura.jpg);
    }
    .interview_section--head h2 {
      margin-top: -18px;
      line-height: 1.45;
      font-size: 114%;
    }
    .interview_section--head h2 > * {
      display: block;
    }
    .interview_section--head h2 .num {
      font-size: 392%;
      font-family: 'din-2014', sans-serif;
      line-height: 1;
      letter-spacing: .01em;
      margin-bottom: 16px;
      text-indent: -.025em;
      color: #3736e8;
    }
    .interview_section--head h2 .name {
      font-size: 318%;
      margin-bottom: 9px;
      text-indent: -.04em;
    }
    .interview_section--head h2 small {
      font-size: 100%;
    }
    .interview_section--content .talk {
      padding-left: 1.8em;
    }
    .interview_section--content .talk dt {
      margin-bottom: 8px;
      font-size: 120%;
      text-indent: -1.5em;
      line-height: 1.5;
      color: #3136e8;
    }
    .interview_section--content .talk dt::before {
      content: "Q";
      margin-right: 8px;
      font-family: 'din-2014', sans-serif;
      font-size: 153%;
      vertical-align: text-top;
      line-height: 1;
      color: #3136e8;
    }
    .interview_section--content .talk dd {
      line-height: 1.65;
    }
    .interview_section--content .talk dd:not(:last-of-type) {
      margin-bottom: 24px;
    }

  @media only screen and (max-width: 1200px) {
    .interview_nav::before,
    .interview_nav::after {
      display: none;
    }
    .interview_section--head {
      background-position: center right 44%;
    }
    .interview_section--head h2 {
      width: 85%;
    }
  }
  @media only screen and (max-width: 768px) {
    .interview_nav li {
      width: 100%;
    }
    .interview_nav li a {
      padding: 8px;
    }
    .interview_nav .img {
      width: 112px;
      margin-right: 18px;
    }
    .interview_nav h3 small {
      line-height: 1.4;
    }
    .interview_section--head {
      height: 250px;
      background-position: center right 42%;
      background-size: auto 100%;
    }
    .interview_section--head h2 .num {
      font-size: 240%;
    }
    .interview_section--head h2 .name {
      font-size: 200%;
    }
    .interview_section--content .col {
      flex-wrap: wrap;
      flex-direction: column-reverse;
    }
    .interview_section--content .col .img,
    .interview_section--content .col .talk {
      width: 100%;
      margin-right: 0;
    }
    .interview_section--content .col .img {
      margin-bottom: 24px;
    }
  }

/* サイトマップ（sitemap）
*************************************************** */
  .sitemap--lists > * {
    width: 100%;
    margin-right: 0;
  }
  .sitemap--item {
    margin-bottom: 18px;
    font-size: 120%;
  }
  .sitemap--item a:hover {
    opacity: .7;
  }
  .sitemap--item-child {
    padding-left: 1em;
  }
  .sitemap--item-child span {
    font-size: 108%;
    display: inline-block;
    margin-bottom: 6px;
    color: #999;
  }
  .sitemap--item-child,
  .sitemap--item-taxonomy {
    margin-bottom: 2px;
    font-size: 100%;
  }
  .sitemap--item-child a::before,
  .sitemap--item-taxonomy a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 2px;
    margin-right: 6px;
    vertical-align: middle;
    background-color: #141617;
  }

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

    ARCHIVE
    ―新着情報（news）

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

  .wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: center;
  }
  .wp-pagenavi .pages { display: none; }
  .wp-pagenavi a,
  .wp-pagenavi .current {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: #1D2088;
    width: 48px;
    height: 48px;
    line-height: 46px;
    border-radius: 50%;
    margin: 0 3px 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    color: #fff;
  }
  .wp-pagenavi a:hover {
    background-color: #3136E8;
  }
  .wp-pagenavi .current {
    background-color: #DDDDDC;
    color: #1D2088;
  }

/* 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;
  }
  .post .post--txt {
    flex: 1;
  }
  .post .post--date {
    font-size: 80%;
    font-family: 'din-2014', sans-serif;
  }
  .post .post--ttl {
    line-height: 1.68;
    letter-spacing: .03em;
  }
  .post .post--img {
    position: relative;
    width: 160px;
    height: 160px;
    margin-right: 24px;
    border-radius: 50%;
    background-color: #1D2088;
    background-position: center;
    background-size: cover;
    overflow: hidden;
  }
  .post .post--img::before,
  .post .post--img::after {
    content: "";
    position: absolute;
    opacity: 0;
    -webkit-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -moz-transition: .3s cubic-bezier(.78, .2, .32, .91);
    -o-transition: .3s cubic-bezier(.78, .2, .32, .91);
    transition: .3s cubic-bezier(.78, .2, .32, .91);
  }
  .post .post--img::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    transform: scale(.5);
    border-radius: 50%;
  }
  .post .post--img::after {
    content: "READ MORE";
    top: 40%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: 'din-2014', sans-serif;
  }
  .post:not(.no-link):hover .post--img::before,
  .post:not(.no-link):hover .post--img::after {
    opacity: 1;
  }
  .post:not(.no-link):hover .post--img::before {
    transform: scale(1);
  }
  .post .post--img.no-img {
    background-image: url(../images/common/noimage.jpg);
  }
  .cat_list {
    position: relative;
    margin-bottom: 8px;
    z-index: 1;
    overflow: hidden;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 76%;
    background-color: #999;
    color: #f6f6f6;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 16px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  .cat_list a:hover {
    background-color: #1D2088;
  }

  @media screen and (max-width: 1200px) {
    .main_container {
      display: block;
    }
    .main_column {
      width: 100%;
      margin-right: 0;
    }
  }
  @media screen and (max-width: 768px) {
    .cat_list {
      margin-bottom: 0;
    }
    .post .post--img::after {
      font-size: 70%;
    }
  }

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    font-size: 140%;
    letter-spacing: .2em;
    line-height: 1;
    margin-bottom: 16px;
  }
  .side--ttl small {
    font-size: 62%;
    opacity: .5;
    letter-spacing: .15em;
    text-indent: .04em;
    display: block;
    line-height: 1;
    margin-top: 14px;
    font-family: 'din-2014', sans-serif;
  }
  .side--list {
    padding-left: 8px;
  }
  .side--list li:not(:last-child) {
    margin-bottom: 8px;
  }
  .side--list li a:hover {
    color: #3136e8;
  }

  /* --- post --- */
  .posts-side .post:not(:last-child) { margin-bottom: 16px; }
  .posts-side .post--img {
    margin-right: 16px;
    border-radius: 3px;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .posts-side .txtarea { flex: 1; }
  .posts-side .post--date { margin-bottom: 0; }
  .posts-side .post--ttl { line-height: 1.4; }

  /* --- archive --- */
  .side_column .archive_list--ttl::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: .4s ease-out;
  }
  .side_column .archive_list--ttl.active::after { transform: rotate(315deg); }
  .side_column .archive_month { display: none; }

  @media screen and (max-width: 1200px) {
    .side_column {
      width: 100%;
      margin-top: 40px;
    }
    .side--ttl {
      background-color: #fafafa;
      border-left: 4px solid #1d2089;
      padding: 22px 22px 20px;
    }
    .side--list li {
      border-bottom: 1px solid #ddd;
    }
    .side--list li a {
      padding: 14px 0;
      display: block;
    }
  }
  @media screen and (max-width: 768px) {
    .side--ttl {
      padding: 18px 14px 16px;
    }
  }

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

/* 新着情報（news）
**************************************** */

  /* --- news--archive --- */
  .news--archive {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #111;
  }
  .news--archive li {
    margin-left: 8px;
    margin-right: 8px;
  }
  .news--archive a {
    color: #fff;
  }

  /* --- news_list --- */
  main .news_list .post {
    padding-bottom: 24px;
    padding-top: 24px;
    margin-bottom: 0;
    border-bottom: 1px solid #dedede;
  }
  main .news_list a[href="javascript:void(0);"],
  main .news_list a[href="javascript:void(0);"]::before {
    color: inherit;
    cursor: inherit;
    opacity: 1;
    text-decoration: none;
  }
  .posts-home_news a,
  main .news_list a {
    display: inline-flex;
    align-items: center;
  }
  .posts-home_news a[target="_blank"]::after,
  main .news_list a[target="_blank"]::after {
    content: '';
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.png);
  }

  @media screen and (max-width: 768px) {
    .post .post--img {
      width: 80px;
      height: 80px;
    }
  }


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

    SINGLE
    ―新着情報（news）

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

/* 新着情報（news）
**************************************** */
  .news--info .post--date {
    margin-bottom: 4px;
  }
  .news--info .cat_list a {
    padding: 6px 12px;
    font-size: 84%;
  }
  .sns--list li:nth-child(1) {
    transform: translateY(-9px);
    margin-right: 8px;
  }


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

    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: #fff; }
  .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: #f55;
    color: #fff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 2px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
  }
  #formy_btn {
    padding-top: 32px;
    text-align: center;
  }
  #formy_btn input {
    min-width: 220px;
    padding: 16px 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: inherit;
    cursor: pointer;
    -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 {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 8px 0 40px;
    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  only 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%;
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
  }
/* ##############################################################################

    Privacy Plicy

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

.pp_sec{background: #fff;border: 1px solid #000;padding:2% 4% 4% 1%;font-size: 0.8em;}
.pp_sec > p:first-child{text-align: center;font-size: 2em;}
.pp_sec ul > li{list-style-type: decimal;margin-left: 2rem;}
.pp_sec .pp_title{font-size:1.2em}
.pp_sec .sub_list li{list-style-type: lower-alpha;}