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

    KEYFRAMES

############################################################################## */
  @keyframes fade_in {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes fade_out {
    0% { opacity: 1; }
    100% { opacity: 0; }
  }
  @keyframes slide-to_top {
    0% { transform: translateY(110%); }
    100% { transform: translateY(0%); }
  }
  @keyframes slide-to_btm {
    0% { transform: translateY(-110%); }
    100% { transform: translateY(0%); }
  }
  @keyframes slide-to_lft {
    0% { transform: translateX(110%); }
    100% { transform: translateX(0%); }
  }
  @keyframes slide-to_rgt {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(0%); }
  }
  @keyframes slide-rev_top {
    0% { transform: translateY(0%); }
    100% { transform: translateY(-110%); }
  }
  @keyframes slide-rev_btm {
    0% { transform: translateY(0%); }
    100% { transform: translateY(110%); }
  }
  @keyframes slide-rev_lft {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-110%); }
  }
  @keyframes slide-to_lft-sm {
    0% { transform: translateX(8px);opacity: 0; }
    100% { transform: translateX(0%);opacity: 1; }
  }
  @keyframes slide-rev_lft-sm {
    0% { transform: translateX(0%);opacity: 1; }
    100% { transform: translateX(-8px);opacity: 0; }
  }
  @keyframes slide-rev_rgt {
    0% { transform: translateX(0%); }
    100% { transform: translateX(110%); }
  }
  @keyframes slide-to_rgt-sm {
    0% { transform: translateX(-8px);opacity: 0; }
    100% { transform: translateX(0%);opacity: 1; }
  }
  @keyframes slide-rev_rgt-sm {
    0% { transform: translateX(0%);opacity: 1; }
    100% { transform: translateX(8px);opacity: 0; }
  }
  @keyframes slide-rev_rgt-lg {
    0% { transform: translateX(0%); }
    100% { transform: translateX(200%); }
  }
  @keyframes slide-to_rgt-lg {
    0% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
  }
  @keyframes gnav_sub_out {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-16px); opacity: 0; }
  }
  @keyframes gnav_sub_in {
    0% { transform: translateX(16px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  .loaded .ts, .loaded .ts-bf::before, .loaded .ts-af::after,
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after,
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.23,1,0.32,1);
    transition-duration: 1s;
  }
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after {
    transition-duration: .6s;
  }
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-duration: 1.4s;
  }

  .del50 { transition-delay: 50ms }
  .del100 { transition-delay: 100ms; }
  .del150 { transition-delay: 150ms; }
  .del200 { transition-delay: 200ms; }
  .del250 { transition-delay: 250ms; }
  .del300 { transition-delay: 300ms; }
  .del350 { transition-delay: 350ms; }
  .del400 { transition-delay: 400ms; }
  .del450 { transition-delay: 450ms; }
  .del500 { transition-delay: 500ms; }
  .del550 { transition-delay: 550ms; }
  .del600 { transition-delay: 600ms; }
  .del650 { transition-delay: 650ms; }
  .del700 { transition-delay: 700ms; }
  .del750 { transition-delay: 750ms; }
  .del800 { transition-delay: 800ms; }
  .del850 { transition-delay: 850ms; }


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

    LOADING

