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

    KEYFRAMES

############################################################################## */
  @keyframes scrollup {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(0, 60px);
    }
  }
  @keyframes scrollup-sp {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(0, 26px);
    }
  }
  @keyframes area_slide {
    0% { transform: translateX(-110%); }
    40% { transform: translateX(0); }
    60% { transform: translateX(0); }
    100% { transform: translateX(110%); }
  }
  @keyframes bounth {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.4);
    }
  }
  @keyframes models_hov {
    0% {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: translateX(-110%) skew(-15deg);
    }
    50% {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: translateX(0%) skew(0deg);
    }
    100% {
      top: 8px;
      left: 8px;
      width: calc(100% - 16px);
      height: calc(100% - 16px);
      transform: translateX(0%);
    }
  }
  @keyframes models_hov_ie {
    0% {
      transform: translateX(-110%) skew(-15deg);
    }
    50% {
      transform: translateX(0%) skew(0deg);
    }
    100% {
      transform: translateX(0%);
    }
  }

  @keyframes models_ttl_hov {
    0% {
      opacity: 0;
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  @keyframes gnav_line_in {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  @keyframes gnav_line_out {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  @keyframes logo_stroke {
   0% {
     stroke-dashoffset: 2000;
     fill:transparent;
    }
     50% {
     fill:transparent;
    }
     100% {
     stroke-dashoffset: 0;
     fill:#191919;
    }
  }
  @keyframes logo_stroke_sp {
   0% {
     stroke-dashoffset: 2000;
     fill:transparent;
    }
     50% {
     fill:transparent;
    }
     100% {
     stroke-dashoffset: 0;
     fill:#fff;
    }
  }
  @keyframes sc_co_in {
    0% {
      opacity: 0;
      transform: translateX(-100%) skew(-35deg);
    }
    20% {
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: translateX(0) skew(-35deg);
    }
  }
  @keyframes sc_co_out {
    0% {
      opacity: 1;
      transform: translateX(0) skew(-35deg);
    }
    80% {
      opacity: 0;
    }
    100% {
      opacity: 0;
      transform: translateX(100%) skew(-35deg);
    }
  }
  @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-rev_rgt {
    0% { transform: translateX(0%); }
    100% { transform: translateX(110%); }
  }
  @keyframes scr_imgs {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -5338px 0; /* 画像のマイナス幅 */
    }
  }
  .fade_in {
    transition: 1s;
    transition-timing-function: cubic-bezier(.185,-.075,0,1.01);
    -webkit-transition-timing-function: cubic-bezier(.185,-.075,0,1.01);
    -moz-transition-timing-function: cubic-bezier(.185,-.075,0,1.01);
    opacity: 0;
    -webkit-transform: translate3d(0,0,0) translateY(2vw);
    transform: translate3d(0,0,0) translateY(2vw);
  }
  .active.fade_in,
  .active .fade_in {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
  }
  .del200 { transition-delay: 200ms; }
  .del400 { transition-delay: 400ms; }
  .del600 { transition-delay: 600ms; }
  .del800 { transition-delay: 800ms; }
  .del1000 { transition-delay: 1000ms; }
  .del1200 { transition-delay: 1200ms; }
  .del1400 { transition-delay: 1400ms; }
  .del1600 { transition-delay: 1600ms; }
  .scr_imgs {
    position: relative;
    left: 50%;
    width: 100vw;
    height: 350px;
    transform: translateX(-50%);
  }
  .scr_imgs .img_src {
    background-image: url('../images/global/scr_imgs@2x.jpg');
    background-repeat: repeat-x;
    background-size: auto 350px; /* 画像の高さ */
    animation-duration: 100s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-name: scr_imgs;
  }
  @media screen and (max-width: 1280px) {
    .scr_imgs {
      height: 280px;
    }
    .scr_imgs .img_src {
      background-size: auto 280px;
    }
  }
  @media screen and (max-width: 768px) {
    .scr_imgs {
      height: 200px;
    }
    .scr_imgs .img_src {
      background-image: url('../images/global/scr_imgs.jpg');
      background-size: auto 200px;
    }
  }
  @media screen and (max-width: 560px) {
    .scr_imgs {
      height: 150px;
    }
    .scr_imgs .img_src {
      background-size: auto 150px;
    }
  }


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

    COMMON

############################################################################## */
  .loaded .ts,
  .loaded .ts-bf::before,
  .loaded .ts04-bf::before,
  .loaded .ts04-af::after {
    transition: .8s cubic-bezier(.55, .05, .22, .99);
  }
  .loaded .ts04,
  .loaded .ts04::before,
  .loaded .ts04-bf::before,
  .loaded .ts04-af::after {
    transition-duration: .4s;
  }
  .svg-symbol {
    display: none;
  }

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

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
  }
  .inner-sm { max-width: 880px; }
  .inner-lg {
    max-width: 1920px;
  }
  .inner-xl {
    max-width: calc(100% - 96px);
    width: 100%;
  }

  /* --- sect_pdg --- */
  .sect_pdg {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .sect_pdg-lg {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .sect_pdg-sm {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .sect_pdg-btm_no {
    padding-bottom: 0;
  }
  .sect_pdg-top_no {
    padding-top: 0;
  }

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

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

  /* --- margin --- */
  .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; }
  .btm120 { margin-bottom: 120px; }

  /* --- pc or sp --- */
  .pc-none,
  .pc-none-inline,
  .pc-none-table,
  .pc-none-flx,
  .lgpc-none,
  .tab-show,
  .tab-show-inline,
  .tab-show-table,
  .tab-show-flx { display: none; }
  .sp-none { display: block; }
  .sp-none-inline,
  .smsp-none-inline { display: inline; }
  .sp-none-table { display: table; }
  .sp-none-flx {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .smsp-show { display: none; }
  .tab-only,
  .tab-only-inline {
    display: none;
  }
  @media screen and  (max-width: 1064px) {
    .lgpc-none {
      display: block;
    }
    .sect_pdg-lg {
      padding-top: 120px;
      padding-bottom: 120px;
    }
    .sect_pdg-btm_no {
      padding-bottom: 0;
    }
  }
  @media screen and  (max-width: 960px) {
    .tab-show { display: block; }
    .tab-show-inline { display: inline; }
    .tab-show-table { display: table; }
    .tab-show-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
    .inner-xl {
      max-width: 100%;
    }
  }
  @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; }
    .btm120 { margin-bottom: 40px; }
    .sp-none,
    .sp-none-inline,
    .sp-none-table,
    .sp-none-flx { display: none; }
    .pc-none { display: block; }
    .pc-none-inline { display: inline; }
    .pc-none-table { display: table; }
    .pc-none-flx {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
    .sect_pdg {
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .sect_pdg-lg {
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .sect_pdg-sm {
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .sect_pdg-btm_no {
      padding-bottom: 0;
    }
  }
  @media screen and (max-width: 320px) {
    .smsp-none-inline {
      display: none;
    }
    .smsp-show {
      display: block;
    }
  }

/* flex
**************************************** */
  
  /* --- ブロック要素 --- */
  .flx {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .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-j {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flx-ctr-j {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flx-end-j {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flx-btw-j {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flx-aro-j {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

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

  /* --- 子要素の折り返し設定 --- */
  .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-bsln-c {
    -webkit-align-content: baseline;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
  }
  .flx-str-c {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  
  /* --- ざっくりflexレイアウト --- */
  .flx-lo2,
  .flx-lo3,
  .flx-lo4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flx-lo2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flx-lo2 > *:nth-child(even) { margin-right: 0; }
  .flx-lo3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flx-lo3 > *:nth-child(3n+3) { margin-right: 0; }
  .flx-lo4>* {
    width: 23%;
    margin-right: 2.66%;
    margin-bottom: 4%;
  }
  .flx-lo4 > *:nth-child(4n+4) { margin-right: 0; }
  @media screen and (max-width: 1064px) {
    /* --- 縦並び - sp --- */
    .flx-smpc-blc {
      display: block;
    }
  }
  @media screen and (max-width: 960px) {
    .flx-tab-blc {
      display: block;
    }
    /* --- ざっくりflexレイアウト - tab --- */
    .flx-lo2-tab > *,
    .flx-lo2-tab.flx-lo3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flx-lo2-tab > *:nth-child(even),
    .flx-lo2-tab.flx-lo3 > *:nth-child(even) { margin-right: 0; }
    .flx-lo3-tab > *,
    .flx-lo3-tab.flx-lo4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flx-lo3-tab > *:nth-child(3n+3),
    .flx-lo3-tab.flx-lo4 > *:nth-child(3n+3) { margin-right: 0; }
  }
  @media screen and (max-width: 560px) {
    /* --- 縦並び - sp --- */
    .flx-sp-blc {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    /* --- ざっくりflexレイアウト - sp --- */
    .flx-lo2-sp > *,
    .flx-lo2-sp.flx-lo3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flx-lo2-sp > *:nth-child(even),
    .flx-lo2-sp.flx-lo3 > *:nth-child(even) { margin-right: 0; }
    .flx-lo3-sp > *,
    .flx-lo3-sp.flx-lo4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flx-lo3-sp > *:nth-child(3n+3),
    .flx-lo3-sp.flx-lo4 > *:nth-child(3n+3) { margin-right: 0; }
  }

/* bg
**************************************** */
  .bg-gry { background-color: #f4f4f4; }
  .bg-wht { background-color: #fff; }
  .bg-blk { background-color: #000; }
  .bdr-blk { border-color: #000; }
  .bg-gry_dk { background-color: #dcdcdc; }
  .bdr-gry_dk { border-color: #dcdcdc; }
  .bg-blu,
  .bg-blu-bf::before,
  .bg-blu-af::after {
    background-color: #096fc8;
  }
  .clr-red { color: #ff0000 }

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

  /* --- page_ttl --- */
  .page_ttl {
    background: #f4f4f4;
    padding-top: 45.834%;
  }
  .page_ttl .img {
    width: 75vw;
    left: auto;
    left: initial;
    right: 0;
    background-position: center;
    background-size: cover;
  }
  .page_ttl-en {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    font-size: 800%;
    line-height: 1.1em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0em;
  }

  /* --- sect_ttl --- */
  .sect_ttl {
    position: relative;
    font-weight: normal;
  }
  .sect_ttl>span {
    display: block;
  }
  .sect_ttl>span:nth-child(1) {
    font-size: 194%;
    font-weight: bold;
  }
  .sect_ttl>span:nth-child(2) {
    padding-bottom: 16px;
    letter-spacing: .1em;
  }
  .sect_ttl .line {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 1px;
    transform: translateX(-50%);
    background-color: #096fc8;
    overflow: hidden;
  }

  .sect_ttl .line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dce8f3;
    animation: area_slide 1.2s cubic-bezier(.55, .05, .22, .99) 0s infinite forwards;
  }
  .sect_ttl-sm { font-size: 267%; }
  .sect_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }
  
  /* --- heading --- */
  .head1 {
    font-size: 134%;
    border-bottom: 1px solid #096fc8;
    line-height: 1.6em;
    padding-bottom: 24px;
    letter-spacing: .05em;
    font-weight: normal;
  }
  .head2 {
    font-size: 120%;
    font-weight: normal;
  }
  .head3 { font-size: 120%; }
  .head4 { font-size: 100%; }

  @media screen and (max-width: 560px) {
    .sect_ttl>span:nth-child(1) {
      font-size: 172%;
    }
  }


/* txt
**************************************** */
  .fnt-xl { font-size: 134%; }
  .fnt-lg { font-size: 107%; }
  .fnt-sm { font-size: 93%; }
  .fnt-xs { font-size: 80%; }
  .txt-ctr { text-align: center; }
  .tbl-ctr {
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-left: 64px;
    padding-right: 64px;
  }
  .txt-rgt { text-align: right; }
  .txt-attn {
    font-size: 88%;
    color: #999;
  }
  .fnt-roboto {
    font-family: 'Roboto', sans-serif;
  }
  .fnt-bodoni {
    font-family: 'bodoni Moda', serif;
    font-weight: normal !important;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1.5em; }
  .txtarea p:not(:last-child).btm_no { margin-bottom: 0; }
  .clr-blu {
    color: #096fc8;
  }
  .clr-wht {
    color: #fff;
  }
  .w-t { font-weight: 100; }
  .w-l { font-weight: 300; }
  .w-r { font-weight: 400; }
  .w-m { font-weight: 500; }
  .w-b { font-weight: 700; }
  @media screen and (max-width: 960px) {
    .txt-lft-tab {
      text-align: left;
    }
    .page_ttl-en {
      font-size: 500%;
    }
  }
  @media screen and (max-width: 560px) {
    .txt-lft-sp {
      text-align: left;
    }
    .page_ttl {
      padding-top: 61%;
    }
    .page_ttl .img {
      width: 100%;
    }
    .page_ttl-en {
      font-size: 300%;
      color: #fff;
      left: 24px;
      transform: translateY(-16px);
      text-shadow: 0 0 10px rgba(0,0,0,.1);
    }
    .head1 {
      padding-bottom: 12px;
      margin-bottom: 16px;
      font-size: 123%;
      text-align: center;
    }
    .head1.tbl-ctr {
      width: 100%;
      padding-left: 0;
      padding-right: 0;
    }
    .fnt-xl { font-size: 123%; }
  }
  @media screen and (max-width: 320px) {
    .page_ttl-en {
      font-size: 200%;
      transform: translateY(4px);
    }
  }

/* 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: 16px; }
  .list li {
    position: relative;
    padding-left: 1.4em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7em;
    width: 8px;
    height: 8px;
    border-radius: 6px;
    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;
  }
  .list-dl dt,
  .list-dl dd {
    padding-top: 12px;
    padding-bottom: 12px;
    
  }
  .list-dl dt {
    position: absolute;
    color: #fff;
    background-color: #096fc8;
    width: 320px;
    text-align: center;
  }
  .list-dl dd {
    margin-left: 336px;
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 16px;
    background-color: #f4f4f4;
  }

  @media screen and (max-width: 960px) {
    .list-dl dt {
      position: static;
      width: 100%;
    }
    .list-dl dd {
      margin-left: 0;
      text-align: center;
      padding-left: 16px;
      padding-right: 16px;
    }
  }

/* btn
**************************************** */
  .btn a {
    position: relative;
    z-index: 0;
    display: block;
    overflow: hidden;
    background-color: #096fc8;
    min-width: 240px;
    padding-left: 20px;
    padding-right: 88px;
    padding-top: 16px;
    padding-bottom: 16px;
    letter-spacing: .1em;
    color: #fff;
  }
  .btn a::before,
  .post-categories a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: translateX(-110%) skew(-5deg);
    background-color: rgba(0,0,0,.08);
  }
  .btn a .line {
    position: absolute;
    overflow: hidden;
    right: 20px;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #161616;
  }
  .btn a .line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: translateX(-110%);
  }

  .btn-blk a {
    background-color: #191919;
  }
  .btn-blk a::before {
    background-color: rgba(255,255,255,.08);
  }
  .btn-blk a .line::before {
    background-color: #096fc8 !important;
  }
  .btn-grn a {
    background-color: #39AD36;
  }
  .btn-wht a {
    background-color: #fff;
    color: #161616;
    border: 1px solid #cfd2d5;
  }
  .btn-wht a .line {
    background-color: #cfd2d5 !important;
  }
  .btn-wht a .line::before {
    background-color: #161616;
  }

  /* --- btn-flat --- */
  .btn-flat a {
    display: inline-block;
    padding: 7px 24px;
    background-color: #191919;
    color: #fff !important;
    transition: .25s cubic-bezier(.55, .05, .22, .99);
  }
  .btn-flat a:hover {
    text-decoration: none !important;
  }

  /* --- btn-fix_btm --- */
  .btn-fix_btm {
    position: fixed;
    bottom: 8px;
    left: 8px;
    right: 8px;
    z-index: 10001;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 1em;
    color: #ffffff;
  }
  .btn-fix_btm a {
    color: #ffffff;
  }
  .btn-fix_btm::before {
    border-width: 2px;
    border-style: solid;
    border-color: #096fc8;
    background-color: rgba(25,25,25,.9);
  }
  .btn-fix_btm .iw {
    margin-right: 6px;
    font-size: 109%;
  }
  .btn-fix_btm.active {
    color: #fff;
    background-color: #191919;
  }
  .btn-fix_btm.active::before {
    opacity: 0;
  }
  .btn-fix_btm.is_hide {
    opacity: 0;
    pointer-events: none;
  }
  .btn-fix_btm.this_term {
    display: none;
  }

  @media screen and (min-width: 961px) {
    .btn a:hover::before,
    .post-categories a:hover::before {
      animation: area_slide .6s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
    }
    .btn a:hover .line::before {
      animation: area_slide .6s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
    }
    .btn-flat:hover a {
      opacity: .7;
    }
  }
  @media screen and (max-width: 560px) {
    .btn a {
      padding-right: 56px;
      padding-top: 12px;
      padding-bottom: 12px;
    }
    .btn a .line {
      width: 24px;
    }
    .single-blog .btn-fix_btm {
      display: none;
    }
    .single-blog .btn-fix_btm.this_term {
      display: block;
    }
  }

/* movie_list
**************************************** */
  .movie .img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    padding-left: 48px;
    padding-right: 48px;
  }
  .logo_txt svg {
    display: block;
    fill: #191919;
  }
  .logo_txt svg path {
    stroke: #191919;
  }
  .movie_list--item {
    overflow: hidden;
  }
  .movie_list--item::before {
    opacity: 0;
    filter: blur(10px);
    background-color: rgba(0,0,0,.5);
    z-index: 0;
    pointer-events: none;
    transition: .4s all;
  }
  .movie_list--item .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
    width: 30px;
    height: 30px;
    pointer-events: none;
  }
  .movie_list--item .arrow::before {
    background-color: rgba(255,255,255,.8);
    border-radius: 100%;
  }
  .movie_list--item .arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #161616;
  }
  .logo_txt svg {
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
  }
  .active .logo_txt svg {
    stroke-width: 1;
    stroke: #191919;
    animation: logo_stroke 1.2s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
  }
  @media screen and (min-width: 961px) {
    .movie_list--item:hover::before {
      opacity: 1;
      filter: blur(0px);
    }
    .movie_list--item:hover .arrow::before {
      animation: bounth 1s cubic-bezier(0,.4,.7,.4) 0s infinite forwards;
    }
  }
  @media screen and (max-width: 560px) {
    .movie_list {
      animation-delay: 400ms;
    }
    .movie .btn_list {
      animation-delay: 600ms;
    }
    .movie_list--item {
      width: 100%;
      margin-bottom: 24px;
    }
    .movie .img {
      position: static;
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      padding-right: 16px;
      background-color: #cfd2d5;
    }
    .logo_txt.is_show svg {
      opacity: 0;
      stroke-width: 1;
      stroke: #fff;
      animation:
        logo_stroke_sp 1.2s cubic-bezier(.55, .05, .22, .99) 2s 1 forwards,
        fade_in .2s cubic-bezier(.55, .05, .22, .99) 2s 1 forwards;
    }
    body:not(.home) .active .logo_txt svg {
      animation: none;
      opacity: 1; 
      stroke: #fff;
      fill: #fff;
    }
  }
  @media all and (-ms-high-contrast:none) {
    .active .logo_txt svg {
      width: 1824px;
      height: 414px;
      max-width: 100%;
      stroke-width: 1;
      stroke: #191919;
      fill: #191919;
      animation: none;
    }
  }

/* breadcrumbs
**************************************** */
  #breadcrumbs {
    padding-top: 30px;
    font-size: 87%;
  }
  #breadcrumbs img {
    margin-right: 12px;
  }
  #breadcrumbs a,
  #breadcrumbs span {
    padding-left: 4px;
    padding-right: 4px;
  }
  .page-about-shop #breadcrumbs,
  .page-gallery #breadcrumbs {
    padding-bottom: 30px;
  }
  @media screen and (max-width: 560px) {
    #breadcrumbs {
      padding-top: 16px;
    }
    .page-about-shop #breadcrumbs,
    .page-gallery #breadcrumbs {
      padding-bottom: 16px;
    }
  }

/* area_tri
**************************************** */
  .area_tri .tri {
    position: absolute;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .area_tri .tri01 {
    top: 0;
    left: 0;
    border-width: 372px 216px 0 0;
    border-color: #fff transparent transparent transparent;
  }
  .area_tri .tri02 {
    bottom: 0;
    right: 0;
    border-width: 0 0 372px 216px;
    border-color: transparent transparent #fff transparent;
  }
  @media screen and (max-width: 1600px) {
    .area_tri .tri01 {
      left: -80px;
    }
    .area_tri .tri02 {
      right: -80px;
    }
  }
  @media screen and (max-width: 1400px) {
    .area_tri .tri01 {
      left: -120px;
    }
    .area_tri .tri02 {
      right: -120px;
    }
  }
  @media screen and (max-width: 960px) {
    .area_tri .tri01 {
      left: -160px;
    }
    .area_tri .tri02 {
      right: -160px;
    }
  }
  @media screen and (max-width: 560px) {
    .area_tri .tri01 {
      left: -195px;
    }
    .area_tri .tri02 {
      right: -195px;
    }
  }

/* insta
**************************************** */
  .insta {
    overflow: hidden;
  }
  .insta .frame_wrap {
    left: 50%;
    width: 2900px;
    height: 280px;
    transform: translateX(-50%);
  }
  .insta .frame_wrap iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 2900px;
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 960px) {
    .insta .frame_wrap {
      width: 2100px;
      height: 200px;
    }
    .insta .frame_wrap iframe {
      min-width: 2100px;
    }
  }
  @media screen and (max-width: 560px) {
    .insta .frame_wrap {
      width: 1600px;
      height: 150px;
    }
    .insta .frame_wrap iframe {
      min-width: 1600px;
    }
  }


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

    HEADER

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

/* header
**************************************** */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 80px;
    padding-left: 48px;
    padding-right: 48px;
    background-color: rgba(255,255,255,.95);
  }
  @media screen and (max-width: 1280px) {
    .header {
      background-color: transparent;
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media screen and (max-width: 560px) {
    .header--logo img {
      width: 44px;
      height: 48px;
    }
    .scrolled .header--logo {
      opacity: 0;
    }
  }

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

  /* --- gnav--logo --- */
  .gnav--logo {
    text-align: center;
  }
  
  /* --- gnav--links --- */
  .gnav--links .gnav_list--item_txt {
    display: block;
    overflow: hidden;
  }
  .gnav--links .arrow {
    position: absolute;
    width: 10px;
    height: 10px;
  }
  .gnav--links .arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #096fc8;
    border-right: 1px solid #096fc8;
    transform: rotate(135deg) translate(-50%,-50%);
    transform-origin: 0 0;
  }
  .gnav--links .gnav_list--item_txt .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    z-index: 1;
  }
  .gnav--links .gnav_list--item_txt .line::before,
  .gnav--links .gnav_list--item_txt .line::after {
    transform: translateX(100%);
    transition: .6s cubic-bezier(.55, .05, .22, .99);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(.55, .05, .22, .99);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: gnav_line_out;
  }
  .gnav--links .gnav_list--item_txt .line::before {
    background-color: #096fc8;
  }
  .gnav--links .gnav_list--item_txt .line::after {
    background-color: #f4f4f4;
    animation-duration: .4s;
  }
  .gnav_list--item-global {
    line-height: 1em;
    background-color: #161616;
  }
  .gnav_list--item-global a {
    color: #fff;
  }
  .gnav--links .gnav_list--item-global .gnav_list--item_txt {
    padding-top: 22px;
    padding-bottom: 16px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .gnav_list--item-global .gnav_list--item_txt svg {
    margin-right: 6px;
    fill: #096fc8;
  }
  .gnav_list--item-global .gnav_list--item_txt .txt {
    margin-top: 6px;
  }
  .gnav--links .gnav_list--item-outdoor .gnav_list--item_txt {
    padding: 0;
  }
  .gnav--links .gnav_list--item-outdoor .gnav_list--item_txt,
  .gnav--links .gnav_list--item-outdoor .gnav_list--item_txt a,
  .gnav--links .gnav_list--item-outdoor .gnav_list--item_txt .ttl {
    height: 100%;
  }
  .gnav--links .gnav_list--item-outdoor .gnav_list--item_txt a {
    display: block;
    width: 180px;
    background-color: #a1c6e5;
  }
  .gnav--links .gnav_list--item-outdoor .gnav_list--item_txt .line::before {
    background-color: #000;
  }
  .gnav_sub {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #161616;
    pointer-events: none;
    height: 0;
    min-height: 0;
    overflow: hidden;
  }
  .gnav_sub a {
    color: #fff;
  }
  .gnav_sub_list {
    width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .gnav_sub_list--item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .gnav_sub_list--item .img {
    overflow: hidden;
  }
  .gnav_sub_list--item .ofc_img {
    height: 110px;
  }
  .gnav_sub_list--item .ofc_img img {
    object-fit: cover;
  }
  .gnav_sub_list--item .img img {
    transform: scale(1.01);
  }
  .ico_img {
    width: 40px;
    height: 40px;
    background-color: #096fc8;
    margin-right: 14px;
    border-radius: 100px;
  }
  @media screen and (min-width: 1281px) {
    .gnav_btn,
    .gnav--txtarea,
    .gnav--sub_links {
      display: none;
    }
    /* --- gnav--links --- */
    .gnav--links .gnav_list--item_txt {
      display: block;
      padding-top: 26px;
      padding-bottom: 26px;
      padding-left: 16px;
      padding-right: 16px;
      cursor: pointer;
    }
    .gnav--links .arrow {
      left: 50%;
      transform: translateX(-50%);
      bottom: 12px;
    }
    .gnav_sub_list--item {
      width: 291px;
      margin-right: 14px;
      margin-top: 12px;
      letter-spacing: 0em;
      min-height: 138px;
    }
    .gnav_sub_list--item:nth-child(4n+4) {
      margin-right: 0;
    }
    .gnav_list--item-sns .gnav_sub_list--item {
      width: 230px;
    }
    .gnav_list--item-global {
      margin-right: -48px;
    }
    .gnav_list--item-outdoor {
      margin-left: 16px;
    }
    .gnav_list--item .gnav_list--item_txt,
    .gnav_list--item .arrow {
      transition-delay: .25s;
    }
    .gnav_list--item:hover .gnav_list--item_txt,
    .gnav_list--item:hover .gnav_list--item_txt a {
      color: #fff;
    }
    .gnav_list--item:hover .gnav_list--item_txt svg {
      fill: #fff;
    }
    .gnav_list--item:hover .gnav_list--item_txt {
      background-color: #096fc8;
    }
    .gnav_list--item-outdoor:hover .gnav_list--item_txt a {
      background-color: #86b3d9;
    }
    .gnav_list--item:hover .arrow::before {
      border-color: #fff;
    }
    .gnav--links .gnav_list--item:hover .gnav_list--item_txt .line::before,
    .gnav--links .gnav_list--item:hover .gnav_list--item_txt .line::after {
      animation-duration: .4s;
      animation-timing-function: cubic-bezier(.55, .05, .22, .99);
      animation-delay: 0s;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-play-state: running;
      animation-name: gnav_line_in;
    }
    .gnav--links .gnav_list--item:hover .gnav_list--item_txt .line::after {
      animation-delay: .4s;
    }
    .gnav_list--item:hover .gnav_sub {
      padding-top: 4px;
      padding-bottom: 16px;
      min-height: 316px;
      pointer-events: all;
    }
    .gnav_list--item:hover .gnav_sub-sm {
      min-height: 170px;
    }
    .gnav_list--item:hover .gnav_sub-lg {
      min-height: 462px;
    }
    .gnav_sub_list--item:hover .img {
      opacity: .5;
    }
    .gnav_sub_list--item:hover a {
      color: #096fc8;
    }
  }
  @media screen and (max-width: 1500px) {
    .gnav--links .gnav_list--item_txt {
      padding-left: 12px;
      padding-right: 12px;
      font-size: 93%;
    }
  }
  @media screen and (max-width: 1360px) {
    .gnav--links .gnav_list--item_txt {
      padding-left: 8px;
      padding-right: 8px;
    }
  }

  @media screen and (max-width: 1280px) {
    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      pointer-events: none;
      transition: .35s ease-out;
      opacity: 0;
      background-color: rgba(0, 0, 0, .8);
      transform: scale(1.025);
    }
    .gnav::before {
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: auto;
      height: auto;
      background-color: #fff;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: scale(1);
    }
    .gnav--in {
      display: block;
      overflow-y: scroll;
      padding: 64px;
      height: 100%;
    }

    .gnav--txt_list span {
      font-size: 93%;
    }

    /* --- gnav--sns_list --- */
    .gnav--sns_list {
      max-width: 214px;
      margin-left: auto;
      margin-right: auto;
    }
    .gnav--sns_item a {
      width: 40px;
      height: 40px;
      border-radius: 100%;
      padding: 0;
      background-color: #096fc8;
    }
    .gnav--sns_item a img {
      display: block;
    }

    /* --- gnav--sub_links & copy --- */
    .gnav--sub_links {
      display: block;
      text-align: center;
      margin-top: 16px;
    }
    .gnav--sub_links li a {
      display: block;
      padding-top: 6px;
      padding-bottom: 6px;
    }
    .gnav--copy {
      font-size: 80%;
      text-align: center;
    }

    /* --- gnav--links --- */
    .gnav--links {
      width: 100%;
    }
    .gnav--links .gnav_list > .gnav_list--item {
      width: 100%;
      border-bottom: 1px solid #096fc8;
    }
    .gnav--links .gnav_list > .gnav_list--item:first-child {
      border-top: 1px solid #096fc8;
    }
    .gnav--links .gnav_list > .gnav_list--item-outdoor,
    .gnav--links .gnav_list > .gnav_list--item-global {
      width: 50%;
      border: none;
      margin-top: 32px;
    }
    .gnav--links .gnav_list--item-outdoor .gnav_list--item_txt a {
      width: 100%;
    }
    .gnav--links .gnav_list--item_txt {
      display: block;
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 16px;
      padding-right: 16px;
      text-align: center;
    }
    .gnav--links .arrow {
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    .gnav--links .arrow::before,
    .gnav--links .arrow::after {
      top: 50%;
      left: calc(100% - 16px);
    }
    .gnav--links .arrow::before {
      border-color: #191919;
      transform-origin: 0 0;
    }
    .gnav--links .arrow::after {
      content: '';
      position: absolute;
      z-index: -10;
      transform: translate(-50%,-50%);
      width: 16px;
      height: 16px;
      background-color: #cfd2d5;
      border-radius: 100px;
    }
    .gnav--links .arrow.active::before {
      transform: rotate(315deg) translate(-50%,-50%);
    }
    .gnav_sub {
      border-top: 1px solid #096fc8;
      position: static;
      opacity: 1;
      display: none;
      min-height: auto;
      height: auto;
      transition: none;
      background-color: transparent;
      pointer-events: all;
    }
    .gnav_sub_list {
      display: block;
      width: 100%;
      padding: 0;
    }
    .gnav_sub_list--item {
      position: relative;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .gnav_sub_list--item:not(:last-child) {
      border-bottom: 1px solid #cfd2d5;
    }
    .gnav_sub_list p,
    .gnav_sub_list a {
      color: #191919;
      text-align: left;
      line-height: 1.4em;
    }
    .gnav_sub_list p {
      flex: 1;
    }
    .gnav_sub_list a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .gnav_sub_list--item .img {
      width: 143px;
      margin-right: 24px;
    }
    .gnav_sub_list--item .ofc_img {
      height: 54px;
    }

    /* --- gnav_btn --- */
    .gnav_btn {
      position: fixed;
      top: 12px;
      right: 24px;
      width: 56px;
      height: 56px;
      background-color: #fff;
      z-index: 9999;
      border: 1px solid #096fc8;
    }
    .gnav_btn--in {
      line-height: 1em;
    }
    .gnav_btn--lines {
      position: relative;
      width: 84%;
      height: 17px;
      margin-top: 5px;
      margin-bottom: 3px;
      margin-left: auto;
      margin-right: auto;
    }
    .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: #191919;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: calc(50% - 1px);
      width: 75%;
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
      width: 50%;
    }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      top: 50%;
      -webkit-transform: rotate(-30deg);
      transform: rotate(-30deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
      width: 100%;
    }
    .header.active .gnav_btn--lines span:nth-of-type(3) {
      top: 50%;
      width: 100%;
      -webkit-transform: rotate(30deg);
      transform: rotate(30deg);
    }
    .gnav_btn--txt {
      font-size: 85%;
    }
  }
  @media screen and (max-width: 960px) {
    /* --- gnav_btn --- */
    .gnav_btn {
      top: 16px;
      right: 16px;
      width: 48px;
      height: 48px;
      background-color: #fff;
      z-index: 9999;
    }
    .gnav_btn--txt {
      font-size: 70%;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav_btn {
      top: 8px;
    }
    .gnav--in {
      padding: 32px 24px;
    }
    .gnav--links .gnav_list > .gnav_list--item-outdoor,
    .gnav--links .gnav_list > .gnav_list--item-global {
      margin-top: 24px;
    }
  }
  @media screen and (max-width: 420px) {
    .gnav_sub_list--item .img {
      width: 105px;
      margin-right: 16px;
    }
    .gnav_sub_list--item .ofc_img {
      height: 40px;
    }
    .gnav--links .gnav_list > .gnav_list--item-global {
      margin-top: 0;
    }
    .gnav--links .gnav_list > .gnav_list--item-outdoor,
    .gnav--links .gnav_list > .gnav_list--item-global {
      width: 100%;
    }
    .gnav--links .gnav_list > .gnav_list--item-outdoor {
      height: 78px;
    }
  }
  @media screen and (max-width: 320px) {
    .gnav--in {
      padding: 24px 16px;
    }
    .gnav_sub_list--item .img {
      width: 80px;
      margin-right: 12px;
    }
    .gnav--txt_list span {
      font-size: 85%;
      letter-spacing: -.05em;
    }
  }
  @media all and (-ms-high-contrast:none) {
    .gnav_sub_list--item p {
      letter-spacing: 0em;
      font-size: 93%;
      white-space: nowrap;
    }
  }


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

    FOOTER

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

/* korona
*************************************************** */
  .btn-korona {
    padding: 34px;
  }
  .btn-korona .poa {
    z-index: 1;
  }
  .hov_lines .lines {
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }
  .hov_lines .lines .line {
    position: absolute;
    background-color: #c8c8c8;
  }
  .hov_lines .lines .line::before {
    background-color: #161616;
    z-index: 0;
  }
  .hov_lines .lines .line01,
  .hov_lines .lines .line03 {
    width: 100%;
    height: 2px;
  }
  .hov_lines .lines .line02,
  .hov_lines .lines .line04 {
    width: 2px;
    height: 100%;
  }
  .hov_lines .lines .line01 {
    top: 0;
    left: 0;
  }
  .hov_lines .lines .line01::before {
    transform: translateX(-110%);
  }
  .hov_lines .lines .line02 {
    top: 0;
    right: 0;
  }
  .hov_lines .lines .line02::before {
    transform: translateY(-110%);
  }
  .hov_lines .lines .line03 {
    bottom: 0;
    right: 0;
  }
  .hov_lines .lines .line03::before {
    transform: translateX(110%);
  }
  .hov_lines .lines .line04 {
    bottom: 0;
    left: 0;
  }
  .hov_lines .lines .line04::before {
    transform: translateY(110%);
  }
  @media screen and (min-width: 961px) {
    .hov_lines .lines .line::before {
      animation-duration: .4s,.4s;
      animation-timing-function: cubic-bezier(.55, .05, .22, .99);
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-play-state: running;
    }
    .hov_lines .lines .line01::before {
      animation-name: fade_out,slide-rev_rgt;
    }
    .hov_lines .lines .line02::before {
      animation-name: fade_out,slide-rev_top;
    }
    .hov_lines .lines .line03::before {
      animation-name: fade_out,slide-rev_lft;
    }
    .hov_lines .lines .line04::before {
      animation-name: fade_out,slide-rev_btm;
    }
    .hov_lines:hover .lines .line01::before {
      animation-name: fade_in,slide-to_rgt;
    }
    .hov_lines:hover .lines .line02::before {
      animation-name: fade_in,slide-to_top;
    }
    .hov_lines:hover .lines .line03::before {
      animation-name: fade_in,slide-to_lft;
    }
    .hov_lines:hover .lines .line04::before {
      animation-name: fade_in,slide-to_btm;
    }
  }
  @media screen and (min-width: 961px) {
    .btn-korona:hover {
      background-color: #f0f0f0;
    }
  }
  @media screen and (max-width: 960px) {
    .btn-korona .head2 {
      margin-bottom: 6px;
    }
    .btn-korona .korona_icos {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center
    }
    .btn-korona .korona_icos li {
      width: 20%;
      margin-top: 24px;
    }
  }
  @media screen and (max-width: 560px) {
    .btn-korona {
      padding: 24px 34px 34px;
    }
    .btn-korona .korona_icos li {
      width: 33.333%;
    }
  }
  @media screen and (max-width: 320px) {
    .btn-korona .head2 {
      font-size: 110%;
    }
  }

/* models
*************************************************** */
  .models {
    background-color: #000;
  }
  .models_list--item {
    width: 25%;
    padding-top: 3.672vw;
    padding-bottom: 3.672vw;
    overflow: hidden;
  }
  .models_list--item::before {
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(255,255,255,.5);
    transform: translateX(-110%) skew(-15deg);
  }
  .models_list--item::after {
    z-index: -10;
    transform: scale(1.01);
    transition: .8s cubic-bezier(.55, .05, .22, .99) 0s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .models_list--item-j_jl_w::after {
    background-image: url(../images/common/model_img-j_jl_w.jpg);
  }
  .models_list--item-j_jk_w::after {
    background-image: url(../images/common/model_img-j_jk_w.jpg);
  }
  .models_list--item-u_t_tundra::after {
    background-image: url(../images/common/model_img-u_t_tundra.jpg);
  }
  .models_list--item-u_t_tacoma::after {
    background-image: url(../images/common/model_img-u_t_tacoma.jpg);
  }
  .models_list--item-t_h::after {
    background-image: url(../images/common/model_img-t_h.jpg);
  }
  .models_list--item-d_d::after {
    background-image: url(../images/common/model_img-d_d.jpg);
  }
  .models_list--item-d_c::after {
    background-image: url(../images/common/model_img-d_c.jpg);
  }
  .models_list--item-i_q::after {
    background-image: url(../images/common/model_img-i_q.jpg);
  }
  .models--ttl {
    pointer-events: none;
  }
  .models--ttl span {
    display: block;
  }
  .models--ttl span.en {
    font-size: 120%;
  }
  @media screen and (min-width: 961px) {
    .models_list--item::before {
      transform: translateX(-110%);
    }
    .models--ttl {
      opacity: 0;
    }
    .models_list--item:hover::after {
      transform: scale(1.04);
      transition: .8s cubic-bezier(.55, .05, .22, .99) .35s;
    }
    .models_list--item:hover::before {
      animation: models_hov .8s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
    }
    .models_list--item:hover .models--ttl {
      animation: models_ttl_hov .4s cubic-bezier(.55, .05, .22, .99) .45s 1 forwards;
    }
  }
  @media all and (-ms-high-contrast:none) {
    .models_list--item:hover::before {
      animation: models_hov_ie .8s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
    }
  }
  @supports (-ms-ime-align:auto) {
    .models_list--item:hover::before {
      animation: models_hov_ie .8s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
    }
  }
  @media screen and (max-width: 960px) {
    .models .sect_ttl {
      padding-left: 32px;
      padding-right: 32px;
    }
    .models_list--item {
      width: 50%;
      padding-top: 6.5vw;
      padding-bottom: 6.5vw;
    }
    .models_list--item::before {
      top: 8px;
      left: 8px;
      width: calc(100% - 16px);
      height: calc(100% - 16px);
      transform: translateX(0%);
    }
  }
  @media screen and (max-width: 560px) {
    .models_list--item {
      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;
      min-height: 120px;
    }
    .models_list--item::before {
      content: none;
    }
    .models--ttl {
      display: none;
    }
    .models--ttl span.en {
      letter-spacing: -.05em;
    }
    .models--ttl span.jp {
      line-height: 1.4em;
      font-size: 93%;
    }
  }
  @media screen and (max-width: 320px) {
    .models_list--item {
      min-height: 100px;
    }
    .models--ttl span.en {
      font-size: 100%;
    }
    .models--ttl span.jp {
      font-size: 80%;
    }
  }

/* footer
*************************************************** */
  .footer--info,
  .footer--info a {
    color: #fff;
  }
  .footer--info {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #161616;
  }
  .page_top {
    width: 72px;
    height: 36px;
    margin-left: auto;
    margin-right: auto;
  }
  .page_top a {
    display: block;
    border: 1px solid #096fc8;
    border-bottom: none;
  }
  .page_top a::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .links_list--item {
    margin-left: 28px;
    margin-right: 28px;
  }
  .links_list--item a {
    width: 40px;
    height: 40px;
    background-color: #096fc8;
    border-radius: 100%;
  }
  .footer--info-recas .links_list--item a {
    background-color: #fff;
  }
  .footer--name_add,
  .footer--comp_info {
    gap: 16px;
  }
  .footer--nav {
    background-color: #000;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .footer--nav,
  .footer--nav a {
    color: #fff;
  }
  .footer--nav .pages_list--item:not(:last-child) {
    margin-right: 64px;
  }
  .footer--nav .pages_list--item {
    padding-left: 24px;
  }
  .footer--nav .pages_list--item .line {
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    background-color: #096fc8;
  }
  .footer--nav .pages_list--item .line::before {
    background-color: #fff;
    transform: translateX(-100%);
    z-index: 1;
  }
  /* --- v2 --- */
  .footer.v2 {
    padding-top: 100px;
    background-color: #000;
  }
  .footer.v2 .footer--info {
    width: 50%;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footer.v2 .page_top {
    margin-bottom: 100px;
  }
  @media screen and (min-width: 961px) {
    .links_list--item a:hover {
      background-color: #044986;
    }
    .footer--info-recas .links_list--item a:hover {
      background-color: #aaa;
    }
    .footer--nav .pages_list--item a:hover .line::before {
      animation: area_slide 1.2s cubic-bezier(.55, .05, .22, .99) 0s infinite forwards;
    }
    .page_top:hover a {
      border-color: #fff;
    }
  }
  @media screen and (max-width: 1400px) {
    .footer.v2 .footer--in {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .footer.v2 .footer--info {
      width: 100%;
    }
    .footer.v2 .footer--info-recas {
      padding-top: 0;
    }
  }
  @media screen and (max-width: 560px) {
    .footer--info {
      padding-top: 40px;
      padding-bottom: 40px;
      padding-left: 32px;
      padding-right: 32px;
    }
    .footer--info h2 img {
      width: 170px;
    }
    .links_list--item {
      margin-left: 8px;
      margin-right: 8px;
    }
    .footer--nav {
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .footer--nav .pages_list {
      margin-bottom: 16px;
    }
    .footer.v2 {
      padding-top: 48px;
    }
    .footer.v2 .page_top {
      margin-bottom: 56px;
    }
    .footer.v2 .footer--info {
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .footer.v2 .footer--info-recas {
      padding-top: 0;
    }
    .footer.v2 .footer--name_add {
      margin-bottom: 16px;
    }
  }


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

    INDEX

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

/* hero
*************************************************** */
  .hero {
    width: 100%;
    height: 100vh;
  }
  .hero::before {
    /*background-color: rgba(0,0,0,.15);
    z-index: 0;*/
  }
  .hero--cont {
    z-index: 1;
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero_slide {
    overflow: hidden;
    position: absolute;
    z-index: -1;
    background-color: #f8f8f8;
  }
  .hero_slide .slick-list,
  .hero_slide .slick-track {
    width: 100%;
    height: 100%;
  }
  .hero_slide .slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
  }
  .hero_slide-lft {
    top: 0;
    left: 0;
    width: 68%;
    height: 100%;
  }
  .hero_slide-rgt_top {
    top: 0;
    right: 0;
    width: 32%;
    height: 60.5%;
  }
  .hero_slide-rgt_btm {
    bottom: 0;
    right: 0;
    width: 32%;
    height: 40%;
  }
  .hero_slide-lft .slide01 {
    background-image: url(../images/slide01_img01.jpg);
  }
  .hero_slide-lft .slide02 {
    background-image: url(../images/slide01_img02.jpg);
  }
  .hero_slide-lft .slide03 {
    background-image: url(../images/slide01_img03.jpg);
  }
  .hero_slide-lft .slide04 {
    background-image: url(../images/slide01_img04.jpg);
  }
  .hero_slide-lft .slide05 {
    background-image: url(../images/slide01_img05.jpg);
  }
  .hero_slide-lft .slide06 {
    background-image: url(../images/slide01_img06.jpg);
  }
  .hero_slide-rgt_top .slide {
    height: 60.5vh;
  }
  .hero_slide-rgt_top .slide01 {
    background-image: url(../images/slide02_img01.jpg);
  }
  .hero_slide-rgt_top .slide02 {
    background-image: url(../images/slide02_img02.jpg);
  }
  .hero_slide-rgt_top .slide03 {
    background-image: url(../images/slide02_img03.jpg);
  }
  .hero_slide-rgt_top .slide04 {
    background-image: url(../images/slide02_img04.jpg);
  }
  .hero_slide-rgt_top .slide05 {
    background-image: url(../images/slide02_img05.jpg);
  }
  .hero_slide-rgt_top .slide06 {
    background-image: url(../images/slide02_img06.jpg);
  }
  .hero_slide-rgt_btm .slide01 {
    background-image: url(../images/slide03_img01.jpg);
  }
  .hero_slide-rgt_btm .slide02 {
    background-image: url(../images/slide03_img02.jpg);
  }
  .hero_slide-rgt_btm .slide03 {
    background-image: url(../images/slide03_img03.jpg);
  }
  .hero_slide-rgt_btm .slide04 {
    background-image: url(../images/slide03_img04.jpg);
  }
  .hero_slide-rgt_btm .slide05 {
    background-image: url(../images/slide03_img05.jpg);
  }
  .hero_slide-rgt_btm .slide06 {
    background-image: url(../images/slide03_img06.jpg);
  }
  .hero--scroll {
    position: absolute;
    left: calc(50% - 22px);
    bottom: 24px;
    height: 64px;
    width: 45px;
    font-size: 83%;
    cursor: pointer;
    text-align: center;
  }
  .hero--scroll::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
    height: 5px;
    width: 5px;
    -webkit-animation: scrollup 1.6s cubic-bezier(.77, 0, .175, 1) 0s infinite both;
    animation: scrollup 1.6s cubic-bezier(.77, 0, .175, 1) 0s infinite both;
  }
  .hero--scroll::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    height: 64px;
    position: relative;
    top: 0;
    width: 1px;
  }
  .hero--scroll a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero--scroll span {
    line-height: 1;
    color: #fff;
    font-weight: bold;
  }
  @media screen and (max-width: 960px) {
    .hero {
      padding-left: 40px;
      padding-right: 40px;
    }
    .hero--scroll {
      height: 32px;
    }
    .hero--scroll::before {
      -webkit-animation: scrollup-sp 1.6s cubic-bezier(.77, 0, .175, 1) 0s infinite both;
      animation: scrollup-sp 1.6s cubic-bezier(.77, 0, .175, 1) 0s infinite both;
    }
    .hero--scroll::after {
      height: 32px;
    }
    .hero_img {
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
  }
  @media screen and (max-width: 560px) {
    .hero {
      height: calc(100vh - 230px);
    }
  }

/* sc_co
*************************************************** */
  .sc_co {
    overflow: hidden;
  }
  .sc_co--bloc {
    width: calc(50% - 28px);
  }
  .sc_co--bloc-stock_car {
    padding-top: 48px;
  }
  .sc_co--bloc .imgarea {
    width: 100%;
    padding-top: 63%;
    transform: skew(-32deg);
    overflow: hidden;
  }
  .sc_co--bloc .imgarea .img {
    width: 140%;
    left: -20%;
    transform: skew(32deg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .sc_co--bloc-stock_car .img {
    background-image: url(/wp-content/themes/agd2021/images/stock_car_img.jpg);
  }
  .sc_co--bloc-new_car_order .img {
    background-image: url(/wp-content/themes/agd2021/images/new_car_order_img.jpg?20240105_v1);
  }
  .sc_co--bloc .ttl_btn {
    padding-right: 8.5vw;
  }
  .sc_co--bloc .ttl_btn .sect_ttl {
    margin-right: 20px;
    white-space: nowrap;
  }
  @media screen and (min-width: 961px) {
    .sc_co--bloc .imgarea .img::before {
      background-color: rgba(255,255,255,.5);
      transform: translate(-100%);
      animation: sc_co_out .6s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
    }
    .sc_co--bloc .imgarea:hover .img::before {
      animation: sc_co_in .6s cubic-bezier(.55, .05, .22, .99) 0s 1 forwards;
    }
  }
  @media screen and (max-width: 960px) {
    .sc_co .inner {
      width: 100%;
      max-width: 100%;
    }
    .sc_co--bloc {
      width: 100%;
    }
    .sc_co--bloc .imgarea {
      transform: skew(-15deg);
    }
    .sc_co--bloc .imgarea .img {
      transform: skew(15deg);
    }
    .sc_co--bloc-stock_car {
      margin-bottom: 40px;
      padding-top: 0;
    }
    .sc_co--bloc .ttl_btn .sect_ttl {
      margin-right: 0;
      text-align: center;
      margin-bottom: 12px;
    }
    .sc_co--bloc .ttl_btn {
      padding-right: 0;
    }
    .sc_co--bloc .ttl_btn .sect_ttl {
      margin-right: 0;
    }
  }

/* new_stock_car & purchase_works
*************************************************** */
  .new_stock_car .posts-blog .post,
  .home .purchase_works .post {
    width: calc(25% - 24px);
  }
  .new_stock_car .posts-blog .post .sect_ttl.new {
    display: none;
  }
  .new_stock_car .posts-blog .post--info {
    padding-top: 16px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .new_stock_car .posts-blog .post--info .post-categories {
    margin-left: 0;
    margin-bottom: 12px;
  }
  .new_stock_car .posts-blog .post--info .post-categories li {
    margin-left: 0;
    margin-right: 6px;
  }
  .home .purchase_works .btn a {
    padding-left: 40px;
    padding-right: 40px;
  }
  .home .purchase_works .btn a .fnt-lg {
    font-size: 120%;
  }
  @media screen and (max-width: 960px) and (min-width: 561px) {
    .new_stock_car .posts-blog {
      margin-top: -56px;
    }
    .new_stock_car .posts-blog .post {
      margin-top: 56px;
    }
  }
  @media screen and (max-width: 960px) {
    .new_stock_car .posts-blog .post,
    .home .purchase_works .post {
      width: calc(50% - 16px);
    }
  }
  @media screen and (max-width: 560px) {
    .new_stock_car .posts-blog {
      margin-top: -32px;
    }
    .new_stock_car .posts-blog .post,
    .home .purchase_works .post {
      width: calc(50% - 8px);
      margin-top: 32px;
    }
    .new_stock_car .posts-blog .post:not(:last-child) {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none;
    }
    .home .purchase_works .btn {
      width: 100%;
    }
    .home .purchase_works .btn a {
      padding-left: 0;
      padding-right: 0;
    }
  }
  @media (any-hover: hover) {
    .home .purchase_works .posts-lo3 .post:hover .img_src,
    .home .purchase_works .posts-lo3 .post:hover .img::before {
      transform: translate(0);
    }
  }

/* home_blog
*************************************************** */
  .home_blog  {
    overflow: hidden;
  }
  .home_blog .bg {
    width: 120%;
    left: -10%;
    transform: skew(-32deg);
  }
  .home_blog .sect_pdg {
    padding-top: 64px;
  }
  .home_blog .posts_first,
  .home_blog .posts_other,
  .home_blog .posts_other .post {
    width: calc(50% - 16px);
  }
  .home_blog .posts_first .post {
    height: 100%;
  }
  .home_blog .posts_first .post .new {
    padding-top: 32px;
    padding-bottom: 32px;
    height: 100%;
  }
  .home_blog .posts_first .post--txtarea_in {
    margin-top: auto;
  }
  .home_blog .posts_first .post .post--ttl {
    font-size: 116%;
    line-height: 1.8em;
  }
  .home_blog .posts_other .post:nth-child(-n+2) {
    margin-bottom: 32px;
  }
  .home_blog .posts_other .post .post--ttl {
    -webkit-line-clamp: 2;
  }
  .home_blog .post .post--info .post-categories li:nth-of-type(n+2) {
    display: none;
  }
  @media screen and (min-width: 961px) {
    .home_blog .bg {
      transform: skew(0deg);
    }
    .active.home_blog .bg {
      transform: skew(-32deg);
    }
  }
  @media screen and (max-width: 960px) {
    .home_blog .bg {
      width: 180%;
      left: -40%;
    }
    .home_blog .posts_first,
    .home_blog .posts_other {
      width: 100%;
    }
    .home_blog .posts_first {
      margin-bottom: 40px;
    }
  }
  @media screen and (max-width: 560px) {
    .home_blog .sect_pdg {
      padding-top: 40px;
    }
    .home_blog .posts_first .post .new {
      padding-top: 24px;
      padding-bottom: 0;
    }
    .home_blog .posts_other .post {
      width: calc(50% - 8px);
    }
    .home_blog .posts_other .post:not(:last-child) {
      border: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .home_blog .posts_other .post--info {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -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;
      padding-bottom: 8px;
    }
    .home_blog .posts_other .post--info .post-categories {
      margin-left: 0;
      margin-bottom: 8px;
    }
    .home_blog .posts_other .post--info .post-categories li {
      margin-left: 0;
      margin-right: 6px;
    }
    .home_blog .posts_first,
    .home_blog .posts_other .post:not(:last-child) {
      margin-bottom: 32px;
    }
    .home_blog .bg {
      width: 200%;
      left: -50%;
      transform: skew(-15deg);
    }
  }

/* home_insta
*************************************************** */
  .home_insta #sb_instagram {
    width: 100% !important;
  }
  .home_insta #sbi_images,
  .home_insta #sbi_load {
    display: none;
  }
  .home_insta #sbi_images.slick-initialized {
    display: block;
  }
  .home_insta .sbi_item {
    width: 200px !important;
    height: 200px;
    border-right: 10px solid transparent;
  }
  .home_insta #sb_instagram .sbi_photo {
    height: 200px !important;
  }
  @media screen and (max-width: 560px) {
    .home_insta {
      margin-bottom: 16px;
    }
    .home_insta .sect_ttl {
      width: calc(100% - 32px);
    }
    .home_insta .sbi_item {
      width: 130px !important;
      height: 120px;
    }
    .home_insta #sb_instagram .sbi_photo {
      height: 120px !important;
    }
  }


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

    PAGE

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

/* about-shop
*************************************************** */
  .page-about-shop .greeting {
    overflow: hidden;
  }
  .page-about-shop .greeting_bloc::before {
    width: 50%;
    background-color: rgba(255,255,255,.7);
  }
  .page-about-shop .greeting_bloc-ceo::after,
  .page-about-shop .greeting_bloc-recas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-image: url(../images/about-lionheart/greeting-ceo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .page-about-shop .greeting_bloc-recas::after {
    background-image: url(../images/about-recas/greeting_img.jpg);
  }
  .page-about-shop .greeting .txtarea {
    letter-spacing: .05em;
  }
  .page-about-shop .greeting .job--comp {
    margin-bottom: 8px;
  }
  .page-about-shop .greeting .job--name {
    font-size: 120%;
    font-size: 134%;
    margin-left: 24px;
  }
  .page-about-shop .greeting_bloc-ceo .txtarea,
  .page-about-shop .greeting_bloc-recas .txtarea {
    width: calc(50% - 40px);
  }
  .page-about-shop .greeting_bloc-store_manager .imgarea {
    width: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../images/about-lionheart/greeting-store_manager.jpg);
  }
  .page-about-shop .greeting_bloc-store_manager .txtarea {
    width: 50%;
    padding-top: 3.2292vw;
    padding-bottom: 3.2292vw;
    padding-left: 64px;
    padding-right: 64px;
    margin-left: auto;
  }
  .page-about-shop .service_list--item {
    border-bottom: 1px solid #096fc8;
  }
  .page-about-shop .service_list--item .txtarea {
    padding-bottom: 24px;
  }
  .page-about-shop .service_list--item .txtarea p {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-about-shop .access .gm {
    width: 100%;
    padding-top: 37.454vw;
    background-color: #f4f4f4;
  }
  .page-about-shop .access_list--item {
    width: 25%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    border-right: 1px solid #096fc8;
  }
  .page-about-shop .access_list--item:first-child {
    border-left: 1px solid #096fc8;
  }
  @media screen and (min-width: 961px) {
    .page-about-shop .service_list--item {
      margin-bottom: 0 !important;
    }
  }
  @media screen and (max-width: 960px) {
    .page-about-shop .area_tri .tri02 {
      bottom: auto;
      bottom: initial;
      top: calc(58.542vw - 372px);
    }
    .page-about-shop .greeting_bloc {
      padding-top: calc(58.542vw + 16px);
    }
    .page-about-shop .greeting_bloc-ceo::before,
    .page-about-shop .greeting_bloc-recas::before {
      content: none;
    }
    .page-about-shop .greeting_bloc-ceo::after,
    .page-about-shop .greeting_bloc-store_manager .imgarea {
      height: 58.542vw;
      background-image: url(../images/about-lionheart/greeting-ceo-sp.jpg);
    }
    .page-about-shop .greeting_bloc-recas::after {
      height: 45vw;
      background-image: url(../images/about-recas/greeting_img-sp.jpg);
    }
    .page-about-shop .greeting_bloc-ceo .sect_pdg,
    .page-about-shop .greeting_bloc-recas .sect_pdg {
      padding-top: 0;
      padding-bottom: 64px;
    }
    .page-about-shop .greeting_bloc-recas .sect_pdg {
      padding-bottom: 0;
    }
    .page-about-shop .greeting_bloc-ceo .txtarea,
    .page-about-shop .greeting_bloc-recas .txtarea {
      width: 100%;
    }
    .page-about-shop .greeting_bloc-store_manager {
      padding-top: calc(58.542vw + 16px);
    }
    .page-about-shop .greeting_bloc-store_manager .imgarea {
      width: 100%;
      background-image: url(../images/about-lionheart/greeting-store_manager-sp.jpg);
    }
    .page-about-shop .greeting_bloc-store_manager .txtarea {
      width: 100%;
      padding: 0;
    }
    .page-about-shop .service_list--item {
      width: calc(100% - 80px);
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0;
    }
    .page-about-shop .service_list--item:not(:last-child) {
      margin-bottom: 64px;
    }
    .page-about-shop .access_list--item {
      width: 50%;
    }
    .page-about-shop .access_list--item:nth-child(3) {
      border-left: 1px solid #096fc8;
    }
    .page-about-shop .access_list--item:nth-child(-n+2) {
      margin-bottom: 16px;
    }
  }
  @media screen and (max-width: 560px) {
    .page-about-shop .greeting_bloc .txtarea .job {
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .page-about-shop .service_list--item {
      width: 100%;
    }
    .page-about-shop .service_list--item:not(:last-child) {
      margin-bottom: 40px;
    }
    .page-about-shop .service_list--item .txtarea {
      padding-bottom: 16px;
    }
    .page-about-shop .service_list--item .txtarea p {
      padding-left: 0;
      padding-right: 0;
    }
    .page-about-shop .access .inner {
      width: 100%;
    }
    .page-about-shop .access .gm {
      padding-top: 65vw;
    }
    .page-about-shop .access_list {
      width: 100%;
      padding-left: 16px;
      padding-right: 16px;
    }
    .page-about-shop .access_list--item,
    .page-about-shop .access_list--item:first-child,
    .page-about-shop .access_list--item:nth-child(3) {
      width: 100%;
      border: none;
      border-bottom: 1px solid #096fc8;
    }
    .page-about-shop .access_list--item {
      padding-left: 0;
      padding-right: 0;
    }
    .page-about-shop .access_list--item:nth-child(-n+2) {
      margin-bottom: 0;
    }
    .page-about-shop .list-dl dd span {
      font-size: 93%;
    }
    .page-about-shop .list-dl dd.txt-lft-sp {
      text-align: left;
    }
  }
  @media screen and (max-width: 320px) {
    .page-about-shop .list-dl dd span {
      font-size: 80%;
      letter-spacing: -.05em;
    }
  }

/* about-lionheart
*************************************************** */
  .page-about-lionheart .staff_list--item .name {
    font-size: 133%;
    margin-left: 16px;
  }
  @media screen and (max-width: 768px) {
    .page-about-lionheart .staff_list--item .namearea {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .page-about-lionheart .staff_list--item .name {
      margin-left: 0;
      margin-bottom: 16px;
      font-size: 116%;
    }
  }

/* about-recas
*************************************************** */
  .page-about-recas .page_ttl {
    background-color: #000;
    color: #fff;
  }
  .page-about-recas .greeting_bloc {
    max-height: 782px;
    min-height: 40.73vw;
  }
  .page-about-recas .service_list--item,
  .page-about-recas .service_list--item .txtarea .head1 {
    border-color: #000;
  }
  .page-about-recas .service_list--item .txtarea .head1 {
    height: 90px;
  }
  .page-about-recas .shop_info .list-dl dt {
    background-color: #000;
  }
  .page-about-recas .linkarea .linkarea_bloc {
    background-image: url(../images/about-recas/linkarea_bgimg.jpg);
    background-size: cover;
    background-position: center;
    height: 31.25vw;
  }
  .page-about-recas .linkarea .linkarea_bloc a::before {
    z-index: 1;
    opacity: 0;
    background-color: #fff;
  }
  .page-about-recas .linkarea .linkarea_bloc .logo img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 23.4375vw;
    transform: translate(-50%,-80%);
  }
  @media screen and (min-width: 961px) {
    .page-about-recas .linkarea .linkarea_bloc a:hover::before {
      opacity: .15;
    }
  }
  @media screen and (max-width: 1700px) {
    .page-about-recas .service_list--item .txtarea .head1 {
      height: 112px;
    }
    .page-about-recas .service_list--item .txtarea .head1 br.lgpc-none {
      display: block;
    }
  }
  @media screen and (max-width: 1280px) {
    .page-about-recas .service_list--item .txtarea .head1 {
      font-size: 112%;
      height: 96px;
    }
  }
  @media screen and (max-width: 960px) {
    .page-about-recas .area_tri .tri02 {
      top: calc(45vw - 372px);
    }
    .page-about-recas .greeting_bloc {
      padding-top: calc(45vw + 16px);
    }
    .page-about-recas .service_list--item .txtarea .head1 {
      height: auto;
    }
    .page-about-recas .linkarea .linkarea_bloc {
      height: 64.25vw;
    }
    .page-about-recas .linkarea .linkarea_bloc .logo img {
      width: 36vw;
      transform: translate(-50%,-130%);
    }
  }
  @media screen and (max-width: 960px) {
    .page-about-recas .linkarea .linkarea_bloc {
      height: 80vw;
    }
    .page-about-recas .linkarea .linkarea_bloc .logo img {
      width: 45vw;
    }
  }

/* about-factory
*************************************************** */
  .page-about-factory .factory_list--item > * {
    width: calc(50% - 24px);
  }
  .page-about-factory .factory_list--item .txtarea {
    border: 2px solid #f4f4f4;
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .page-about-factory .factory_list--item .txtarea h3 {
    font-weight: normal;
  }
  @media screen and (max-width: 960px) {
    .page-about-factory .factory_list--item > * {
      width: 100%;
    }
    .page-about-factory .factory_list--item .txtarea {
      padding-top: 16px;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0;
      border: none;
    }
  }

/* vehicle-warranty
*************************************************** */
  .page-vehicle-warranty .lead--in {
    column-gap: 64px;
  }
  .page-vehicle-warranty .lead .txtarea {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }
  .page-vehicle-warranty .warranty_cont {
    column-gap: 64px;
  }
  .page-vehicle-warranty .warranty_bloc-lft {
    width: 488px;
  }
  .page-vehicle-warranty .warranty_bloc-rgt {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }
  .page-vehicle-warranty .label_box {
    border-width: 1px;
    border-style: solid;
  }
  .page-vehicle-warranty .label_box .label {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .page-vehicle-warranty .label_box .label small {
    font-size: 67%;
    margin-left: 12px;
  }
  .page-vehicle-warranty .label_box .warranty_bloc--in {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .page-vehicle-warranty .label_box .warranty_bloc--in .details_list {
    column-gap: 40px;
    letter-spacing: .1em;
  }
  .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list-col3 {
    column-count: 3;
    gap: 0;
  }
  .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list-col2 {
    column-count: 2;
    gap: 0;
  }
  .page-vehicle-warranty .warranty_bloc-lft .warranty_bloc--in {
    min-height: 96px;
  }
  .page-vehicle-warranty .warranty_bloc-rgt .label_box .warranty_bloc--in {
    padding-left: 32px;
    padding-right: 32px;
  }
  .page-vehicle-warranty .attn_list--item {
    position: relative;
    padding-left: 1.4em;
    font-size: 87%;
  }
  .page-vehicle-warranty .attn_list--item::before {
    content: '\203B';
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-vehicle-warranty .paid_warranty .warranty_bloc-lft .label_box .warranty_bloc--in .details_list {
    column-gap: 24px;
  }
  .page-vehicle-warranty .paid_warranty .warranty_bloc-lft .label_box:last-child  .warranty_bloc--in {
    min-height: 60px;
  }
  .page-vehicle-warranty .paid_warranty .attn_list {
    column-gap: 16px;
  }
  .page-vehicle-warranty .matters .matters_list {
    column-gap: 32px;
  }
  .page-vehicle-warranty .matters .matters_list--item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
    border-width: 1px;
    border-style: solid;
    padding: 32px;
  }
  .page-vehicle-warranty .matters .matters_list--item .head3 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    letter-spacing: .1em;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .page-vehicle-warranty .modal_img .close {
    top: 2%;
    right: 1.5%;
  }
  @media (any-hover: hover) {
    .page-vehicle-warranty .paid_warranty picture:hover {
      opacity: .6;
      cursor: pointer;
    }
  }
  @media (max-width: 1360px) and (min-width: 1281px) {
    .page-vehicle-warranty .warranty_bloc-lft .warranty_bloc--in {
      min-height: 85px;
    }
    .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list-col3,
    .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list-col2 {
      font-size: 88%;
    }
  }
  @media (max-width: 1360px) {
    .page-vehicle-warranty .matters .matters_list {
      column-gap: 20px;
    }
    .page-vehicle-warranty .matters .matters_list--item {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .page-vehicle-warranty .smpc-show {
    display: none;
  }
  @media (max-width: 1280px) {
    .page-vehicle-warranty .smpc-none {
      display: none;
    }
    .page-vehicle-warranty .smpc-show {
      display: block;
    }
    .page-vehicle-warranty .warranty_cont {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .page-vehicle-warranty .warranty_bloc-lft {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 100%;
      column-gap: 24px;
      margin-bottom: 40px;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1;
      margin-bottom: 0;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box .warranty_bloc--in .details_list {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box .warranty_bloc--in .head3 {
      font-size: 100%;
    }
    .page-vehicle-warranty .warranty_bloc-lft .warranty_bloc--in {
      height: auto;
      height: initial;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box .label {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      line-height: 1.6em;
      font-size: 100%;
      height: 84px;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box .label small {
      font-size: 72%;
      margin-left: 0;
    }
    .page-vehicle-warranty .warranty_bloc-lft .attn_list {
      width: 100%;
      text-align: center;
      margin-top: 16px;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box .warranty_bloc--in {
      min-height: auto;
      min-height: initial;
    }
    .page-vehicle-warranty .paid_warranty .warranty_bloc-lft .label_box .label {
      height: auto;
    }
    .page-vehicle-warranty .paid_warranty .attn_list {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      width: 480px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .page-vehicle-warranty .warranty_bloc-rgt {
      max-width: 100%;
      width: 688px;
      margin-left: auto;
      margin-right: auto;
    }
  }
  @media (max-width: 1064px) {
    .page-vehicle-warranty .lead--in {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      row-gap: 40px;
    }
  }
  @media (max-width: 960px) {
    .page-vehicle-warranty .warranty_bloc-lft {
      row-gap: 20px;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box {
      width: 100%;
      -webkit-box-flex: inherit;
      -ms-flex: inherit;
      flex: inherit;
    }
    .page-vehicle-warranty .warranty_bloc-lft .label_box .label {
      height: auto;
      height: initial;
    }
    .page-vehicle-warranty .warranty_bloc-lft .attn_list {
      margin-top: 0;
    }
  }
  @media (max-width: 768px) {
    .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list-col3 {
      column-count: 2;
    }
    .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list-col2 {
      column-count: 1;
    }
    .page-vehicle-warranty .warranty_bloc-rgt .label_box .warranty_bloc--in {
      padding-left: 24px;
      padding-right: 24px;
    }
    .page-vehicle-warranty .matters .matters_list {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      row-gap: 24px;
    }
    .page-vehicle-warranty .matters .matters_list--item {
      width: 100%;
    }
    .page-vehicle-warranty .matters .matters_list--item .head3 br {
      display: none;
    }
  }
  @media (max-width: 560px) {
    .page-vehicle-warranty .lead--in {
      row-gap: 24px;
    }
    .page-vehicle-warranty .warranty_bloc-lft {
      row-gap: 16px;
      margin-bottom: 24px;
    }
    .page-vehicle-warranty .warranty_bloc-lft .attn_list--item {
      text-align: left;
    }
    .page-vehicle-warranty .warranty_bloc-rgt .label_box .warranty_bloc--in {
      padding-left: 20px;
      padding-right: 20px;
    }
    .page-vehicle-warranty .warranty_bloc-rgt .label_box .warranty_bloc--in .head3 {
      font-size: 100%;
    }
    .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list {
      font-size: 88%;
    }
    .page-vehicle-warranty .matters .matters_list {
      row-gap: 16px;
    }
    .page-vehicle-warranty .matters .matters_list--item {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .page-vehicle-warranty .matters .matters_list--item .head3 {
      padding-bottom: 12px;
    }
    .page-vehicle-warranty .modal_img .close {
      top: -4%;
      right: 1%;
    }
  }
  @media (max-width: 413px) {
    .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list {
      font-size: 80%;
      letter-spacing: -.01em;
    }
  }
  @media (max-width: 374px) {
    .page-vehicle-warranty .label_box .warranty_bloc--in .scope_list-col3 {
      column-count: 1;
    }
    .page-vehicle-warranty .matters .matters_list--item .head3 br {
      display: block;
    }
  }

/* gallery
*************************************************** */
  .page-gallery #sb_instagram {
    width: 100% !important;
  }
  .page-gallery #sb_instagram #sbi_load {
    display: none;
  }
  .page-gallery .gallery_insta img {
    margin-right: 8px;
  }
  @media screen and (max-width: 560px) {
    .page-gallery .movie .img {
      display: none;
    }
  }

/* about-purchase
*************************************************** */
  .page-about-purchase .purchase .sect_ttl img {
    margin-left: 6px;
    margin-right: 6px;
  }
  .page-about-purchase .step_list--item {
    width: 32%;
  }
  .page-about-purchase .step_list--item .ttl {
    font-size: 200%;
    line-height: 1em;
    padding-left: 24px;
  }
  .page-about-purchase .step_list--item .ttl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background-color: #096fc8;
    transform: skew(-18deg) translateX(5px);
  }
  .page-about-purchase .custom_plus_imgs {
    flex: 1;
    padding-left: 32px;
  }
  .page-about-purchase .custom_plus_imgs--img {
    width: 25%;
    padding-left: 4px;
    padding-right: 4px;
  }
  .page-about-purchase .purchase .btn a {
    font-size: 134%;
    display: flex;
  }
  .page-about-purchase .purchase .btn a img {
    margin-right: 16px;
  }
  @media screen and (max-width: 1280px) {
    .page-about-purchase .custom_plus {
      display: block;
      text-align: center;
    }
    .page-about-purchase .custom_plus .ttl {
      margin-bottom: 24px;
    }
  }
  @media screen and (max-width: 560px) {
    .page-about-purchase .purchase .logo img,
    .page-about-purchase .purchase .ttl_img-txt,
    .page-about-purchase .purchase .ttl_img-ico {
      width: auto;
    }
    .page-about-purchase .purchase .logo img {
      height: 47px;
    }
    .page-about-purchase .purchase .ttl_img-ico {
      height: 32px;
    }
    .page-about-purchase .purchase .ttl_img-txt {
      height: 28px;
    }
    .page-about-purchase .purchase .ttl_img-txt:last-child {
      margin-top: 16px;
    }
    .page-about-purchase .step_list--item {
      width: 100%;
    }
    .page-about-purchase .step_list--item:not(:last-child) {
      margin-bottom: 32px;
    }
    .page-about-purchase .step_list--item .img {
      margin-bottom: 24px;
    }
    .page-about-purchase .custom_plus .ttl {
      margin-bottom: 12px;
    }
    .page-about-purchase .custom_plus_imgs {
      padding-left: 0;
    }
    .page-about-purchase .custom_plus_imgs--img {
      width: 50%;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .page-about-purchase .purchase .btn a {
      font-size: 100%;
    }
  }

/* contact
*************************************************** */
  .page-contact .tel--time li:not(:last-child) {
    margin-right: 16px;
  }
  .page-contact .contact_bloc-line .img {
    margin-right: 14px;
  }
  .page-contact .contact_bloc-line .btn img {
    margin-right: 16px;
  }
  @media screen and (max-width: 560px) {
    .page-contact .contact_bloc .inner {
      padding-left: 16px;
      padding-right: 16px;
    }
    .page-contact .contact_bloc .inner-xl .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 0;
      padding-right: 0;
    }
    .page-contact main .ico_img {
      margin-right: 0;
      margin-bottom: 12px;
    }
    .page-contact .tel--num div:not(.ico_img) {
      flex: 1;
    }
    .page-contact .tel--time li {
      margin-right: 0;
      width: 100%;
      text-align: center;
    }
    .page-contact .tel--time li span {
      font-size: 93%;
    }
    .page-contact .btn-grn.tbl-ctr {
      padding-left: 0;
      padding-right: 0;
    }
    .page-contact .btn-grn .fnt-xl {
      font-size: 100%;
    }
  }
  @media screen and (max-width: 320px) {
    .page-contact .tel--time li span {
      font-size: 80%;
      letter-spacing: -.05em;
    }
  }

/* privacy
*************************************************** */
  .page-privacy h3 {
    font-weight: normal;
  }
  .page-privacy .list-privacy dt {
    position: absolute;
    color: #096fc8;
  }
  .page-privacy .list-privacy dd {
    margin-left: 254px;
    margin-bottom: 48px;
  }
  @media screen and (max-width: 960px) {
    .page-privacy .list-privacy dt {
      position: static;
      margin-bottom: 6px;
    }
    .page-privacy .list-privacy dd {
      margin-left: 0;
      margin-bottom: 24px;
    }
    .page-privacy .list-privacy dd:last-child {
      margin-bottom: 0;
    }
  }

/* page-global
*************************************************** */
  .page-global {
    background-color: #f4f4f4;
  }
  .page-global .header {
    position: absolute;
    background-color: transparent;
    pointer-events: none;
  }
  .page-global .hero {
    background-image: url(../images/global/hero_img.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .page-global .global_lead .imgarea {
    max-width: 48%;
  }
  .page-global .global_lead .txtarea {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
    margin-left: 64px;
  }
  .page-global .global_lead .txtarea p {
    text-align: justify;
  }
  .page-global .global_lead .txtarea .name {
    display: table;
    margin-left: auto;
    margin-top: 40px;
  }
  .page-global .sect_ttl>span:nth-child(2) {
    padding-bottom: 0;
  }
  .page-global .shop_info .list-dl dd {
    background-color: #fff;
  }
  .page-global .contact table.tbl-form th span {
    background-color: #161616;
  }
  .page-global .contact table.tbl-form input,
  .page-global .contact table.tbl-form textarea {
    background-color: transparent;
  }
  .page-global .footer {
    padding-top: 160px;
    padding-bottom: 160px;
    background-color: #161616;
    color: #fff;
  }
  @media screen and (max-width: 1064px) {
    .page-global .hero {
      background-attachment: inherit;
    }
    .page-global .global_lead .ceo_msg {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .page-global .global_lead .imgarea {
      max-width: 100%;
      text-align: center;
      margin-bottom: 64px;
    }
    .page-global .global_lead .txtarea {
      margin-left: 0;
    }
  }
  @media screen and (max-width: 768px) {
    .page-global .footer .inner {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center;
    }
    .page-global .footer .logo {
      margin-bottom: 40px;
      width: 260px;
    }
  }
  @media screen and (max-width: 560px) {
    .page-global .global_lead .imgarea {
      margin-bottom: 32px;
    }
    .page-global .global_lead .txtarea .name {
      margin-top: 24px;
    }
    .page-global .footer {
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .page-global .footer .logo {
      width: 220px;
    }
  }
  @media screen and (max-width: 374px) {
    .page-global .global_lead .txtarea p {
      text-align: left;
    }
  }

  /* --- global2 --- */
  .global-v2 .hero {
    background: transparent;
    overflow: hidden;
  }
  .global-v2 .hero_slider,
  .global-v2 .hero_slider .slick-list,
  .global-v2 .hero_slider .slick-track,
  .global-v2 .hero_slider .slick-slide {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .global-v2 .hero_slider .slick-slide {
    position: absolute;
  }
  .global-v2 .hero_slider .slick-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    scale: 1.04;
    translate: -24px 0;
    transition-duration: 20s;
    trnasition-timing-function: linear;
  }
  .global-v2 .hero_slider .slick-slide.add-anm img {
    translate: 24px 0;
  }
  .global-v2 .hero--cont {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    text-align: center;
    translate: 0 -50%;
  }
  .global-v2 .sect_pdg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .global-v2 .sect_pdg-btm_no {
    padding-bottom: 0 !important;
  }
  @keyframes scr_imgs-global {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -4600px 0;
    }
  }
  .global-v2 .scr_imgs {
    height: 300px;
  }
  .global-v2 .scr_imgs .img_src {
    background-image: url('../images/global/scr_imgs-v2@2x.jpg');
    background-size: auto 300px;
    animation-name: scr_imgs-global;
  }
  .global-v2 .jumvea {
    column-gap: 40px;
  }
  .global-v2 .jumvea .ttl {
    font-size: 200%;
    font-weight: 400;
    letter-spacing: -.02em;
  }
  .global-v2 .jumvea .txt {
    font-size: 187%;
  }
  .global-v2 .tcv .btn_list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 16px;
  }
  .global-v2 .tcv .btn_list--item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }
  .global-v2 .tcv .btn_list--item a {
    height: 120px;
    background-color: #f2c41d;
    padding-left: 16px;
    padding-right: 16px;
  }
  .global-v2 .rating .img_area {
    column-gap: 24px;
  }
  .global-v2 .footer {
    padding-top: 200px;
    padding-bottom: 80px;
  }
  .global-v2 .footer .logo {
    margin-bottom: 160px;
    padding-left: 0;
    padding-right: 0;
  }
  @media (max-width: 1360px) {
    .global-v2 .jumvea .ttl {
      font-size: 160%;
    }
    .global-v2 .jumvea .txt {
      font-size: 133%;
    }
  }
  @media (max-width: 1280px) {
    .global-v2 .tcv .btn_list--item-top img {
      width: 240px;
      height: auto;
    }
  }
  @media (max-width: 960px) {
    .global-v2 .hero {
      padding-left: 0;
      padding-right: 0;
    }
    .global-v2 .hero--cont .logo img {
      max-width: 75%;
    }
    .global-v2 .hero_slider .slick-slide img {
      translate: -8px 0;
    }
    .global-v2 .hero_slider .slick-slide.add-anm img {
      translate: 8px 0;
    }
    .global-v2 .tcv .btn_list--item-top {
      width: 100%;
      -webkit-box-flex: inherit;
      -ms-flex: inherit;
      flex: inherit;
    }
    .global-v2 .footer {
      padding-top: 120px;
      padding-bottom: 64px;
    }
    .global-v2 .footer .logo {
      margin-bottom: 96px;
    }
  }
  @media (max-width: 768px) {
    .global-v2 .jumvea {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      row-gap: 24px;
    }
    .global-v2 .jumvea .txt_area {
      text-align: center;
    }
    .global-v2 .tcv .btn_list {
      column-gap: 12px;
      row-gap: 12px;
    }
    .global-v2 .tcv .btn_list--item a {
      height: 96px;
    }
    .global-v2 .tcv .btn_list--item-top img {
      width: 180px;
    }
    .global-v2 .rating .img_area {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      row-gap: 12px;
    }
  }
  @media (max-width: 560px) {
    .global-v2 .header--logo img {
      width: 160px;
      height: 40px;
    }
    .global-v2 .hero--cont {
      display: block;
    }
    .global-v2 .hero--cont .logo img {
      max-width: 85%;
    }
    .global-v2 .scr_imgs {
      height: 150px;
    }
    .global-v2 .scr_imgs .img_src {
      background-size: auto 150px;
    }
    .global-v2 .jumvea {
      font-size: 86%;
    }
    .global-v2 .footer {
      padding-top: 80px;
      padding-bottom: 40px;
      font-size: 86%;
    }
    .global-v2 .footer .logo {
      margin-bottom: 64px;
    }
  }

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

    ARCHIVE

############################################################################## */
  
/* main_column
**************************************** */
  .main_column {
    flex: 1;
    margin-right: 80px;
  }
  .single-parts .main_column {
    margin-right: 40px;
  }

  /* --- post --- */
  .post { position: relative; }
  .no_post {
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #f4f4f4;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .no_post.bg-wht {
    background-color: #fff;
  }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .post--date {
    font-size: 86%;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post .post--img img {
    overflow: hidden;
    border-radius: 3px;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 79%;
    background: #56a0b9;
    color: #f6f6f6;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 2px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
  }

  @media screen and (max-width: 1064px) {
    .main_column {
      width: 100%;
      margin-right: 0;
    }
  }

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .single-parts .side_column { width: 600px; }
  .side_sect:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    font-size: 134%;
    line-height: 1;
    margin-bottom: 24px;
    font-weight: normal;
    border-left: 2px solid #096fc8;
    padding-left: 20px;
  }
  .side--ttl small {
    font-size: 80%;
    letter-spacing: .05em;
    display: block;
    line-height: 1;
    margin-top: 16px;
  }

  /* --- post --- */
  .posts-side .post:not(:last-child) { margin-bottom: 16px; }
  .posts-side .post--img {
    margin-right: 16px;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .posts-side .txtarea { flex: 1; }
  .posts-side .post--date { margin-bottom: 0; }
  .posts-side .post--ttl {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    font-weight: normal;
  }

  .side_column .post-categories li:not(:last-child) {
    margin-bottom: 8px;
  }
  .side_column .post-categories a {
    font-size: 100%;
  }

  /* --- term_list --- */
  .side_column .term_list--item {
    border-bottom: 1px solid #e4e4e4;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .side_column .term_list--item > a {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
    min-height: 28px;
    padding-left: 6px;
    font-size: 93%;
  }
  .side_column .term_list--item .btn-toggle {
    width: 28px;
    height: 28px;
  }
  .side_column .term_list--item .btn-toggle::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background-color: #cfd2d5;
    opacity: .5;
  }
  .side_column .term_list--item .btn-toggle::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 264px;
    height: 100%;
  }
  .side_column .term_list--item .btn-toggle .ico {
    position: absolute;
    width: 30%;
    height: 30%;
  }
  .side_column .term_list--item .btn-toggle .ico::before,
  .side_column .term_list--item .btn-toggle .ico::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 15%;
    translate: -50% -50%;
    background-color: #000;
  }
  .side_column .term_list--item .btn-toggle .ico::after {
    rotate: 90deg;
  }
  .side_column .term_list--item .btn-toggle.active::before {
    opacity: .15;
    background-color: #096fc8;
  }
  .side_column .term_list--item .btn-toggle.active .ico::before,
  .side_column .term_list--item .btn-toggle.active .ico::after {
    background-color: #096fc8;
  }
  .side_column .term_list--item .btn-toggle.active .ico::before {
    rotate: 180deg;
  }
  .side_column .term_list--item .btn-toggle.active .ico::after {
    rotate: 360deg;
  }
  .side_column .child_term {
    display: none;
    width: 100%;
  }
  .side_column .child_term_list {
    width: 100%;
    background-color: #f4f4f4;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 4px;
    margin-bottom: 8px;
    gap: 4px;
  }
  .side_column .child_term_list--item {
    background-color: #fff;
    width: calc(50% - 2px);
    text-align: center;
  }
  .side_column .child_term_list--item a {
    line-height: 1.2em;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 73%;
    letter-spacing: -.03em;
    height: 100%;
  }
  @media (max-width: 1064px) {
    .side_column .term_list--item .btn-toggle::after {
      width: calc(100vw - 32px);
    }
  }
  @media (any-hover: hover) {
    .side_column .term_list--item .btn-toggle:hover::before {
      opacity: .15;
      background-color: #096fc8;
    }
    .side_column .term_list--item .btn-toggle:hover .ico::before,
    .side_column .term_list--item .btn-toggle:hover .ico::after {
      background-color: #096fc8;
    }
    .side_column .term_list--item:hover > a {
      color: #096fc8;
    }
    .side_column .child_term_list--item a:hover {
      background-color: #096fc8;
      color: #fff;
    }
  }

  /* --- 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;
    padding-bottom: 16px;
  }
  .side_column .archive_month li {
    position: relative;
    padding-left: 16px;
  }
  .side_column .archive_month li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    width: 5px;
    height: 5px;
    border-left: 1px solid #191919;
    border-bottom: 1px solid #191919;
    opacity: .5;
    transform: translateY(-50%);
  }
  
  /* --- cat --- */
  .side--work_cat a {
    display: block;
    padding-top: 4px;
    padding-bottom: 4px;
    text-align: center;
    background-color: #f8f8f8;
  }
  .side--work_cat .active a {
    background-color: #000;
    color: #fff;
  }
  @media screen and (min-width: 961px) {
    .posts-side .post:hover {
      opacity: .6;
    }
  }
  @media screen and (max-width: 1064px) {
    .side_column {
      position: fixed !important;
      top: 0;
      left: 0;
      z-index: 10000;
      width: 100%;
      height: 100% !important;
      padding-top: 24px;
      padding-bottom: 72px;
      padding-left: 16px;
      padding-right: 16px;
      overflow-y: scroll;
      opacity: 0;
      pointer-events: none;
      transition: .4s all;
      background-color: rgba(255,255,255,1);
    }
    .archive-work .side_column {
      display: block;
    }
    .side_column.is_show {
      opacity: 1;
      pointer-events: all;
    }
    .side_column::before {
      content: ;
    }
    .side_column--in {
      position: static !important;
      transform: initial !important;
    }
    .side_sect:not(:last-child) {
      margin-bottom: 32px;
    }
  }

  /* --- archive-pd --- */
  .archive-pd {
    position: relative;
    margin-left: auto;
    z-index: 1;
  }
  .archive-pd .archive_list {
    position: relative;
    font-size: 92%;
  }
  .archive-pd .archive_list:not(:last-child) { margin-right: 24px; }
  .archive-pd .archive_list a {
    display: block;
    padding: 2px 16px;
    text-align: left;
  }
  .archive-pd .archive_list a:not(:last-child) { border-bottom: 1px solid #eee; }
  .archive-pd .archive_list--label { margin-right: 8px; }
  .archive-pd .archive_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 32px;
    padding-right: 54px;
    background-color: #fff;
    height: 30px;
    line-height: 30px;
  }
  .archive-pd .archive_list--btn::after {
    content: '';
    position: absolute;
    top: 11px;
    right: 10px;
    display: block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid rgba(0,0,0,.5);
    border-right: 2px solid rgba(0,0,0,.5);
    transform: rotate(45deg);
    transition: .4s cubic-bezier(.07, .51, .12, 1);
    transform-origin: 50% 50%;
  }
  .archive-pd .active .archive_list--btn::after {
    top: 14px;
    transform: rotate(225deg);
  }
  .archive-pd .archive_list--menu {
    position: absolute;
    z-index: 1;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
  }
  .archive-pd .active .archive_list--menu {
    visibility: visible;
    opacity: 1;
  }
  @media screen and (max-width: 960px) {
    .archive-pd {
      margin-top: 24px;
      margin-bottom: 0;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
  }

/* blog & VOICE
**************************************** */

  .post-categories a {
    position: relative;
    z-index: 0;
    overflow: hidden;
    min-width: 120px;
    color: #fff;
    font-size: 80%;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    background-color: #096fc8;
    display: block;
  }
  .posts .post.no_img {
    pointer-events: none;
  }
  .posts .post.no_img .img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
  }
  .posts .post.no_img .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
  }

   /* --- blog --- */
  .posts-lo3 .post {
    line-height: 1.4em;
  }
  .posts-lo3 .post .img {
    width: 100%;
    padding-top: 64.25%;
  }
  .posts-lo3 .post .img::before {
    background-color: rgba(3, 68, 128, .2);
  }
  .posts-lo3 .post .img_src {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .posts-lo3 .post .img_src.no_img {
    background-color: #f4f4f4;
    background-image: url(../images/common/logo-mark.svg);
    background-size: 20%;
  }
  .posts-lo3 .post--info {
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 1;
  }
  .posts-lo3 .post--info .post-categories {
    margin-top: -6px;
    margin-left: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .posts-lo3 .post--info .post-categories li {
    margin-left: 6px;
    margin-top: 6px;
  }
  .posts-blog .post--ttl {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  /* --- voice --- */
  .posts-voice .post--txtarea {
    line-height: 2em;
    letter-spacing: .05em;
  }
  .posts-voice .post--ttl {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    line-height: 1.4em;
    font-weight: normal;
  }
  .posts-voice .post--ttl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #191919;
  }
  .posts-voice .post--shop_name::before {
    background-color: #096fc8;
  }
  .posts-voice .post--txt {
    word-break: break-all;
  }
  .posts-voice .post--txt img {
    display: none;
  }
  .archive-customer-voice .modal_imgs {
    display: none;
  }
  .archive-customer-voice .iziModal {
    background-color: rgba(255,255,255,.7);
    border: 1px solid #096fc8;
  }
  .modal_img .close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 20px;
    height: 20px;
    background: #191919;
    border-radius: 100%;
  }
  .modal_img .close::before,
  .modal_img .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 2px;
    background-color: #fff;
  }
  .modal_img .close::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .modal_img .close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }

  @media screen and (min-width: 961px) {
    .posts-lo3 .post:hover .img::before {
      transform: translate(3px,3px);
    }
    .posts-lo3 .post:hover .img_src {
      transform: translate(-3px,-3px);
    }
    .modal_img .close:hover {
      transform: rotate(360deg);
    }
  }
  @media screen and (max-width: 1064px) {
    .posts-lo3 { margin-bottom: 56px; }
    .archive-blog .fix_wrap.flex,
    .single-blog .fix_wrap.flex {
      display: block;
    }
    .archive-blog .main_column,
    .single-blog .main_column {
      overflow: visible;
      margin-bottom: 64px;
    }
  }
  @media screen and (max-width: 560px) {
    .posts .post.no_img .img img {
      max-width: 80px;
      h-auto
    }
    .archive-blog .main_column,
    .posts-lo3 {
      margin-bottom: 24px;
    }
    .single-blog .main_column {
      margin-bottom: 48px;
    }
    .posts-lo3 .post {
      display: block;
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .posts-lo3 .post--date {
      margin-bottom: 0;
    }
    .posts-lo3 .post--img {
      padding-left: 0;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 16px;
      text-align: center;
    }
    .posts-lo3 .post--img img {
      width: auto;
      max-width: 100%;
    }
    .posts-blog .post {
      padding-bottom: 0;
      padding-top: 0;
      width: 100%;
      margin-right: 0;
    }
    .posts-blog .post:not(:last-child) {
      padding-bottom: 24px;
      margin-bottom: 24px;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-bottom-color: #f4f4f4;
    }
    .posts-voice .post {
      padding-top: 0;
      padding-bottom: 8px;
    }
    .posts-voice .post--txtarea {
      line-height: 1.6em;
    }
    .modal_img .close {
      top: 8px;
      right: 8px;
      width: 24px;
      height: 24px;
    }
    .iziModal-navigate-prev {
      left: 100%;
    }
    .iziModal-navigate-next {
      right: 100%;
    }
    .iziModal-navigate > button {
      top: 90%;
      height: auto;
      background-size: 50% !important;
    }
  }
  @media screen and (max-width: 320px) {
    .posts-lo3 .post--date {
      margin-right: 24px;
    }
  }

/* parts
**************************************** */
  .parts_cat_list {
    margin-top: -24px;
  }
  .parts_cat_list li {
    width: calc(25% - 20px);
    margin-top: 24px;
  }
  .parts_cat_list li a {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    font-weight: bold;
    color: #fff;
  }
  .parts_cat_list li a {
    background-color: #096fc8;
    min-width: auto;
  }
  .parts_cat_list li.current a {
    background-color: #1b1b1b;
    pointer-events: none;
  }
  .parts_cat_wrap .attn_list li:not(:last-child) {
    margin-right: 16px;
  }
  .posts-parts .post {
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 24px;
  }
  .posts-parts .post--txtarea_in > *:not(:last-child) {
    margin-bottom: 16px;
  }
  .posts-parts .post--name,
  .posts-parts .post--ttl {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
    border-left-width: 5px;
    border-left-style: solid;
  }
  .posts-parts .post--name {
    border-left-color: #096fc8;
  }
  .posts-parts .post--name > *:not(:last-child) {
    margin-right: 8px;
  }
  .posts-parts .post--ttl {
    font-weight: normal;
    border-left-color: #1b1b1b;
  }
  .price_list {
    margin-top: auto;
  }
  .price_list .price_txt {
    margin-right: 12px;
    margin-bottom: 4px;
    line-height: 1.4em;
  }
  .price_list .price_num,
  .price_list .tax_in {
    line-height: 1em;
  }
  .price_list .price_num {
    font-size: 167%;
    line-height: 1.4em;
  }
  .price_list .tax_in {
    font-size: 87%;
    margin-bottom: 6px;
    margin-left: 6px;
  }
  @media screen and (min-width: 561px) {
    .parts_cat_wrap {
      margin-bottom: 56px;
    }
    .parts_cat_wrap .sect_ttl {
      display: none;
    }
  }
  @media screen and (min-width: 561px) and (max-width: 1064px) {
    .posts-parts .price_list {
      display: table;
      margin-left: auto;
    }
    .posts-parts .price_list--item {
      display: block;
    }
    .posts-parts .price_list--item:not(:last-child) {
      margin-bottom: 16px;
    }
    .posts-parts .price_list--item .price_txt {
      margin-right: 0;
      margin-bottom: 0;
    }
  }
  @media screen and (max-width: 1280px) {
    .parts_cat_list {
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      margin-top: -2%;
    }
    .parts_cat_list li {
      width: 32%;
      margin-right: 2%;
      margin-top: 2%;
    }
    .parts_cat_list li:nth-of-type(3n+3) {
      margin-right: 0;
    }
  }
  @media screen and (max-width: 960px) {
    .parts_cat_list li:nth-of-type(3n+3) {
      margin-right: 2%;
    }
    .parts_cat_list li {
      width: 49%;
    }
    .parts_cat_list li:nth-of-type(even) {
      margin-right: 0;
    }
  }
  @media screen and (max-width: 560px) {
    .parts_cat_wrap {
      margin-bottom: 48px;
    }
    .parts_cat_list li a {
      padding-top: 10px;
      padding-bottom: 10px;
      font-size: 93%;
      letter-spacing: 0em;
    }
    .posts-parts .post {
      width: 100%;
    }
    .parts_cat_wrap .attn_list li {
      width: 100%;
    }
    .parts_cat_wrap .attn_list li:not(:last-child) {
      margin-right: 0;
    }
  }


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

    SINGLE

############################################################################## */
  .wp-pagenavi {
    display: nt-lex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #f4f4f4;
    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;
    color: #191919;
  }
  .wp-pagenavi span.current {
    background-color: #096fc8;
    border-color: #096fc8;
    color: #fff;
  }
  .pn_list {
    padding-top: 48px;
    border-top: 2px solid #096fc8;
  }
  .pn_list--item {
    width: 30%;
  }
  .pn_list--item a.poa {
    z-index: 1;
  }
  .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: #191919;
      border-color: #191919;
      color: #fff;
    }
    .pn_list--item:hover {
      opacity: .6;
    }
  }
  @media screen and (max-width: 560px) {
    .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;
    }
  }

/* blog
*************************************************** */
  .single-blog .post--date {
    font-size: 100%;
  }
  .single-blog .head1 {
    text-align: left;
    padding-bottom: 16px;
    padding-top: 16px;
    border-top: 2px solid #096fc8;
    border-bottom: 2px solid #096fc8;
  }
  .single-blog .main_column .post-categories {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
  }
  .single-blog .relation {
    border-top: 2px solid #096fc8;
    padding-bottom: 40px;
  }
  .single-blog .relation .side--ttl {
    margin-bottom: 32px;
  }
  @media screen and (max-width: 560px) {
    .single-blog .main_volumn {
      overflow: hidden;
    }
    .single-blog .relation {
      padding-bottom: 16px;
    }
    .single-blog .relation .side--ttl {
      margin-bottom: 24px;
    }
  }

/* parts
*************************************************** */
  .single-parts .info_area,
  .single-parts .mcearea {
    padding-bottom: 32px;
    border-bottom: 1px solid #f4f4f4;
  }
  .single-parts .info_area {
    letter-spacing: .05em;
    margin-bottom: 32px;
  }
  .single-parts .info_area > *:not(:last-child) {
    margin-bottom: 24px;
  }
  .single-parts .post--ttl,
  .single-parts .post--name,
  .single-parts .price_list {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 20px;
    border-left-style: solid;
    border-left-width: 5px;
    font-weight: normal;
    line-height: 1.4em;
  }
  .single-parts .post--ttl,
  .single-parts .post--name {
    font-size: 160%;
  }
  .single-parts .post--name,
  .single-parts .price_list {
    border-color: #096fc8;
  }
  .single-parts .post--ttl {
    border-color: #282828;
  }
  .single-parts .post--name .car_type {
    margin-right: 16px;
  }
  .single-parts .price_list--item:not(:last-child) {
    margin-bottom: 16px;
  }
  .single-parts .price_list .price_txt {
    margin-right: 0;
    margin-bottom: 0;
  }
  .single-parts .price_list .price_num {
    font-size: 200%;
  }
  .single-parts .price_list .tax_in {
    font-size: 108%;
    margin-left: 8px;
    margin-bottom: 4px;
  }
  .single-parts .blog_articles {
    border: 1px solid #096fc8;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .single-parts .blog_articles .ttl,
  .single-parts .mcearea .ttl {
    color: #096fc8;
    font-size: 120%;
    line-height: 1em;
    font-weight: normal;
  }
  .single-parts .blog_articles .ttl {
    margin-right: 32px;
    white-space: nowrap;
  }
  .single-parts .blog_articles .url_list li:not(:last-child) {
    margin-bottom: 12px;
  }
  .single-parts .blog_articles .url_list a {
    display: block;
    line-height: 1.4em;
    word-break: break-all;
  }
  .single-parts .side_column .btn_list .btn {
    width: 392px;
  }
  .single-parts .side_column .btn_list .btn:not(:last-child) {
    margin-bottom: 32px;
  }
  .single-parts .side_column .btn_list .btn a .line {
    background-color: #fff;
  }
  .single-parts .side_column .btn_list .btn a .line::before {
    background-color: #161616;
  }
  .single-parts .img_list .img:not(:last-child),
  .single-parts .movie_list--item:not(:last-child) {
    margin-bottom: 16px;
  }
  .single-parts .movie_list--item img {
    width: 100%;
  }
  .single-parts .movie_list {
    margin-top: 16px;
  }
  .single-parts .modal {
    display: none;
  }
  @media screen and (min-width: 1065px) {
    .single-parts .img_list + .btn_list,
    .single-parts .movie_list--item .btn_list {
      display: none;
    }
  }
  @media screen and (max-width: 1064px) {
    .single-parts .btn-fix_btm {
      display: none;
    }
    .single-parts .side_column {
      position: static !important;
      width: 100%;
      padding: 0;
      overflow-y: visible;
      background-color: transparent;
      opacity: 1;
      pointer-events: all;
    }
    .single-parts .info_area,
    .single-parts .mcearea {
      padding-bottom: 24px;
    }
    .single-parts .mcearea .ttl {
      margin-bottom: 24px;
    }
    .single-parts .info_area > *:not(:last-child) {
      margin-bottom: 16px;
    }
    .single-parts .post--ttl,
    .single-parts .post--name,
    .single-parts .price_list {
      padding-left: 16px;
      border-left-width: 4px;
    }
    .single-parts .post--ttl,
    .single-parts .post--name {
      font-size: 129%;
    }
    .single-parts .price_list .price_num {
      font-size: 165%;
    }
    .single-parts .blog_articles {
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .single-parts .blog_articles .ttl {
      margin-right: 0;
      margin-bottom: 12px;
    }
    .single-parts .blog_articles .url_list li:not(:last-child) {
      margin-bottom: 6px;
    }
    .single-parts .side_column .btn_list .btn {
      width: 100%;
    }
    .single-parts .side_column .btn_list .btn:not(:last-child) {
      margin-bottom: 16px;
    }
    .single-parts .movie_list {
      margin-bottom: 32px;
    }
    .single-parts .movie_list--item {
      margin-bottom: 0;
    }
    .single-parts .movie_list--item:not(:first-child) {
      display: none;
    }
  }
  @media screen and (max-width: 560px) {
    .single-parts .side_column {
      margin-top: 16px;
    }
  }

/* selected_model
*************************************************** */
  .selected_model .hero {
    height: auto;
  }
  .selected_model .hero_img {
    height: 100vh;
  }
  .selected_model .hero_img img {
    object-fit: cover;
  }
  .selected_model .hero .sect_ttl {
    padding-bottom: 80px;
  }
  .selected_model .hero .sect_ttl::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 100vw;
    height: 1px;
  }
  .selected_model .hero .sect_ttl > span:nth-child(2) {
    padding-bottom: 0;
  }
  .selected_model .hero .ttl {
    font-size: 193%;
    letter-spacing: .1em;
  }
  .selected_model .hero .txt {
    line-height: 2em;
  }
  .selected_model .posts-blog {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
  }
  .selected_model .posts-blog .post {
    width: calc(100% / 4 - 32px*3/4);
  }
  .selected_model .posts-blog .post--info {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .selected_model .posts-blog .post--info .post--date {
    display: none;
  }
  .selected_model .posts-blog .post--info .post-categories {
    margin-left: 0;
    margin-right: auto;
  }
  .selected_model .posts-blog .post--info .post-categories li {
    margin-left: 0;
    margin-right: 6px;
  }
  .selected_model .yt_list {
    gap: 32px;
  }
  .selected_model .yt_list--item {
    width: calc(100% / 3 - 32px*2/3);
  }
  .selected_model .yt_list--item::before {
    background-color: rgba(255, 0, 0, .2);
  }
  .selected_model .yt_list--item a {
    padding-top: 56.25%;
  }
  .selected_model .yt_list--item img {
    object-fit: cover;
  }
  .selected_model .yt_list--item .mov-arrow,
  .selected_model .yt_list--item .mov-arrow::before,
  .selected_model .yt_list--item .mov-arrow::after {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .selected_model .yt_list--item .mov-arrow {
    z-index: 10;
    width: 48px;
    height: 48px;
    pointer-events: none;
  }
  .selected_model .yt_list--item .mov-arrow::before,
  .selected_model .yt_list--item .mov-arrow::after {
    content: '';
  }
  .selected_model .yt_list--item .mov-arrow::before {
    width: 100%;
    height: 100%;
    border-radius: 100vmax;
    background-color: rgba(255,255,255,.85);
  }
  .selected_model .yt_list--item .mov-arrow::after {
    width: 10px;
    height: 14px;
    left: 52%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #f00;
  }
  .selected_model .gallery .inner {
    max-width: 1100px;
  }
  .selected_model .gallery_imgs {
    gap: 10px;
  }
  .selected_model .gallery_img {
    width: calc(100% / 4 - 10px*3/4);
    padding-top: 16%;
  }
  .selected_model .gallery_img::before {
    background-color: rgba(3, 68, 128, .2);
  }
  .selected_model .gallery_img img {
    object-fit: cover;
  }
  .selected_model .modal_imgs {
    display: none;
  }
  @media (any-hover: hover) {
    .selected_model .yt_list--item:hover .mov-arrow::before {
      scale: 1.1;
      opacity: .8;
      background-color: #f00;
    }
    .selected_model .yt_list--item:hover .mov-arrow::after {
      background-color: #fff;
    }
    .selected_model .yt_list--item:hover img,
    .selected_model .gallery_img:hover img {
      translate: -3px -3px;
    }
    .selected_model .yt_list--item:hover::before,
    .selected_model .gallery_img:hover::before {
      translate: 3px 3px;
    }
  }
  @media (max-width: 1920px) {
    .selected_model .hero_img {
      height: 56.25vw ;
    }
  }
  @media (max-width: 1280px) {
    .selected_model .posts-blog .post {
      width: calc(100% / 2 - 32px/2);
    }
  }
  @media (max-width: 1064px) {
    .selected_model .hero .sect_ttl {
      padding-bottom: 40px;
      margin-bottom: 40px;
    }
    .selected_model .hero .ttl {
      font-size: 160%;
      margin-bottom: 40px;
    }
  }
  @media (max-width: 960px) {
    .selected_model .hero {
      padding-left: 0;
      padding-right: 0;
    }
  }
  @media (max-width: 768px) {
    .selected_model .posts-blog {
      column-gap: 24px;
    }
    .selected_model .posts-blog .post {
      width: calc(100% / 2 - 24px/2);
    }
    .selected_model .gallery_img {
      padding-top: 18%;
      width: calc(100% / 3 - 10px*2/3);
    }
  }
  @media (max-width: 560px) {
    .selected_model .hero_img {
      height: 75vw;
    }
    .selected_model .hero .sect_ttl {
      padding-bottom: 32px;
      margin-bottom: 32px;
    }
    .selected_model .hero .ttl {
      font-size: 133%;
      margin-bottom: 32px;
    }
    .selected_model .posts-blog {
      column-gap: 12px;
      row-gap: 0;
    }
    .selected_model .posts-blog .post {
      width: calc(100% / 2 - 12px/2);
    }
    .selected_model .post_bloc-parts .posts-lo3 .post:first-child {
      padding-top: 0;
    }
    .selected_model .posts-blog .post:nth-last-child(-n+2) {
      padding-bottom: 0;
      margin-bottom: 0;
      border: none;
    }
    .selected_model .yt_list {
      gap: 20px;
    }
    .selected_model .yt_list--item {
      width: 100%;
    }
  }



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

    CONTACT FORM

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

/* COMMON
*************************************************** */
  .head-contact {
    padding: 9px 0;
    border: 1px solid #ccc;
  }
  table.tbl-form { width:100%; }
  table.tbl-form th,
  table.tbl-form td {
    line-height: 36px;
    padding-top: 12px;
    padding-bottom: 12px;
    vertical-align: top;
  }
  table.tbl-form th {
    width: 320px;
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
  }
  .mce-content-body table.tbl-form th {
    width: 200px;
  }
  table.tbl-form th span {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: #096fc8;
    color: #fff;
    line-height: 1;
    text-align: center;
  }
  table.tbl-form td {
    padding-left: 16px;
  }
  table.tbl-form input[type="text"],
  table.tbl-form input[type="email"],
  table.tbl-form input[type="tel"],
  table.tbl-form input[type="date"],
  table.tbl-form input[type="password"],
  table.tbl-form textarea {
    width: 100%;
    vertical-align: bottom;
  }
  table.tbl-form input[type="text"],
  table.tbl-form input[type="email"],
  table.tbl-form input[type="tel"],
  table.tbl-form input[type="date"],
  table.tbl-form input[type="password"],
  table.tbl-form select,
  table.tbl-form textarea {
    margin: 0;
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 16px;
    padding-right: 16px;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 100%;
  }
  table.tbl-form textarea { height: 200px; }
  table.tbl-form select { height: 40px; }
  table.tbl-form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  table.tbl-form input:hover { opacity: .7; }
  table.tbl-form textarea:hover { opacity: .7; }
  table.tbl-form input:focus { outline: none; }

/* radio & checkbox
*************************************************** */
  .mwform-checkbox-field,
  .mwform-radio-field {
    display: inline-block;
    margin-top: 4px;
  }
  .mwform-checkbox-field input,
  .mwform-radio-field input {
    margin-top: 0;
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 8px;
  }

/* address
*************************************************** */
  table.tbl-form .cf_zip input[type="text"] {
    width: auto;
    max-width: 80%;
    margin-left: 8px;
    margin-right: 8px;
  }

/* images
*************************************************** */
  .mw-wp-form_image {
    margin-bottom: 8px;
  }

/* other
*************************************************** */
  
  /* --- history --- */
  table.tbl-form .history .horizontal-item:nth-child(2) .mwform-radio-field-text::after {
    content: '（有りの場合は下記に修復箇所と修復内容をご記入してください）';
  }
  /* --- support --- */
  .cf_form--support {
    margin-top: 4px;
    line-height: 1.6em;
  }
  
  /* --- required --- */
  .required {
    background: #f55;
    color: #fff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 2px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
  }

  /* --- 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;
  }
  .cf_form--btns input {
    min-width: 256px;
    max-width: 100%;
    line-height: 40px;
    height: 40px;
    padding-left: 32px;
    padding-right: 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 0;
    letter-spacing: .05em;
    color: #fff;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: .4s cubic-bezier(.55, .05, .22, .99);
  }
  input.f-form__back {
    background-color: #eaeaea;
    color: #191919;
  }
  .f-form__submit { background-color: #096fc8; }
  .wpcf7c-btn-confirm { background-color: #b2b2b2; }
  .contact_submit_disabled { background-color: #ccc; }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
  }
  .mw_wp_form .horizontal-item:not(:last-child) {
    margin-right: 10px;
  }
  .mw_wp_form_complete {
    background: #f4f4f4;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
  @media screen and (min-width: 961px) {
    .cf_form--btns input:hover {
      opacity: .6;
    }
  }
  @media only screen and (max-width: 767px) {
    table.tbl-form th,
    table.tbl-form td {
      display: block;
      width: auto;
      padding-left: 0;
      padding-right: 0;
    }
    table.tbl-form th,
    .mce-content-body table.tbl-form th {
      width: 100%;
      border-bottom:none;
      padding-top: 8px;
      padding-bottom: 0;
      white-space: normal;
      font-weight: bold;
    }
    table.tbl-form td {
      padding-top: 8px;
      padding-bottom: 8px;
      padding-left: 0;
    }
    table.tbl-form .cf_rc .wpcf7-list-item {
      display: block;
    }
    table.tbl-form .cf_zip input[type="text"] {
      width: calc(100% - 23px);
      margin-right: 0;
    }
    .acceptance {
      text-align: left;
      line-height: 1.6em;
      margin-bottom: 8px;
    }
    .acceptance span.wpcf7-list-item {
      margin-left: 0;
    }
    .cf_form--btns {
      padding-top: 16px;
      display: block;
    }
    .cf_form--btns input {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      margin-top: 10px;
      background-size: contain;
      background-position: center;
    }
    .mw_wp_form_complete {
      text-align: left;
    }
    table.tbl-form .history .horizontal-item:nth-child(2) .mwform-radio-field-text::after {
      display: block;
      line-height: 1.6em;
      margin-top: -2px;
    }
  }