############################################################################## */
  @keyframes logo_fade_out {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-16px);
    }
  }
  @keyframes logo_fade_in {
    0% {
      opacity: 0;
      transform: translateY(12px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes load_fade_out {
    0% {
      opacity: 1;
    }
    100% {
      transform: scale(1.15);
      opacity: 0;
    }
  }
  #loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    pointer-events: none;
  }

  /* --- layers ---  */
  #loading .layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  #loading .layers .layer,
  #loading .layers .layer::before {
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0.55,0.08,0.68,0.53);
    transition-delay: 0s;
  }
  #loading .layers .layer {
    position: absolute;
    left: -2vw;
    top: 0;
    width: 102vw;
    height: 100vh;
  }
  #loading .loading--cont {
    z-index: 10;
  }
  body.mov_in #loading .layers .layer {
    opacity: 0;
    transform: translateX(2vw);
  }
  body:not(.min).mov_in #loading .layers .layer { transition-delay: 2.8s; }

  /* --- cont ---  */
  .loading--cont {
    width: 300px;
    height: 74px;
    opacity: 0;
  }
  .loading--logo {
    -webkit-mask-image: url(../images/common/logo-loewer.svg);
    mask-image: url(../images/common/logo-loewer.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background: -webkit-gradient(linear,left top,right top,color-stop(33.33%,#fff),color-stop(50%,#00a5e3));
    background: linear-gradient(90deg,#fff 33.33%,#666 50%);
    background-size: 300% 100%;
    background-position: 100% 0;
    transition: all 2.4s;
  }
  .loaded #loading .loading--cont {
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: fade_out;
  }
  .loaded #loading .loading--cont {
    animation-duration: 1s;
    animation-delay: 0s,2.4s;
    animation-name: logo_fade_in,logo_fade_out;
  }
  .loaded #loading .loading--logo {
    background-position: 0.977495% 0px;
  }

  @media screen and (max-width: 960px) {
    .loading--cont {
      width: 220px;
      height: 54px;
    }
  }


/* ======================================================================================

    LOADING

====================================================================================== */
  /*@keyframes load_fade_out {
    0% {
      opacity: 1;
    }
    100% {
      transform: scale(1.15);
      opacity: 0;
    }
  }
  #loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    pointer-events: none;
  }
  body.loaded #loading .loading--cont {
    animation-duration: .8s;
    animation-delay: 2.3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: load_fade_out;
    clip-path:inset(0 0 0);
  }
  body.loaded #loading .loading--cont svg {
    opacity: 1;
    transform: translate(0px, 0%);
  }
  @media screen and (max-width: 560px) {
    #loading .loading--cont svg {
      width: 120px;
      height: 60px;
    }
  }*/


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

    FONTS

############################################################################## */
  @font-face {
    font-family: 'BebasNeue Thin';
    src:
      url('../fonts/BebasNeue/BebasNeue Thin.otf') format('opentype'),
      url('../fonts/BebasNeue/BebasNeue Thin.woff') format('woff'),
      url('../fonts/BebasNeue/BebasNeue Thin.woff2') format('woff2');
  }
  @font-face {
    font-family: 'BebasNeue Light';
    src:
      url('../fonts/BebasNeue/BebasNeue Light.otf') format('opentype'),
      url('../fonts/BebasNeue/BebasNeue Light.woff') format('woff'),
      url('../fonts/BebasNeue/BebasNeue Light.woff2') format('woff2');
  }
  @font-face {
    font-family: 'BebasNeue Regular';
    src:
      url('../fonts/BebasNeue/BebasNeue Regular.otf') format('opentype'),
      url('../fonts/BebasNeue/BebasNeue Regular.woff') format('woff'),
      url('../fonts/BebasNeue/BebasNeue Regular.woff2') format('woff2');
  }
  @font-face {
    font-family: 'BebasNeue Book';
    src:
      url('../fonts/BebasNeue/BebasNeue Book.otf') format('opentype'),
      url('../fonts/BebasNeue/BebasNeue Book.woff') format('woff'),
      url('../fonts/BebasNeue/BebasNeue Book.woffw') format('woff2');
  }


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

    COMMON

############################################################################## */
  .svg-symbol {
    display: none;
  }

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

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .inner-xs { max-width: 880px; }
  .inner-sm { max-width: 1064px; }
  .inner-lg { max-width: 1440px; }
  .inner-xl { max-width: 1600px }
  .inner-xxl { max-width: 1920px }

  /* --- sect_pdg --- */
  .sect_pdg {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .sect_pdg-sm {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .sect_pdg-xs {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .pdg_no { padding: 0 !important; }
  .pdg_no-top { padding-top: 0 !important; }
  .pdg_no-btm { padding-bottom: 0 !important; }

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

  /* --- position --- */
  .por {
    position: relative;
    z-index: 0;
  }
  .poa,
  .poa-bf::before,
  .poa-af::after,
  .link_area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .link_area {
    z-index: 1;
  }
  .poa-bf::before,
  .poa-af::after {
    content: '';
  }
  .poa.zi1,
  .poa-bf.zi1-bf,
  .poa-af.zi1-af {
    z-index: 1;
  }

  /* --- margin --- */
  .btm4 { margin-bottom: 4px; }
  .btm8 { margin-bottom: 8px; }
  .btm16 { margin-bottom: 16px; }
  .btm24 { margin-bottom: 24px; }
  .btm32 { margin-bottom: 32px; }
  .btm40 { margin-bottom: 40px; }
  .btm48 { margin-bottom: 48px; }
  .btm56 { margin-bottom: 56px; }
  .btm64 { margin-bottom: 64px; }
  .btm72 { margin-bottom: 72px; }
  .btm80 { margin-bottom: 80px; }
  .btm88 { margin-bottom: 88px; }
  .btm96 { margin-bottom: 96px; }
  .btm104 { margin-bottom: 104px; }
  .btm112 { margin-bottom: 112px; }
  .btm120 { margin-bottom: 120px; }

  @media screen and  (max-width: 1064px) {
    .sect_pdg {
      padding-top: 96px;
      padding-bottom: 96px;
    }
    .sect_pdg-sm {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .btm24 { margin-bottom: 20px; }
    .btm32 { margin-bottom: 24px; }
    .btm40 { margin-bottom: 32px; }
    .btm48 { margin-bottom: 32px; }
    .btm56 { margin-bottom: 48px; }
    .btm64 { margin-bottom: 48px; }
    .btm72 { margin-bottom: 56px; }
    .btm80 { margin-bottom: 56px; }
    .btm88 { margin-bottom: 64px; }
    .btm96 { margin-bottom: 64px; }
    .btm104 { margin-bottom: 80px; }
    .btm112 { margin-bottom: 80px; }
    .btm120 { margin-bottom: 96px; }
  }
  @media screen and  (max-width: 560px) {
    .inner { width: calc(100% - 32px); }
    .btm16 { margin-bottom: 8px; }
    .btm24 { margin-bottom: 16px; }
    .btm32 { margin-bottom: 16px; }
    .btm40 { margin-bottom: 24px; }
    .btm48 { margin-bottom: 24px; }
    .btm56 { margin-bottom: 32px; }
    .btm64 { margin-bottom: 32px; }
    .btm72 { margin-bottom: 40px; }
    .btm80 { margin-bottom: 40px; }
    .btm88 { margin-bottom: 48px; }
    .btm96 { margin-bottom: 48px; }
    .btm104 { margin-bottom: 56px; }
    .btm112 { margin-bottom: 56px; }
    .btm120 { margin-bottom: 64px; }
    .sect_pdg {
      padding-top: 64px;
      padding-bottom: 64px;
    }
    .sect_pdg-sm {
      padding-top: 48px;
      padding-bottom: 48px;
    }
    .sect_pdg-xs {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }

/* responsive - none / show
**************************************** */
  .xlpc-none, .lgpc-none, .smpc-none, .xspc-none, .tab-none,
  .lgsp-none, .sp-none, .smsp-none, .xssp-none {
    display: block;
  }
  .xlpc-none-inline, .lgpc-none-inline, .smpc-none-inline, .xspc-none-inline, .tab-none-inline,
  .lgsp-none-inline, .sp-none-inline, .smsp-none-inline, .xssp-none-inline {
    display: inline;
  }
  .xlpc-none-inline_blk, .lgpc-none-inline_blk, .smpc-none-inline_blk, .xspc-none-inline_blk, .tab-none-inline_blk,
  .lgsp-none-inline_blk, .sp-none-inline_blk, .smsp-none-inline_blk, .xssp-none-inline_blk {
    display: inline-block;
  }
  .xlpc-none-tbl, .lgpc-none-tbl, .smpc-none-tbl, .xspc-none-tbl, .tab-none-tbl,
  .lgsp-none-tbl, .sp-none-tbl, .smsp-none-tbl, .xssp-none-tbl {
    display: table;
  }
  .xlpc-none-flx, .lgpc-none-flx, .smpc-none-flx, .xspc-none-flx, .tab-none-flx,
  .lgsp-none-flx, .sp-none-flx, .smsp-none-flx, .xssp-none-flx {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .xlpc-show, .lgpc-show, .smpc-show, .xspc-show, .tab-show, .lgsp-show, .sp-show, .smsp-show, .xssp-show,
  .xlpc-show-inline, .lgpc-show-inline, .smpc-show-inline, .xspc-show-inline, .tab-show-inline, .lgsp-show-inline, .sp-show-inline, .smsp-show-inline, .xssp-show-inline,
  .xlpc-show-inline_blk, .lgpc-show-inline_blk, .smpc-show-inline_blk, .xspc-show-inline_blk, .tab-show-inline_blk, .lgsp-show-inline_blk, .sp-show-inline_blk, .smsp-show-inline_blk, .xssp-show-inline_blk,
  .xlpc-show-tbl, .lgpc-show-tbl, .smpc-show-tbl, .xspc-show-tbl, .tab-show-tbl, .lgsp-show-tbl, .sp-show-tbl, .smsp-show-tbl, .xssp-show-tbl,
  .xlpc-show-flx, .lgpc-show-flx, .smpc-show-flx, .xspc-show-flx, .tab-show-flx, .lgsp-show-flx, .sp-show-flx, .smsp-show-flx, .xssp-show-flx {
    display: none;
  }
  @media screen and (max-width: 1680px) {
    .xlpc-none, .xlpc-none-inline, .xlpc-none-inline_blk, .xlpc-none-tbl, .xlpc-none-flx {
      display: none;
    }
    .xlpc-show { display: block; }
    .xlpc-show-inline { display: inline; }
    .xlpc-show-inline_blk { display: inline-block; }
    .xlpc-show-tbl { display: table; }
    .xlpc-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 1480px) {
    .lgpc-none, .lgpc-none-inline, .lgpc-none-inline_blk, .lgpc-none-tbl, .lgpc-none-flx {
      display: none;
    }
    .lgpc-show { display: block; }
    .lgpc-show-inline { display: inline; }
    .lgpc-show-inline_blk { display: inline-block; }
    .lgpc-show-tbl { display: table; }
    .lgpc-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 1280px) {
    .smpc-none, .smpc-none-inline, .smpc-none-inline_blk, .smpc-none-tbl, .smpc-none-flx {
      display: none;
    }
    .smpc-show { display: block; }
    .smpc-show-inline { display: inline; }
    .smpc-show-inline_blk { display: inline-block; }
    .smpc-show-tbl { display: table; }
    .smpc-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 1064px) {
    .xspc-none, .xspc-none-inline, .xspc-none-inline_blk, .xspc-none-tbl, .xspc-none-flx {
      display: none;
    }
    .xspc-show { display: block; }
    .xspc-show-inline { display: inline; }
    .xspc-show-inline_blk { display: inline-block; }
    .xspc-show-tbl { display: table; }
    .xspc-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 960px) {
    .tab-none, .tab-none-inline, .tab-none-inline_blk, .tab-none-tbl, .tab-none-flx {
      display: none;
    }
    .tab-show { display: block; }
    .tab-show-inline { display: inline; }
    .tab-show-inline_blk { display: inline-block; }
    .tab-show-tbl { display: table; }
    .tab-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 768px) {
    .lgsp-none, .lgsp-none-inline, .lgsp-none-inline_blk, .lgsp-none-tbl, .lgsp-none-flx {
      display: none;
    }
    .lgsp-show { display: block; }
    .lgsp-show-inline { display: inline; }
    .lgsp-show-inline_blk { display: inline-block; }
    .lgsp-show-tbl { display: table; }
    .lgsp-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 560px) {
    .sp-none, .sp-none-inline, .sp-none-inline_blk, .sp-none-tbl, .sp-none-flx {
      display: none;
    }
    .sp-show { display: block; }
    .sp-show-inline { display: inline; }
    .sp-show-inline_blk { display: inline-block; }
    .sp-show-tbl { display: table; }
    .sp-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 413px) {
    .smsp-none, .smsp-none-inline, .smsp-none-inline_blk, .smsp-none-tbl, .smsp-none-flx {
      display: none;
    }
    .smsp-show { display: block; }
    .smsp-show-inline { display: inline; }
    .smsp-show-inline_blk { display: inline-block; }
    .smsp-show-tbl { display: table; }
    .smsp-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }
  @media screen and (max-width: 374px) {
    .xssp-none, .xssp-none-inline, .xssp-none-inline_blk, .xssp-none-tbl, .xssp-none-flx {
      display: none;
    }
    .xssp-show { display: block; }
    .xssp-show-inline { display: inline; }
    .xssp-show-inline_blk { display: inline-block; }
    .xssp-show-tbl { display: table; }
    .xssp-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  }

/* overflow
**************************************** */
  .ofh {
    overflow: hidden;
  }

/* link
**************************************** */
  .area_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }

/* opacity
**************************************** */
  .op0, .op0-bf::before, .op0-af::after  { opacity:   0; }
  .op05,.op05-bf::before,.op05-af::after { opacity: .05; }
  .op10,.op10-bf::before,.op10-af::after { opacity: .10; }
  .op15,.op15-bf::before,.op15-af::after { opacity: .15; }
  .op20,.op20-bf::before,.op20-af::after { opacity: .20; }
  .op25,.op25-bf::before,.op25-af::after { opacity: .25; }
  .op30,.op30-bf::before,.op30-af::after { opacity: .30; }
  .op35,.op35-bf::before,.op35-af::after { opacity: .35; }
  .op40,.op40-bf::before,.op40-af::after { opacity: .40; }
  .op45,.op45-bf::before,.op45-af::after { opacity: .45; }
  .op50,.op50-bf::before,.op50-af::after { opacity: .50; }
  .op55,.op55-bf::before,.op55-af::after { opacity: .55; }
  .op60,.op60-bf::before,.op60-af::after { opacity: .60; }
  .op65,.op65-bf::before,.op65-af::after { opacity: .65; }
  .op70,.op70-bf::before,.op70-af::after { opacity: .70; }
  .op75,.op75-bf::before,.op75-af::after { opacity: .75; }
  .op80,.op80-bf::before,.op80-af::after { opacity: .80; }
  .op85,.op85-bf::before,.op85-af::after { opacity: .85; }
  .op90,.op90-bf::before,.op90-af::after { opacity: .90; }
  .op95,.op95-bf::before,.op95-af::after { opacity: .95; }
  @media screen and (min-width: 961px) {
    .hov-op0:hover, .hov-op0-bf:hover::before, .hov-op0-af:hover::after  { opacity:   0; }
    .hov-op05:hover,.hov-op05-bf:hover::before,.hov-op05-af:hover::after { opacity: .05; }
    .hov-op10:hover,.hov-op10-bf:hover::before,.hov-op10-af:hover::after { opacity: .10; }
    .hov-op15:hover,.hov-op15-bf:hover::before,.hov-op15-af:hover::after { opacity: .15; }
    .hov-op20:hover,.hov-op20-bf:hover::before,.hov-op20-af:hover::after { opacity: .20; }
    .hov-op25:hover,.hov-op25-bf:hover::before,.hov-op25-af:hover::after { opacity: .25; }
    .hov-op30:hover,.hov-op30-bf:hover::before,.hov-op30-af:hover::after { opacity: .30; }
    .hov-op35:hover,.hov-op35-bf:hover::before,.hov-op35-af:hover::after { opacity: .35; }
    .hov-op40:hover,.hov-op40-bf:hover::before,.hov-op40-af:hover::after { opacity: .40; }
    .hov-op45:hover,.hov-op45-bf:hover::before,.hov-op45-af:hover::after { opacity: .45; }
    .hov-op50:hover,.hov-op50-bf:hover::before,.hov-op50-af:hover::after { opacity: .50; }
    .hov-op55:hover,.hov-op55-bf:hover::before,.hov-op55-af:hover::after { opacity: .55; }
    .hov-op60:hover,.hov-op60-bf:hover::before,.hov-op60-af:hover::after { opacity: .60; }
    .hov-op65:hover,.hov-op65-bf:hover::before,.hov-op65-af:hover::after { opacity: .65; }
    .hov-op70:hover,.hov-op70-bf:hover::before,.hov-op70-af:hover::after { opacity: .70; }
    .hov-op75:hover,.hov-op75-bf:hover::before,.hov-op75-af:hover::after { opacity: .75; }
    .hov-op80:hover,.hov-op80-bf:hover::before,.hov-op80-af:hover::after { opacity: .80; }
    .hov-op85:hover,.hov-op85-bf:hover::before,.hov-op85-af:hover::after { opacity: .85; }
    .hov-op90:hover,.hov-op90-bf:hover::before,.hov-op90-af:hover::after { opacity: .90; }
    .hov-op95:hover,.hov-op95-bf:hover::before,.hov-op95-af:hover::after { opacity: .95; }
    .hov-op100:hover,.hov-op100-bf:hover::before,.hov-op100-af:hover::after { opacity: 1; }
  }

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

  /* --- ブロック要素 --- */
  .flx {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flx-rev {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

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

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

  /* --- レイアウト短縮クラス --- */
  .flx-stt {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flx-stt-ctr {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flx-stt-end {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flx-ctr {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flx-ctr-stt {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flx-ctr-end {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flx-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flx-end-stt {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flx-end-ctr {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flx-btw-stt {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flx-btw-ctr {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flx-btw-end {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

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

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

  /* --- flx-1 --- */
  .flx-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }

  @media screen and (max-width: 1680px) {
    .flx-xlpc-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 1480px) {
    .flx-lgpc-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 1280px) {
    .flx-smpc-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 1064px) {
    .flx-xspc-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 960px) {
    .flx-tab-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 768px) {
    .flx-lgsp-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 560px) {
    .flx-sp-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 413px) {
    .flx-smsp-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 374px) {
    .flx-xssp-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }

/* color
**************************************** */

  /* --- body --- */
  .clr-body,
  .clr-body-bf::before,
  .clr-body-af::after,
  .btn-fix_btm:not(.active) {
    color: #16191f;
    fill: #16191f;
  }
  .bg_clr-body,
  .bg_clr-body-bf::before,
  .bg_clr-body-af::after {
    background-color: #16191f;
  }
  .bdr_clr-body,
  .bdr_clr-body-bf::before,
  .bdr_clr-body-af::after {
    border-color: #16191f;
  }

  /* --- body_lt --- */
  .clr-body_lt,
  .clr-body_lt-bf::before,
  .clr-body_lt-af::after {
    color: #1d2026;
  }
  .bg_clr-body_lt,
  .bg_clr-body_lt-bf::before,
  .bg_clr-body_lt-af::after {
    background-color: #1d2026;
  }
  .bdr_clr-body_lt,
  .bdr_clr-body_lt-bf::before,
  .bdr_clr-body_lt-af::after,
  .wp-pagenavi a,
  .wp-pagenavi span {
    border-color: #1d2026;
  }

  /* --- body_dk --- */
  .clr-body_dk,
  .clr-body_dk-bf::before,
  .clr-body_dk-af::after {
    color: #0f1218;
    fill: #0f1218;
  }
  .bg_clr-body_dk,
  .bg_clr-body_dk-bf::before,
  .bg_clr-body_dk-af::after,
  .post--img .img_src,
  .page-machines .lineup_slider .slick-dots {
    background-color: #0f1218;
  }
  .bdr_clr-body_dk,
  .bdr_clr-body_dk-bf::before,
  .bdr_clr-body_dk-af::after {
    border-color: #0f1218;
  }

  /* --- default --- */
  .clr-def,
  .clr-def-bf::before,
  .clr-def-af::after,
  a,
  .wp-pagenavi a,
  .wp-pagenavi span {
    color: #fff;
    fill: #fff;
  }
  .bg_clr-def,
  .bg_clr-def-bf::before,
  .bg_clr-def-af::after {
    background-color: #fff;
  }
  .bdr_clr-def,
  .bdr_clr-def-bf::before,
  .bdr_clr-def-af::after,
  .pn_list {
    border-color: #fff;
  }

  /* --- gry ---  */
  .form_flow_list--item::before,
  .form_flow_list--item::after {
    background-color: #bebfbf;
  }

  /* --- main --- */
  .clr-main,
  .clr-main-bf::before,
  .clr-main-af::after,
  .mw_wp_form:not(.mw_wp_form_confirm):not(.mw_wp_form_complete) .form_flow_list .form_flow_list--item-input,
  .mw_wp_form_confirm .form_flow_list .form_flow_list--item-confirm,
  .mw_wp_form_complete .form_flow_list .form_flow_list--item-complete,
  .gnav_list--item.current .gnav_list--item_in,
  .imp_news .posts-imp_news a {
    color: #147cc5;
    fill: #147cc5;
  }
  .bg_clr-main,
  .bg_clr-main-bf::before,
  .bg_clr-main-af::after,
  .wp-pagenavi span.current,
  .form_flow_list--item-input::before,
  .mw_wp_form_confirm .form_flow_list .form_flow_list--item:not(.form_flow_list--item-complete)::before,
  .mw_wp_form_confirm .form_flow_list .form_flow_list--item-input::after,
  .mw_wp_form_complete .form_flow_list .form_flow_list--item::before,
  .mw_wp_form_complete .form_flow_list .form_flow_list--item:not(.form_flow_list--item-complete)::after {
    background-color: #147cc5;
  }
  .bdr_clr-main,
  .bdr_clr-main-bf::before,
  .bdr_clr-main-af::after,
  .wp-pagenavi span.current {
    border-color: #147cc5;
  }
  @media screen and (min-width: 961px) {
    .hov-clr-main:hover,.hov_area:hover .hov-clr-main,
    .hov-clr-main-bf:hover::before,.hov_area:hover .hov-clr-main-bf::before,
    .hov-clr-main-af:hover::after,.hov_area:hover .hov-clr-main-af::after {
      color: #147cc5;
      fill: #147cc5;
    }
    .hov-bg_clr-main:hover,.hov_area:hover .hov-bg_clr-main,
    .hov-bg_clr-main-bf:hover::before,.hov_area:hover .hov-bg_clr-main-bf::before,
    .hov-bg_clr-main-af:hover::after,.hov_area:hover .hov-bg_clr-main-af::after,
    .wp-pagenavi a:hover {
      background-color: #147cc5;
    }
    .hov-bdr_clr-main:hover,.hov_area:hover .hov-bdr_clr-main,
    .hov-bdr_clr-main-bf:hover::before,.hov_area:hover .hov-bdr_clr-main-bf::before,
    .hov-bdr_clr-main-af:hover::after,.hov_area:hover .hov-bdr_clr-main-af::after,
    .wp-pagenavi a:hover {
      border-color: #147cc5;
    }
  }

  /* --- wht --- */
  .clr-wht,
  .clr-wht-bf::before,
  .clr-wht-af::after,
  .wp-pagenavi span.current {
    color: #fff;
    fill: #fff;
  }
  .bg_clr-wht,
  .bg_clr-wht-bf::before,
  .bg_clr-wht-af::after {
    background-color: #fff;
  }
  .bdr_clr-wht,
  .bdr_clr-wht-bf::before,
  .bdr_clr-wht-af::after {
    border-color: #fff;
  }
  @media screen and (min-width: 961px) {
    .hov-clr-wht:hover,.hov_area:hover .hov-clr-wht,
    .hov-clr-wht-bf:hover::before,.hov_area:hover .hov-clr-wht-bf::before,
    .hov-clr-wht-af:hover::after,.hov_area:hover .hov-clr-wht-af::after,
    .wp-pagenavi a:hover {
      color: #fff;
      fill: #fff;
    }
    .hov-bg_clr-wht:hover,.hov_area:hover .hov-bg_clr-wht,
    .hov-bg_clr-wht-bf:hover::before,.hov_area:hover .hov-bg_clr-wht-bf::before,
    .hov-bg_clr-wht-af:hover::after,.hov_area:hover .hov-bg_clr-wht-af::after {
      background-color: #fff;
    }
    .hov-bdr_clr-wht:hover,.hov_area:hover .hov-bdr_clr-wht,
    .hov-bdr_clr-wht-bf:hover::before,.hov_area:hover .hov-bdr_clr-wht-bf::before,
    .hov-bdr_clr-wht-af:hover::after,.hov_area:hover .hov-bdr_clr-wht-af::after {
      border-color: #fff;
    }
  }

  /* --- blk --- */
  .clr-blk,
  .clr-blk-bf::before,
  .clr-blk-af::after {
    color: #1a2c3f;
    fill: #1a2c3f;
  }
  .bg_clr-blk,
  .bg_clr-blk-bf::before,
  .bg_clr-blk-af::after {
    background-color: #1a2c3f;
  }
  .bdr_clr-blk,
  .bdr_clr-blk-bf::before,
  .bdr_clr-blk-af::after {
    border-color: #1a2c3f;
  }
  @media screen and (min-width: 961px) {
    .hov-clr-blk:hover,.hov_area:hover .hov-clr-blk,
    .hov-clr-blk-bf:hover::before,.hov_area:hover .hov-clr-blk-bf::before,
    .hov-clr-blk-af:hover::after,.hov_area:hover .hov-clr-blk-af::after {
      color: #1a2c3f;
      fill: #1a2c3f;
    }
    .hov-bg_clr-blk:hover,.hov_area:hover .hov-bg_clr-blk,
    .hov-bg_clr-blk-bf:hover::before,.hov_area:hover .hov-bg_clr-blk-bf::before,
    .hov-bg_clr-blk-af:hover::after,.hov_area:hover .hov-bg_clr-blk-af::after {
      background-color: #1a2c3f;
    }
    .hov-bdr_clr-blk:hover,.hov_area:hover .hov-bdr_clr-blk,
    .hov-bdr_clr-blk-bf:hover::before,.hov_area:hover .hov-bdr_clr-blk-bf::before,
    .hov-bdr_clr-blk-af:hover::after,.hov_area:hover .hov-bdr_clr-blk-af::after {
      border-color: #1a2c3f;
    }
  }

/* grad
*************************************************** */
  .grad-gld,
  .grad-sil,
  .grad-main {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
  .grad-gld,
  .bg_grad-gld,
  .bg_grad-gld-bf::before,
  .grad-sil,
  .bg_grad-sil,
  .bg_grad-sil-bf::before,
  .bg_grad-main,
  .bg_grad-main-bf::before,
  .bg_grad-body_dk,
  .bg_grad-body_dk-bf::before,
  .bg_grad-gry,
  .bg_grad-gry-bf::before,
  .bg_grad-red,
  .cat_list a {
    background-position: center;
    background-size: 400% 400%;
  }
  .grad-gld,
  .bg_grad-gld,
  .bg_grad-gld-bf::before {
    background-image: linear-gradient(-45deg, #9c8954 42%, #cab793 50%, #9c8954 58%);
  }
  .grad-sil,
  .bg_grad-sil,
  .bg_grad-sil-bf::before {
    background-image: linear-gradient(-45deg, #797979 42%, #bebfbf 50%, #797979 58%);
  }
  .grad-main {
    background-image: linear-gradient(-45deg, #0061a7 42%, #0567ad 50%, #0061a7 58%);
  }
  .bg_grad-main,
  .bg_grad-main-bf::before,
  .cat_list a {
    background-image: linear-gradient(-45deg, #0061a7 42%, #0567ad 58%);
  }
  .bg_grad-body_dk,
  .bg_grad-body_dk-bf::before {
    background-image: linear-gradient(-45deg, #16191f 42%, #0f1218 58%);
  }
  .bg_grad-gry {
    background-image: linear-gradient(0deg, #e3e8ea 42%, #f0f5f6 58%);
  }
  .bg_grad-gry-bf::before {
    background-image: linear-gradient(-45deg, #e3e8ea 42%, #f0f5f6 58%);
  }
  .bg_grad-red {
    background-image: linear-gradient(-45deg, #9d2622 42%, #691a17 58%);
  }

/* bg
**************************************** */
  .bg_img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

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

  /* --- page_ttl --- */
  .page_head {
    padding-top: 32px;
  }
  .page_ttl-jp,
  .page_ttl-en { display: block; }
  .page_ttl-jp {
    font-size: 200%;
    line-height: 1.4em;
    letter-spacing: .1em;
    font-style: italic;
    font-weight: 600;
    padding-right: 0.15em;
  }
  .page_ttl-en {
    padding-left: 24px;
    line-height: 1em;
  }
  .page_head .skew_bg {
    width: 95vw;
    height: calc(100% + 32px);
    z-index: -10;
    transform: skew(-12deg) translateX(-6%);
  }
  @media screen and (max-width: 560px) {
    .page_head {
      padding-top: 24px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .page_ttl-jp {
      font-size: 157%;
    }
    .page_ttl-en {
      font-size: 93%;
    }
    .page_head .skew_bg {
      height: calc(100% + 24px);
    }
  }

  /* --- sect_ttl --- */
  .sect_ttl,
  .sect_ttl-sm {
    line-height: 1.4em;
    letter-spacing: .08em;
    font-style: italic;
    font-weight: 600;
    padding-right: 6px;
  }
  .sect_ttl { font-size: 360%; }
  .sect_ttl small { font-size: 78%; }
  .sect_ttl-sm { font-size: 320%; }

  /* --- heading --- */
  .head1 {
    font-size: 267%;
    line-height: 1.6em;
  }
  .head2 { font-size: 240%; }
  .head3 { font-size: 187%; }
  .head4 { font-size: 160%; }
  .head5 { font-size: 147%; }
  .head6 { font-size: 133%; }

  /* --- en_ttl ---  */
  .en_ttl {
    font-size: 1067%;
    line-height: 1em;
  }

  /* --- line_ttl ---  */
  .line_ttl .line {
    display: block;
    width: 56px;
    height: 2px;
    margin-top: 16px;
  }
  .line_ttl.txt-ctr .line,
  .line_ttl.tbl-ctr .line {
    margin-left: auto;
    margin-right: auto;
  }
  .line_ttl.sect_ttl .line,
  .line_ttl.sect_ttl-sm .line {
    margin-top: 32px;
    width: 80px;
    height: 3px;
  }
  .line_ttl.fnt-xl .line {
    margin-top: 12px;
  }
  @media screen and (max-width: 960px) {
    .sect_ttl { font-size: 320%; }
    .sect_ttl-sm { font-size: 260%; }
    .head1 { font-size: 200%; }
    .head2 { font-size: 187%; }
    .head3 { font-size: 160%; }
    .head4 { font-size: 147%; }
    .head5 { font-size: 133%; }
    .head6 { font-size: 120%; }
    .line_ttl .line {
      width: 40px;
    }
    .line_ttl.sect_ttl .line,
    .line_ttl.sect_ttl-sm .line {
      margin-top: 16px;
      width: 48px;
    }
    .line_ttl.fnt-xl .line {
      margin-top: 10px;
    }
  }
  @media screen and (max-width: 560px) {
    .sect_ttl { font-size: 180%; }
    .sect_ttl-sm { font-size: 160%; }
    .head1 { font-size: 160%; }
    .head2 { font-size: 147%; }
    .head3 { font-size: 133%; }
    .head4 { font-size: 120%; }
    .head5 { font-size: 116%; }
    .head6 { font-size: 109%; }
  }

/* txt
**************************************** */
  .txt_area p:not(:last-child) { margin-bottom: 1em; }
  .txt_area p.btm_no:not(:last-child) { margin-bottom: 0; }
  .fnt-xl { font-size: 120%; }
  .fnt-lg { font-size: 107%; }
  .fnt-sm { font-size: 93%; }
  .fnt-xs { font-size: 80%; }
  .fnt-xxs { font-size: 67%; }
  .txt-lft { text-align: left; }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-attn {
    font-size: 88%;
    color: #999;
  }
  .tbl-lft {
    display: table;
    margin-right: auto;
  }
  .tbl-ctr {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  .tbl-rgt {
    display: table;
    margin-left: auto;
  }
  .w-b { font-weight: 600; }
  .ls-0 { letter-spacing: 0em; }
  .ls-50 { letter-spacing: .05em; }
  .ls-100 { letter-spacing: .1em; }
  .ls-150 { letter-spacing: .15em; }
  .ls-200 { letter-spacing: .2em; }
  .ls-250 { letter-spacing: .25em; }
  .ls-300 { letter-spacing: .3em; }
  .ls-350 { letter-spacing: .35em; }
  .ls-400 { letter-spacing: .4em; }
  .ls-450 { letter-spacing: .45em; }
  .ls-500 { letter-spacing: .5em; }
  .fnt-jp { font-family: 'Noto Serif JP', serif; }
  .fnt-en { font-family: 'BebasNeue Regular';}
  .fnt-en.w-t { font-family: 'BebasNeue Thin'; }
  .fnt-en.w-l { font-family: 'BebasNeue Light'; }
  .fnt-en.w-b { font-family: 'BebasNeue Book'; }
  .fnt-ital { font-style: italic; }
  .u_txt {
    position: relative;
    padding-bottom: .075em;
  }
  .u_txt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .075em;
  }
  u { text-decoration-thickness: 0.05em; }
  @media screen and (max-width: 1064px) {
    .txt-ctr-xspc { text-align: center; }
    .txt-lft-xspc { text-align: justify; }
  }
  @media screen and (max-width: 960px) {
    .txt-ctr-tab { text-align: center; }
    .txt-lft-tab { text-align: justify; }
  }
  @media screen and (max-width: 560px) {
    .txt-ctr-sp { text-align: center; }
    .txt-lft-sp { text-align: justify; }
    .fnt-xl { font-size: 112%; }
    .fnt-lg { font-size: 104%; }
  }

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

  /* --- tbl-def --- */
  .tbl-def th,
  .tbl-def td {
    padding: 16px 8px;
  }
  .tbl-def th {
    border-bottom: 2px solid #666;
  }
  .tbl-def td {
    padding: 16px 16px;
    border-bottom: 1px solid #666;
    border-left: 4px solid #fff;
  }

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

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 6px; }
  .list li {
    position: relative;
    padding-left: 1em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .8em;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #666;
  }
  /* 数字付きリスト */
  .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 #666;
    background-color: transparent;
  }
  /* 四角付きリスト */
  .list-square li::before {
    border-radius: 0;
    background-color: #666;
  }
  /* 入れ子のスタイル */
  .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: #666;
    font-weight: 700;
  }
  .list-dl dd {
    padding-left: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #BFBFBF;
  }

  /* --- attn_list --- */
  .attn_list--item {
    position: relative;
    padding-left: 1.4em;
    font-size: 87%;
  }
  .attn_list--item::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
  }

  /* --- line_list ---  */
  .line_list--item .ttl {
    width: 100px;
  }
  .line_list--item > * {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .line_list--item > *::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .line_list-sm .line_list--item > * {
    padding-top: 18px;
    padding-bottom: 18px;
  }

/* ico
*************************************************** */
  .ico {
    position: relative;
    width: 24px;
    height: 24px;
  }
  .ico-arrow::before,
  .ico-arrow::after {
    content: '';
    position: absolute;
  }
  .ico-arrow-top::before,
  .ico-arrow-top::after,
  .ico-arrow-btm::before,
  .ico-arrow-btm::after {
    top: calc(50% - 3%);
    width: 40%;
    height: 6%;
  }
  .ico-arrow-top::before,
  .ico-arrow-btm::before {
    transform: rotate(40deg);
  }
  .ico-arrow-top::after,
  .ico-arrow-btm::before {
    right: calc(50% - 6%);
  }
  .ico-arrow-top::after,
  .ico-arrow-btm::after {
    transform: rotate(-40deg);
  }
  .ico-arrow-top::before,
  .ico-arrow-btm::after {
    left: calc(50% - 6%);
  }

  .ico-arrow-lft::before,
  .ico-arrow-lft::after,
  .ico-arrow-rgt::before,
  .ico-arrow-rgt::after {
    right: calc(50% - 3%);
    width: 7%;
    height: 40%;
  }
  .ico-arrow-lft::before,
  .ico-arrow-rgt::before {
    transform: rotate(40deg);
  }
  .ico-arrow-lft::after,
  .ico-arrow-rgt::before {
    top: calc(50% - 6%);
  }
  .ico-arrow-lft::after,
  .ico-arrow-rgt::after {
    transform: rotate(-40deg);
  }
  .ico-arrow-lft::before,
  .ico-arrow-rgt::after {
    bottom: calc(50% - 6%);
  }
  .ico-batsu::before,
  .ico-batsu::after {
    content: '';
    position: absolute;
    top: calc(50% - 20%);
    left: calc(50% - 2%);
    width: 4%;
    height: 40%;
  }
  .ico-batsu::before {
    transform: rotate(45deg);
  }
  .ico-batsu::after {
    transform: rotate(-45deg);
  }
  .cir_ico {
    width: 64px;
    height: 64px;
  }
  .cir_ico-sm {
    width: 48px;
    height: 48px;
  }
  .cir_ico-xs {
    width: 24px;
    height: 24px;
  }
  .cir_ico::before {
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
  }
  .cir_ico .ico {
    display: inline-block;
    width: 15px;
    height: 15px;
  }
  .cir_ico-xs .ico {
    width: 7px;
    height: 7px;
  }
  @media screen and (max-width: 560px) {
    .cir_ico {
      width: 48px;
      height: 48px;
    }
    .cir_ico-sm {
      width: 32px;
      height: 32px;
    }
    .cir_ico-xs {
      width: 20px;
      height: 20px;
    }
  }

  /* --- ico-outlink ---  */
  .ico-outlink::before,
  .ico-outlink::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 40%;
    border-width: 1px;
    border-style: solid;
  }
  .ico-outlink::before {
    bottom: 37.5%;
    left: 27.5%;
  }
  .ico-outlink::after {
    top: 37.5%;
    right: 27.5%;
    border-top: none;
    border-right: none;
  }

/* btn
**************************************** */

  /* --- btn-def ---  */
  .btn-def .btn--in {
    column-gap: 16px;
  }
  .btn-def .svg-cir {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    transform: rotate(-90deg) scale(1,-1);
    fill: transparent;
    stroke: #fff;
    stroke-width: 1;
    stroke-dasharray: 0 366;
    animation-duration: .6s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: circle_out;
  }
  @keyframes circle_out {
    0% { stroke-dasharray: 366 366; }
    99.9%,to { stroke-dasharray: 0 366; }
  }
  @keyframes circle_in {
    0% { stroke-dasharray: 0 366; }
    99.9%,to { stroke-dasharray: 366 366; }
  }
  @media screen and (min-width: 961px) {
    .btn-def .btn--in .txt {
      transition-property: all;
      transition-timing-function: cubic-bezier(0.23,1,0.32,1);
      transition-duration: 1s;
    }
    .btn-def .btn--in:hover .ico-arrow,
    .btn-def .btn--in:hover .svg-cir {
      animation-duration: .4s,.4s;
      animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
      animation-delay: 0s,.4s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-name: slide-rev_rgt-sm,slide-to_rgt-sm;
    }
    .btn-def .btn--in:hover .ico-arrow-lft {
      animation-name: slide-rev_lft-sm,slide-to_lft-sm;
    }
    .btn-def .btn--in:hover .txt {
      text-shadow: 0 0 8px rgba(255,255,255,.6);
    }
    .btn-def .btn--in:hover .svg-cir {
      transform: rotate(-90deg) scale(1,1);
      animation-name: circle_in;
    }
  }

  /* --- btn-mov ---  */
  .btn-mov .btn--in {
    column-gap: 24px;
    padding-right: 24px;
    font-size: 109%;
  }
  .btn-mov .ico-mov_arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    z-index: 1;
    border-radius: 100%;
    background-color: #c4302b;
  }
  .btn-mov .ico-mov_arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left-width: 6px;
    border-right-width: 0;
  }
  .btn-mov .ico-outlink {
    width: 16px;
    height: 16px;
    margin-left: 6px;
  }
  @media screen and (min-width: 961px) {
    .btn-mov .btn--in:hover .img img {
      opacity: 1;
    }
  }
  @media screen and (max-width: 560px) {
    .btn-mov .btn--in .img img {
      width: 96px;
      height: 54px;
    }
  }
  @media screen and (max-width: 413px) {
    .btn-mov .btn--in {
      column-gap: 16px;
      padding-right: 16px;
    }
  }
  @media screen and (max-width: 374px) {
    .btn-mov .btn--in {
      font-size: 100%;
    }
    .btn-mov .btn--in .img img {
      width: 80px;
      height: 50px;
    }
  }

  /* --- btn-fix_btm --- */
  .btn-fix_btm {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 1em;
  }
  .btn-fix_btm::before {
    border-width: 2px;
    border-style: solid;
  }
  .btn-fix_btm .iw {
    margin-right: 6px;
    font-size: 109%;
  }
  .btn-fix_btm.active::before {
    opacity: 0;
  }
  .btn-fix_btm.is_hide {
    opacity: 0;
    pointer-events: none;
  }

/* lr_bloc
**************************************** */
  .lr_bloc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
  }
  .lr_bloc:nth-of-type(even) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 80px;
  }
  .lr_bloc .img_area {
    max-width: 55%;
  }
  .lr_bloc .txt_area {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }
  .lr_bloc .txt_area > *:nth-last-child(2) {
    padding-left: 32px;
  }
  .lr_bloc .txt_area > *:nth-last-child(3) {
    padding-left: 64px;
  }
  .lr_bloc .lr_num {
    position: absolute;
    bottom: calc(100% - 4px);
    z-index: 1;
    padding-right: .85em;
    letter-spacing: -.02em;
    font-size: 400%;
    line-height: 1em;
  }
  .lr_bloc:not(:first-child) .lr_num {
    padding-right: 1.1em;
  }
  .lr_bloc:nth-of-type(odd) .lr_num {
    left: 0;
  }
  .lr_bloc:nth-of-type(even) .lr_num {
    right: -54px;
  }
  .lr_bloc .lr_num .txt::before {
    top: -.05em;
    height: calc(100% - .1em);
    width: 110%;
  }
  .lr_bloc .lr_num .num {
    position: absolute;
    right: 0;
    top: 60%;
    z-index: -1;
    transform: translateY(-50%);
    font-size: 200%;
    font-weight: 200;
  }
  @media screen and (max-width: 1600px) {
    .lr_bloc .txt_area .head1 {
      font-size: 240%;
      letteer-spacing: .1em;
    }
  }
  @media screen and (max-width: 1480px) {
    .lr_bloc .txt_area .head1 {
      font-size: 193%;
    }
    .lr_bloc .txt_area > *:nth-last-child(2) {
      padding-left: 24px;
    }
    .lr_bloc .lr_num {
      font-size: 300%;
      padding-right: 1.1em;
    }
    .lr_bloc:not(:first-child) .lr_num {
      padding-right: 1.4em;
    }
    .lr_bloc .lr_num .num {
      right: 12px;
    }
  }
  @media screen and (max-width: 1280px) {
    .lr_bloc .txt_area .head1 {
      font-size: 147%;
      margin-bottom: 20px;
    }
    .lr_bloc .txt_area > *:nth-last-child(2) {
      padding-left: 20px;
    }
    .lr_bloc .txt_area .txts {
      font-size: 87%;
    }
    .lr_bloc:nth-of-type(odd) .lr_num {
      left: 8px;
    }
    .lr_bloc:nth-of-type(even) .lr_num {
      right: -32px;
    }
  }
  @media screen and (max-width: 1064px) {
    .lr_bloc .img_area {
      width: 360px;
    }
  }
  @media screen and (max-width: 768px) {
    .lr_bloc:nth-of-type(even) {
      column-gap: 40px;
    }
  }
  @media screen and (max-width: 680px) {
    .lr_bloc,
    .lr_bloc:nth-of-type(even) {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 0px;
    }
    .lr_bloc .img_area {
      width: 100%;
      max-width: 360px;
      text-align: center;
      margin-bottom: 24px;
      margin-left: auto;
      margin-right: auto;
    }
    .lr_bloc .txt_area {
      width: 100%;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .lr_bloc .txt_area .head1 {
      text-align: center;
    }
    .lr_bloc .txt_area > *:nth-last-child(2) {
      padding-left: 0;
    }
  }
  @media screen and (max-width: 560px) {
    .lr_bloc:nth-of-type(odd) .lr_num,
    .lr_bloc:nth-of-type(even) .lr_num {
      left: 0;
    }
    .lr_bloc:nth-of-type(even) .lr_num {
      right: auto;
      right: inherit;
    }
    .lr_bloc .img_area {
      max-width: 300px;
      margin-bottom: 20px;
    }
    .lr_bloc .lr_num {
      bottom: 100%;
      font-size: 220%;
      padding-right: 1.2em;
    }
    .lr_bloc:not(:first-child) .lr_num {
      padding-right: 1.45em;
    }
    .lr_bloc .txt_area .head1 {
      margin-bottom: 16px;
      font-size: 133%;
    }
  }

/* column
**************************************** */
  .clm {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .clm-2 { gap: 20px; }
  .clm-2 > * { width: calc(50% - 10px); }
  .clm-3 { gap: 20px; }
  .clm-3 > * { width: calc(100% / 3 - 14px); }
  .clm-4 { gap: 20px; }
  .clm-4 > * { width: calc(100% / 4 - 15px); }
  .clm-5 { gap: 24px; }
  .clm-5 > * { width: calc(100% / 5 - 20px); }
  @media screen and (max-width: 1680px) {
    .clm-1-xlpc { gap: 0; }
    .clm-1-xlpc > * { width: 100%; }
    .clm-2-xlpc { gap: 20px; }
    .clm-2-xlpc > * { width: calc(50% - 10px); }
    .clm-3-xlpc { gap: 40px; }
    .clm-3-xlpc > * { width: calc(100% / 3 - 27px); }
    .clm-4-xlpc { gap: 32px; }
    .clm-4-xlpc > * { width: calc(100% / 4 - 24px); }
    .clm-5-xlpc { gap: 24px; }
    .clm-5-xlpc > * { width: calc(100% / 5 - 20px); }
  }
  @media screen and (max-width: 1480px) {
    .clm-1-lgpc { gap: 0; }
    .clm-1-lgpc > * { width: 100%; }
    .clm-2-lgpc { gap: 20px; }
    .clm-2-lgpc > * { width: calc(50% - 10px); }
    .clm-3-lgpc { gap: 40px; }
    .clm-3-lgpc > * { width: calc(100% / 3 - 27px); }
    .clm-4-lgpc { gap: 32px; }
    .clm-4-lgpc > * { width: calc(100% / 4 - 24px); }
    .clm-5-lgpc { gap: 24px; }
    .clm-5-lgpc > * { width: calc(100% / 5 - 20px); }
  }
  @media screen and (max-width: 1280px) {
    .clm-1-smpc { gap: 0; }
    .clm-1-smpc > * { width: 100%; }
    .clm-2-smpc { gap: 20px; }
    .clm-2-smpc > * { width: calc(50% - 10px); }
    .clm-3-smpc { gap: 20px; }
    .clm-3-smpc > * { width: calc(100% / 3 - 14px); }
    .clm-4-smpc { gap: 32px; }
    .clm-4-smpc > * { width: calc(100% / 4 - 24px); }
    .clm-5-smpc { gap: 24px; }
    .clm-5-smpc > * { width: calc(100% / 5 - 20px); }
  }
  @media screen and (max-width: 1064px) {
    .clm-1-xspc { gap: 0; }
    .clm-1-xspc > * { width: 100%; }
    .clm-2-xspc { gap: 20px; }
    .clm-2-xspc > * { width: calc(50% - 10px); }
    .clm-3-xspc { gap: 40px; }
    .clm-3-xspc > * { width: calc(100% / 3 - 27px); }
    .clm-4-xspc { gap: 32px; }
    .clm-4-xspc > * { width: calc(100% / 4 - 24px); }
    .clm-5-xspc { gap: 24px; }
    .clm-5-xspc > * { width: calc(100% / 5 - 20px); }
  }
  @media screen and (max-width: 960px) {
    .clm-1-tab { gap: 0; }
    .clm-1-tab > * { width: 100%; }
    .clm-2-tab { gap: 20px; }
    .clm-2-tab > * { width: calc(50% - 10px); }
    .clm-3-tab { gap: 40px; }
    .clm-3-tab > * { width: calc(100% / 3 - 27px); }
    .clm-4-tab { gap: 32px; }
    .clm-4-tab > * { width: calc(100% / 4 - 24px); }
    .clm-5-tab { gap: 24px; }
    .clm-5-tab > * { width: calc(100% / 5 - 20px); }
  }
  @media screen and (max-width: 560px) {
    .clm-1-sp { gap: 16px; }
    .clm-1-sp > * { width: 100%; }
    .clm-2-sp { gap: 24px; }
    .clm-2-sp > * { width: calc(50% - 12px); }
    .clm-3-sp { gap: 16px; }
    .clm-3-sp > * { width: calc(100% / 3 - 11px); }
    .clm-4-sp { gap: 12px; }
    .clm-4-sp > * { width: calc(100% / 4 - 9px); }
    .clm-5-sp { gap: 8px; }
    .clm-5-sp > * { width: calc(100% / 5 - 7px); }
  }
  @media screen and (max-width: 413px) {
    .clm-1-smsp { gap: 0; }
    .clm-1-smsp > * { width: 100%; }
    .clm-2-smsp { gap: 24px; }
    .clm-2-smsp > * { width: calc(50% - 12px); }
    .clm-3-smsp { gap: 16px; }
    .clm-3-smsp > * { width: calc(100% / 3 - 11px); }
    .clm-4-smsp { gap: 12px; }
    .clm-4-smsp > * { width: calc(100% / 4 - 9px); }
    .clm-5-smsp { gap: 8px; }
    .clm-5-smsp > * { width: calc(100% / 5 - 7px); }
  }
  @media screen and (max-width: 374px) {
    .clm-1-xssp { gap: 0; }
    .clm-1-xssp > * { width: 100%; }
    .clm-2-xssp { gap: 20px; }
    .clm-2-xssp > * { width: calc(50% - 10px); }
    .clm-3-xssp { gap: 12px; }
    .clm-3-xssp > * { width: calc(100% / 3 - 8px); }
    .clm-4-xssp { gap: 10px; }
    .clm-4-xssp > * { width: calc(100% / 4 - 8px); }
    .clm-5-xssp { gap: 8px; }
    .clm-5-xssp > * { width: calc(100% / 5 - 7px); }
  }

/* body_lines
*************************************************** */
  .body_lines {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: .03;
    pointer-events: none;
  }
  .body_lines .line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
  }
  .body_lines .line:nth-of-type(1) { left: calc(50% - 720px); }
  .body_lines .line:nth-of-type(2) { left: calc(50% - 360px); }
  .body_lines .line:nth-of-type(3) { left: 50%; }
  .body_lines .line:nth-of-type(4) { left: calc(50% + 360px); }
  .body_lines .line:nth-of-type(5) { left: calc(50% + 720px); }
  @media screen and (max-width: 768px) {
    .body_lines .line:nth-of-type(1) { left: 5%; }
    .body_lines .line:nth-of-type(2) { left: 27.5%; }
    .body_lines .line:nth-of-type(4) { left: 72.5%; }
    .body_lines .line:nth-of-type(5) { left: 95%; }
  }
  @media screen and (max-width: 560px) {
    .body_lines .line:nth-of-type(1) { left: 16px; }
    .body_lines .line:nth-of-type(2) { display: none; }
    .body_lines .line:nth-of-type(4) { display: none; }
    .body_lines .line:nth-of-type(5) { left: calc(100% - 16px); }
  }

/* slash
*************************************************** */
  .slash {
    display: inline-block;
    width: 1px;
    height: 1em;
    transform: skew(-12.8deg);
  }

/* skew
*************************************************** */
  .skew,
  .skew-bf::before,
  .skew-af::after,
  .skew_img {
    transform: skew(-12.8deg);
  }
  .skew_rev,
  .skew_rev-bf::before {
    transform: skew(12.8deg);
  }
  .skew_img img,
  .skew_img .bg_img {
    transform: skew(12.8deg) translateX(-7%);
    max-width: 116%;
    width: 116%;
  }
  .skew_bg {
    width: 1020px;
    height: 560px;
    transform: skew(-12.8deg) translateX(-6%);
  }
  @media screen and (max-width: 1280px) {
    .skew_bg {
      width: 780px;
      height: 428px;
    }
  }
  @media screen and (max-width: 768px) {
    .skew_bg {
      width: 460px;
      height: 252px;
    }
  }
  @media screen and (max-width: 560px) {
    .skew_bg {
      width: 300px;
      height: 164px;
    }
  }


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

    PLUGINS

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

/* slick
*************************************************** */
  .slick-arrow {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100vw;
    height: 100%;
    opacity: .4;
  }
  .slick-next {
    left: 100%;
  }
  .slick-prev {
    right: 100%;
  }
  .slick-arrow::before {
    content: '';
    position: absolute;
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    border-top-width: 2px;
    border-top-style: solid;
    border-right-width: 2px;
    border-right-style: solid;
  }
  .slick-next::before {
    left: 12px;
    transform: rotate(45deg);
  }
  .slick-prev::before {
    right: 12px;
    transform: rotate(-135deg);
  }
  .slick-dots {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    column-gap: 8px;
  }
  .slick-dot {
    width: 48px;
    height: 48px;
  }
  .slick-dot::before,
  .slick-dot::after {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    opacity: 0;
  }
  .slick-dot::before {
    opacity: .2;
  }
  .slick-active .slick-dot::before {
    opacity: 0;
  }
  .slick-active .slick-dot::after {
    opacity: 1;
  }
  .slick-active .current {
    opacity: .1;
  }
  @media screen and (min-width: 961px) {
    .slick-dot:hover::before {
      opacity: .65;
    }
  }
  @media screen and (max-width: 560px) {
    .slick-dots {
      column-gap: 6px;
    }
    .slick-dot {
      width: 32px;
      height: 32px;
    }
  }

/* izimodal
*************************************************** */
  @media screen and (max-width: 960px) {
    .iziModal-navigate {
      z-index: 100000 !important;
    }
    .modal_list--item .txtarea {
      padding-top: 32px;
      padding-bottom: 64px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .iziModal-navigate > button {
      width: 48px;
      height: 48px;
      top: inherit;
      top: auto;
      bottom: 32px;
      color: #201e1e;
      background: #fff;
      opacity: .9;
      border-radius: 100px;
      box-shadow: 0 0 0 4px rgba(0,0,0,.05);
    }
    .iziModal-navigate > button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8px;
      height: 8px;
      border-top: 1px solid;
      border-right: 1px solid;
      transform-origin: 0 0;
    }
    .iziModal-navigate .iziModal-navigate-prev {
      left: calc(100% - 140px);
      margin-left: 0 !important;
    }
    .iziModal-navigate .iziModal-navigate-prev::before {
      transform: rotate(-135deg) translate(-50%,-50%);
    }
    .iziModal-navigate .iziModal-navigate-next {
      right: 24px;
      margin-right: 0 !important;
    }
    .iziModal-navigate .iziModal-navigate-next::before {
      transform: rotate(45deg) translate(-50%,-50%);
    }
  }

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

    HEADER

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

/* header
**************************************** */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 64px;
    padding-right: 0;
    z-index: 10000;
    width: 100%;
  }
  .header--logo {
    z-index: 0;
  }
  .header_box {
    height: 92px;
  }
  .home .header_box {
    position: fixed;
    top: 0;
    right: -12px;
    width: 100%;
    z-index: 1;
  }
  .home.scrolled .header_box {
    height: 72px;
  }
  .home .header_box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 168px;
    height: 100%;
  }
  .header:hover::before,
  .scrolled .header::before {
    opacity: .95;
  }
  @media screen and (max-width: 1400px) {
    .header {
      padding-left: 32px;
    }
  }
  @media screen and (max-width: 1200px) {
    .header {
      padding-top: 19px;
      padding-bottom: 20px;
      padding-left: 24px;
      height: 74px;
    }
    .header--logo img {
      width: 140px;
    }
    .header--nav {
      position: relative;
      z-index: 100;
    }
    .header_box {
      height: 74px;
    }
  }
  @media screen and (max-width: 1064px) {
    .home .header_box::before {
      content: none;
    }
  }
  @media screen and (max-width: 768px) {
    .header {
      padding-top: 12px;
      padding-bottom: 12px;
      height: 56px;
    }
    .header--logo img {
      width: 120px;
    }
  }
  @media screen and (max-width: 560px) {
    .header {
      padding-left: 16px;
    }
  }

/* gnav
**************************************** */

  /* --- gnav ---  */
  .gnav_list--item_in {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .gnav_list--item_in .txt {
    display: block;
    line-height: 1em;
  }
  .gnav_list--item_in .txt:nth-of-type(2) {
    font-size: 80%;
    margin-top: 8px;
  }
  .gnav_list--item_in .ico-arrow {
    position: absolute;
  }
  .gnav_list--item_in.output-1 .txt {
    position: relative;
    padding-right: 20px;
  }
  .gnav_list--item_in.output-2 .txt .ico-arrow {
    display: none;
  }
  .gnav_list--item_in .current_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .gnav_list--item-company .img {
    height: 48px;
  }
  .gnav_list--item-company img {
    display: block;
    width: auto;
  }
  .gnav_list--item-company .snav_list--item-loewer img {
    height: 34px;
  }
  .gnav_list--item-company .snav_list--item-bless img {
    height: 48px;
  }

  /* --- snav ---  */
  .gnav_sub {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding-top: 28px;
    padding-bottom: 24px;
    overflow: hidden;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }
  .snav_list {
    gap: 16px;
  }
  .snav_list--item {
    width: calc(50% - 8px);
  }
  .snav_list--item:nth-of-type(5n+5),
  .snav_list--item:last-child { margin-right: 0; }
  .snav_list--item .img_area {
    display: block;
    width: 100%;
  }
  .snav_list--item .img_area::before {
    z-index: 1;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
  .snav_list--item .img {
    height: 46px;
  }
  .snav_list--item_in {
    height: 144px;
  }

  @media screen and (min-width: 769px) {
    .gnav_list--item .tap_area,
    .snav_list--item-parent {
      display: none;
    }
    .snav_list--item .img_area .bg_img {
      transform: scale(1.025);
    }
    .snav_list--item:hover .img_area .bg_img {
      transform: scale(1);
      opacity: .5;
    }
  }
  @media screen and (min-width: 1201px) {
    /* --- gnav ---  */
    .gnav_btn,
    .gnav--logo,
    .gnav_layer,
    .gnav_list--item-news {
      display: none;
    }
    .gnav_list {
      margin-right: 40px;
    }
    .gnav_list--item_in {
      padding-left: 24px;
      padding-right: 24px;
      height: 92px;
    }
    .scrolled .gnav_list--item_in {
      height: 72px;
    }
    .gnav_list--item_in .ico-arrow {
      width: 14px;
      height: 14px;
    }
    .gnav_list--item_in.output-1 .txt .ico-arrow {
      top: 50%;
      right: 0;
      transform: translateY(-50%);
    }
    .gnav_list--item_in.output-2 > .ico-arrow {
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
    }

    /* --- snav ---  */
    .gnav_list--item:hover .gnav_sub {
      pointer-events: all;
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1400px) {
    .gnav_list {
      margin-right: 24px;
    }
    .gnav_list--item_in {
      padding-left: 16px;
      padding-right: 16px;
      font-size: 93%;
    }
  }
  @media screen and  (max-width: 1200px) {
    /* --- nav common ---  */
    .gnav,
    .gnav_sub {
      position: fixed;
      top: 0;
      height: 100%;
    }
    /* --- gnav ---  */
    .gnav {
      right: 0;
      width: 100%;
      background: #0f1218;
      pointer-events: none;
      overflow: hidden;
      opacity: 0;
    }
    .gnav_btn {
      position: fixed;
      top: 0;
      right: 0;
      width: 74px;
      height: 74px;
      z-index: 9999;
    }
    .gnav_btn--in {
      line-height: 1em;
    }
    .gnav_btn--lines {
      position: relative;
      width: 32px;
      height: 15px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 12px;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #fff;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: 7px;
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .gnav_btn--txt {
      display: block;
      font-size: 86%;
      padding-left: .4em;
      color: #fff;
      white-space: nowrap;
      clip-path: inset(0 0 0);
      letter-spacing: .3em;
      line-height: 1em;
    }
    .gnav_btn--txt span {
      display: inline-block;
      transition-duration: .3s;
      transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
    }
    .gnav_btn--txt .open {
      position: absolute;
      top: 50%;
      left: 52%;
      transform: translate(-50%,-50%);
    }
    .gnav_btn--txt .close {
      transform: translateY(150%);
    }
    .gnav_list--item:last-child {
      margin-right: auto;
    }
    .snav_list--item_in .txt {
      font-size: 100%;
    }
    .snav_list--item .img {
      width: 80px;
      height: 24px;
      margin-bottom: 12px;
    }
    .gnav_list--item-company .snav_list--item_in .ttl {
      line-height: 1em;
    }
    .gnav_list--item-company .snav_list--item_in .txt {
      font-size: 86%;
    }
    .gnav_list--item-company .snav_list--item-bless img {
      height: 28px;
    }
    .gnav_layer {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10;
      width: 100%;
      height: 100%;
      opacity: 0;
      pointer-events: none;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: translate(0,0);
    }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      top: 50%;
      -webkit-transform: rotate(-25deg);
      transform: rotate(-25deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(3) {
      top: 50%;
      -webkit-transform: rotate(25deg);
      transform: rotate(25deg);
    }
    .header.active .gnav_btn--txt .open {
      transform: translate(-50%,-150%);
    }
    .header.active .gnav_btn--txt .close {
      transform: translateY(0);
    }
    .header.active .gnav_layer {
      opacity: .85;
    }
  }

  @media screen and (max-width: 1200px) and (min-width: 769px) {
    .gnav {
      top: 74px;
      left: 74px;
      width: calc(100% - 148px);
      height: calc(100% - 148px);
      transform: scale(1.015);
      padding: 8vw 6vw;
    }
    .gnav--logo {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: 2vw;
    }
    .gnav_lists {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .gnav_list {
      column-gap: 24px;
      margin-bottom: 48px;
    }
    .gnav_list--item {
      position: relative;
      width: calc(50% - 12px);
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .gnav_list--item_in {
      padding-top: 28px;
      padding-bottom: 28px;
    }
    .gnav_list--item_in .txt {
      line-height: 24px;
    }
    .gnav_sub {
      position: absolute;
      top: calc(100% - 16px);
      height: auto;
      transform: translateY(8px);
      padding: 16px;
      border: 1px solid rgba(255,255,255,.1);
    }
    .gnav_sub .inner {
      width: 100%;
    }
    .gnav_sub .tap_area {
      display: none;
    }
    .gnav_list--item:hover {
      z-index: 1;
    }
    .gnav_list--item:hover .gnav_sub {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0)
    }
    .snav_list--item {
      width: 100%;
    }
    .snav_list--item_in {
      height: 8.1vw;
    }
    .gnav_list--item_in .current_layer {
      top: calc(100% - 2px);
    }
  }
  @media screen and (max-width: 768px) {
    .gnav {
      width: 80%;
      padding-top: 0;
      padding-bottom: 64px;
      padding-left: 16px;
      padding-right: 16px;
      transform: translateX(15px);
    }
    .gnav_btn {
      width: 56px;
      height: 56px;
    }
    .gnav_btn--lines {
      width: 24px;
      margin-bottom: 8px;
    }
    .gnav--logo {
      margin-bottom: 40px;
      height: 56px;
      margin-bottom: 32px;
      margin-left: 8px;
    }
    .gnav--logo img {
      width: 132px;
    }
    .gnav_lists {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .gnav_list--item {
      position: relative;
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .gnav_list--item:first-child {
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .gnav_list--item_in {
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding-top: 18px;
      padding-bottom: 18px;
    }
    .gnav_list--item_in .txt {
      text-align: left;
      width: 100%;
      line-height: 24px;
    }
    .gnav_list--item_in .ico-arrow {
      right: 0;
      transform: rotate(-90deg);
    }
    .gnav_list--item_in .current_layer {
      width: 1px;
      height: 100%;
      left: -16px;
    }
    .gnav_list--item .tap_area {
      z-index: 1;
    }
    .gnav_list--item.sub_show {
      z-index: 1;
    }
    .gnav .gnav_list--item_in,
    .gnav > *:not(.gnav_lists),
    .gnav .contact_btn {
      animation-duration: .4s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-name: gnav_sub_in;
    }
    .gnav.sub_show .gnav_list--item_in,
    .gnav.sub_show > *:not(.gnav_lists),
    .gnav.sub_show .contact_btn {
      animation-name: gnav_sub_out;
    }

    /* --- snav ---  */
    .gnav_sub {
      width: 100%;
      transform: translateX(8px);
      animation-duration: .4s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-name: gnav_sub_out;
      overflow-y: scroll;
      padding-left: 16px;
      padding-right: 16px;
    }
    .gnav_sub.is_show {
      animation-name: gnav_sub_in;
      pointer-events: all;
      z-index: 10;
    }
    .gnav_list {
      margin-bottom: 40px;
    }
    .gnav_list--item .tap_area {
      z-index: 1;
    }
    .gnav_sub .inner {
      width: 100%;
    }
    .snav_list {
      margin-top: 0;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      column-gap: 18px;
      row-gap: 12px;
    }
    .snav_list--item {
      width: 100%;
    }
    .snav_list--item_in {
      height: 78px;
    }
    .gnav_sub .tap_area-prev {
      margin-bottom: 28px;
      padding-top: 32px;
      padding-bottom: 0;
      padding-left: 0;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-color: rgba(0,0,0,.1);
    }
    .gnav_sub .tap_area-prev .ico-arrow-lft {
      display: block;
      margin-right: 8px;
    }
    .gnav_sub .tap_area-prev .ico-arrow-btm {
      display: none;
    }
    .gnav_sub .tap_area-prev .txt {
      display: block;
      text-align: left;
      line-height: 1em;
    }
    .gnav_sub .tap_area-prev .txt:nth-of-type(2) {
      opacity: 1;
      margin-top: 8px;
      font-size: 71%;
    }
  }
  @media screen and (max-width: 374px) {
    .gnav {
      width: 90%;
    }
  }

/* contact_btn
**************************************** */
  .contact_btn {
    margin-right: -12px;
  }
  .contact_btn--in {
    min-width: 168px;
    height: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 32px;
    padding-right: 32px;
  }
  @media screen and (min-width: 769px) {
    .contact_btn:hover .contact_btn--in::before {
      opacity: 0;
    }
    .contact_btn .contact_btn--in::after {
      background-image: linear-gradient(-45deg, #0588ad 42%, #0079a7 58%);
      z-index: -10;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1400px) {
    .contact_btn--in {
      min-width: 150px;
    }
  }


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

    FOOTER

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

/* news__review
*************************************************** */
  .news__review {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .news__review > section {
    width: 50%;
    padding-left: 144px;
    padding-right: 144px;
  }
  .news__review > section::before {
    width: calc(100% + 40px);
  }
  .news__review .news {
    transform: translateY(40px);
  }
  .news__review .news::before {
    left: -64px;
  }
  .news__review .review {
    transform: translateY(-40px);
  }
  .news__review .review::before {
    left: auto;
    left: inherit;
    right: -64px;
  }
  .news__review .review_list {
    max-height: 440px;
    overflow-y: scroll;
    padding-left: 16px;
    padding-right: 16px;
  }
  .news__review .review_list--item:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #373940;
  }
  .news__review .review_list--item .img {

    width: 120px;
    height: 80px;
    margin-right: 16px;
  }
  .news__review .review_list--item .ttl {
    padding-left: 8px;
  }
  .news__review .review_list--item a::before {
    z-index: 1;
  }
  .news__review .review_list--item .cat {
    line-height: 1em;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .news__review .review_list--item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.6em;
  }
  @media screen and (min-width: 961px) {
    .news__review .review_list--item:hover .bg_img {
      opacity: .4;
    }
  }
  @media screen and (max-width: 1680px) {
    .news__review .review {
      padding-left: 96px;
      padding-right: 56px;
    }
    .news__review .news {
      padding-left: 56px;
      padding-right: 96px;
    }
  }
  @media screen and (max-width: 1400px) {
    .news__review .review {
      padding-left: 80px;
      padding-right: 48px;
    }
    .news__review .news {
      padding-left: 48px;
      padding-right: 80px;
    }
  }
  @media screen and (max-width: 1280px) {
    .news__review > section {
      width: 90%;
    }
    .news__review .review {
      padding-left: 144px;
      padding-right: 96px;
      transform: translateY(0);
      margin-bottom: 40px;
    }
    .news__review .review_list {
      overflow-y: visible;
      max-height: inherit;
    }
    .news__review .news {
      margin-right: auto;
      padding-left: 96px;
      padding-right: 144px;
      transform: translateY(0);
    }
  }
  @media screen and (max-width: 960px) {
    .news__review > section {
      width: 95%;
    }
    .news__review .review {
      padding-left: 120px;
      padding-right: 64px;
    }
    .news__review .news {
      padding-left: 64px;
      padding-right: 120px;
    }
  }
  @media screen and (max-width: 768px) {
    .news__review > section {
      width: 100%;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .news__review > section::before {
      width: calc(100% + 80px);
    }
    .news__review .review {
      padding-left: 40px;
      padding-right: 24px;
      margin-bottom: 24px;
    }
    .news__review .news {
      padding-left: 24px;
      padding-right: 40px;
    }
  }
  @media screen and (max-width: 560px) {
    .news__review .review {
      padding-left: 12px;
      padding-right: 12px;
    }
    .news__review .review_list {
      padding-left: 12px;
      padding-right: 12px;
    }
    .news__review .review_list--item:first-child {
      padding-top: 4px;
    }
    .news__review .review_list--item .cat {
      position: absolute;
      left: 0;
      top: -4px;
    }
    .news__review .review_list--item:first-child .cat {
      top: 0;
    }
    .news__review .review_list--item .ttl {
      line-height: 1.4em;
    }
  }


/* foot_bnrs
*************************************************** */
  .foot_bnrs {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .foot_bnr {
    width: calc(50% - 20px);
  }
  .foot_bnr a {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .foot_bnr a::before {
    border-width: 1px;
    border-style: solid;
    z-index: 1;
  }
  .foot_bnr .fnt-en::before,
  .foot_bnr .fnt-en::after {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    width: 24px;
    height: 1px;
    opacity: .8;
  }
  .foot_bnr .fnt-en::before {
    right: calc(100% + 16px);
  }
  .foot_bnr .fnt-en::after {
    left: calc(100% + 16px);
  }
  .foot_bnr .bg_img {
    transform: scale(1.03);
  }
  .foot_bnr-company .bg_img {
    background-image: url(../images/common/foot_bnr_img-company.jpg);
  }
  .foot_bnr-contact .bg_img {
    background-image: url(../images/common/foot_bnr_img-contact.jpg);
  }
  @media screen and (min-width: 961px) {
    .foot_bnr:hover a::before {
      opacity: .5;
    }
    .foot_bnr:hover .bg_img {
      transform: scale(1);
      opacity: 1;
    }
  }
  @media screen and (max-width: 960px) {
    .foot_bnr .bg_img {
      transform: scale(1);
      opacity: .5;
    }
  }
  @media screen and (max-width: 768px) {
    .foot_bnrs .inner {
      row-gap: 8px;
    }
    .foot_bnr {
      width: calc(50% - 4px);
    }
    .foot_bnr .fnt-en::before,
    .foot_bnr .fnt-en::after {
      width: 16px;
    }
    .foot_bnr .fnt-en::before {
      right: calc(100% + 8px);
    }
    .foot_bnr .fnt-en::after {
      left: calc(100% + 8px);
    }
  }
  @media screen and (max-width: 560px) {
    .foot_bnr .head2 {
      font-size: 125%;
    }
    .foot_bnr .fnt-en {
      margin-top: 6px;
      padding-top: 12px;
      line-height: 20px;
    }
    .foot_bnr.foot_bnr-contact .fnt-en {
      line-height: 40px;
    }
    .foot_bnr .fnt-en::before {
      right: 50%;
      top: 0;
      transform: translateX(50%);
    }
    .foot_bnr .fnt-en::after {
      content: none;
    }
  }

/* footer
*************************************************** */
  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .footer .zip_add p {
    line-height: 1.8em;
  }
  .footer .zip_add .map {
    position: absolute;
    top: 2px;
    right: 0;
    border-width: 1px;
    border-style: solid;
    line-height: 1em;
    padding-top: 4px;
    padding-bottom: 2px;
    padding-left: 6px;
    padding-right: 5px;
  }
  .page_area {
    column-gap: 80px;
    margin-top: 80px;
  }
  .fnav_list {
    gap: 16px;
  }
  .fnav_list--item .txt {
    display: block;
  }
  .fnav_list--item .cir_ico {
    margin-right: 12px;
  }
  .fnav_sub .snav_list {
    gap: 6px;
    margin-top: 12px;
    padding-left: 16px;
  }
  .fnav_sub .snav_list--item {
    width: 100%;
  }
  .fnav_sub .snav_list--item .ico-arrow-rgt {
    width: 16px;
    height: 16px;
    margin-right: 4px;
  }
  .footer .snav_list--item_in {
    height: auto;
  }
  .foot_sub {
    width: 662px;
  }
  .footer--copyright {
    text-align: center;
  }
  @media screen and (max-width: 1280px) {
    .page_area {
      column-gap: 56px;
    }
  }
  @media screen and (max-width: 1064px) {
    .footer {
      padding-top: 64px;
      padding-bottom: 64px;
    }
    .footer .inner > .flx {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .footer .info_area {
      margin-bottom: 40px;
    }
    .page_area {
      column-gap: 20px;
      margin-top: 0;
      margin-bottom: 32px;
    }
    .foot_sub {
      width: 616px;
      margin-bottom: 32px;
    }
  }
  @media screen and (max-width: 768px) {
    .page_area {
      column-gap: 4px;
    }
    .foot_sub {
      width: 520px;
      max-width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .footer {
      padding-top: 48px;
      padding-bottom: 48px;
    }
    .footer .info_area {
      margin-bottom: 24px;
    }
    .page_area {
      width: 100%;
      row-gap: 12px;
      margin-bottom: 24px;
      padding-left: 50%;
    }
    .page_area--bloc .ttl {
      margin-bottom: 2px;
    }
    .page_area--bloc-menu {
      position: absolute;
      top: 0;
      left: 0;
    }
    .fnav_list {
      font-size: 89%;
      letter-spacing: .04em;
      gap: 8px;
    }
    .fnav_list--item .cir_ico {
      width: 18px;
      height: 18px;
    }
    .foot_sub {
      margin-bottom: 16px;
    }
    .foot_sub .sublist {
      margin-bottom: 8px;
      padding-left: 10px;
    }
  }
  @media screen and (max-width: 374px) {
    .page_area {
      padding-left: 0;
    }
    .page_area--bloc-menu {
      position: static;
    }
  }


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

    INDEX

############################################################################## */
  .home:not(.scrolled) .header:not(:hover) .clr-main,
  .home:not(.scrolled) .header:not(:hover) .gnav_list--item.current .gnav_list--item_in {
    color: #fff;
  }
  .home:not(.scrolled) .header:not(:hover) .bg_clr-main,
  .home:not(.scrolled) .header:not(:hover) .bg_clr-main-bf::before,
  .home:not(.scrolled) .header:not(:hover) .bg_clr-main-af::after {
    background-color: #fff;
  }
  .home:not(.scrolled) .header:not(:hover) .bdr_clr-main {
    border-color: #fff;
  }
  @media screen and (min-width: 1201px) {
    .home:not(.scrolled) .header:not(:hover) {
      mix-blend-mode: exclusion;
    }
  }
  @media screen and (min-width: 561px) {
    .home .slick-arrow {
      display: none;
    }
  }
  @media screen and (max-width: 560px) {
    .home .slick-arrow {
      mix-blend-mode: exclusion;
      opacity: .8;
    }
    .home .slick-arrow::before {
      top: 28vw;
      width: 24px;
      height: 24px;
      border-top-width: 1px;
      border-right-width: 1px;
    }
    .home .slick-next { left: calc(100% + 4px); }
    .home .slick-next::before { left: 0; }
    .home .slick-prev { right: calc(100% + 4px); }
    .home .slick-prev::before { right: 0; }
  }

/* hero
*************************************************** */
  .home .hero {
    padding-top: 92px;
  }
  .home .hero::before {
    height: 100%;
    top: auto;
    top: inherit;
    bottom: 0;
    background-image: linear-gradient(to top, #e2ebf0 0%, #cfd9df 100%);
  }
  .home .hero .txt_area {
    padding-top: 56px;
    padding-left: 80px;
    padding-right: 80px;
    margin-right: -120px;
  }
  .home .hero .txt_area::before {
    height: calc(100% + 92px);
    top: auto;
    top: inherit;
    bottom: 0;
  }
  .home .hero .hero_ttl {
    padding-right: 0.2em;
  }
  .home .hero .hero_ttl .wrld_no1 {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 1em;
  }
  .home .hero .hero_ttl .wrld_no1 .head6 {
    margin-left: 4px;
    margin-right: 4px;
  }
  .home .hero .hero_ttl .sect_ttl,
  .home .hero .hero_ttl .head2 {
    line-height: 1em;
  }
  .home .hero .check_list {
    row-gap: 10px;
  }
  .home .hero .check_list--item {
    column-gap: 16px;
  }
  .home .hero .check_list--item .check {
    width: 32px;
    height: 32px;
  }
  .home .hero .check_list--item .check::before {
    border-width: 2px;
    border-style: solid;
  }
  .home .hero .check_list--item .check svg {
    fill: #c61b1e;
  }
  .home .hero .no1__txts {
    column-gap: 48px;
    transform: translateX(-64px);
  }
  .home .hero .no1__txts .txts {
    padding-top: 32px;
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .home .hero .no1__txts .txts .ttl {
    position: absolute;
    left: 52.5%;
    top: 0;
    transform: translate(-50%,-50%);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    white-space: nowrap;
    line-height: 1em;
  }
  .home .hero .no1__txts .txts p {
    font-size: 150%;
  }
  .home .hero .no1__txts .txts .fnt-num {
    font-size: 150%;
  }
  .home .hero .img_area {
    max-width: calc(100% - 760px);
    margin-bottom: 64px;
  }
  .home .hero .img_area::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -48px;
    height: 252px;
    width: 100vw;
  }
  .home .hero .hero_slider--item {
    padding-top: 40px;
    padding-right: 32px;
  }
  .home .hero .hero_slider--item .ttl_area {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .home .hero .hero_slider--item .ttl_area .model-en {
    font-size: 667%;
    line-height: 1em;
    margin-left: 16px;
    padding-right: 0.2em;
  }
  .home .hero .hero_slider--item .ttl_area .model-en,
  .home .hero .hero_slider--item .ttl_area .model-jp {
    opacity: 0;
    transform: translateX(-16px);
  }
  .home .hero .hero_slider--item .ttl_area .model-en {
    transition-delay: 1.2s;
  }
  .home .hero .hero_slider--item .ttl_area .model-jp {
    transition-delay: 1.3s;
    line-height: 1.2em;
  }
  .home .hero .hero_slider--item .ttl_area .model-jp .xspc-none-inline {
    display: none;
  }
  .home .hero .hero_slider--item.slick-current .ttl_area .model-en,
  .home .hero .hero_slider--item.slick-current .ttl_area .model-jp {
    transform: translateX(0);
  }
  .home .hero .hero_slider--item.slick-current .ttl_area .model-en {
    opacity: .2;
  }
  .home .hero .hero_slider--item.slick-current .ttl_area .model-jp {
    opacity: .4;
  }
  .home .hero .hero_slider--item-img {
    padding-top: 0 !important;
    padding-right: 0;
  }
  .home .hero .hero_slider--item-img:last-child {
    transform: translateX(32px);
  }
  .home .hero .hero_slider--item-img .skew_img {
    width: 80%;
    padding-top: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .home .hero .hero_slider--item-img .skew_img img,
  .home .hero .hero_slider--item-img .skew_img .bg_img {
    transform: skew(12.8deg) translateX(-11%);
    max-width: 126%;
    width: 126%;
  }
  @media screen and (max-width: 1680px) {
    .home .hero .img_area {
      max-width: calc(100% - 700px);
    }
    .home .hero .hero_slider--item {
      padding-right: 0;
    }
    .home .hero .hero_slider--item .ttl_area {
      left: 32px;
    }
  }
  @media screen and (max-width: 1600px) {
    .home .hero .hero_slider--item {
      padding-top: 80px;
      transform: translateX(24px);
    }
    .home .hero .hero_slider--item .ttl_area {
      left: 0;
    }
    .home .hero .hero_slider--item .clip_img {
      width: 460px;
      height: 460px;
    }
    .home .hero .hero_slider--item-img {
      padding-top: 0 !important;
      transform: translateX(0px) !important;
    }
    .home .hero .hero_slider--item-img .skew_img {
      padding-top: 540px;
    }
  }
  @media screen and (max-width: 1480px) {
    .home .hero .txt_area {
      padding-bottom: 64px;
      padding-left: 48px;
      padding-right: 48px;
      font-size: 86%;
    }
    .home .hero .check_list {
      max-width: 384px;
      margin-left: auto;
      margin-right: auto;
    }
    .home .hero .check_list--item .check {
      width: 28px;
      height: 28px;
    }
    .home .hero .check_list--item .check svg {
      width: 15px;
      height: 15px;
    }
    .home .hero .no1__txts {
      column-gap: 32px;
    }
    .home .hero .no1__txts .no1 {
      width: 144px;
      margin-bottom: 24px;
    }
    .home .hero .img_area {
      max-width: calc(100% - 548px);
    }
    .home .hero .hero_slider--item {
      padding-top: 48px;
      transform: translateX(0);
    }
    .home .hero .hero_slider--item-img .skew_img {
      padding-top: 490px;
    }
  }
  @media screen and (max-width: 1280px) {
    .home .hero .img_area {
      max-width: calc(100% - 532px);
    }
    .home .hero .img_area::before {
      height: 160px;
    }
    .home .hero .hero_slider--item {
      transform: translateX(24px);
    }
    .home .hero .hero_slider--item .clip_img {
      width: 420px;
      height: 420px;
    }
    .home .hero .hero_slider--item .ttl_area .model-en {
      font-size: 500%;
    }
    .home .hero .hero_slider--item .ttl_area .model-jp {
      font-size: 86%;
    }
    .home .hero .hero_slider--item-img .skew_img {
      padding-top: 450px;
    }
  }
  @media screen and (max-width: 1200px) {
    .home .hero .hero_slider--item {
      padding-top: 64px;
    }
    .home .hero .hero_slider--item .clip_img {
      width: 380px;
      height: 380px;
    }
    .home .hero .hero_slider--item .ttl_area {
      left: -24px;
    }
    .home .hero .hero_slider--item-img .skew_img {
      padding-top: 425px;
    }
  }
  @media screen and (max-width: 1064px) {
    .home .hero {
      padding-top: 80px;
    }
    .home .hero .img_area .hero_ttl {
      margin-bottom: 48px;
    }
    .home .hero .img_area {
      max-width: 100%;
      width: 100%;
      margin-bottom: 0;
    }
    .home .hero .img_area::before {
      width: 200vw;
      bottom: -24px;
      right: -16px;
    }
    .home .hero .img_area .hero_slider {
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
    .home .hero .hero_slider--item {
      padding-top: 24px;
    }
    .home .hero .hero_slider--item .ttl_area {
      left: 0;
    }
    .home .hero .hero--cont {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 40px;
    }
    .home .hero .txt_area {
      width: 100%;
      padding-top: 56px;
      padding-bottom: 40px;
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 64px;
      margin-right: 0;
    }
    .home .hero .txt_area::before {
      width: 200vw;
      height: 100%;
      left: -48px;
    }
    .home .hero .check_list {
      margin-left: inherit;
      margin-right: inherit;
      margin-bottom: 32px;
    }
    .home .hero .no1__txts .txts {
      padding-top: 24px;
      padding-bottom: 16px;
      margin-bottom: 16px;
    }
    .home .hero .no1__txts .txts p {
      font-size: 120%;
    }
    .home .hero .no1__txts {
      transform: translateX(0);
    }
    .home .hero .no1__txts .no1 {
      margin-bottom: 0;
    }
    .home .hero .hero_slider--item-img .skew_img {
      padding-top: 370px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1064px) {
    .home .hero .no1__txts {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .home .hero .check_list {
      margin-bottom: 0;
    }
  }
  @media screen and (max-width: 768px) {
    .home .hero .hero--cont {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .home .hero .txt_area {
      padding-top: 40px;
    }
    .home .hero .no1__txts .txts {
      margin-bottom: 0;
    }
  }
  @media screen and (max-width: 560px) {
    .home .hero .hero_slider--item {
      transform: translateX(0);
    }
    .home .hero .hero_slider--item .ttl_area {
      left: 8px;
    }
    .home .hero .hero_slider--item .ttl_area .model-en {
      margin-bottom: 0;
      font-size: 320%;
    }
    .home .hero .hero_slider--item .clip_img {
      width: 240px;
      height: 240px;
    }
    .home .hero .img_area::before {
      height: 120px;
      right: 0;
      bottom: -16px;
    }
    .home .hero .img_area .hero_ttl {
      margin-bottom: 32px;
    }
    .home .hero .check_list,
    .home .hero .img_area .hero_slider {
      max-width: 380px;
    }
    .home .hero .txt_area {
      padding-top: 24px;
      padding-bottom: 24px;
      margin-bottom: 56px;
    }
    .home .hero .txt_area::before {
      left: -32px;
    }
    .home .hero .check_list {
      margin-bottom: 16px;
    }
    .home .hero .check_list--item {
      column-gap: 12px;
    }
    .home .hero .check_list--item .check {
      width: 20px;
      height: 20px;
    }
    .home .hero .check_list--item .check svg {
      width: 10px;
      height: 10px;
    }
    .home .hero .no1__txts {
      column-gap: 24px;
    }
    .home .hero .no1__txts .txts {
      margin-top: 16px;
      padding-top: 20px;
      padding-bottom: 12px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .home .hero .no1__txts .no1 {
      width: 104px;
    }
    .home .hero .hero_slider--item-img .skew_img {
      padding-top: 230px;
    }
  }
  @media screen and (max-width: 374px) {
    .home .hero .no1__txts .txts {
      margin-bottom: 16px;
    }
  }

  .frac {
    display: inline-block;
    vertical-align: -0.6em;
    text-align: center;
    font-size: 1em;
    line-height: 1.2em;
    margin-left: .2em;
    margin-right: .2em;
  }
  .si,
  .bo {
    display: block;
    padding-left: .2em;
    padding-right: .2em;
  }
  .si {
    line-height: 1.0em;
    padding-bottom: .15em;
  }
  .bo {
    line-height:1em;
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #929294;
  }

/* sample
*************************************************** */
  .home .sample .sample_blocs {
    padding-left: 144px;
    padding-right: 144px;
  }
  .home .sample .sample_bloc {
    width: 50%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
    border-width: 1px;
    border-style: solid;
  }
  .home .sample .sample_bloc:nth-of-type(odd) {
    border-left-width: 2px;
  }
  .home .sample .sample_bloc:nth-of-type(even) {
    border-right-width: 2px;
  }
  .home .sample .img_area {
    padding: 12px;
    max-width: 984px;
    margin-left: auto;
    margin-right: auto;
  }
  .home .sample .bf_af_img {
    position: relative;
    overflow: hidden;
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
  }
  .home .sample .bf_img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    border-right: 3px solid rgba(255, 255, 255,.8);
    box-shadow: 10px 0 15px -13px rgba(0,0,0,.15);
  }
  .home .sample .bf_img img {
    z-index: 0;
    object-fit: cover;
    object-position: left center;
  }
  .home .sample .bf_img::before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    right: -22px;
    bottom: 0;
    width: 40px;
    height: 40px;
    margin: auto;
    border: 3px solid rgba(255, 255, 255,.8);
    border-radius: 50%;
    box-shadow: 10px 0 15px -13px rgba(0,0,0,.15);
  }
  .home .sample .bf_af_img .range {
    z-index: 1;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: col-resize;
  }
  .home .sample .swipe_drug {
    z-index: 1;
    pointer-events: none;
  }
  .home .sample .swipe_drug .ico-mouse {
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-name: drug_anm;
  }
  @keyframes drug_anm {
    0% {
      transform: translateX(-16px);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      transform: translateX(16px);
      opacity: 0;
    }
  }
  .home .sample .img_area:hover .swipe_drug {
    opacity: 0;
  }
  @media screen and (min-width: 961px) {
    .home .sample .sample_bloc {
      border-top-width: 2px;
      border-bottom: none;
    }
  }
  @media screen and (max-width: 1680px) {
    .home .sample .sample_blocs {
      padding-left: 0;
      padding-right: 0;
    }
  }
  @media screen and (max-width: 960px) {
    .home .sample .sample_bloc {
      width: 100%;
    }
    .home .sample .sample_bloc {
      border-left: none;
      border-right: none;
    }
  }
  @media screen and (max-width: 413px) {
    .home .sample .sample_bloc {
      padding-top: 24px;
      padding-bottom: 24px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .home .sample .sample_bloc .btn-mov .txt {
      letter-spacing: .1em;
    }
  }

/* cases_voice
*************************************************** */
  .home .cases_voice .posts-cases_voice {
    padding-left: 96px;
  }
  .home .cases_voice .posts-cases_voice .post {
    margin-left: 10px;
    margin-right: 10px;
  }
  .home .cases_voice .posts-cases_voice .slick-list {
    overflow: visible;
  }
  .home .cases_voice .posts-cases_voice .slick-track {
    display: flex;
  }
  .home .cases_voice .posts-cases_voice .slick-slide {
    height: auto !important;
  }
  .home .cases_voice .posts-cases_voice .slick-dots {
    position: absolute;
    top: calc(100% + 64px);
    left: 96px;
  }
  @media screen and (max-width: 960px) {
    .home .cases_voice .posts-cases_voice {     padding-left: 40px; }
    .home .cases_voice .posts-cases_voice .slick-dots { left: 40px; }
  }
  @media screen and (max-width: 768px) {
    .home .cases_voice .posts-cases_voice {     padding-left: 24px; }
    .home .cases_voice .posts-cases_voice .slick-dots { left: 24px; }
  }
  @media screen and (max-width: 560px) {
    .home .cases_voice .inner {
      width: calc(100% - 80px);
    }
    .home .cases_voice .sect_ttl-sm {
      margin-left: auto;
    }
    .home .cases_voice .posts-cases_voice {
      padding-left: 0;
      padding-bottom: 48px;
      margin-bottom: 24px;
    }
    .home .cases_voice .posts-cases_voice .post {
      margin-left: 4px;
      margin-right: 4px;
    }
    .home .cases_voice .posts-cases_voice .slick-dots {
      top: auto;
      top: inherit;
      bottom: 0;
      left: 0;
      width: 100%;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .home .cases_voice .btn-def {
      margin-right: auto;
    }

  }
  @media screen and (max-width: 413px) {
    .home .cases_voice .posts-cases_voice .line_list--item {
      display: block;
    }
    .home .cases_voice .posts-cases_voice .line_list--item .ttl {
      display: table;
      width: auto;
      padding-bottom: 0;
    }
    .home .cases_voice .posts-cases_voice .line_list--item .ttl::before {
      height: 1px;
      width: 16px;
      left: calc(100% + 8px);
      bottom: .9em;
    }
    .home .cases_voice .posts-cases_voice .line_list--item > .txts {
      padding-top: 0;
    }
  }

/* features
*************************************************** */
  .home .features .fix_wrap {
    column-gap: 120px;
  }
  .home .features .side_column,
  .home .features .side_column--in {
    width: 340px;
  }
  .home .features .features_list {
    padding-top: 96px;
    row-gap: 112px;
  }
  @media screen and (min-width: 1065px) {
    .home .features .lr_bloc .img_area {
      max-width: 48%;
    }
  }
  @media screen and (max-width: 1280px) and (min-width: 1065px) {
    .home .features .side_column,
    .home .features .side_column--in {
      width: 280px;
    }
    .home .features .side_column .head6 {
      text-align: left;
      padding-left: 16px;
      font-size: 116%;
    }
    .home .features .side_column .sect_ttl {
      font-size: 280%;
    }
    .home .features .side_column .fnt-lg {
      font-size: 100%;
    }
  }
  @media screen and (max-width: 1064px) {
    .home .features .main_column {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .home .features .side_column,
    .home .features .side_column--in {
      width: 100%;
    }
    .home .features .side_column .head6 {
      padding-left: 16px;
    }
    .home .features .side_column .sect_ttl {
      margin-left: auto;
      margin-right: auto;
    }
    .home .features .side_column .fnt-lg {
      text-align: center;
    }
  }
  @media screen and (max-width: 680px) {
    .home .features .features_list {
      row-gap: 88px;
    }
  }
  @media screen and (max-width: 560px) {
    .home .features .side_column br.xspc-none {
      display: block;
    }
    .home .features .side_column .fnt-lg {
      font-size: 93%;
    }
    .home .features .features_list {
      row-gap: 64px;
      padding-top: 72px;
    }
  }

/* compare
*************************************************** */
  .home .compare_gallery {
    width: 1296px;
    left: 50%;
    padding-top: 40px;
    padding-bottom: 40px;
    transform: translateX(-50%);
  }
  .home .compare_gallery .bg {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .home .compare_gallery .compare_list {
    row-gap: 32px;
  }
  .home .compare_gallery .compare_list .slick-list {
    overflow: visible;
  }
  .home .compare_gallery .compare_list .slick-dots {
    position: absolute;
    bottom: calc(100% + 40px);
    right: 64px;
  }
  .home .compare_gallery .compare_list--item {
    margin-left: 8px;
    margin-right: 8px;
  }
  .home .compare_gallery .compare_imgs {
    padding: 20px;
  }
  .home .compare_gallery .compare_imgs .img {
    width: calc(50% - 8px);
  }
  .home .compare_gallery img {
    transform: scale(1.01);
  }
  .home .compare_clm {
    width: calc(100% / 3 - 1px);
    row-gap: 1px;
  }
  .home .compare_clm li,
  .home .compare_clm li p {
    line-height: 1.6em;
  }
  .home .compare_clm li {
    position: relative;
    height: 88px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 4px;
  }
  .home .compare_clm li.ttl {
    row-gap: 12px;
  }
  .home .compare_clm li.ttl,
  .home .compare_clm li.work_h,
  .home .compare_clm li.year {
    height: 140px;
  }
  .home .compare_clm li.ttl .model {
    line-height: 1em;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .home .compare_clm li:not(.ttl) {
    background-color: rgba(255,255,255,.95);
  }
  .home .compare_clm-ttl li:not(.ttl) {
    background-color: rgba(255,255,255,.85);
  }
  .home .compare_clm-loewer {
    border-width: 4px;
    border-style: solid;
    transform: translateY(-32px);
  }
  .home .compare_clm-loewer li.ttl {
    height: 168px;
  }
  .home .compare_clm-loewer li h4 {
    font-size: 109%;
  }
  .home .compare_clm-loewer li .grad-main {
    display: inline-block;
    font-size: 125%;
    margin-left: 2px;
    margin-right: 2px;
  }
  .home .compare_clm-loewer li .grad-main.num {
    font-size: 150%;
  }
  .home .compare_clm-other li.ttl {
    background-color: #c8dbe8;
  }
  @media screen and (min-width: 961px) {
    .home .compare_gallery .compare_list .slick-arrow:hover {
      opacity: .6;
    }
  }
  @media screen and (max-width: 1340px) {
    .home .compare_gallery {
      width: 100%;
    }
    .home .compare_gallery .compare_imgs .img {
      width: calc(50% - 6px);
    }
  }
  @media screen and (min-width: 961px) and (max-width: 1280px) {
    .home .compare_clm .fnt-xs {
      letter-spacing: 0em;
    }
  }
  @media screen and (max-width: 960px) {
    .home .compare_clm {
      width: calc(50% - 1px);
    }
    .home .compare_clm li:not(.ttl) {
      height: 120px;
      padding-top: 32px;
    }
    .home .compare_clm li::before {
      content: attr(data-ttl);
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      line-height: 32px;
      text-align: center;
      font-style: italic;
      font-size: 86%;
      text-decoration: underline;
      opacity: .6;
      white-space: pre;
    }
    .home .compare_clm li.adapter::before {
      line-height: 16px;
      font-size: 71%;
    }
    .home .compare_clm li.work_h,
    .home .compare_clm li.year {
      height: 168px;
    }
  }
  @media screen and (max-width: 768px) {
    .home .compare_gallery .compare_list--item .ttl {
      line-height: 1.4em;
      margin-bottom: 12px;
    }
    .home .compare_gallery .compare_list--item .ttl_no {
      opacity: .6;
      font-style: italic;
      font-size: 83%;
    }
    .home .compare_clm li.work_h,
    .home .compare_clm li.year {
      height: 156px;
    }
    .home .compare_clm .fnt-xs {
      letter-spacing: 0em;
    }
  }
  @media screen and (max-width: 680px) {
    .home .compare_clms {
      width: calc(100% + 32px);
      margin-left: -16px;
    }
  }
  @media screen and (max-width: 560px) {
    .home .compare_gallery {
      padding-top: 32px;
      padding-bottom: 32px;
      margin-bottom: 24px;
    }
    .home .compare_gallery .compare_list {
      row-gap: 24px;
    }
    .home .compare_gallery .compare_imgs {
      padding: 12px;
      width: calc(100% + 32px);
      margin-left: -16px;
    }
    .home .compare_gallery .compare_imgs .img {
      width: calc(50% - 4px);
    }
    .home .compare_clms {
      width: calc(100% + 16px);
      margin-left: -8px;
    }
    .home .compare_clm li.ttl {
      font-size: 85%;
      line-height: 1.6em;
      height: 112px;
      row-gap: 8px;
    }
    .home .compare_clm li:not(.ttl) {
      padding-top: 24px;
    }
    .home .compare_clm li::before {
      letter-spacing: 0em;
    }
    .home .compare_clm .fnt-xs {
      font-size: 71%;
      letter-spacing: -.04em;
    }
    .home .compare_clm-loewer li.ttl {
      height: 140px;
      row-gap: 8px;
    }
    .home .compare_clm-loewer li.ttl .logo img {
      width: 104px;
    }
    .home .compare_clm-loewer li h4 {
      font-size: 100%;
    }
    .home .compare_clm-loewer li .grad-main.num {
      font-size: 118%;
    }
  }
  @media screen and (max-width: 374px) {
    .home .compare_clm li.weight {
      height: 140px;
    }
    .home .compare_clm li.work_h {
      height: 170px;
    }
  }

/* home_loewer
*************************************************** */
  .home_loewer {
    z-index: 1;
  }
  .home_loewer .home_loewer--in {
    padding-top: 42%;
  }
  .home_loewer .txt_area {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
  }
  .home_loewer--img::before {
    background-color: #08446e;
  }
  .home_loewer--img video {
    transform: scale(1.228);
    z-index: -10;
  }
  @media screen and (max-width: 1820px) {
    .home_loewer .home_loewer--in {
      padding-top: 0;
      width: calc(100% - 80px);
    }
    .home_loewer .txt_area {
      position: static;
      padding-top: 120px;
      padding-bottom: 120px;
      padding-left: 56px;
      padding-right: 56px;
      transform: translateY(0);
    }
  }
  @media screen and (max-width: 1280px) {
    .home_loewer .txts {
      font-size: 108%;
    }
    .home_loewer--img video {
      object-fit: cover;
    }
  }
  @media screen and (max-width: 1064px) {
    .home_loewer .home_loewer--in {
      width: calc(100% - 48px);
    }
    .home_loewer .txt_area {
      padding-top: 96px;
      padding-bottom: 96px;
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media screen and (max-width: 560px) {
    .home_loewer .home_loewer--in {
      width: calc(100% - 32px);
    }
    .home_loewer .txt_area {
      padding-top: 64px;
      padding-bottom: 64px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .home_loewer .txt_area .logo img {
      width: 180px;
    }
  }

/* machines
*************************************************** */
  .home .machines .sect_ttl {
    margin-left: 40px;
  }
  .home .machines--cont::before,
  .home .machines_list--item::before {
    width: 100vw;
    left: auto;
    left: inherit;
    right: 0;
  }
  .home .machines_list--item {
    width: 700px;
    max-width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .home .machines_list--item {
    padding-right: 140px;
  }
  .home .machines_list--item::before {
    opacity: 0;
  }
  .home .machines_list--item .num {
    margin-right: 16px;
  }
  .home .machines_list--item .head4 a::before {
    z-index: 1;
  }
  .home .machines_list--item .cir_ico {
    margin-left: auto;
    transform: rotate(-360deg);
  }
  .home .machines_list--item.is_show,
  .home .machines_list--item.is_show::before {
    opacity: 1;
  }
  .home .machines_list--item.is_show .num {
    color: #fff;
  }
  .home .machines_list--item.is_show .cir_ico {
    opacity: 1;
    transform: rotate(0deg);
  }
  .home .machine_img,
  .home .machine_desc,
  .home .machine_btns {
    position: absolute;
  }
  .home .machine_img .img,
  .home .machine_desc .desc,
  .home .machine_btns .machine_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-48%);
    opacity: 0;
    pointer-events: none;
  }
  .home .machine_img {
    top: -96px;
    left: 53%;
    width: 52%;
    height: calc(100% - 58px);
  }
  .home .machine_desc {
    bottom: -64px;
    right: -40px;
    z-index: 1;
    width: 520px;
    height: 140px;
  }
  .home .machine_desc .desc {
    left: 52%;
    min-width: 452px;
    white-space: nowrap;
  }
  .home .machine_btns {
    top: 0;
    right: 0;
    z-index: 1;
    white-space: nowrap;
  }
  .home .machine_btns .machine_btn {
    top: 116px;
  }
  .home .machine_btns .btn:not(:last-child) {
    margin-bottom: 8px;
  }
  .home .machine_btns .btn a {
    width: 180px;
    height: 80px;
  }
  .home .machine_btns .btn .skew_img {
    border: 1px solid rgba(255,255,255,.75);
  }
  .home .machine_img .img.is_show,
  .home .machine_desc .desc.is_show,
  .home .machine_btns .machine_btn.is_show {
    opacity: 1;
    transform: translate(-50%,-50%);
    pointer-events: all;
  }
  .home .machine_img .img img {
    max-width: inherit;
  }
  .home .machines .btn-def {
    margin-left: -40px;
  }
  @media screen and (min-width: 1065px) {
    .home .machines .scroll_area {
      background-color: transparent;
    }
  }
  @media screen and (min-width: 961px) {
    .home .machine_btns .btn-machine:hover .bg_img {
      transform: skew(12.8deg) translateX(-7%) scale(1.05);
      opacity: .2;
    }
  }
  @media screen and (max-width: 1480px) {
    .home .machines_list--item {
      padding-top: 8px;
      padding-bottom: 8px;
      padding-right: 228px;
    }
    .home .machines_list--item .head4 {
      font-size: 133%;
      letter-spacing: .1em;
    }
    .home .machines_list--item .num {
      margin-right: 12px;
      font-size: 116%;
    }
    .home .machine_img {
      left: 50%;
    }
    .home .machine_img img {
      width: 360px;
      height: 360px;
    }
    .home .machine_btns {
      right: 32px;
    }
    .home .machine_desc {
      bottom: -48px;
      right: 24px;
      width: 496px;
      height: 108px;
      line-height: 1.6em;
    }
  }
  @media screen and (max-width: 1280px) {
    .home .machine_img {
      width: 46%;
      left: 54%;
    }
    .home .machine_btns {
      right: 16px;
    }
    .home .machine_btns .machine_btn {
      top: 96px;
    }
    .home .machine_btns .btn a {
      width: 144px;
      height: 56px;
    }
  }
  @media screen and (max-width: 1064px) {
    .home .machines--cont {
      padding-bottom: 232px;
    }
    .home .machines .sect_ttl {
      margin-left: 0;
    }
    .home .machines .scroll_area {
      overflow-x: scroll;
      width: 110%;
      margin-left: -5%;
      margin-bottom: 32px;
    }
    .home .machines_list {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      white-space: nowrap;
      margin-bottom: 0;
    }
    .home .machines_list--item {
      width: auto;
      height: 88px;
      padding-right: 16px;
      padding-left: 16px;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      column-gap: 6px;
    }
    .home .machines_list--item:not(:last-child) {
      border-right-width: 2px;
      border-right-style: solid;
    }
    .home .machines_list--item::before {
      width: 100%;
    }
    .home .machines_list--item .num {
      transform: translateY(-6px);
      margin-right: 0;
      padding-right: .4em;
    }
    .home .machines_list--item .head4 {
      line-height: 1em;
      font-size: 93%;
    }
    .home .machines_list--item .head4 small {
      display: block;
      margin-top: 6px;
    }
    .home .machines_list--item .cir_ico-sm {
      width: 32px;
      height: 32px;
    }
    .home .machine_img {
      position: relative;
      top: 0;
      left: 0;
      transform: translate(0);
      width: 85%;
      height: 400px;
      margin-left: aquto;
      margin: auto;
    }
    .home .machine_desc {
      bottom: -80px;
    }
    .home .machines .btn-def {
      margin-left: 0;
      position: absolute;
      left: 50%;
      bottom: 56px;
      transform: translateX(-50%);
      width: 240px;
    }
  }
  @media screen and (max-width: 768px) {
    .home .machines--cont {
      padding-bottom: 292px;
    }
    .home .machine_img {
      width: 100%;
      height: 340px;
    }
    .home .machine_img img {
      width: 280px;
      height: 280px;
    }
    .home .machine_desc {
      right: auto;
      right: inherit;
      left: 0;
      bottom: -96px;
      width: 100%;
    }
    .home .machine_desc::before {
      width: calc(100% + 16px);
      left: -8px;
    }
    .home .machine_desc .desc {
      text-align: center;
    }
    .home .machine_btns {
      right: 0;
      top: calc(100% + 116px);
      width: 100%;
    }
    .home .machine_btns .machine_btn {
      top: 0;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 8px;
    }
    .home .machine_btns .btn:not(:last-child) {
      margin-bottom: 0;
    }
  }
  @media screen and (max-width: 560px) {
    .home .machines--cont {
      padding-bottom: 246px;
    }
    .home .machine_img {
      height: 280px;
    }
    .home .machine_img img {
      width: 240px;
      height: 240px;
    }
    .home .machine_desc .desc {
      width: 100%;
      min-width: auto;
      padding-left: 8px;
      padding-right: 16px;
      text-align: left;
      white-space: inherit;
    }
    .home .machines .btn-def {
      width: 214px;
      bottom: 32px;
    }
  }
  @media screen and (max-width: 374px) {
    .home .machines--cont {
      padding-bottom: 264px;
    }
    .home .machine_desc {
      height: 140px;
      bottom: -120px;
    }
    .home .machine_btns {
      top: calc(100% + 140px);
    }
    .home .machines .btn-def {
      bottom: 24px;
    }
  }

/* running_cost
*************************************************** */
  .home .running_cost .img_area {
    width: 55vw;
    left: auto;
    left: inherit;
    right: calc(45% + 80px);
  }
  .home .running_cost .img_area .bg_img {
    background-image: url(../images/running_cost_img-pc.jpg);
  }
  .home .running_cost .txt_area {
    max-width: 45%;
  }
  .home .running_cost .txt_area .head1 {
    transform: translateX(64px);
  }
  .home .running_cost .txt_area .txts {
    transform: translateX(10px);
  }
  .home .running_cost .txt_area .txts .head6 {
    transform: translateX(30px);
  }
  .home .running_cost .txt_area .btn {
    transform: translateX(-32px);
  }
  @media screen and (max-width: 1280px) {
    .home .running_cost .inner {
      padding-top: 0;
      padding-bottom: 0;
    }
    .home .running_cost .img_area {
      width: 70%;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      padding-top: 47%;
      margin-bottom: 48px;
    }
    .home .running_cost .txt_area {
      max-width: 80%;
      margin-right: auto;
    }
    .home .running_cost .txt_area .head1,
    .home .running_cost .txt_area .txts,
    .home .running_cost .txt_area .txts .head6,
    .home .running_cost .txt_area .btn {
      transform: translateX(0);
    }
    .home .running_cost .txt_area .head1 {
      margin-right: auto;
      margin-left: auto;
    }
    .home .running_cost .txt_area .head1 br {
      display: none;
    }
    .home .running_cost .txt_area .head1 .line,
    .home .running_cost .txt_area .btn {
      margin-left: auto;
      margin-right: auto;
    }
    .home .running_cost .txt_area .txts .head6 {
      text-align: center;
    }
  }
  @media screen and (max-width: 768px) {
    .home .running_cost .img_area {
      width: 90%;
      padding-top: 58%;
      margin-bottom: 32px;
    }
    .home .running_cost .txt_area {
      max-width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .home .running_cost .img_area {
      width: 112%;
      margin-left: -6%;
      padding-top: 76%;
      margin-bottom: 24px;
    }
    .home .running_cost .txt_area .txts {
      margin-bottom: 16px;
    }
  }

/* home_blog
*************************************************** */
  .home_blog .inner {
    max-width: 1488px;
  }
  .home_blog .ttl__terms {
    padding-left: 144px;
    padding-right: 144px;
  }
  .home_blog .posts-blog .slick-dots {
    margin-left: 144px;
    margin-top: 48px;
  }
  .home_blog .btn-def {
    margin-right: 144px;
  }
  .home_blog .term_list--item .slash {
    margin-left: 20px;
    margin-right: 20px;
    height: 2em;
  }
  .home_blog .term_list--item:last-child .slash {
    display: none;
  }
  .home_blog .posts-blog .post {
    margin-left: 24px;
    margin-right: 24px;
  }
  .home_blog .posts-blog .slick-list {
    overflow: visible;
  }
  .home_blog .posts-blog .slick-track {
    display: flex;
  }
  .home_blog .posts-blog .slick-slide {
    height: auto !important;
  }
  .home_blog .btn-def {
    margin-top: -56px;
  }
  .home_blog .skew_bg {
    top: auto;
    top: inherit;
    bottom: 0;
    left: -56px;
  }
  @media screen and (max-width: 1480px) {
    .home_blog .ttl__terms {
      padding-left: 96px;
      padding-right: 96px;
    }
    .home_blog .btn-def {
      margin-right: 96px;
    }
    .home_blog .posts-blog .slick-dots {
      margin-left: 96px;
    }
  }
  @media screen and (max-width: 1280px) {
    .home_blog .ttl__terms {
      padding-left: 40px;
      padding-right: 40px;
    }
    .home_blog .btn-def {
      margin-right: 40px;
    }
    .home_blog .posts-blog .slick-dots {
      margin-left: 40px;
    }
  }
  @media screen and (max-width: 1064px) {
    .home_blog .btn-def {
      margin-top: -56px;
    }
  }
  @media screen and (max-width: 960px) {
    .home_blog .ttl__terms {
      padding-left: 0;
      padding-right: 0;
    }
    .home_blog .btn-def {
      margin-right: 0;
    }
    .home_blog .posts-blog .slick-dots {
      margin-left: 0;
    }
  }
  @media screen and (max-width: 768px) {
    .home_blog .posts-blog .post {
      margin-left: 12px;
      margin-right: 12px;
    }
  }
  @media screen and (max-width: 560px) {
    .home_blog .inner {
      width: calc(100% - 80px);
    }
    .home_blog .skew_bg {
      height: 50%;
    }
    .home_blog .ttl__terms {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .home_blog .sect_ttl {
      margin-bottom: 8px;
    }
    .home_blog .term_list {
      font-size: 93%;
    }
    .home_blog .term_list--item .slash {
      height: 1.6em;
      margin-left: 12px;
      margin-right: 12px;
    }
    .home_blog .posts-blog .post {
      margin-left: 4px;
      margin-right: 4px;
    }
    .home_blog .posts-blog .slick-dots {
      margin-top: 24px;
      width: 100%;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .home_blog .btn-def {
      margin-top: 0;
      margin-right: auto;
      margin-top: 24px;
    }
    .home .home_blog .slick-arrow::before {
      top: 20.5vw;
    }
  }

/* imp_news
*************************************************** */
  .imp_news {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
  }
  .imp_news--in {
    width: 720px;
    max-width: calc(100% - 48px);
  }
  .imp_news_ttl {
    padding-left: 16px;
    padding-right: 20px;
    line-height: 1em;
    padding-top: 6px;
    padding-bottom: 6px;
    max-width: 164px;
  }
  .imp_news_ttl::before {
    left: -4px;
  }
  .imp_news_ttl .ico-excl {
    fill: #E7AF2A;
    margin-right: 6px;
  }
  .imp_news .posts-imp_news {
    background-color: rgba(255,255,255,.9);
    max-height: calc(90vh);
    overflow-y: scroll;
  }
  .imp_news .posts-imp_news a {
    text-decoration: underline;
  }
  .imp_news .posts-imp_news .post:not(:last-child) {
    margin-bottom: 24px;
  }
  .imp_news .post--txt_area {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .imp_news .post--ttl {
    line-height: 1.6em;
  }
  .imp_news .close,
  .imp_news .close::before {
    border-radius: 100%;
  }
  .imp_news .close {
    position: absolute;
    top: 9px;
    right: -20px;
    width: 48px;
    height: 48px;
  }
  .imp_news .close .ico-batsu {
    width: 40px;
    height: 40px;
  }
  .imp_news.is_hide {
    opacity: 0;
    pointer-events: none;
  }
  @media screen and (min-width: 961px) {
    .imp_news .close:hover {
      transform: rotate(360deg);
    }
    .imp_news .close:hover::before {
      opacity: 1;
    }
    .imp_news .posts-imp_news a:hover {
      text-decoration: none;
    }
  }
  @media screen and (max-width: 560px) {
    .imp_news {
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .imp_news .post--txt_area {
      padding-top: 24px;
      padding-bottom: 24px;
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media screen and (max-width: 413px) {
    .imp_news .post--txt_area {
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      padding-right: 16px;
    }
  }


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

    PAGE

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

/* machines
*************************************************** */
  .page-machines .lineup_list {
    row-gap: 64px;
  }
  .page-machines .lineup_list--item > * {
    width: 50%;
  }
  .page-machines .lineup_slider {
    height: 400px;
    width: 600px;
  }
  .slider .slick-slide {
    display: none;
  }
  .slider.slick-initialized .slick-slide {
    display: block;
  }
  .page-machines .lineup_slider .slick-list,
  .page-machines .lineup_slider .slick-track,
  .page-machines .lineup_slider--item {
    height: 100%;
  }
  .page-machines .lineup_slider--item:nth-of-type(1) .bg_img {
    background-size: contain;
  }
  .page-machines .lineup_slider--item .img_txt {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding-top: 48px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    text-align: left;
  }
  .page-machines .lineup_slider--item .img_txt.clr-wht {
    background: linear-gradient(rgba(15,18,24,0)0%,rgba(15,18,24,.5)60%,rgba(15,18,24,1)100%);
  }
  .page-machines .lineup_slider--item .img_txt.clr-blk {
    background: linear-gradient(rgba(227,232,234,0)0%,rgba(227,232,234,.5)60%,rgba(227,232,234,1)100%);
  }
  .page-machines .lineup_slider--item .bg_img {
    z-index: 1;
  }
  .page-machines .lineup_slider .slick-dots {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 100%;
    padding: 12px;
    gap: 8px;
  }
  .page-machines .lineup_slider .slick-dots .slick-dot::before {
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-width: 3px;
    border-style: solid;
    opacity: 0;
  }
  .page-machines .lineup_slider .slick-dots .slick-active .slick-dot::before {
    opacity: 1;
  }
  .page-machines .lineup_slider .slick-dot {
    width: 144px;
    height: 96px;
    border: 1px solid rgba(255,255,255,.8);
  }
  .page-machines .lineup_slider .slick-dots li:nth-of-type(1) .slick-dot {
    background-size: contain;
    background-color: #e3e8ea;
  }
  .page-machines .lineup_slider .slick-dot img {
    width: auto;
    max-height: inherit;
    max-height: 54px;
  }
  .page-machines .lineup_slider .slick-arrow {
    top: calc(50% - 34px);
    width: 68px;
    height: 68px;
    mix-blend-mode: exclusion;
    opacity: 1;
  }
  .page-machines .lineup_slider .slick-prev {
    right: auto;
    right: inherit;
    left: 0;
  }
  .page-machines .lineup_slider .slick-next {
    left: auto;
    left: inherit;
    right: 0;
  }
  .page-machines .lineup_slider .slick-arrow::before {
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
  .page-machines .lineup_slider .slick-prev::before {
    right: 0;
  }
  .page-machines .lineup_slider .slick-next::before {
    left: 0;
  }
  .page-machines .lineup .mov_arrow,
  .page-machines .lineup .mov_arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .page-machines .lineup .mov_arrow {
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #FF0000;
    pointer-events: none;
  }
  .page-machines .lineup .mov_arrow::before {
    content: '';
    border-color: #fff;
    border-style: solid;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left-width: 20px;
    border-right-width: 0;
    margin-left: 3%;
  }
  .page-machines .lineup_list--item .txt_area {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
    row-gap: 20px;
    flex-wrap: nowrap;
  }
  .page-machines .lineup .slick-dots .mov_arrow {
    width: 24px;
    height: 24px;
  }
  .page-machines .lineup .slick-dots .mov_arrow::before {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left-width: 6px;
  }
  .page-machines .lineup_list--item .head4 {
    line-height: 1.4em;
  }
  .page-machines .lineup_list--item .head4 small {
    font-size: 75%;
  }
  .page-machines .lineup_list--item .lineup_cont .cir_ico {
    margin-right: 8px;
  }
  .page-machines .lineup_list--item .lineup_cont .txts {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-machines .lineup_list--item .spec_tbl {
    width: calc(50% - 3px);
    row-gap: 6px;
  }
  .page-machines .lineup_list--item .spec_tbl--item {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-machines .lineup_list--item .spec_tbl--item::before,
  .page-machines .lineup_list--item .tag_area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: .15;
  }
  .page-machines .lineup_list--item .spec_tbl--item .ttl {
    position: relative;
    margin-left: 2px;
    margin-bottom: 8px;
    font-style: italic;
    opacity: .6;
    font-size: 80%;
    line-height: 1em;
    letter-spacing: .05em;
  }
  .page-machines .lineup_list--item .spec_tbl--item .txt {
    font-size: 93%;
    line-height: 1em;
  }
  .page-machines .lineup_list--item .tag_area {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .page-machines .lineup_list--item .tag_area:first-child {
    padding-top: 0;
  }
  .page-machines .lineup_list--item .tag_area .ttl {
    width: 104px;
    text-align: center;
  }
  .page-machines .abrasive_disc_list {
    margin-left: 160px;
  }
  .page-machines .abrasive_disc_list .count_num {
    position: absolute;
    bottom: 0;
    right: -4px;
    z-index: 1;
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-machines .abrasive_disc_list--item img {
    width: 100%;
  }
  .page-machines .abrasive_disc_list--item .txt_area {
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-machines .abrasive_disc_list--item .ttl .line {
    display: block;
    width: 32px;
    height: 1px;
    margin-top: 8px;
  }
  @media screen and (min-width: 961px) {
    .page-machines .lineup_slider .slick-active .slick-dot:hover {
      opacity: 1;
    }
    .page-machines .lineup_slider--item a.bg_img:hover {
      opacity: .6;
      transform: scale(1.035);
    }
    .page-machines .lineup_slider .slick-arrow:hover {
      opacity: .6;
    }
  }
  @media screen and (max-width: 1600px) {
    .page-machines .lineup_list {
      padding-left: 144px;
    }
    .page-machines .lineup_slider {
      width: 528px;
      height: 352px;
    }
  }
  @media screen and (max-width: 1340px) {
    .page-machines .lineup_list {
      max-width: 1020px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 120px;
    }
    .page-machines .lineup_slider {
      width: 450px;
      height: 300px;
    }
    .page-machines .lineup_slider .slick-dot {
      width: 96px;
      height: 64px;
    }
    .page-machines .abrasive_disc_list {
      margin-left: 96px;
    }
  }
  @media screen and (max-width: 1280px) {
    .page-machines .abrasive_disc_list {
      margin-left: 56px;
    }
  }
  @media screen and (max-width: 1200px) {
    .page-machines .lineup_list {
      max-width: 900px;
      padding-left: 0;
    }
    .page-machines .lineup_slider {
      margin-bottom: 68px;
    }
    .page-machines .lineup_slider .slick-dots {
      top: 100%;
      right: 0;
      width: 100%;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 8px;
      gap: 6px;
    }
    .page-machines .lineup_slider .slick-dots > li {
      width: 18%;
    }
    .page-machines .lineup_slider .slick-dot {
      width: 100%;
      height: 0;
      padding-top: 64%;
    }
  }
  @media screen and (max-width: 1064px) {
    .page-machines .lineup_list {
      max-width: 600px;
    }
    .page-machines .lineup_list--item > * {
      width: 100%;
    }
    .page-machines .lineup_list--item .txt_area {
      padding-left: 24px;
      padding-right: 24px;
    }
    .page-machines .lineup_slider {
      width: 600px;
      height: 400px;
      margin-bottom: 86px;
    }
    .page-machines .abrasive_disc_list {
      margin-left: 40px;
    }
  }
  @media screen and (max-width: 960px) {
    .page-machines .abrasive_disc_list {
      margin-left: 16px;
    }
  }
  @media screen and (max-width: 680px) {
    .page-machines .lineup_list {
      max-width: 450px;
    }
    .page-machines .lineup_slider {
      width: 450px;
      height: 300px;
      margin-bottom: 64px;
    }
    .page-machines .lineup_slider .slick-arrow {
      transform: scale(.8);
    }
    .page-machines .abrasive_disc_list--item .txt_area {
      padding-left: 4px;
      padding-right: 4px;
    }
    .page-machines .abrasive_disc_list--item .txt_area .ttl {
      letter-spacing: .05em;
    }
  }
  @media screen and (max-width: 560px) {
    .page-machines .lineup_list {
      max-width: 382px;
    }
    .page-machines .lineup_slider {
      width: 382px;
      height: 254px;
      margin-bottom: 60px;
    }
    .page-machines .lineup_slider .slick-arrow {
      transform: scale(.6);
    }
    .page-machines .lineup_slider .slick-prev {
      left: -12px;
    }
    .page-machines .lineup_slider .slick-next {
      right: -12px;
    }
    .page-machines .lineup_list--item .txt_area {
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .page-machines .lineup_list--item .spec_tbl--item .txt {
      font-size: 85%;
    }
    .page-machines .lineup_list--item .tag_area .ttl {
      width: 80px;
      font-size: 93%;
      letter-spacing: 0em;
    }
    .page-machines .abrasive_disc_list {
      margin-left: 8px;
      column-gap: 12px;
      row-gap: 20px;
    }
    .page-machines .abrasive_disc_list.clm-2-tab > * {
      width: calc(50% - 6px);
    }
    .page-machines .abrasive_disc_list--item .txt_area .ttl {
      font-size: 90%;
    }
    .page-machines .abrasive_disc_list--item .txt_area > .txt {
      font-size: 80%;
      line-height: 1.8em;
    }
    .page-machines .abrasive_disc_list .count_num {
      line-height: 1.6em;
      padding-left: 12px;
    }
  }
  @media screen and (max-width: 413px) {
    .page-machines .lineup_list {
      max-width: 342px;
    }
    .page-machines .lineup_slider {
      width: 342px;
      height: 223px;
      margin-bottom: 55px;
    }
    .page-machines .lineup_list--item .spec_tbl--item {
      padding-top: 6px;
      padding-bottom: 6px;
      padding-left: 8px;
      padding-right: 8px;
    }
    .page-machines .lineup_list--item .spec_tbl--item .ttl {
      margin-left: 1px;
      margin-bottom: 6px;
    }
    .page-machines .lineup_list--item .spec_tbl--item .txt {
      letter-spacing: .05em;
      font-size: 80%;
    }
    .page-machines .abrasive_disc_list--item .txt_area .ttl {
      line-height: 1.6em;
    }
    .page-machines .abrasive_disc_list--item-scotch_pad .txt_area .ttl {
      letter-spacing: -.05em;
    }
    .page-machines .abrasive_disc_list--item-smart_flex_disc .txt_area .ttl {
      letter-spacing: -.1em;
    }
  }
  @media screen and (max-width: 374px) {
    .page-machines .lineup_list {
      max-width: 288px;
    }
    .page-machines .lineup_slider {
      width: 288px;
      height: 188px;
      margin-bottom: 50px;
    }
    .page-machines .lineup_list--item .spec_tbl--item {
      padding-left: 6px;
      padding-right: 6px;
    }
    .page-machines .lineup_list--item .spec_tbl--item .txt {
      font-size: 75%;
      letter-spacing: -.02em;
    }
  }

  .tag_list {
    gap: 6px;
  }
  .tag_list--item {
    line-height: 1em;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .tag_list--item::before {
    border-radius: 100px;
  }

/* sample
*************************************************** */
  .archive-sample .term_list {
    column-gap: 2px;
  }
  .archive-sample .term_list--item {
    width: 200px;
  }
  .archive-sample .term_list--item a {
    display: block;
  }
  .archive-sample .term_list--item .txt {
    display: block;
    line-height: 1em;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .archive-sample .sample_list {
    gap: 12px;
  }
  .archive-sample .sample_list--item {
    width: calc(50% - 6px);
    padding-top: 12px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .archive-sample .sample_list--item::before {
    top: 32px;
    height: calc(100% - 32px);
  }
  .archive-sample .sample_list--item .ttl {
    margin-right: 6px;
  }
  .archive-sample .sample_list--item .img_area-one > * {
    width: 100%;
  }
  .archive-sample .sample_list--item .img_area-two > * {
    width: calc(50% - 4px);
  }
  .archive-sample .sample_list--item .sample_img {
    width: 100%;
    cursor: pointer;
  }
  .archive-sample .sample_list--item .img_area-one .sample_img {
    padding-top: 37.5%;
  }
  .archive-sample .sample_list--item .img_area-one .sample_img .bg_img {
    background-size: contain;
  }
  .archive-sample .sample_list--item .img_area-two .sample_img {
    padding-top: 75%;
  }
  .archive-sample .sample_list--item .img_area .txt {
    position: absolute;
    top: 0;
    left: -8px;
    padding-left: 24px;
    padding-right: 16px;
  }
  .archive-sample .sample_list--item .img_area .cir_ico {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
  }
  .archive-sample .sample_list--item .img_area .cir_ico::before {
    border: none;
  }
  .archive-sample .sample_list--item .img_area .cir_ico .ico-arrow {
    width: 24px;
    height: 24px;
  }
  .archive-sample .sample_list--item .txt_area {
    padding-top: 28px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
  }
  .archive-sample .sample_list--item.no_post {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
  }
  .archive-sample .sample_list--item.no_post::before {
    top: 0;
    height: 100%;
  }
  .archive-sample .modal_list--item .txt_area {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 40px;
    padding-right: 40px;
  }
  @media screen and (min-width: 961px) {
    .archive-sample .term_list--item:not(.current):hover .bg_img {
      transform: scale(1.03);
      opacity: .6;
    }
  }
  @media screen and (max-width: 1280px) {
    .archive-sample .term_list--item {
      width: 148px;
    }
    .archive-sample .term_list--item .txt {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }
  @media screen and (max-width: 1064px) {
    .archive-sample .sample_list {
      gap: 32px;
    }
    .archive-sample .sample_list--item {
      width: 100%;
    }
    .archive-sample .sample_list {
      gap: 8px;
    }
  }
  @media screen and (max-width: 960px) {
    .archive-sample .term_list--item {
      width: 112px;
    }
    .archive-sample .term_list--item .txt {
      font-size: 86%;
    }
    .archive-sample .term_list--item-all .txt {
      letter-spacing: 0em;
    }
  }
  @media screen and (max-width: 768px) {
    .archive-sample .sample_list--item .img_area .cir_ico {
      transform: translate(-50%,-50%) scale(.8);
    }
  }
  @media screen and (max-width: 640px) {
    .archive-sample .term_list {
      row-gap: 2px;
    }
    .archive-sample .term_list--item {
      width: calc(100% / 3 - 2px);
    }
  }
  @media screen and (max-width: 560px) {
    .archive-sample .term_list--item .txt {
      padding-top: 14px;
      padding-bottom: 14px;
    }
    .archive-sample .sample_list--item .img_area .txt {
      font-size: 85%;
      padding-left: 16px;
      padding-right: 8px;
    }
    .archive-sample .sample_list--item .ttl {
      font-size: 79%;
    }
  }

/* company
*************************************************** */
  .page-company .history .img_area {
    position: absolute;
    top: -24px;
    right: 0;
    z-index: -1;
    width: 46%;
  }
  .page-company .history .head1 {
    margin-left: 16px;
  }
  .page-company .history_txt:not(:last-child) {
    margin-bottom: 2em;
  }
  .page-company .history_txt .ttl {
    margin-bottom: 12px;
  }
  .page-company .history_txt p {
    font-size: 88%;
    padding-left: 1.5em;
    margin-left: .8em;
  }
  .page-company .history_txt p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
  }

  /* --- loewer ---  */
  .page-company .loewer {
    padding-left: 64px;
    padding-right: 64px;
  }
  .page-company .loewer .logo__txts {
    column-gap: 96px;
    row-gap: 56px;
  }
  .page-company .loewer .logo__txts .txt_area {
    max-width: 680px;
  }
  .page-company .loewer .logo__txts .txt_area::before {
    content: '';
    position: absolute;
    top: 0;
    right: calc(100% + 48px);
    width: 1px;
    height: 100%;
  }
  .page-company .loewer .line_list {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 22px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .page-company .loewer .line_list::before {
    border-width: 5px;
    border-style: solid;
  }

  /* --- bless ---  */
  .page-company .bless .bless_lead {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .page-company .bless .bless_lead::before {
    width: 130%;
    left: -15%;
  }
  .page-company .bless .line_list {
    width: calc(50% - 40px);
  }

  @media screen and (max-width: 1280px) {
    .page-company .loewer .logo__txts .txt_area::before {
      content: none;
    }
    .page-company .bless .line_list {
      width: calc(50% - 20px);
    }
  }
  @media screen and (max-width: 960px) {
    .page-company .line_list--item .ttl {
      width: 88px;
    }
    .page-company .loewer {
      padding-left: 40px;
      padding-right: 40px;
    }
    .page-company .loewer .logo img {
      width: 240px;
    }
    .page-company .loewer .line_list {
      padding-top: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      padding-right: 0px;
    }
    .page-company .loewer .line_list::before {
      content: none;
    }
    .page-company .line_list--item {
      position: relative;
      padding-left: 16px;
    }
    .page-company .line_list--item .ttl,
    .page-company .line_list--item .txts {
      line-height: 1.6em;
    }
    .page-company .line_list--item .ttl {
      position: static;
      width: 100%;
      padding-bottom: 4px;
      padding-top: 12px;
      font-size: 85%;
    }
    .page-company .line_list--item .ttl::before {
      width: 1px;
      height: 100%;
    }
    .page-company .line_list--item .txts {
      padding-top: 0;
      padding-bottom: 12px;
    }
  }
  @media screen and (max-width: 560px) {
    .page-company .loewer {
      padding-left: 16px;
      padding-right: 16px;
    }
    .page-company .loewer .logo__txts {
      row-gap: 24px;
    }
    .page-company .loewer .logo img {
      width: 180px;
    }
    .page-company .bless .bless_lead {
      padding-top: 32px;
      padding-bottom: 32px;
      font-size: 93%;
    }
    .page-company .bless .bless_lead .logo img {
      width: 160px;
    }
    .page-company .bless .line_list {
      width: 100%;
    }
    .page-company .bless .line_list--item {
      padding-left: 0;
      text-align: center;
    }
    .page-company .bless .line_list--item .ttl {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .page-company .bless .line_list--item .ttl::before {
      content: none;
    }
  }
  @media screen and (max-width: 413px) {
    .page-company .bless .bless_lead .head4 {
      font-size: 112%;
    }
  }

/* contact
*************************************************** */

  /* --- contact_about ---  */
  .page-contact .contact_about--in {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-contact .contact_about_list--item {
    width: calc(50% - 16px);
  }
  .page-contact .contact_about_list--item {
/*    width: calc(33.333% - 16px);*/
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .page-contact .contact_about_list--item::before {
    border-style: solid;
    border-width: 1px;
  }
  .page-contact .contact_about_list--item a::before {
    z-index: 1;
  }
  .page-contact .contact_about_list--item-cases .bg_img {
    background-image: url(../images/contact/bg_img-cases.jpg);
  }
  .page-contact .contact_about_list--item-visit .bg_img {
    background-image: url(../images/contact/bg_img-visit.jpg);
  }
  .page-contact .contact_about_list--item-sample .bg_img {
    background-image: url(../images/contact/bg_img-sample.jpg);
  }
  .page-contact .contact_about .bg_imgs .bg_img-cases {
    background-image: url(../images/contact/sect_bg_img-cases.jpg);
  }
  .page-contact .contact_about .bg_imgs .bg_img-visit {
    background-image: url(../images/contact/sect_bg_img-visit.jpg);
  }
  .page-contact .contact_about .bg_imgs .bg_img-sample {
    background-image: url(../images/contact/sect_bg_img-sample.jpg);
  }
  .page-contact .contact .head5 {
    padding-top: 6px;
    padding-bottom: 8px;
    padding-left: 32px;
    padding-right: 32px;
  }

  /* --- contact ---  */
  .page-contact .contact .tel_num {
    line-height: 1em;
  }
  .page-contact .contact .tel_num svg {
    margin-right: 8px;
    transform: rotate(14deg);
  }
  .page-contact .contact .tel_num .num {
    font-size: 600%;
    transform: translateY(.08em);
  }
  .page-contact .contact .tel_info_list {
    column-gap: 40px;
  }
  .page-contact .contact .tel_info_list--item .slash {
    margin-left: 40px;
  }
  .page-contact .contact .tel_info_list--item:not(:first-child) .slash {
    display: none;
  }
  .page-contact .contact .tel_info_list--item .ttl {
    margin-right: 16px;
  }
  .page-contact .contact .tel_info_list--item .slash {
    height: 1.5em;
    margin-top: 1px;
  }
  @media screen and (min-width: 961px) {
    .page-contact .contact_about_list--item .bg_img {
      background-color: #111;
    }
    .page-contact .contact_about .bg_imgs .bg_img {
      background-color: #000;
    }
    .page-contact .contact_about .bg_img {
      opacity: 0;
    }
    .page-contact .contact_about_list--item:hover .bg_img,
    .page-contact .contact_about .bg_imgs .bg_img.is_show {
      opacity: 1;
    }
  }
  @media screen and (max-width: 960px) {
    .page-contact .contact .tel_num svg {
      width: 56px;
      height: 56px;
      margin-right: 4px;
    }
    .page-contact .contact .tel_num .num {
      font-size: 400%;
    }
  }
  @media screen and (max-width: 768px) {
    .page-contact .contact_about_list {
      row-gap: 24px;
    }
    .page-contact .contact_about_list--item {
      width: 100%;
      padding-top: 10vw;
      padding-bottom: 10vw;
    }
    .page-contact .contact .tel_info_list--item {
      width: 244px;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .page-contact .contact .tel_info_list--item .slash {
      display: none;
    }
    .page-contact .contact .tel_info_list--item .ttl {
      width: 68px;
    }
  }
  @media screen and (max-width: 768px) and (min-width: 415px) {
    .page-contact .contact_about_list--item p br {
      display: none;
    }
  }
  @media screen and (max-width: 560px) {
    .page-contact .contact_about_list {
      row-gap: 12px;
    }
    .page-contact .contact .tel_num svg {
      width: 44px;
      height: 44px;
    }
    .page-contact .contact .tel_num .num {
      font-size: 300%;
    }
  }
  @media screen and (max-width: 413px) {
    .page-contact .contact .head5 {
      padding-left: 8px;
      padding-right: 8px;
    }
  }
  @media screen and (max-width: 374px) {
    .page-contact .contact .head5 {
      padding-left: 16px;
      padding-right: 16px;
      text-align: center;
    }
  }

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

    ARCHIVE

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

/* main_column
**************************************** */
  .fix_wrap {
    column-gap: 80px;
  }
  .main_column {
    flex: 1;
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post--img {
    width: 100%;
    padding-top: 56.25%;
  }
  .post--img .img_src {
    background-position: center;
    background-repeat: no-repeat;
  }
  .post--img .img_src:not(.no_img) {
    background-size: cover;
  }
  .post--img .img_src:not(.no_img).img_src-ver {
    background-size: contain;
  }
  .post--img .img_src.no_img {
    background-position: center;
    background-size: 400% 400%;
    background-image: linear-gradient(-45deg, #a5a5a5 42%, #bebfbf 50%, #a5a5a5 58%);
  }
  .post--img .img_src.no_img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/common/logo-loewer.svg);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .cat_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
  }
  .cat_list a {
    display: block;
    vertical-align: middle;
    font-size: 79%;
    color: #fff;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 2px;
    white-space: nowrap;
  }
  .posts .post .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .posts .post .line::before {
    transform: translateX(-110%);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_rgt;
  }
  @media screen and (min-width: 961px) {
    .posts .post:hover::before {
      opacity: .1;
    }
    .posts .post:hover .line::before {
      animation-name: slide-to_rgt;
    }
  }

  @media screen and (max-width: 960px) {
    .fix_wrap .main_column {
      width: 100%;
      column-gap: 0;
    }
  }

/* side_column
**************************************** */
  .side_column,
  .side_column--in { width: 360px; }
  .side_sect:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    font-size: 120%;
    letter-spacing: .2em;
    line-height: 1;
    margin-bottom: 24px;
  }
  .side--ttl small {
    font-size: 62%;
    opacity: .5;
    letter-spacing: .15em;
    display: block;
    line-height: 1;
    margin-top: 8px;
  }

  /* --- post --- */
  .posts-side .post:not(:last-child) { margin-bottom: 16px; }
  .posts-side .post--img {
    margin-right: 16px;
    border-radius: 3px;
    padding-top: 0;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .posts-side .txt_area { flex: 1; }
  .posts-side .post--date { margin-bottom: 0; }
  .posts-side .post--ttl {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  /* --- 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 (min-width: 1065px) {
    .search_btn {
      display: none;
    }
  }
  @media screen and (max-width: 1064px) {
    .archive:not(.archive-blog) .side_column,
    .single:not(.single-blog) .side_column {
      position: static !important;
      order: 1;
      width: 100%;
      opacity: 1;
      padding: 0;
      pointer-events: all;
    }
    .archive-newes .side_column,
    .single-newes .side_column {
      display: none;
    }
    .archive-blog .side_column,
    .single-blog .side_column {
      position: fixed !important;
      top: 0;
      left: 0;
      z-index: 9998;
      width: 100%;
      height: 100% !important;
      padding-top: 96px;
      padding-bottom: 96px;
      padding-left: 16px;
      padding-right: 16px;
      overflow-y: scroll;
      opacity: 0;
      pointer-events: none;
      transition: .4s all;
      background-color: #0f1218;
    }
    .archive.archive-blog .side_column.is_show,
    .single.single-blog .side_column.is_show {
      opacity: 1;
      pointer-events: all;
    }
    .side_column::before {
      content: ;
    }
    .side_column--in {
      position: static !important;
      transform: initial !important;
      width: 100% !important;
    }
    .side_sect:not(:last-child) {
      margin-bottom: 32px;
    }
    .search_btn {
      font-size: 93%;
    }
    .search_btn--plus {
      width: 32px;
      height: 32px;
      border-radius: 100%;
      overflow: hidden;
      margin-right: 12px;
    }
    .search_btn--plus::before {
      opacity: .05;
    }
    .search_btn--plus .line {
      position: absolute;
      top: 50%;
      left: calc(50% - 5px);
      width: 10px;
      height: 1px;
    }
    .search_btn--plus .line:nth-of-type(2) {
      transform: rotate(90deg);
    }
    .search_btn.active .search_btn--plus .line:nth-of-type(1) {
      transform: rotate(180deg);
    }
    .search_btn.active .search_btn--plus .line:nth-of-type(2) {
      transform: rotate(360deg);
    }
  }
  @media screen and (max-width: 768px) {
    .archive-blog .side_column,
    .single-blog .side_column {
      padding-top: 80px;
    }
  }

/* news
*************************************************** */
  .news_side {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
  }
  .news_side .archive-pd {
    position: relative;
    margin-left: auto;
    z-index: 1;
    cursor: pointer;
  }
  .news_side .archive_label--ttl {
    font-size: 80%;
    opacity: .5;
  }
  .news_side .archive_label--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 40px;
    height: 30px;
    line-height: 30px;
    font-size: 85%;
    letter-spacing: .1em;
  }
  .news_side .archive_label--btn::before {
    content: '';
    position: absolute;
    top: 11px;
    right: 10px;
    display: block;
    width: 6px;
    height: 6px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-right-width: 1px;
    border-right-style: solid;
    transform: rotate(45deg);
    transition: .4s cubic-bezier(.07, .51, .12, 1);
    transform-origin: 50% 50%;
  }
  .news_side .active .archive_label--btn::before {
    top: 14px;
    transform: rotate(225deg);
  }
  .news_side .archive_list {
    display: none;
    z-index: 1;
    margin-top: 16px;
  }
  .news_side .archive_list--item {
    font-size: 92%;
  }
  .news_side .archive_list--item:not(:last-child) {
    margin-bottom: 12px;
  }
  .news_side .archive_list a {
    display: block;
    padding-left: 12px;
    line-height: 1.6em;
    text-align: left;
    font-size: 92%;
  }
  .news_side .archive_list a::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    opacity: 0;
    transform: scale(.5);
  }
  .news_side .archive_child_list {
    margin-top: 8px;
  }
  .news_side .archive_child_list--item:not(:last-child) {
    margin-bottom: 6px;
  }
  .news_side .archive_child_list--item a {
    padding-left: 24px;
    font-size: 80%;
  }
  .news_side .archive_child_list--item a::before {
    top: calc(50% - 1px);
    left: 12px;
    width: 3px;
    height: 3px;
  }
  @media screen and (min-width: 961px) {
    .news_side .archive_list a:hover::before {
      opacity: 1;
      transform: scale(1);
    }
  }
  @media screen and (max-width: 1064px) {
    .news_side {
      padding-top: 16px;
      padding-bottom: 16px;
    }
  }
  @media screen and (max-width: 960px) {
    .news_side .archive_list a {
      padding-left: 0;
    }
    .news_side .archive_child_list--item a {
      padding-left: 8px;
    }
  }

/* blog
**************************************** */
  .archive .posts-blog .post {
    border-bottom: 2px solid rgba(0,0,0,.1);
  }
  .posts-blog .post--cat {
    position: absolute;
    bottom: 0;
    right: -4px;
    z-index: 1;
    overflow: visible;
  }
  .posts-blog .post--cat a {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1em;
  }
  .posts-blog .post--txt_area {
    flex: 1;
  }
  .posts-blog .post--txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .posts-blog .post--date {
    margin-right: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .posts-blog .post--txt_area {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 40px;
    padding-right: 40px;
  }
  @media screen and (max-width: 1280px) {
    .posts-blog .post--txt_area {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media screen and (max-width: 1064px) {
    .archive .fix_wrap.flex,
    .single .fix_wrap.flex {
      display: block;
    }
    .archive .main_column,
    .single .main_column {
      overflow: visible;
      margin-right: 0;
    }
    .archive:not(.archive-blog) .main_column,
    .single:not(.single-blog) .main_column {
      order: 2;
      margin-top: 48px;
    }
  }
  @media screen and (max-width: 560px) {
    .posts-blog .post {
      display: block;
    }
    .posts-blog .post--txt_area {
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .posts-blog .post--date {
      margin-bottom: 0;
    }
  }

/* blog & news
**************************************** */
  .single-blog .blog--info,
  .single-news .news--info {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 56px;
    padding-right: 56px;
  }
  @media screen and (max-width: 768px) {
    .single-blog .blog--info,
    .single-news .news--info {
      padding-top: 32px;
      padding-bottom: 32px;
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media screen and (max-width: 560px) {
    .single-blog .blog--info,
    .single-news .news--info {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 24px;
      padding-right: 24px;
    }
  }

/* 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 --- */
  .news_list .post {
    padding-bottom: 24px;
    padding-top: 24px;
    padding-right: 80px;
    padding-left: 24px;
    margin-bottom: 0;
    border-bottom: 1px solid #373940;
  }
  .news_list .post.no_hov .post--link::before {
    content: none;
  }
  .news_list .post::before {
    opacity: 0;
  }
  .news_list .post--date {
    margin-right: 24px;
    transform: translateY(3px);
  }
  .news_list .post--cats {
    z-index: 1;
  }
  .news_list .post--cats a {
    font-size: 75%;
    border: 1px solid rgba(0,0,0,.25);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 100px;
    opacity: .5;
  }
  .news_list .post--cats a:not(:last-child) {
    margin-right: 6px;
  }
  .news_list .post--ttl {
    width: 100%;
    margin-top: 6px;
    font-weight: normal;
  }
  .news_list .post--ttl .arrow_wrap {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    overflow: hidden;
  }
  .news_list .post--ttl .ico-arrow {
    position: absolute;
    top: 0;
    left: 0;
  }
  @media screen and (min-width: 961px) {
    .news_list .post:hover::before {
      opacity: .02;
    }
    .news_list .post--cats a:hover {
      opacity: 1;
      background-color: rgba(0,0,0,.04);
      border-color: transparent;
    }
    .news_list .post:hover .ico-arrow {
      animation-duration: .8s;
      animation-timing-function: cubic-bezier(0.07, 0.51, 0.12, 1);
      animation-delay: 0s,.4s;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-play-state: running;
      animation-name: slide-rev_rgt-lg,slide-to_rgt-lg;
    }
  }
  @media screen and (max-width: 960px) {
    .news_list .post {
      padding-left: 0;
      padding-right: 40px;
    }
    .news_list .post--ttl .arrow_wrap {
      right: 4px;
    }
    .news_list .post--date {
      margin-right: 16px;
      transform: translateY(1px);
    }
    .news_list .post--ttl {
      margin-top: 6px;
    }
  }

/* cases_voice
**************************************** */
  .posts-cases_voice .logo {
    padding-top: 16px;
    padding-bottom: 12px;
    z-index: 1;
  }
  .posts-cases_voice .logo_img {
    width: 300px;
    max-width: 80%;
    height: 46px;
    background-size: contain;
  }
  .posts-cases_voice .post::before {
    top: 80px;
    height: calc(100% - 80px);
  }
  .posts-cases_voice .post--img {
    width: 100%;
    padding-top: 56.45%;
  }
  .posts-cases_voice .post--img .img_src {
    width: calc(100% - 24px);
    height: calc(100% - 12px);
    left: 12px;
    top: 0;
  }
  .posts-cases_voice .post--txt_area {
    padding-top: 20px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .posts-cases_voice .line_list--item .ttl {
    width: 88px;
  }
  .posts-cases_voice .line_list--item > * {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  @media screen and (max-width: 1280px) {
    .posts-cases_voice .logo_img {
      height: 40px;
    }
  }
  @media screen and (max-width: 768px) {
    .posts-cases_voice .logo_img {
      width: 100%;
      height: 36px;
    }
    .posts-cases_voice .line_list--item .ttl {
      width: 72px;
    }
  }
  @media screen and (max-width: 640px) {
    .posts-cases_voice .post {
      width: 100%;
    }
  }


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

    SINGLE

############################################################################## */
  .wp-pagenavi {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    margin-top: 64px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-width: 1px;
    border-style: solid;
    font-weight: bold;
    line-height: 1.4;
    padding: 8px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .4s all;
    margin: 0 0 0 -1px;
    transform: skew(-12.8deg)
  }
  .pn_list {
    padding-top: 48px;
    border-top-width: 2px;
    border-top-style: solid;
  }
  .pn_list--item {
    width: 45%;
  }
  .pn_list--item-next {
    margin-left: auto;
  }
  .pn_list--item a.poa {
    z-index: 1;
  }
  .pn_list--item .post-pn {
    height: 80px;
  }
  .pn_list--item img {
    width: 80px;
    margin-right: 12px;
  }
  .pn_list--item h3 {
    font-weight: normal;
    line-height: 1.6em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  @media  only screen and (min-width: 961px) {
    .wp-pagenavi a:hover {
      background-color: #fff;
      border-color: #fff;
      color: #1d2026;
    }
    .pn_list--item:hover {
      opacity: .6;
    }
  }
  @media screen and (max-width: 560px) {
    .wp-pagenavi {
      margin-top: 24px;
    }
    .pn_list--item {
      width: 50%;
    }
    .pn_list--item .post-pn {
      display: none;
    }
  }
  @media screen and (max-width: 320px) {
    .wp-pagenavi a,
    .wp-pagenavi span {
      padding: 6px 12px;
    }
  }

/* cases_voice
*************************************************** */
  .single-cases_voice .page_head {
    padding-top: 0;
    margin-top: 40px;
    height: 28vw;
    min-height: 500px;
    padding-left: 0;
    padding-right: 0;
  }
  .single-cases_voice .page_head .head1 {
    line-height: 2em;
  }
  .single-cases_voice .page_head .comp_name {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .single-cases_voice .page_head .bg_img {
    filter: blur(5px);
  }
  .single-cases_voice .side_column {
    width: 360px;
  }
  .single-cases_voice .img_mov_list {
    row-gap: 16px;
  }
  .single-cases_voice .img_mov_list--item-mov {
    padding-top: 56.25%;
  }
  .single-cases_voice .info_area {
    row-gap: 32px;
  }
  .single-cases_voice .info_area .logo {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .single-cases_voice .info_area .logo img {
    max-width: 312px;
    max-height: 64px;
    width: 100%;
    height: auto;
  }
  .single-cases_voice .line_list--item .ttl {
    width: 96px;
  }
  .single-cases_voice .line_list--item > * {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .single-cases_voice .line_list--item:first-child > * {
    padding-top: 0;
  }
  .single-cases_voice .cmnt_area .ttl {
    padding-left: 12px;
    padding-right: 12px;
    transform: translateX(-8px);
  }
  .single-cases_voice .cmnt_area .txts {
    margin-top: -10px;
    padding-top: 26px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    z-index: -1;
    font-size: 93%;
    line-height: 1.6em;
  }
  .single-cases_voice .cmnt_area .txts p:not(:last-child) {
    margin-bottom: 1.4em;
  }
  @media screen and (max-width: 1280px) {
    .single-cases_voice .page_head {
      font-size: 80%;
    }
  }
  @media screen and (max-width: 1200px) {
    .single-cases_voice .page_head {
      margin-top: 0;
      margin-bottom: 64px;
    }
  }
  @media screen and (max-width: 960px) {
    .single-cases_voice .page_head {
      min-height: 400px;
    }
  }
  @media screen and (max-width: 768px) {
    .single-cases_voice .page_head {
      min-height: 280px;
      font-size: 75%;
    }
  }
  @media screen and (max-width: 560px) {
    .single-cases_voice .page_head {
      min-height: 220px;
      margin-bottom: 32px;
      font-size: 65%;
    }
    .single-cases_voice .page_head .head1 {
      margin-bottom: 12px;
    }
    .single-cases_voice .line_list--item .ttl {
      width: 80px;
    }
    .single-cases_voice .info_area .logo {
      padding-top: 12px;
      padding-bottom: 12px;
    }
  }
  @media screen and (max-width: 414px) {
    .single-cases_voice .page_head {
      min-height: 200px;
      font-size: 55%;
    }
  }


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

    CONTACT FORM

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

/* form_flow
*************************************************** */
  .form_flow_list {
    order: 1;
    margin-bottom: 56px;
    margin-left: auto;
    margin-right: auto;
  }
  .form_flow_list--item {
    width: 33.333%;
    font-size: 125%;
    padding-bottom: 20px;
  }
  .form_flow_list--item:last-child {
    z-index: -1;
  }
  .form_flow_list--item:not(:last-child) {
    border-right: none;
  }
  .form_flow_list--item::before,
  .form_flow_list--item::after {
    content: '';
    position: absolute;
  }
  .form_flow_list--item::before {
    left: 50%;
    bottom: -5px;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    transform: translateX(-50%);
    z-index: 0;
  }
  .form_flow_list--item::after {
    bottom: -1px;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 3px;
  }
  .form_flow_list--item:last-of-type::after {
    content: none;
  }
  .mw_wp_form:not(.mw_wp_form_confirm):not(.mw_wp_form_complete) .form_flow_list .form_flow_list--item-input::before,
  .mw_wp_form_confirm .form_flow_list .form_flow_list--item-confirm::before,
  .mw_wp_form_complete .form_flow_list .form_flow_list--item-complete::before {
    transform: translateX(-50%) scale(1.4);
  }
  @media screen and (max-width: 960px) {
    .form_flow_list {
      width: 100%;
    }
    .form_flow_list--item {
      font-size: 100%;
      letter-spacing: 0em;
      line-height: 1.6em;
    }
  }
  @media screen and (max-width: 560px) {
    .form_flow_list {
      margin-bottom: 20px;
    }
    .form_flow_list--item::before {
      width: 9px;
      height: 9px;
      bottom: -4px;
    }
  }
  @media screen and (max-width: 320px) {
    .form_flow_list--item {
      font-size: 90%;
    }
  }

/* COMMON
*************************************************** */
  #cf_form .mw_wp_form {
    padding-top: 88px;
    padding-bottom: 88px;
    padding-left: 96px;
    padding-right: 96px;
  }
  .form_list { width:100%; }
  .form_list--item {
    border-bottom: 1px solid rgba(190,191,191,.35);
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .form_list--item .ttl {
    white-space: nowrap;
    text-align: left;
    font-weight: 700;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"],
  .form_list--item .cont textarea {
    width: 100%;
    vertical-align: bottom;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"] {
    height: 44px;
    line-height: 44px;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"],
  .form_list--item .cont select,
  .form_list--item .cont textarea {
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    border: none;
    font: inherit;
    font-size: 100%;
    background-color: #fff;
    color: #1a2c3f;
  }
  .form_list--item .cont textarea { height: 100px; }
  .form_list--item .cont select { height: 40px; }
  .form_list--item .cont ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .form_list--item .cont input:hover { opacity: .7; }
  .form_list--item .cont textarea:hover { opacity: .7; }
  .form_list--item .cont input:focus { outline: none; }

/* radio & checkbox
*************************************************** */
  .form_list--item .cont .cf_rc input[type="radio"],
  .form_list--item .cont .cf_rc input[type="checkbox"] { display: none !important; }
  .form_list--item .cont .cf_rc .mwform-radio-field,
  .form_list--item .cont .cf_rc .mwform-checkbox-field {
    margin-left: 0;
    display: block;
  }
  .form_list--item .cont .cf_rc .mwform-radio-field:not(:last-child),
  .form_list--item .cont .cf_rc .mwform-checkbox-field:not(:last-child) {
    margin-bottom: 6px;
  }
  .form_list--item .cont .cf_rc .mwform-radio-field-text,
  .form_list--item .cont .cf_rc .mwform-checkbox-field-text {
    display: inline-block;
    padding-left: 24px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
  }

  .form_list--item .cont .cf_rc .mwform-radio-field-text:hover { opacity: .7; }
  .form_list--item .cont .cf_rc .mwform-radio-field-text::before,
  .form_list--item .cont .cf_rc .mwform-checkbox-field-text::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
  }
  .form_list--item .cont .acceptance input[type="checkbox"] {
    position: relative;
    margin-right: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
  }
  .form_list--item .cont .cf_rc .mwform-radio-field-text::before,
  .form_list--item .cont .cf_rc .mwform-checkbox-field-text::before,
  .form_list--item .cont .acceptance input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
  }
  .form_list--item .cont .cf_rc input[type="radio"] + .mwform-radio-field-text::before { border-radius: 10px; }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text {
    color: rgb(19,124,197);
    font-weight: bold;
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text::before,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text::before,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked {
    border-color: rgb(19,124,197);
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text::after,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    z-index: 10;
    display: block;
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text::after {
    top: 12px;
    left: 5px;
    width: 5px;
    height: 5px;
    background-color: rgb(019,124,197);
    border-radius: 100%;
  }
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked::after {
    top: 9px;
    left: 5px;
    width: 5px;
    height: 9px;
    border-right: 2px solid rgb(19,124,197);
    border-bottom: 2px solid rgb(19,124,197);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/* address
*************************************************** */
  .form_list--item .cont .cf_zip {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .form_list--item .cont .cf_zip input[type="text"] {
    width: auto;
    max-width: 200px;
    margin-left: 8px;
    margin-right: 8px;
  }

/* other
*************************************************** */

  /* --- support --- */
  .cf_form--support {
    margin-top: 4px;
    line-height: 1.6em;
    opacity: .5;
    font-size: 80%;
  }

  /* --- required --- */
  .required {
    background: rgb(165,61,61);
    color: #fff;
    font-size: 70%;
    padding: 7px 8px;
    line-height: 1em;
    letter-spacing: .05em;
    transform: skew(-12.8deg);
  }

  /* --- cf_form--btns --- */
  .cf_form--btns {
    padding-top: 32px;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    column-gap: 40px;
    row-gap: 4px;
  }
  .cf_form--btns button {
    background: transparent;
    border: none;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
  }

  /* --- error --- */
  .mw_wp_form .error {
    position: relative;
    margin-top: 8px;
    line-height: 1em;
    padding-left: 18px;
    color: rgb(165,61,61) !important;
    font-size: 80%;
    font-weight: 500;
  }
  .mw_wp_form .error::before {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    content: '!';
    width: 13px;
    height: 13px;
    padding-left: 1px;
    line-height: 12px;
    margin-right: 4px;
    border-radius: 100%;
    background-color: rgb(165,61,61);
    color: #fff;
    text-align: center;
    transform: translateY(-50%);
    font-size: 85%;
  }
  .mw_wp_form .form_list--item.is-error .cont input {
    background-color: rgba(165,61,61,.1);
    border-color: rgba(165,61,61,.5);
  }
  input[name="recaptcha-v3"] + .error {
    display: table;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- vert --- */
  .form_list-ver .form_list--item .ttl {
    margin-bottom: 16px;
    line-height: 1em;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  /* --- hor --- */
  .form_list-hor .form_list--item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form_list-hor .form_list--item .ttl {
    width: 220px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .form_list-hor .form_list--item .cont {
    flex: 1;
    margin-left: 40px;
  }
  @media only screen and (max-width: 960px) {
    #cf_form .mw_wp_form {
      padding-top: 56px;
      padding-bottom: 56px;
      padding-left: 48px;
      padding-right: 48px;
    }
    .form_list-hor .form_list--item {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .form_list-hor .form_list--item .ttl {
      width: auto;
      line-height: 1em;
      margin-bottom: 16px;
    }
    .form_list-hor .form_list--item .cont {
      margin-left: 0;
    }
  }
  @media only screen and (max-width: 560px) {
    #cf_form .mw_wp_form {
      padding-top: 24px;
      padding-bottom: 24px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .form_list--item {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .form_list--item .cont input[type="text"],
    .form_list--item .cont input[type="email"],
    .form_list--item .cont input[type="tel"],
    .form_list--item .cont input[type="date"],
    .form_list--item .cont input[type="password"],
    .form_list--item .cont textarea {
      font-size: 16px;
    }
    .form_list--item .cont .cf_rc .wpcf7-list-item {
      display: block;
    }
    .form_list--item .cont .cf_zip input[type="text"] {
      width: calc(100% - 23px);
      margin-right: 0;
    }
    .cf_form--btns {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-top: 16px;
    }
    .cf_form--btns button {
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
    .cf_form--btns button:not(:last-child) {
      margin-bottom: 8px;
    }
  }


/* ======================================================================================

    reCAPTCHA

====================================================================================== */
  .footer .recaptcha_txt {
    display: block;
    font-size: 67%;
    line-height: 1.6em;
  }
  .grecaptcha-badge {
    visibility: hidden;
  }