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

    KEYFRAMES

############################################################################## */
  @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 fade_in {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes fade_out {
    0% { opacity: 1; }
    100% { opacity: 0; }
  }
  @keyframes fade-to_top {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-to_btm {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-to_rgt {
    0% { opacity: 0; transform: translateX(-8px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  @keyframes fade-to_lft {
    0% { opacity: 0; transform: translateX(8px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  @keyframes mask-to_top {
    0% { transform: translateY(8px); clip-path: inset(100% 0 -20% 0); }
    100% { transform: translateY(0px); clip-path: inset(0 0 -20% 0); }
  }
  @keyframes mask-to_btm {
    0% { transform: translateY(-8px); clip-path: inset(0 0 100% 0); }
    100% { transform: translateY(0px); clip-path: inset(0 0 -20% 0); }
  }
  @keyframes mask-to_rgt {
    0% { transform: translateX(-8px); clip-path: inset(0 100% -20% 0); }
    100% { transform: translateX(0px); clip-path: inset(0 0 -20% 0); }
  }
  @keyframes mask-to_lft {
    0% { transform: translateX(8px); clip-path: inset(0 0 -20% 100%); }
    100% { transform: translateX(0px); clip-path: inset(0 0 -20% 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 slide-rev_rgt-lg {
    0% { transform: translateX(0%); }
    100% { transform: translateX(200%); }
  }
  @keyframes slide-to_rgt-lg {
    0% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
  }
  @keyframes hov_arrow-prev {
    0% { opacity: 1; transform: translateX(0); }
    49% { opacity: 0; transform: translateX(-8px); }
    50% { opacity: 0; transform: translateX(8px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  @keyframes hov_arrow-next {
    0% { opacity: 1; transform: translateX(0); }
    49% { opacity: 0; transform: translateX(8px); }
    50% { opacity: 0; transform: translateX(-8px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  @keyframes scroll_line_mov {
    0% {
      transform: translateX(-110%);
    }
    50% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(110%);
    }
  }
  @keyframes scroll_line_mov-sp {
    0% {
      opacity: 0;
      transform: translateX(-5px);
    }
    20% {
      opacity: 1;
      transform: translateX(-5px);
    }
    90% {
      opacity: 1;
      transform: translateX(50px);
    }
    100% {
      opacity: 0;
      transform: translateX(50px);
    }
  }
  @keyframes scr_imgs {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -5038px 0; /* 画像のマイナス幅 */
    }
  }
  @keyframes scr_imgs-sp {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -2519px 0; /* 画像のマイナス幅 */
    }
  }
  .loaded .ts, .loaded .ts-bf::before, .loaded .ts-af::after,
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after,
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-property: all;
    transition-timing-function: ease;
    transition-duration: .8s;
  }
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after {
    transition-duration: .4s;
  }
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-duration: 1.2s;
  }
  .del0 { transition-delay: 0ms; } .del50 { transition-delay: 50ms; }
  .del100 { transition-delay: 100ms; } .del150 { transition-delay: 150ms; }
  .del200 { transition-delay: 200ms; } .del250 { transition-delay: 250ms; }
  .del300 { transition-delay: 300ms; } .del350 { transition-delay: 350ms; }
  .del400 { transition-delay: 400ms; } .del450 { transition-delay: 450ms; }
  .del500 { transition-delay: 500ms; } .del550 { transition-delay: 550ms; }
  .del600 { transition-delay: 600ms; } .del650 { transition-delay: 650ms; }
  .del700 { transition-delay: 700ms; } .del750 { transition-delay: 750ms; }
  .del800 { transition-delay: 800ms; } .del850 { transition-delay: 850ms; }
  .del900 { transition-delay: 900ms; } .del950 { transition-delay: 950ms; }
  .del1000 { transition-delay: 1000ms; } .del1050 { transition-delay: 1050ms; }
  .del1100 { transition-delay: 1000ms; } .del1150 { transition-delay: 1050ms; }
  .del1200 { transition-delay: 1200ms; } .del1250 { transition-delay: 1250ms; }
  .del1300 { transition-delay: 1300ms; } .del1350 { transition-delay: 1350ms; }
  .del1400 { transition-delay: 1400ms; } .del1450 { transition-delay: 1450ms; }
  .del1500 { transition-delay: 1500ms; } .del1550 { transition-delay: 1550ms; }
  .del1600 { transition-delay: 1600ms; } .del1650 { transition-delay: 1650ms; }
  .del1700 { transition-delay: 1700ms; } .del1750 { transition-delay: 1750ms; }
  .del1800 { transition-delay: 1800ms; } .del1850 { transition-delay: 1850ms; }
  .del1900 { transition-delay: 1900ms; } .del1950 { transition-delay: 1950ms; }
  .del2000 { transition-delay: 2000ms; } .del2050 { transition-delay: 2050ms; }
  .anm_del0 { animation-delay: 0ms; } .anm_del50 { animation-delay: 50ms; }
  .anm_del100 { animation-delay: 100ms; } .anm_del150 { animation-delay: 150ms; }
  .anm_del200 { animation-delay: 200ms; } .anm_del250 { animation-delay: 250ms; }
  .anm_del300 { animation-delay: 300ms; } .anm_del350 { animation-delay: 350ms; }
  .anm_del400 { animation-delay: 400ms; } .anm_del450 { animation-delay: 450ms; }
  .anm_del500 { animation-delay: 500ms; } .anm_del550 { animation-delay: 550ms; }
  .anm_del600 { animation-delay: 600ms; } .anm_del650 { animation-delay: 650ms; }
  .anm_del700 { animation-delay: 700ms; } .anm_del750 { animation-delay: 750ms; }
  .anm_del800 { animation-delay: 800ms; } .anm_del850 { animation-delay: 850ms; }
  .anm_del900 { animation-delay: 900ms; } .anm_del950 { animation-delay: 950ms; }
  .anm_del1000 { animation-delay: 1000ms; } .anm_del1050 { animation-delay: 1050ms; }
  .anm_del1100 { animation-delay: 1000ms; } .anm_del1150 { animation-delay: 1050ms; }
  .anm_del1200 { animation-delay: 1200ms; } .anm_del1250 { animation-delay: 1250ms; }
  .anm_del1300 { animation-delay: 1300ms; } .anm_del1350 { animation-delay: 1350ms; }
  .anm_del1400 { animation-delay: 1400ms; } .anm_del1450 { animation-delay: 1450ms; }
  .anm_del1500 { animation-delay: 1500ms; } .anm_del1550 { animation-delay: 1550ms; }
  .anm_del1600 { animation-delay: 1600ms; } .anm_del1650 { animation-delay: 1650ms; }
  .anm_del1700 { animation-delay: 1700ms; } .anm_del1750 { animation-delay: 1750ms; }
  .anm_del1800 { animation-delay: 1800ms; } .anm_del1850 { animation-delay: 1850ms; }
  .anm_del1900 { animation-delay: 1900ms; } .anm_del1950 { animation-delay: 1950ms; }
  .anm_del2000 { animation-delay: 2000ms; } .anm_del2050 { animation-delay: 2050ms; }

  /* --- mask ---  */
  .mask-to_top,
  .mask-to_btm,
  .mask-to_rgt,
  .mask-to_lft {
    clip-path: inset(100% 0 -20% 0);
  }
  span.mask-to_top:not(.flx),
  span.mask-to_btm:not(.flx),
  span.mask-to_rgt:not(.flx),
  span.mask-to_lft:not(.flx) {
    display: inline-block;
  }
  .visible.mask-to_top,
  .visible.mask-to_btm,
  .visible.mask-to_rgt,
  .visible.mask-to_lft,
  .visible .mask-to_top,
  .visible .mask-to_btm,
  .visible .mask-to_rgt,
  .visible .mask-to_lft {
    animation-timing-function: cubic-bezier(0.86,0,0.07,1);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .visible.mask-to_top,
  .visible .mask-to_top {
    animation-duration: 1.2s;
    animation-name: mask-to_top;
  }
  .visible.mask-to_btm,
  .visible .mask-to_btm {
    animation-duration: 1.2s;
    animation-name: mask-to_btm;
  }
  .visible.mask-to_rgt,
  .visible .mask-to_rgt {
    animation-duration: 1s;
    animation-name: mask-to_rgt;
  }
  .visible.mask-to_lft,
  .visible .mask-to_lft {
    animation-duration: 1s;
    animation-name: mask-to_lft;
  }

  /* --- fade ---  */
  .fade-to_top,
  .fade-to_btm,
  .fade-to_rgt,
  .fade-to_lft {
    opacity: 0;
  }
  span.fade-to_top:not(.flx),
  span.fade-to_btm:not(.flx),
  span.fade-to_rgt:not(.flx),
  span.fade-to_lft:not(.flx) {
    display: inline-block;
  }
  .visible.fade-to_top,
  .visible.fade-to_btm,
  .visible.fade-to_rgt,
  .visible.fade-to_lgt,
  .visible .fade-to_top,
  .visible .fade-to_btm,
  .visible .fade-to_rgt,
  .visible .fade-to_lgt {
    animation-timing-function: cubic-bezier(0.65,0.05,0.36,1);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: fade-to_top;
  }
  .visible.fade-to_top,
  .visible .fade-to_top {
    animation-duration: .8s;
    animation-name: fade-to_top;
  }
  .visible.fade-to_btm,
  .visible .fade-to_btm {
    animation-duration: .8s;
    animation-name: fade-to_btm;
  }
  .visible.fade-to_rgt,
  .visible .fade-to_rgt {
    animation-duration: .6s;
    animation-name: fade-to_rgt;
  }
  .visible.fade-to_lft,
  .visible .fade-to_lft {
    animation-duration: .6s;
    animation-name: fade-to_lft;
  }

  .fade_in {
    opacity: 0;
  }
  .visible .fade_in {
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.46,0.03,0.52,0.96);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: fade_in;
  }


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

    LOADING

############################################################################## */
  @keyframes load_fade_out {
    0% {
      opacity: 1;
      filter: blur(0px);
      transform: scale(1);
    }
    100% {
      opacity: 0;
      filter: blur(10px);
      transform: scale(1.05);
    }
  }
  #loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 24px;
    padding-right: 24px;
    z-index: 100000;
    background-color: #fff;
    pointer-events: none;
  }
  .visible#loading {
    animation: load_fade_out 1.6s cubic-bezier(0.65,0.05,0.36,1) 2.6s 1 both alternate;
  }
  body.min .visible#loading {
    animation: load_fade_out 1.6s cubic-bezier(0.65,0.05,0.36,1) .4s 1 both alternate;
  }
  @media screen and (max-width: 1280px) {
    .loading--cont .logo {
      transform: scale(.8);
    }
  }
  @media screen and (max-width: 960px) {
    .loading--cont .logo {
      transform: scale(.7);
    }
  }
  @media screen and (max-width: 560px) {
    .loading--cont .logo {
      transform: scale(.6);
    }
  }


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

    COMMON

############################################################################## */
  .svg-symbol {
    display: none;
  }
  @media screen and (min-width: 961px) and (max-width: 1400px) {
    body {
      font-size: 70%;
    }
  }

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

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

  /* --- sect_pdg --- */
  .sect_pdg {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .sect_pdg-lg {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .pdg_no { padding: 0 !important; }
  .pdg_no-top { padding-top: 0 !important; }
  .pdg_no-btm { padding-bottom: 0 !important; }

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

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

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

  @media screen and  (max-width: 1280px) {
    .sect_pdg {
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .sect_pdg-lg {
      padding-top: 120px;
      padding-bottom: 120px;
    }
    .btm160 { margin-bottom: 120px; }
  }
  @media screen and  (max-width: 960px) {
    .sect_pdg {
      padding-top: 48px;
      padding-bottom: 48px;
    }
    .sect_pdg-lg {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .btm160 { margin-bottom: 80px; }
  }
  @media screen and  (max-width: 560px) {
    .inner { width: calc(100% - 32px); }
    .btm24 { margin-bottom: 16px; }
    .btm32 { margin-bottom: 20px; }
    .btm40 { margin-bottom: 24px; }
    .btm48 { margin-bottom: 28px; }
    .btm56 { margin-bottom: 32px; }
    .btm64 { margin-bottom: 36px; }
    .btm72 { margin-bottom: 40px; }
    .btm80 { margin-bottom: 44px; }
    .btm88 { margin-bottom: 48px; }
    .btm96 { margin-bottom: 52px; }
    .btm104 { margin-bottom: 56px; }
    .btm112 { margin-bottom: 60px; }
    .btm120 { margin-bottom: 64px; }
    .btm160 { margin-bottom: 64px; }
    .sect_pdg {
      padding-top: 32px;
      padding-bottom: 32px;
    }
    .sect_pdg-lg {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* --- default --- */
  .clr-def, .clr-def-bf::before, .clr-def-af::after,
  a, select, button {
    color: #1b1b1b; fill: #1b1b1b;
  }
  .bg_clr-def, .bg_clr-def-bf::before, .bg_clr-def-af::after {
    background-color: #1b1b1b;
  }
  .bdr_clr-def, .bdr_clr-def-bf::before, .bdr_clr-def-af::after {
    border-color: #1b1b1b;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-def, .hov-clr-def:hover,
    .hov_area:hover .hov-clr-def-bf::before, .hov-clr-def-bf:hover::before,
    .hov_area:hover .hov-clr-def-af::after, .hov-clr-def-af:hover::after {
      color: #1b1b1b; fill: #1b1b1b;
    }
    .hov_area:hover .hov-bg_clr-def, .hov-bg_clr-def:hover,
    .hov_area:hover .hov-bg_clr-def-bf::before, .hov-bg_clr-def-bf:hover::before,
    .hov_area:hover .hov-bg_clr-def-af::after, .hov-bg_clr-def-af:hover::after,
    .wp-pagenavi a:hover {
      background-color: #1b1b1b;
    }
    .wp-pagenavi a:hover {
      border-color: #1b1b1b;
    }
  }

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

  /* --- sub --- */
  .clr-sub, .clr-sub-bf::before, .clr-sub-af::after,
  .gnav .sns_list--item svg {
    color: #c0c0c0; fill: #c0c0c0;
  }
  .bg_clr-sub, .bg_clr-sub-bf::before, .bg_clr-sub-af::after,
  body:not(.min) #loading {
    background-color: #c0c0c0;
  }
  .bdr_clr-sub, .bdr_clr-sub-bf::before, .bdr_clr-sub-af::after,
  .wp-pagenavi a, .wp-pagenavi span {
    border-color: #c0c0c0;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-sub, .hov-clr-sub:hover,
    .hov_area:hover .hov-clr-sub-bf::before, .hov-clr-sub-bf:hover::before,
    .hov_area:hover .hov-clr-sub-af::after, .hov-clr-sub-af:hover::after {
      color: #c0c0c0; fill: #c0c0c0;
    }
    .hov_area:hover .hov-bg_clr-sub, .hov-bg_clr-sub:hover,
    .hov_area:hover .hov-bg_clr-sub-bf::before, .hov-bg_clr-sub-bf:hover::before,
    .hov_area:hover .hov-bg_clr-sub-af::after, .hov-bg_clr-sub-af:hover::after {
      background-color: #c0c0c0;
    }
  }

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

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

  /* --- sns --- */
  .clr-x, .clr-x-bf::before, .clr-x-af::after {
    color: #000; fill: #000;
  }
  .bg_clr-x, .bg_clr-x-bf::before, .bg_clr-x-af::after {
    background-color: #000;
  }
  .bdr_clr-x, .bdr_clr-x-bf::before, .bdr_clr-x-af::after {
    border-color: #000;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-x, .hov-clr-x:hover,
    .hov_area:hover .hov-clr-x-bf::before, .hov-clr-x-bf:hover::before,
    .hov_area:hover .hov-clr-x-af::after, .hov-clr-x-af:hover::after {
      color: #000; fill: #000;
    }
    .hov_area:hover .hov-bg_clr-x, .hov-bg_clr-x:hover,
    .hov_area:hover .hov-bg_clr-x-bf::before, .hov-bg_clr-x-bf:hover::before,
    .hov_area:hover .hov-bg_clr-x-af::after, .hov-bg_clr-x-af:hover::after {
      background-color: #000;
    }
  }
  .clr-tw, .clr-tw-bf::before, .clr-tw-af::after {
    color: #1DA1F2; fill: #1DA1F2;
  }
  .bg_clr-tw, .bg_clr-tw-bf::before, .bg_clr-tw-af::after {
    background-color: #1DA1F2;
  }
  .bdr_clr-tw, .bdr_clr-tw-bf::before, .bdr_clr-tw-af::after {
    border-color: #1DA1F2;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-tw, .hov-clr-tw:hover,
    .hov_area:hover .hov-clr-tw-bf::before, .hov-clr-tw-bf:hover::before,
    .hov_area:hover .hov-clr-tw-af::after, .hov-clr-tw-af:hover::after {
      color: #1DA1F2; fill: #1DA1F2;
    }
    .hov_area:hover .hov-bg_clr-tw, .hov-bg_clr-tw:hover,
    .hov_area:hover .hov-bg_clr-tw-bf::before, .hov-bg_clr-tw-bf:hover::before,
    .hov_area:hover .hov-bg_clr-tw-af::after, .hov-bg_clr-tw-af:hover::after {
      background-color: #1DA1F2;
    }
  }
  .clr-line, .clr-line-bf::before, .clr-line-af::after {
    color: #00B900; fill: #00B900;
  }
  .bg_clr-line, .bg_clr-line-bf::before, .bg_clr-line-af::after {
    background-color: #00B900;
  }
  .bdr_clr-line, .bdr_clr-line-bf::before, .bdr_clr-line-af::after {
    border-color: #00B900;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-line, .hov-clr-line:hover,
    .hov_area:hover .hov-clr-line-bf::before, .hov-clr-line-bf:hover::before,
    .hov_area:hover .hov-clr-line-af::after, .hov-clr-line-af:hover::after {
      color: #00B900; fill: #00B900;
    }
    .hov_area:hover .hov-bg_clr-line, .hov-bg_clr-line:hover,
    .hov_area:hover .hov-bg_clr-line-bf::before, .hov-bg_clr-line-bf:hover::before,
    .hov_area:hover .hov-bg_clr-line-af::after, .hov-bg_clr-line-af:hover::after {
      background-color: #00B900;
    }
  }
  .clr-insta, .clr-insta-bf::before, .clr-insta-af::after {
    color: #CF2E92; fill: #CF2E92;
  }
  .bg_clr-insta, .bg_clr-insta-bf::before, .bg_clr-insta-af::after {
    background-color: #CF2E92;
  }
  .bdr_clr-insta, .bdr_clr-insta-bf::before, .bdr_clr-insta-af::after {
    border-color: #CF2E92;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-insta, .hov-clr-insta:hover,
    .hov_area:hover .hov-clr-insta-bf::before, .hov-clr-insta-bf:hover::before,
    .hov_area:hover .hov-clr-insta-af::after, .hov-clr-insta-af:hover::after {
      color: #CF2E92; fill: #CF2E92;
    }
    .hov_area:hover .hov-bg_clr-insta, .hov-bg_clr-insta:hover,
    .hov_area:hover .hov-bg_clr-insta-bf::before, .hov-bg_clr-insta-bf:hover::before,
    .hov_area:hover .hov-bg_clr-insta-af::after, .hov-bg_clr-insta-af:hover::after {
      background-color: #CF2E92;
    }
  }
  .clr-fb, .clr-fb-bf::before, .clr-fb-af::after {
    color: #1877f2; fill: #1877f2;
  }
  .bg_clr-fb, .bg_clr-fb-bf::before, .bg_clr-fb-af::after {
    background-color: #1877f2;
  }
  .bdr_clr-fb, .bdr_clr-fb-bf::before, .bdr_clr-fb-af::after {
    border-color: #1877f2;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-fb, .hov-clr-fb:hover,
    .hov_area:hover .hov-clr-fb-bf::before, .hov-clr-fb-bf:hover::before,
    .hov_area:hover .hov-clr-fb-af::after, .hov-clr-fb-af:hover::after {
      color: #1877f2; fill: #1877f2;
    }
    .hov_area:hover .hov-bg_clr-fb, .hov-bg_clr-fb:hover,
    .hov_area:hover .hov-bg_clr-fb-bf::before, .hov-bg_clr-fb-bf:hover::before,
    .hov_area:hover .hov-bg_clr-fb-af::after, .hov-bg_clr-fb-af:hover::after {
      background-color: #1877f2;
    }
  }
  .clr-yt, .clr-yt-bf::before, .clr-yt-af::after {
    color: #c52818; fill: #c52818;
  }
  .bg_clr-yt, .bg_clr-yt-bf::before, .bg_clr-yt-af::after {
    background-color: #c52818;
  }
  .bdr_clr-yt, .bdr_clr-yt-bf::before, .bdr_clr-yt-af::after {
    border-color: #c52818;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-yt, .hov-clr-yt:hover,
    .hov_area:hover .hov-clr-yt-bf::before, .hov-clr-yt-bf:hover::before,
    .hov_area:hover .hov-clr-yt-af::after, .hov-clr-yt-af:hover::after {
      color: #c52818; fill: #c52818;
    }
    .hov_area:hover .hov-bg_clr-yt, .hov-bg_clr-yt:hover,
    .hov_area:hover .hov-bg_clr-yt-bf::before, .hov-bg_clr-yt-bf:hover::before,
    .hov_area:hover .hov-bg_clr-yt-af::after, .hov-bg_clr-yt-af:hover::after {
      background-color: #c52818;
    }
  }
  .clr-yt_blk, .clr-yt_blk-bf::before, .clr-yt_blk-af::after {
    color: #282828; fill: #282828;
  }
  .bg_clr-yt_blk, .bg_clr-yt_blk-bf::before, .bg_clr-yt_blk-af::after {
    background-color: #282828;
  }
  .bdr_clr-yt_blk, .bdr_clr-yt_blk-bf::before, .bdr_clr-yt_blk-af::after {
    border-color: #282828;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-yt_blk, .hov-clr-yt_blk:hover,
    .hov_area:hover .hov-clr-yt_blk-bf::before, .hov-clr-yt_blk-bf:hover::before,
    .hov_area:hover .hov-clr-yt_blk-af::after, .hov-clr-yt_blk-af:hover::after {
      color: #282828; fill: #282828;
    }
    .hov_area:hover .hov-bg_clr-yt_blk, .hov-bg_clr-yt_blk:hover,
    .hov_area:hover .hov-bg_clr-yt_blk-bf::before, .hov-bg_clr-yt_blk-bf:hover::before,
    .hov_area:hover .hov-bg_clr-yt_blk-af::after, .hov-bg_clr-yt_blk-af:hover::after {
      background-color: #282828;
    }
  }
  .clr-pin, .clr-pin-bf::before, .clr-pin-af::after {
    color: #BD081C; fill: #BD081C;
  }
  .bg_clr-pin, .bg_clr-pin-bf::before, .bg_clr-pin-af::after {
    background-color: #BD081C;
  }
  .bdr_clr-pin, .bdr_clr-pin-bf::before, .bdr_clr-pin-af::after {
    border-color: #BD081C;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .hov-clr-pin, .hov-clr-pin:hover,
    .hov_area:hover .hov-clr-pin-bf::before, .hov-clr-pin-bf:hover::before,
    .hov_area:hover .hov-clr-pin-af::after, .hov-clr-pin-af:hover::after {
      color: #BD081C; fill: #BD081C;
    }
    .hov_area:hover .hov-bg_clr-pin, .hov-bg_clr-pin:hover,
    .hov_area:hover .hov-bg_clr-pin-bf::before, .hov-bg_clr-pin-bf:hover::before,
    .hov_area:hover .hov-bg_clr-pin-af::after, .hov-bg_clr-pin-af:hover::after {
      background-color: #BD081C;
    }
  }

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

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

  /* --- page_head --- */
  .page_head {
    text-align: center;
    height: 34vw;
    max-height: 650px;
  }
  .page_head .bg_img {
    height: calc(100% + 80px);
  }
  @media screen and (max-width: 960px) {
    .page_head {
      height: 52vw;
    }
  }
  @media screen and (max-width: 560px) {
    .page_head {
      padding-top: 40px;
    }
  }

  /* --- sect_ttl --- */
  .sect_ttl {
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: .1em;
  }
  .sect_ttl span.fnt-en,
  .sect_ttl span.fnt-jp {
    display: block;
  }
  .sect_ttl .fnt-en {
    font-size: 280%;
    letter-spacing: .2em;
    line-height: 1.2em;
  }
  .sect_ttl .fnt-jp {
    margin-top: 8px;
  }
  .sect_ttl-sm .fnt-en {
    font-size: 213%;
  }
  .sect_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }
  @media screen and (max-width: 960px) {
    .sect_ttl .fnt-en {
      font-size: 224%;
    }
    .sect_ttl-sm .fnt-en {
      font-size: 170%;
    }
  }
  @media screen and (max-width: 560px) {
    .sect_ttl .fnt-en {
      font-size: 179%;
    }
    .sect_ttl-sm .fnt-en {
      font-size: 136%;
    }
  }

  /* --- heading --- */
  .head1 { font-size: 213%; }
  .head2 { font-size: 187%; }
  .head3 { font-size: 160%; }
  .head4 { font-size: 147%; }
  .head5 { font-size: 133%; }
  @media screen and (max-width: 960px) {
    .head1 { font-size: 170%; }
    .head2 { font-size: 149%; }
    .head3 { font-size: 128%; }
    .head4 { font-size: 117%; }
    .head5 { font-size: 109%; }
  }
  @media screen and (max-width: 560px) {
    .head1 { font-size: 149%; }
    .head2 { font-size: 128%; }
    .head3 { font-size: 117%; }
    .head4 { font-size: 109%; }
    .head5 { font-size: 109%; }
  }

/* txt
**************************************** */
  .mgn_txts p:not(:last-child) { margin-bottom: 1.5em; }
  .mgn_txts p.btm_no:not(:last-child) { margin-bottom: 0; }
  .fnt-maxs { font-size: 67% }
  .fnt-xxs { font-size: 80% }
  .fnt-xs  { font-size: 87% }
  .fnt-sm  { font-size: 93%; }
  .fnt-lg  { font-size: 107%; }
  .fnt-xl  { font-size: 113%; }
  .fnt-xxl { font-size: 120%; }
  .txt-lft { text-align: left; }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .tbl-lft,
  .tbl-ctr,
  .tbl-rgt {
    display: table;
  }
  .tbl-ctr {
    margin-left: auto;
    margin-right: auto;
  }
  .tbl-lft { margin-right: auto; }
  .tbl-rgt { margin-left: auto; }
  .txt-attn {
    font-size: 88%;
    color: #999;
  }
  .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; }
  .ls-0 { letter-spacing: 0; }
  .ls-40 { letter-spacing: .04em; }
  .ls-50 { letter-spacing: .05em; }
  .ls-100 { letter-spacing: .1em; }
  .ls-150 { letter-spacing: .15em; }
  .ls-200 { letter-spacing: .2em; }
  .ls-250 { letter-spacing: .25em; }
  .ls-300 { letter-spacing: .3em; }
  .ls-350 { letter-spacing: .35em; }
  .ls-400 { letter-spacing: .4em; }
  .lh-10 { line-height: 1.0em; }
  .lh-11 { line-height: 1.1em; }
  .lh-12 { line-height: 1.2em; }
  .lh-13 { line-height: 1.3em; }
  .lh-14 { line-height: 1.4em; }
  .lh-14 { line-height: 1.4em; }
  .lh-15 { line-height: 1.5em; }
  .lh-16 { line-height: 1.6em; }
  .lh-17 { line-height: 1.7em; }
  .lh-18 { line-height: 1.8em; }
  .lh-19 { line-height: 1.9em; }
  .lh-20 { line-height: 2.0em; }
  .fnt-en { font-family: 'Roboto', sans-serif; }
  .fnt-jp { font-family: 'Noto Sans JP', sans-serif; }
  .fnt-serif {
    font-family: 'Noto Serif JP', serif;
    font-weight: normal;
  }
  .txt-ver {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-feature-settings: 'pwid';
  }
  @media screen and (max-width: 960px) {
    .fnt-lg  { font-size: 107%; }
    .fnt-xl  { font-size: 109%; }
    .fnt-xxl { font-size: 109%; }
    .txt-jus-tab { text-align: justify; }
    .txt-lft-tab { text-align: left; }
    .txt-ctr-tab { text-align: center; }
    .txt-rgt-tab { text-align: right; }
  }
  @media screen and (max-width: 768px) {
    .txt-jus-lgsp { text-align: justify; }
    .txt-lft-lgsp { text-align: left; }
    .txt-ctr-lgsp { text-align: center; }
    .txt-rgt-lgsp { text-align: right; }
  }
  @media screen and (max-width: 560px) {
    .fnt-maxs { font-size: 71%; }
    .fnt-xxs { font-size: 87%; }
    .fnt-xs  { font-size: 93%; }
    .fnt-lg  { font-size: 100%; }
    .fnt-xl  { font-size: 100%; }
    .fnt-xxl { font-size: 106%; }
    .txt-jus-sp { text-align: justify; }
    .txt-lft-sp { text-align: left; }
    .txt-ctr-sp { text-align: center; }
    .txt-rgt-sp { text-align: right; }
  }
  @media screen and (max-width: 413px) {
    .txt-jus-smsp { text-align: justify; }
    .txt-lft-smsp { text-align: left; }
    .txt-ctr-smsp { text-align: center; }
    .txt-rgt-smsp { text-align: right; }
  }
  @media screen and (max-width: 374px) {
    .txt-jus-xssp { text-align: justify; }
    .txt-lft-xssp { text-align: left; }
    .txt-ctr-xssp { text-align: center; }
    .txt-rgt-xssp { text-align: right; }
  }

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

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

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

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 6px; }
  .list li {
    position: relative;
    padding-left: 1em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .8em;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #666;
  }
  /* 数字付きリスト */
  .list-num {
    padding-left: 1.4em;
    list-style-type: decimal;
  }
  .list-num li { padding-left: 0; }
  .list-num li::before { display: none; }

  .list-kakko_num li {
    padding-left: 2em;
    list-style-type: none;
    counter-increment: cnt;
  }
  .list-kakko_num li:nth-of-type(n+10) {
    padding-left: 2.6em;
  }
  .list-kakko_num li::before {
    content: "(" counter(cnt) ") ";
    position: absolute;
    top: 1px;
    left: 0;
  }

  /* 白丸付きリスト */
  .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 {
    position: absolute;
    padding-top: 20px;
  }
  .list-dl dd {
    padding-left: 168px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  @media screen and (max-width: 768px) {
    .list-dl dt {
      position: static;
      padding-top: 12px;
    }
    .list-dl dd {
      padding-left: 0;
      padding-top: 8px;
      padding-bottom: 12px;
    }
  }

  /* --- bdr_list ---  */
  .bdr_list--item {
    column-gap: 24px;
  }
  .bdr_list--item .ttl,
  .bdr_list--item .txt {
    border-top-width: 1px;
    border-top-style: solid;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .bdr_list--item:last-child .ttl,
  .bdr_list--item:last-child .txt {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .bdr_list--item .ttl {
    width: 132px;
  }
  @media screen and (max-width: 560px) {
    .bdr_list--item .ttl {
      width: 100%;
      padding-bottom: 0;
      margin-bottom: 6px;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .bdr_list--item .ttl span {
      font-weight: 700;
      font-size: 79%;
      opacity: .5;
    }
    .bdr_list--item .txt {
      border-top: none;
      padding-top: 0;
    }
    .bdr_list--item:last-child .ttl {
      border-bottom: none;
    }
  }

  /* --- term_list ---  */
  .term_list {
    gap: 8px;
  }
  .term_list--item {
    width: calc(25% - 7px);
  }
  .term_list--item a {
    display: block;
    padding-top: 1px;
    padding-bottom: 1px;
    white-space: nowrap;
  }
  article .term_list--item a {
    color: #8d9396;
  }
  .term_list--item a::before {
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.86,0,0.07,1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_rgt;
  }
  .term_list--item a .txt {
    display: inline-block;
    transform: scale(.9);
  }
  @media screen and (min-width: 961px) {
    .term_list--item a:hover::before {
      animation-name: slide-to_rgt;
    }
  }

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

  /* --- sns_list ---  */
  .sns_list {
    column-gap: 24px;
  }
  .sns_list--item a,
  .sns_list--item svg {
    display: block;
  }
  @media screen and (max-width: 560px) {
    .sns_list {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 40px;
    }
  }
  @media screen and (max-width: 374px) {
    .sns_list {
      column-gap: 24px;
    }
  }

  /* --- sd_btn_list ---  */
  .sd_btn_list--item_in {
    height: 80px;
    column-gap: 32px;
  }
  .sd_btn_list--item .sd_btn_list--item_in::before {
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.86,0,0.07,1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_rgt;
    transform: translateX(-110%);
  }
  @media screen and (min-width: 961px) {
    .sd_btn_list--item:hover .sd_btn_list--item_in::before {
      animation-name: slide-to_rgt;
    }
  }
  @media screen and (max-width: 1280px) {
    .sd_btn_list--item_in {
      column-gap: 24px;
    }
  }
  @media screen and (max-width: 1064px) {
    .sd_btn_list--item_in {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      height: 96px;
    }
    .sd_btn_list--item_in img {
      width: 120px;
      margin-bottom: 12px;
    }
    .sd_btn_list--item_in .txt {
      line-height: 1em;
    }
  }
  @media screen and (max-width: 960px) {
    .sd_btn_list.clm-3 {
      gap: 16px;
    }
    .sd_btn_list.clm-3 > .sd_btn_list--item {
      width: calc(100% / 3 - 11px);
    }
  }
  @media screen and (max-width: 560px) {
    .sd_btn_list.clm-3 {
      gap: 8px;
    }
    .sd_btn_list.clm-3 > .sd_btn_list--item {
      width: calc(100% / 3 - 6px);
    }
    .sd_btn_list--item a {
      padding-left: 12px;
      padding-right: 12px;
    }
    .sd_btn_list--item_in {
      height: 88px;
    }
    .sd_btn_list--item_in .txt {
      font-size: 79%;
    }
  }
  @media screen and (max-width: 413px) {
    .sd_btn_list--item_in .txt {
      font-size: 71%;
    }
  }
  @media screen and (max-width: 374px) {
    .sd_btn_list--item_in img {
      margin-bottom: 8px;
    }
    .sd_btn_list--item_in .txt {
      text-align: center;
      line-height: 1.4em;
    }
  }

/* ico
*************************************************** */
  .ico {
    position: relative;
    width: 24px;
    height: 24px;
  }

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

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

  /* --- ico-batsu ---  */
  .ico-batsu::before,
  .ico-batsu::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 25%;
    width: 50%;
    height: 2px;
  }
  .ico-batsu::before {
    transform: rotate(45deg);
  }
  .ico-batsu::after {
    transform: rotate(-45deg);
  }

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

  /* --- btn-def ---- */
  .btn-def {
    width: 200px;
    max-width: 100%;
  }
  .btn-def.ctr,
  .btn-def.lft {
    margin-right: auto;
  }
  .btn-def.ctr,
  .btn-def.rgt {
    margin-left: auto;
  }
  .btn-def .btn--in {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .btn-def .line {
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 1;
    width: 30px;
    height: 1px;
    pointer-events: none;
  }
  .btn-def .line::before,
  .btn-def .bg::before {
    transform: translateX(-110%);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.86,0,0.07,1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_rgt;
  }
  .btn-def .line::before {
    animation-duration: .6s;
  }
  @media screen and (min-width: 961px) {
    .hov_area:hover .btn-def .txt,
    .btn-def:hover .txt {
      letter-spacing: .1em;
    }
    .hov_area:hover .btn-def .line::before,
    .hov_area:hover .btn-def .bg::before,
    .btn-def:hover .line::before,
    .btn-def:hover .bg::before {
      animation-name: slide-to_rgt;
    }
  }

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

/* lr_bloc
**************************************** */
  .lr_bloc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 64px;
  }
  .lr_bloc:not(:last-child) {
    margin-bottom: 80px;
  }
  .lr_bloc:nth-of-type(even) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .lr_bloc .imgarea {
    max-width: 55%;
  }
  .lr_bloc .txtarea {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }
  @media screen and (max-width: 1064px) {
    .lr_bloc,
    .lr_bloc:nth-of-type(even) {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 0px;
    }
    .lr_bloc .imgarea {
      width: 80%;
      max-width: 100%;
      text-align: center;
      margin-bottom: 40px;
      margin-left: auto;
      margin-right: auto;
    }
    .lr_bloc .txtarea {
      width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .lr_bloc:not(:last-child) {
      margin-bottom: 48px;
    }
    .lr_bloc .imgarea {
      width: 100%;
      margin-bottom: 24px;
    }
  }

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

/* scroll_line
*************************************************** */
  .scroll_line {
    position: absolute;
    top: -32px;
    left: calc(1em + 32px);
    width: 100vh;
    transform-origin: left top;
    line-height: 1em;
    letter-spacing: .2em;
    z-index: 1;
    opacity: 0;
    transform: rotate(90deg) translateY(-8px);
  }
  .scroll_line a::before {
    z-index: 1;
  }
  .scroll_line .line {
    width: 100px;
    height: 1px;
    margin-left: 8px;
    overflow: hidden;
  }
  .scroll_line .line::before {
    transform: translateX(-110%);
    animation: scroll_line_mov 2s cubic-bezier(1,0,0,1) 0s infinite forwards;
    animation-fill-mode: both;
  }
  .loaded .scroll_line {
    transition-delay: 2s;
    opacity: 1;
    transform: rotate(90deg) translateY(0);
  }
  .loaded.min .scroll_line {
    transition-delay: 1.8s;
  }
  @media screen and (max-width: 1280px) {
    .scroll_line {
      width: 64.25vw;
    }
  }
  @media screen and (max-width: 768px) {
    .scroll_line {
      left: calc(1em + 24px);
      top: -32px;
      width: 100vh;
    }
    .scroll_line .line {
      width: 56px;
    }
  }
  @media screen and (max-width: 560px) {
    .scroll_line .fnt-sm {
      font-size: 79%;
    }
  }


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

    PLUGIN

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

/* slick
*************************************************** */
  .slick-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
  }


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

    FIX_BTNS

############################################################################## */
  .fix_btns {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    transform: translateY(8px);
    opacity: 0;
  }
  .fix_btns.is_show {
    transform: translateY(0);
    opacity: 1;
  }
  .fix_btn {
    width: 50%;
  }
  .fix_btn:not(:last-child) {
    border-right-width: 1px;
    border-right-style: solid;
  }
  .fix_btn a {
    padding-top: 8px;
    padding-bottom: 8px;
    row-gap: 8px;
  }
  @media screen and (max-width: 374px) {
    .fix_btn a .fnt-sm {
      font-size: 86%;
    }
  }

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

    HEADER

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

/* header
**************************************** */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 80px;
    padding-left: 64px;
    padding-right: 64px;
  }
  .header::before {
    background-color: #a8a8a8;
  }
  .header--logo {
    position: absolute;
    top: 32px;
    left: 64px;
    width: 350px;
  }
  .header--logo img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .header--logo .no_scrolled {
    opacity: 1;
    transform: translateY(0);
  }
  .header--logo .is_scrolled {
    top: -18px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }
  .scrolled .header::before {
    opacity: .95;
  }
  .scrolled .header--logo .no_scrolled {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }
  .scrolled .header--logo .is_scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  @media screen and (max-width: 1280px) {
    .header {
      height: 64px;
      background-color: transparent;
      padding-left: 24px;
      padding-right: 24px;
    }
    .header--logo {
      top: 32px;
      left: 32px;
    }
    .header--logo img.no_scrolled {
      width: 180px;
      transform: translateY(-16px);
    }
    .scrolled .header--logo img.no_scrolled {
      transform: translateY(-24px);
    }
    .header--logo img.is_scrolled {
      width: 252px;
    }
    .header--logo.v2 img.is_scrolled {
      width: 190px;
    }
  }
  @media screen and (max-width: 960px) {
    .header::before {
      content: none;
    }
    .header--logo {
      left: 50%;
      width: 180px;
      transform: translateX(-50%);
    }
    .subpage .header--logo,
    .subpage .header--logo img.no_scrolled {
      width: 280px;
    }
    .subpage .header--logo {
      top: 40px;
      left: 40px;
      transform: translateX(0);
    }
  }
  @media screen and (max-width: 560px) {
    .header {
      padding-left: 16px;
      padding-right: 16px;
    }
    .subpage .header--logo,
    .subpage .header--logo img.no_scrolled {
      width: 200px;
    }
    .subpage .header--logo {
      top: 32px;
      left: 16px;
      transform: translateX(0);
    }
  }

/* links__btn
*************************************************** */
  .header .links__btn,
  .frame_btn_list {
    column-gap: 24px;
  }
  .frame_btn_list {
    row-gap: 24px;
    margin-right: 40px;
  }
  .frame_btn_list--item a {
    display: block;
    width: 130px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-width: 1px;
    border-style: solid;
  }
  .frame_btn_list--item a::before {
    transform: translateX(-110%);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.86,0,0.07,1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_rgt;
  }
  @media screen and (min-width: 961px) {
    .frame_btn_list--item a:hover::before {
      animation-name: slide-to_rgt;
    }
  }
  @media screen and (max-width: 1280px) {
    .frame_btn_list {
      margin-right: 0;
      column-gap: 12px;
    }
  }
  @media screen and (max-width: 560px) {
    .frame_btn_list--item a {
      padding-top: 22px;
      padding-bottom: 22px;
      font-size: 93%;
    }
  }

/* 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 #222;
    border-right: 1px solid #222;
    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;
  }
  .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: #222;
  }
  .gnav--links .gnav_list--item_txt .line::after {
    background-color: #f4f4f4;
    animation-duration: .4s;
  }
  .gnav--links .gnav_list--item-furniture .gnav_list--item_in.hov-op60 {
    opacity: 1 !important;
  }
  .gnav--links .gnav_list--item-furniture .gnav_list--item_txt a {
    pointer-events: none;
  }
  .ico_img {
    width: 40px;
    height: 40px;
    background-color: #222;
    margin-right: 14px;
    border-radius: 100px;
  }


  .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);
  }
  .gnav,
  .gnav a {
    color: #fff;
  }
  .header.active .gnav {
    opacity: 1;
    pointer-events: all;
  }
  .gnav--in,
  .gnav--img_area {
    width: 50%;
    height: 100%;
  }
  .gnav--in {
    overflow-y: scroll;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .gnav--img_area .bg_img {
    background-image: url(../images/common/nav_bg_img.jpg);
  }
  .gnav--txt_list span {
    font-size: 93%;
  }
  .gnav--info {
    column-gap: 60px;
  }
  .gnav--info > * {
    width: 250px;
  }
  .gnav--txt_area .frame_btn_list {
    margin-right: 0;
  }
  .gnav--txt_area .frame_btn_list--item a {
    width: 100%;
    font-size: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .gnav--txt_area .free_dial a {
    column-gap: 6px;
  }

  /* --- gnav--sns_list --- */
  .gnav .sns_list--item a {
    background-color: #fff;
    border-radius: 100%;
  }
  .gnav .sns_list--item svg {
    transform: scale(.5);
  }
  .gnav .sns_list .fb_ico-cir {
    display: none;
  }

  /* gnav - frame_btn_list */
  .gnav .frame_btn_list--item {
    width: 100%;
  }

  /* --- 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__recaptcha {
    white-space: nowrap;
    margin-top: auto;
  }

  /* --- gnav--links --- */
  .gnav--links .gnav_list {
    display: block;
  }
  .gnav--links .gnav_list > .gnav_list--item {
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .gnav--links .gnav_list > .gnav_list--item:first-child {
    border-top-width: 1px;
    border-top-style: solid;
  }
  .gnav--links .gnav_list--item_txt {
    display: block;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 24px;
    padding-right: 24px;
    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: #fff;
    transform-origin: 0 0;
  }
  .gnav--links .arrow::after {
    content: '';
    position: absolute;
    z-index: -10;
    transform: translate(-50%,-50%);
    width: 16px;
    height: 16px;
    border-radius: 100px;
  }
  .gnav--links .arrow.active::before {
    transform: rotate(315deg) translate(-50%,-50%);
  }

  .gnav_sub {
    opacity: 1;
    transition: none;
    padding-bottom: 16px;
    margin-top: -8px;
    overflow: hidden;
  }
  .gnav_sub a {
    color: #fff;
  }
  .gnav_sub_list {
    display: block;
    width: 100%;
  }
  .header.active .gnav_sub_list {
    pointer-events: all;
  }
  .gnav_sub_list--item {
    padding-left: 24px;
    column-gap: 12px;
  }
  .gnav_sub_list--item:not(:last-child) {
    margin-bottom: 12px;
  }
  .gnav_sub_list--item::before {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
  }
  .gnav_sub_list p,
  .gnav_sub_list a {
    display: block;
    text-align: left;
    line-height: 1.4em;
    letter-spacing: .05em;
  }
  .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;
  }
  @media screen and (min-width: 561px) {
    .gnav--links .arrow {
      display: none;
    }
    .gnav--copy__recaptcha .copy_txt {
      display: inline-block;
      position: relative;
      left: 50%;
      transform: translateX(-60%) scale(.8);
    }
  }
  @media screen and (min-width: 561px) and (max-width: 768px) {
    .gnav--in {
      padding-left: 0;
      padding-right: 0;
    }
    .gnav--info {
      column-gap: 48px;
    }
    .gnav--info > * {
      width: 220px;
    }
    .gnav--links .gnav_list--item_txt {
      padding-left: 16px;
      padding-right: 16px;
    }
    .gnav--copy__recaptcha {
      position: absolute;
      bottom: 0;
      left: 0;
    }
  }
  @media screen and (min-width: 1201px) and (max-width: 1480px) {
    .gnav--in {
      padding-left: 0;
      padding-right: 0;
    }
    .gnav--info {
      column-gap: 48px;
    }
    .gnav--copy__recaptcha {
      position: absolute;
      bottom: 0;
      left: 0;
    }
  }
  @media screen and (max-width: 1200px) {
    .gnav--img_area {
      display: none;
    }
    .gnav--in {
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .gnav_sub a {
      font-size: 85%;
    }
    .gnav_sub_list--item {
      column-gap: 8px;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav--in {
      position: relative;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      padding-bottom: 0;
    }
    .gnav--info > * {
      width: 100%;
    }
    .gnav--logo          { order: 1; }
    .gnav .free_dial     { order: 2; }
    .gnav .time_list     { order: 3; }
    .gnav .frame_btns    { order: 4; }
    .gnav .gnav_sns_list { order: 5; }
    .gnav--txt_area {
      position: static;
      margin-bottom: 32px;
    }
    .gnav .gnav--logo {
      margin-bottom: 28px;
    }
    .gnav .gnav--logo .logo-slu {
      width: 239px;
      margin-top: 24px;
    }
    .gnav .free_dial {
      margin-bottom: 28px;
    }
    .gnav .free_dial .head4 {
      font-size: 171%;
    }
    .gnav .time_list {
      column-gap: 12px;
      row-gap: 4px;
      margin-bottom: 28px;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .gnav .frame_btns {
      margin-bottom: 32px;
    }
    .gnav--links .gnav_list--item_in {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .gnav--copy__recaptcha {
      margin-top: 32px;
      height: 80px;
      text-align: center;
    }
    .gnav--copy__recaptcha::before {
      width: 100vw;
      left: 50%;
      transform: translateX(-50%);
    }
    .gnav--copy__recaptcha .copy_txt {
      margin-bottom: 8px;
    }
    .gnav_sub {
      display: none;
    }
    .gnav_sub a {
      font-size: 100%;
    }
  }
  @media screen and (max-width: 413px) {
    .gnav--in {
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media screen and (max-width: 374px) {
    .gnav--in {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

  /* --- gnav_btn --- */
  .gnav_btn {
    width: 80px;
    height: 80px;
    z-index: 9999;
  }
  .gnav_btn::before {
    opacity: 0;
  }
  .gnav_btn--in {
    line-height: 1em;
    width: 100%;
  }
  .gnav_btn--lines {
    position: relative;
    width: 75%;
    padding-top: 40%;
    margin-bottom: 8px;
    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: #fff;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: calc(50% - 1px);
    width: 100%;
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
    width: 100%;
  }
  .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 {
    display: block;
  }
  @media screen and (min-width: 961px) {
    .active .gnav_btn {
      transform: translateY(16px);
    }
  }
  @media screen and (max-width: 1280px) {
    .gnav_btn {
      width: 64px;
      height: 64px;
    }
    .gnav_btn--lines {
      width: 60%;
      padding-top: 30%;
    }
  }
  @media screen and (max-width: 960px) {
    /* --- gnav_btn --- */
    .gnav_btn {
      top: 16px;
      right: 16px;
      width: 56px;
      height: 56px;
    }
    .gnav_btn--lines {
      width: 50%;
      padding-top: 26.5%;
      margin-top: 2px;
    }
    .gnav_btn::before {
      opacity: 1;
    }
    .gnav_btn--txt {
      font-size: 55%;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav_btn {
      top: 0px;
      right: 0px;
    }
  }
  @media screen and (max-width: 320px) {
    .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

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

/* foot_bnrs
*************************************************** */
  .foot_bnrs .bnr_list {
    gap: 8px;
  }
  .foot_bnrs .bnr_list--item {
    height: 17.1875vw;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }
  .foot_bnrs .bnr_list--item-warranty .bg_img {
    background-image: url(../images/common/warranty-bg_img.jpg);
  }
  .foot_bnrs .bnr_list--item-company .bg_img {
    background-image: url(../images/common/company-bg_img.jpg);
  }
  .foot_bnrs .bnr_list--item-furniture .bg_img {
    background-image: url(../images/common/furniture-bg_img.jpg);
  }
  @media screen and (min-width: 961px) {
    .foot_bnrs .bnr_list--item:hover .sect_ttl {
      text-shadow: 0 0 0 8px rgba(0,0,0,.5);
    }
    .foot_bnrs .bnr_list--item:hover .bg_img {
      transform: scale(1.05);
      filter: blur(8px);
      opacity: .2;
    }
  }
  @media screen and (max-width: 1064px) {
    .foot_bnrs .bnr_list--item {
      height: 22vw;
    }
  }
  @media screen and (max-width: 960px) {
    .foot_bnrs .bnr_list--item .sect_ttl {
      text-shadow: 0 0 0 8px rgba(255,255,255,.5);
    }
    .foot_bnrs .bnr_list--item .bg_img {
      opacity: 1;
      filter: blur(0);
    }
  }
  @media screen and (max-width: 768px) {
    .foot_bnrs .bnr_list--item {
      width: 100%;
      height: 52vw;
      -webkit-box-flex: inherit;
      -ms-flex: inherit;
      flex: inherit;
    }
  }
  @media screen and (min-width: 561px) and (max-width: 768px) {
    .foot_bnrs .bnr_list--item .xspc-none-inline {
      display: inline;
    }
    .foot_bnrs .bnr_list--item .xspc-show {
      display: none;
    }
  }

/* footer
*************************************************** */
  .footer {
  }
  .footer .comp_area {
    column-gap: 64px;
  }
  .footer .links_area .sub_list {
    column-gap: 40px;
  }
  .footer .sns_list--item .fb_ico-mark {
    display: none;
  }

  .page_top {
    position: absolute;
    z-index: 1;
    top: calc(-70px / 2);
    right: 64px;
    width: 70px;
    height: 70px;
    border-radius: 100%;
  }
  @keyframes page_top_hov {
    0% { transform: translateY(0); opacity: 1; }
    49% { transform: translateY(-8px); opacity: 0; }
    50% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @media screen and (min-width: 961px) {
    .page_top:hover .ico-arrow {
      animation-duration: .8s;
      animation-timing-function: cubic-bezier(0.86,0,0.07,1);
      animation-delay: 0s;
      animation-iteration-count: infinite;
      animation-fill-mode: forwards;
      animation-name: page_top_hov;
    }
  }
  @media screen and (max-width: 1480px) {
    .footer .comp_area {
      column-gap: 40px;
    }
    .footer .comp_area .logo-slu img {
      width: 140px;
    }
    .footer .comp_area .logo-gaw_nagoya img {
      width: 380px;
    }
  }
  @media screen and (max-width: 1280px) {
    .footer .inner {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .footer .comp_area {
      margin-bottom: 40px;
    }
    .footer .foot_sns_list .sns_list {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .footer .links_area .sub_list {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  @media screen and (max-width: 768px) {
    .footer .comp_area .logo-slu img {
      width: 120px;
    }
    .footer .comp_area .logo-gaw_nagoya {
      margin-bottom: 16px;
    }
    .footer .comp_area .logo-gaw_nagoya img {
      width: 320px;
    }
    .page_top {
      top: calc(-56px / 2);
      right: 24px;
      width: 56px;
      height: 56px;
    }
  }
  @media screen and (max-width: 560px) {
    .footer .comp_area {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 24px;
    }
    .footer .comp_area .logo-slu {
      margin-bottom: 16px;
    }
    .footer .foot_sns_list {
      margin-bottom: 24px;
    }
    .footer .links_area .sub_list {
      margin-bottom: 8px;
      column-gap: 16px;
    }
    .footer--copyright {
      padding-bottom: 53px;
    }
    .footer--copyright small {
      font-size: 71%;
      margin-bottom: 8px;
    }
    .page_top {
      top: calc(-48px / 2);
      right: 16px;
      width: 48px;
      height: 48px;
    }
  }
  @media screen and (max-width: 413px) {
    .footer--copyright small {
      font-size: 67%;
    }
  }

/* COPY
*************************************************** */
  .footer--copyright {
    border-top-width: 1px;
    border-top-style: solid;
  }
  .footer .recaptcha_txt {
    display: block;
    font-size: 67%;
    line-height: 1.6em;
  }
  .grecaptcha-badge {
    visibility: hidden;
  }


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

    INDEX

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

/* hero
*************************************************** */
  .hero,
  .hero--img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero {
    height: 100vh;
  }
  .hero--img {
    overflow: hidden;
    z-index: 0;
  }
  .hero--img::before {
    z-index: 1;
    opacity: .2;
  }
  .hero--catch {
    position: absolute;
    top: 50%;
    left: 64px;
    z-index: 1;
    transform: translateY(-50%);
  }
  .hero--img video {
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translateX(-50%) translateY(-50%);
  }
  .hero--img video.sp_mov {
    max-height: 100%;
  }
  .hero--balloon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    padding-top: 60px;
    padding-bottom: 32px;
    transform: translate(-50%,-50%);
  }
  .hero--balloon .free_dial a {
    column-gap: 12px;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .hero--balloon .free_dial .label {
    transform: translateY(-2px);
  }
  .hero--balloon .free_dial .tel_num {
    font-size: 240%;
  }
  .hero--balloon .contact_btn a {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero--balloon .contact_btn a::before {
    transform: translateX(-110%);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.86,0,0.07,1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_rgt;
  }
  .hero--balloon .contact_btn .txt {
    white-space: nowrap;
  }
  .hero--balloon .contact_btn .ico-arrow {
    position: absolute;
    top: 50%;
    left: calc(100% + 14px);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
  }
  .hero--balloon .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
  }
  .hero--balloon .btn-close .ico-batsu {
    width: 20px;
    height: 20px;
  }
  .hero--balloon.is_hide {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%,-40%);;
  }

  @keyframes hero_mov {
    0% { translate: -32px 0; }
    100% { translate: 0 0; }
  }
  @keyframes hero_mov-sm {
    0% { translate: -16px 0; }
    100% { translate: 0 0; }
  }
  @keyframes hero_mov-xs {
    0% { translate: -8px 0; }
    100% { translate: 0 0; }
  }
  .hero .slick-list,
  .hero .slick-track {
    height: 100%;
  }
  .hero .hero_slider {
    height: 100%;
  }
  .hero .hero_slider--item img {
    scale: 1.08;
    object-fit: cover;
  }
  .hero .hero_slider--item.add-anm img {
    animation-duration: 12s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: hero_mov;
  }
  @media screen and (min-width: 961px) {
    .hero--balloon .contact_btn a:hover::before {
      animation-name: slide-to_rgt;
    }
  }
  @media (max-width: 1680px) {
    .hero .hero_slider--item.add-anm img {
      animation-name: hero_mov-sm;
    }
  }
  @media (max-width: 1064px) {
    .hero .hero_slider--item.add-anm img {
      animation-name: hero_mov-xs;
    }
  }
  @media screen and (max-width: 1280px) {
    .hero {
      height: 64.25vw;
    }
  }
  @media screen and (max-width: 1064px) {
    .hero--catch {
      transform: translate(-50%,-50%) scale(.8);
    }
  }
  @media screen and (max-width: 960px) {
    .hero {
      height: 100vh;
    }
    .hero--catch {
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      white-space: nowrap;
      font-feature-settings: 'pwid';
      left: 50%;
      transform: translate(-50%,-50%);
    }
    .hero--balloon {
      padding-top: 48px;
      padding-bottom: 24px;
    }
    .hero--balloon .logo img {
      width: 246px;
    }
    .hero--balloon .logo,
    .hero--balloon .free_dial {
      padding-left: 24px;
      padding-right: 24px;
    }
    .hero--balloon .free_dial .label {
      font-size: 140%;
    }
    .hero--balloon .free_dial .tel_num {
      font-size: 200%;
    }
  }
  @media screen and (max-width: 560px) {
    .hero--balloon .logo img {
      width: 196px;
    }
    .hero--balloon .free_dial a {
      column-gap: 8px;
    }
    .hero--balloon .free_dial .label {
      font-size: 128%;
    }
    .hero--balloon .free_dial .tel_num {
      font-size: 180%;
    }
  }
  @media screen and (max-width: 413px) {
    .hero--img video.sp_mov {
      max-height: 111%;
    }
    .hero--balloon,
    .hero--catch {
      top: 58%;
    }
  }

/* home_news
*************************************************** */
  .home_news {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 32px;
    padding-right: 32px;
  }
  .home_news .ttl {
    padding-right: 32px;
    margin-right: 32px;
    border-right-width: 1px;
    border-right-style: solid;
  }
  .home_news .news_list {
    width: calc(100% - 280px);
  }
  .home_news .news_list .slick-list {
    overflow: hidden;
  }
  .home_news .news_list .post {
    padding-bottom: 12px;
    padding-top: 10px;
    border-bottom: none;
  }
  .home_news .news_list .post--ttl {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  @media screen and (max-width: 1280px) {
    .hero {
      margin-bottom: 96px;
    }
    .home_news {
      height: 96px;
      bottom: auto;
      bottom: inherit;
      top: 100%;
    }
    .home_news::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      z-index: -1;
      width: 100vw;
      height: 100%;
      transform: translateX(-50%);
      background-color: #fff;
    }
  }
  @media screen and (max-width: 960px) {
    .hero {
      margin-bottom: 134px;
    }
    .home_news {
      height: 134px;
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 0;
      padding-right: 0;
    }
    .home_news .ttl {
      width: 100%;
      padding-right: 0;
      margin-right: 0;
      border: none;
    }
  }

/* award
*************************************************** */
  .award_list--item_in {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  @media screen and (max-width: 1280px) {
    .award_list.clm-2 {
      column-gap: 40px;
    }
    .award_list.clm-2 > * {
      width: calc(50% - 20px);
    }
  }
  @media screen and (max-width: 960px) {
    .award_list.clm-2 {
      column-gap: 24px;
    }
    .award_list.clm-2 > * {
      width: calc(50% - 12px);
    }
  }
  @media screen and (max-width: 764px) {
    .award_list.clm-2 {
      row-gap: 12px;
    }
    .award_list.clm-2 > * {
      width: 100%;
    }
  }

/* home_works
**************************************** */
  .GITheWall ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .GITheWall ul li {
    display: inline-block;
    margin: 10px 2px 0 2px;
    vertical-align: top;
    width: calc(20% - 16px);
  }
  .GITheWall ul li.GI_TW_Selected_Row {
    -webkit-transition: margin-bottom 0.3s ease-in;
    -moz-transition: margin-bottom 0.3s ease-in;
    -o-transition: margin-bottom 0.3s ease-in;
    transition: margin-bottom 0.3s ease-in;
  }
  .GITheWall ul li .img {
    width: 100%;
    padding-top: 66.762%;
  }

  .GI_TW_expander {
    position: absolute;
    z-index: 1;
    top: 0;
    background: #c0c0c0;
    left: 0;
    width: 100%;
    margin-top: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-in;
    -moz-transition: height 0.3s ease-in;
    -o-transition: height 0.3s ease-in;
    transition: height 0.3s ease-in;
  }
  .GI_TW_expander.animating {
    overflow: hidden !important;
  }
  .GI_TW_expander.opened {
    overflow: visible;
  }
  /*.GI_TW_expander .GI_TW_pointer {
    position: absolute;
    margin-left: -20px;
    margin-top: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #c0c0c0;
    -webkit-transition: left 0.3s ease-in;
    -moz-transition: left 0.3s ease-in;
    -o-transition: left 0.3s ease-in;
    transition: left 0.3s ease-in;
  }*/
  .GI_TW_expander .GI_TW_expander-inner {
    width: 100%;
    height: 560px;
    padding-top: 48px;
    padding-bottom: 48px;
    margin: 0 auto;
    overflow: hidden;
  }
  .GI_TW_expander .GI_TW_expander-inner .GI_TW_fullimg {
    position: relative;
    width: 100%;
    height: 580px;
    margin: 10px 0 0;
    text-align: center;
    overflow: hidden;
  }
  .GI_TW_expander .GI_TW_expander-inner .GI_TW_fullimg img {
    position: relative;
  }
  .GI_TW_expander .GI_TW_Controls {
    z-index: 1;
  }
  .GI_TW_expander .GI_TW_close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    border: 1px solid #fff;
    z-index: 1;
  }
  .GI_TW_expander .GI_TW_close,
  .GI_TW_expander .GI_TW_close::before,
  .GI_TW_expander .GI_TW_close::after {
    transition: .4s all;
  }
  .GI_TW_expander .GI_TW_close::before,
  .GI_TW_expander .GI_TW_close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 25%);
    width: 50%;
    height: 1px;
    background-color: #fff;
  }
  .GI_TW_expander .GI_TW_close::before {
    transform: rotate(45deg);
  }
  .GI_TW_expander .GI_TW_close::after {
    transform: rotate(-45deg);
  }
  .GI_TW_expander .GI_TW_arrow {
    position: absolute;
    top: calc(50% - 24px);
    width: 48px;
    height: 48px;
    cursor: pointer;
  }
  .GI_TW_expander .GI_TW_arrow::before {
    content: '';
    position: absolute;
    top: calc(50% - 16px / 2);
    left: calc(50% - 16px / 2);
    width: 16px;
    height: 16px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .GI_TW_expander .GI_TW_arrow.GI_TW_hidden {
    display: none;
  }
  .GI_TW_expander .GI_TW_arrow.GI_TW_next {
    right: 30px;
  }
  .GI_TW_expander .GI_TW_arrow.GI_TW_next::before {
    transform: rotate(45deg);
  }
  .GI_TW_expander .GI_TW_arrow.GI_TW_prev {
    left: 30px;
  }
  .GI_TW_expander .GI_TW_arrow.GI_TW_prev::before {
    transform: rotate(-135deg);
  }
  .GI_TW_expander .GI_TW_loading {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    box-shadow: 0 0 1px #cccccc, 15px 30px 1px #cccccc, -15px 30px 1px #cccccc;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0;
    -webkit-animation: loader 0.5s infinite ease-in-out both;
    -moz-animation: loader 0.5s infinite ease-in-out both;
    -ms-animation: loader 0.5s infinite ease-in-out both;
    -o-animation: loader 0.5s infinite ease-in-out both;
    animation: loader 0.5s infinite ease-in-out both;
  }
  /* --- custom ---  */
  .inline_bloc {
    display: none;
  }
  .GI_TW_expander .GI_TW_expander-inner .inner {
    column-gap: 80px;
  }
  .GI_TW_expander .GI_TW_expander-inner .inner .img_area,
  .GI_TW_expander .GI_TW_expander-inner .inner .txt_area {
    opacity: 0;
    transform: translateY(16px);
  }
  .GI_TW_expander.opened .GI_TW_expander-inner .inner .txt_area {
    transition-delay: .2s;
  }
  .GI_TW_expander.opened .GI_TW_expander-inner .inner .img_area,
  .GI_TW_expander.opened .GI_TW_expander-inner .inner .txt_area {
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: fade-to_top;
    animation-delay: .3s;
  }
  @media screen and (min-width: 961px) {
    .GITheWall ul li:hover .bg_img {
      transform: scale(1.025);
      opacity: .5;
    }
    .GI_TW_expander .GI_TW_arrow:hover {
      animation-duration: .6s;
      animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
      animation-delay: 0s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-name: fade-to_top;
      animation-delay: 0s;
    }
    .GI_TW_expander .GI_TW_arrow.GI_TW_prev:hover {
      animation-name: hov_arrow-prev;
    }
    .GI_TW_expander .GI_TW_arrow.GI_TW_next:hover {
      animation-name: hov_arrow-next;
    }
    .GI_TW_expander .GI_TW_close:hover {
      background-color: rgba(255,255,255,.15);
    }
    .GI_TW_expander .GI_TW_close:hover::before {
      transform: rotate(-135deg);
    }
    .GI_TW_expander .GI_TW_close:hover::after {
      transform: rotate(-225deg);
    }
  }
  @media screen and (max-width: 1480px) {
    .GI_TW_expander .GI_TW_expander-inner .inner {
      column-gap: 48px;
    }
    .GI_TW_expander.opened .GI_TW_expander-inner .inner .img_area img {
      width: 640px;
    }
  }
  @media screen and (max-width: 1280px) {
    .GI_TW_expander.opened .GI_TW_expander-inner .inner .img_area img {
      width: 520px;
    }
    .GI_TW_expander .GI_TW_expander-inner .inner {
      column-gap: 40px;
    }
  }
  @media screen and (max-width: 1064px) {
    .GI_TW_expander .GI_TW_expander-inner .inner {
      row-gap: 24px;
    }
  }
  @media screen and (max-width: 768px) {
    .GI_TW_expander .GI_TW_expander-inner {
      padding-left: 32px;
      padding-right: 32px;
    }
    .GI_TW_expander .GI_TW_expander-inner .inner {
      row-gap: 16px;
    }
    .GI_TW_expander .GI_TW_arrow.GI_TW_next {
      right: 0;
    }
    .GI_TW_expander .GI_TW_arrow.GI_TW_prev {
      left: 0;
    }
  }
  @media screen and (max-width: 640px) {
    .GI_TW_expander .GI_TW_close {
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
    }
  }
  @media screen and (max-width: 560px) {
    .GITheWall ul li {
      margin: 6px 0 0 0;
      width: calc(100% / 3 - 6px);
    }
    .GI_TW_expander .GI_TW_expander-inner {
      padding-top: 32px;
      padding-bottom: 32px;
    }
    .GI_TW_expander .GI_TW_close {
      top: 0;
      right: 0;
      background-color: #fff;
    }
    .GI_TW_expander .GI_TW_close::before,
    .GI_TW_expander .GI_TW_close::after {
      background-color: #000;
    }
  }

/* home_movs
**************************************** */
  .home_movs .sect_pdg {
    padding-top: 16px;
    padding-bottom: 80px;
  }
  .home_movs .mov_list {
    column-gap: 32px;
    row-gap: 24px;
  }
  .home_movs .mov_list--item .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    translate: -50% -50%;
    width: 45px;
    height: 45px;
  }
  .home_movs .mov_list--item .arrow::before {
    border-radius: 100vmax;
    opacity: .5;
  }
  .home_movs .mov_list--item .arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    translate: -50% -50%;
    width: 16px;
    height: 18px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  @media (min-width: 961px) {
    .home_movs .mov_list.v2 .mov_list--item {
      width: calc(100% / 3 - 22px);
    }
  }
  @media (min-width: 561px) and (max-width: 960px) {
    .home_movs .mov_list.v2 {
      column-gap: 12px;
      row-gap: 12px;
    }
    .home_movs .mov_list.v2 .mov_list--item {
      width: calc(100% / 3 - 8px);
    }
  }
  @media (max-width: 560px) {
    .home_movs .mov_list.v2 {
      column-gap: 8px;
      row-gap: 8px;
    }
    .home_movs .mov_list.v2 .mov_list--item {
      width: calc(50% - 4px);
    }
    .home_movs .mov_list.v2 .mov_list--item .arrow {
      scale: .75;
    }
  }
  @media (any-hover: hover) {
    .home_movs .mov_list--item:hover img {
      transform: scale(1.025);
      opacity: .5;
    }
    .home_movs .mov_list--item:hover .arrow::before {
      background-color: #ff0000;
      opacity: .9;
      scale: 1.1;
    }
  }
  @media (max-width: 560px) {
    .home_movs .sect_pdg {
      padding-top: 8px;
      padding-bottom: 48px;
    }
    .home_movs .mov_list {
      row-gap: 16px;
    }
  }


/* REASON & SHOW ROOM
*************************************************** */
  .home_sect-clm-2 {
    gap: 8px;
  }
  .home_sect-clm-2 .ttl_area,
  .home_sect-clm-2 .img_area {
    width: calc(50% - 4px);
  }
  .home_sect-clm-2 .bg_img::before {
    transform: translateX(-110%);
  }
  .home_reason .ttl_area .bg_img {
    background-image: url(../images/reason-bg_img.jpg);
  }
  .home_show_room .ttl_area .bg_img {
    background-image: url(../images/show_room-bg_img.jpg);
  }
  .visible.home_sect-clm-2 .bg_img::before {
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-to_rgt;
  }
  @media screen and (min-width: 961px) {
    .home_sect-clm-2 .ttl_area:hover .sect-ttl {
      text-shadow: 0 0 0 8px rgba(0,0,0,.05);
    }
    .home_sect-clm-2 .ttl_area:hover .bg_img {
      transform: scale(1.025);
      filter: blur(10px);
    }
    .home_sect-clm-2 .ttl_area:hover .bg_img::before {
      opacity: .8;
    }
  }
  @media screen and (max-width: 768px) {
    .home_sect-clm-2 {
      gap: 0;
    }
    .home_sect-clm-2 .ttl_area,
    .home_sect-clm-2 .img_area {
      width: 100%;
    }
    .home_sect-clm-2 .ttl_area {
      height: 73.275vw;
      margin-bottom: 8px;
    }
  }
  @media screen and (max-width: 560px) {
    .home_sect-clm-2 .ttl_area .sect_ttl {
      margin-bottom: 24px;
    }
  }

/* home_sns
*************************************************** */
  .home_insta .frame_wrap {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .insta-carousel {
    width: 100%;
    height: 270px;
  }
  .insta-carousel iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 2800px;
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 768px) {
    .home_blog .posts-blog .post:nth-of-type(n+5) {
      display: none;
    }
    .insta-carousel {
      height: 120px;
    }
    .insta-carousel iframe {
      min-width: 1300px;
    }
  }


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

    PAGE

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

/* about
*************************************************** */
  .page-about .about_list {
    row-gap: 80px;
  }
  .page-about .about_list--item {
    border-width: 2px;
    border-style: solid;
  }
  .page-about .about_list--item > * {
    width: 50%;
  }
  .page-about .about_list--item .txt_area {
    padding-left: 64px;
    padding-right: 64px;
  }
  @media screen and (max-width: 1480px) {
    .page-about .about_list--item .ttl_area {
      margin-bottom: 24px;
    }
    .page-about .about_list--item .txt_area {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1280px) {
    .page-about .about_list {
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
    }
  }
  @media screen and (max-width: 1280px) {
    .page-about .about_list {
      gap: 48px;
    }
    .page-about .about_list--item {
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      max-width: calc(50% - 48px / 2);
    }
    .page-about .about_list--item > * {
      width: 100%;
    }
    .page-about .about_list--item .txt_area {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }
  @media screen and (max-width: 1064px) {
    .page-about .about_list {
      gap: 16px;
    }
    .page-about .about_list--item {
      max-width: calc(50% - 16px / 2);
    }
    .page-about .about_list--item .txt_area {
      padding: 24px;
    }
    .page-about .about_list--item .ttl_area {
      margin-bottom: 16px;
    }
  }
  @media screen and (max-width: 768px) {
    .page-about .about_list--item {
      max-width: 100%;
      width: 100%;
    }
  }

/* flow
*************************************************** */
  .page-flow .flow_list {
    row-gap: 80px;
  }
  .page-flow .flow_list--item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    width: 1px;
    height: calc(100% + 80px);
  }
  .page-flow .flow_list--item,
  .page-flow .flow_list--item .num {
    min-height: 150px;
  }
  .page-flow .flow_list--item .num {
    position: absolute;
    left: calc(50% - 120px / 2);
    width: 120px;
    border-bottom-width: 10px;
    border-bottom-style: solid;
  }
  .page-flow .flow_list--item .img_area,
  .page-flow .flow_list--item .txt_area {
    width: 502px;
  }
  .page-flow .flow_list--item-comp .head5 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .page-flow .flow_list--item .txt_area .mgn_txts {
    letter-spacing: .05em;
  }
  .page-flow .flow_list--item-02 .txt_area .mgn_txts {
    letter-spacing: .02em;
  }
  .page-flow .after_maintenance {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .page-flow .wht_box {
    padding: 64px;
  }
  .page-flow .wht_box-info {
    padding-bottom: 40px;
  }
  .page-flow .wht_box .sect_ttl {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  @media screen and (max-width: 960px) {
    .page-flow .flow_list--item::before {
      left: 60px;
    }
    .page-flow .flow_list--item {
      padding-left: 160px;
      -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;
    }
    .page-flow .flow_list--item:last-child::before {
      content: none;
    }
    .page-flow .flow_list--item:last-child {
      padding-left: 0;
    }
    .page-flow .flow_list--item .img_area,
    .page-flow .flow_list--item .txt_area {
      width: 100%;
      max-width: 100%;
    }
    .page-flow .flow_list--item .img_area {
      margin-bottom: 24px;
    }
    .page-flow .flow_list--item .num {
      left: 0;
    }
    .page-flow .flow_list--item:not(:last-child) .head5 {
      margin-bottom: 8px;
    }
  }
  @media screen and (max-width: 768px) {
    .page-flow .flow_list {
      row-gap: 56px;
    }
    .page-flow .flow_list--item,
    .page-flow .flow_list--item .num {
      min-height: 120px;
    }
    .page-flow .flow_list--item {
      padding-left: 120px;
    }
    .page-flow .flow_list--item .num {
      width: 96px;
      border-bottom-width: 8px;
    }
    .page-flow .flow_list--item::before {
      left: 48px;
    }
    .page-flow .flow_list--item:last-child .imgs.clm-3 {
      gap: 8px;
    }
    .page-flow .flow_list--item:last-child .imgs.clm-3 > * {
      width: calc(100% / 3 - 6px);
    }
    .page-flow .wht_box {
      padding: 40px;
    }
    .page-flow .wht_box-info {
      padding-bottom: 24px;
    }
    .page-flow .wht_box .sect_ttl {
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
  }
  @media screen and (max-width: 560px) {
    .page-flow .flow_list {
      row-gap: 40px;
      margin-bottom: 32px;
    }
    .page-flow .flow_list--item,
    .page-flow .flow_list--item .num {
      min-height: 100px;
    }
    .page-flow .flow_list--item {
      padding-left: 104px;
    }
    .page-flow .flow_list--item .num {
      width: 80px;
      border-bottom-width: 6px;
    }
    .page-flow .flow_list--item::before {
      left: 40px;
    }
    .page-flow .wht_box {
      padding-top: 24px;
      padding-bottom: 24px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .page-flow .wht_box-info {
      padding-bottom: 12px;
    }
    .page-flow .wht_box .sect_ttl {
      padding-bottom: 16px;
      margin-bottom: 16px;
    }
  }

/* furniture & talenti
*************************************************** */
  .page_head-full {
    height: 60vw;
    max-height: 1080px;
  }
  .page-furniture .living .bg_img,
  .page-talenti .talenti_bloc .bg_img {
    top: -32px;
    background-image: url(../images/furniture/furniture_main_img-living.jpg);
  }
  .page-talenti .talenti_bloc-casilda .bg_img {
    background-image: url(../images/talenti/casilda_main_img.jpg);
  }
  .page-talenti .talenti_bloc-cleosoft .bg_img {
    background-image: url(../images/talenti/cleosoft_main_img.jpg);
  }
  .page-talenti .talenti_bloc-cottage .bg_img {
    background-image: url(../images/talenti/cottage_main_img.jpg);
  }
  .page_head .sect_ttl span.fnt-en {
    letter-spacing: .1em;
  }
  @media screen and (max-width: 1400px) {
    .page-furniture .ttl_area {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 32px;
    }
    .page-furniture .ttl_area .logo-songdream img {
      width: 220px;
    }
  }
  @media screen and (max-width: 1280px) {
    .page-furniture .ttl_area .logo-slu img {
      width: 240px;
    }
    .page-furniture .ttl_area p {
      width: 100%;
      text-align: center;
      margin-top: 24px;
    }
  }
  @media (max-width: 1064px) {
    .page-talenti .talenti_leed .logo-talenti img {
      width: 220px;
    }
  }
  @media screen and (max-width: 768px) {
    .page-furniture .ttl_area p {
      text-align: left;
    }
    .page-furniture .furniture_imgs img {
      width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .page-furniture .ttl_area {
      margin-bottom: 40px;
    }
    .page-furniture .ttl_area .logo {
      width: 100%;
      text-align: center;
    }
    .page-furniture .ttl_area .logo-slu img {
      width: 200px;
    }
    .page-furniture .ttl_area .logo-songdream {
      margin-top: 16px;
    }
    .page-furniture .ttl_area .logo-songdream img {
      width: 180px;
    }
    .page-furniture .ttl_area p {
      margin-top: 20px;
    }
    .page-furniture .furniture_imgs.clm-2-lgsp {
      gap: 8px;
    }
    .page-furniture .furniture_imgs.clm-2-lgsp > * {
      width: calc(50% - 4px);
    }
    .page-furniture .garden .sd_btns {
      margin-bottom: 40px;
    }
    .page-furniture .living {
      padding-bottom: 0;
    }
    .page-furniture .living .page_head {
      margin-bottom: 32px;
    }
    .page-furniture .living .sd_btns {
      margin-bottom: 24px;
    }
    .page-talenti .talenti_leed .logo-talenti img {
      width: 180px;
    }
  }

/* warranty
*************************************************** */
  .page-warranty .about_warranty .num_list {
    row-gap: 32px;
  }
  .page-warranty .warranty_list .scroll_tbl {
    overflow-x: scroll;
  }
  .page-warranty .warranty_list .scroll_tbl table {
    margin: 0;
  }
  .page-warranty .warranty_list .scroll--cap {
    text-align: right;
    opacity: 0.5;
    font-size: 85%;
  }
  .page-warranty .warranty_list .warranty_tbl {
    table-layout: fixed;
  }
  .page-warranty .warranty_list .warranty_tbl td,
  .page-warranty .warranty_list .warranty_tbl th {
    border-width: 1px;
    border-style: solid;
    border-color: #dcdcdc;
    vertical-align: middle;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.6em;
    height: 110px;
    white-space: nowrap;
  }
  .page-warranty .warranty_list .warranty_tbl th {
    border-color: #fff;
    height: 50px;
  }
  .page-warranty .warranty_list .warranty_tbl td {
    letter-spacing: .05em;
  }
  .page-warranty .warranty_list .warranty_tbl td:last-child {
    text-align: center;
  }
  .page-warranty .warranty_list .attn_list--item {
    font-size: 100%;
  }
  @media screen and (min-width: 1201px) {
    .page-warranty .warranty_list .scroll--cap {
      display: none;
    }
  }
  @media screen and (max-width: 1400px) {
    .page-warranty .warranty_list .warranty_tbl td,
    .page-warranty .warranty_list .warranty_tbl th {
      height: 90px;
    }
  }
  @media screen and (max-width: 1200px) {
    .page-warranty .warranty_list .warranty_tbl {
      width: 1078px;
    }
  }
  @media screen and (max-width: 960px) {
    .page-warranty .about_warranty .num_list {
      row-gap: 24px;
    }
    .page-warranty .warranty_list .warranty_tbl {
      width: 880px;
    }
    .page-warranty .warranty_list .warranty_tbl th,
    .page-warranty .warranty_list .warranty_tbl td {
      height: 64px;
      padding-top: 8px;
      padding-bottom: 8px;
      padding-left: 12px;
      padding-right: 12px;
    }
    .page-warranty .warranty_list .warranty_tbl th {
      font-size: 85%;
    }
    .page-warranty .warranty_list .warranty_tbl td {
      font-size: 70%;
    }
  }
  @media screen and (max-width: 560px) {
    .page-warranty .about_warranty .num_list {
      row-gap: 20px;
    }
  }

/* company
*************************************************** */
  .page-company .message_list--item {
    width: calc(100% / 3);
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 24px;
    padding-right: 24px;
    border-left-width: 1px;
    border-left-style: solid;
  }
  .page-company .message_list--item:last-child {
    border-right-width: 1px;
    border-right-style: solid;
  }
  .page-company .greeting_bloc:not(:last-child) {
    margin-bottom: 16px;
  }
  .page-company .greeting_bloc .txt_area {
    width: 50%;
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 80px;
    padding-right: 80px;
    min-height: 1000px;
  }
  .page-company .greeting_bloc .name_area {
    column-gap: 24px;
  }
  .page-company .greeting_bloc-ceo .bg_img {
    background-image: url(../images/company/ceo_img-pc.jpg);
  }
  .page-company .greeting_bloc-coo .bg_img {
    background-image: url(../images/company/coo_img-pc.jpg);
  }
  .page-company .staff_list--item .img_area {
    padding-top: 111%;
  }
  .page-company .staff_list--item .img_area .bg_img.no_img {
    background-image: url(../images/common/logo-slu-ver-wht.svg);
    background-size: 40%;
  }
  .page-company .staff_list--item .txt_area {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .page-company .staff_list--item .certification_list {
    row-gap: 8px;
    margin-top: 24px;
  }
  .page-company .scr_imgs {
    height: 300px;
  }
  .page-company .scr_imgs .bg_img {
    background-image: url(../images/company/scr_imgs.jpg);
    background-repeat: repeat-x;
    background-size: auto 300px;
    animation-duration: 100s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-name: scr_imgs;
  }
  .page-company .company .bdr_list {
    width: calc(50% - 32px);
  }
  .page-company .company .bdr_list--item .ttl {
    white-space: nowrap;
  }
  .page-company .company .bg_img {
    left: auto;
    left: inherit;
    right: calc(50% + 32px);
    width: calc(50vw - 32px);
    background-image: url(../images/company/company_img.jpg);
  }
  @media screen and (min-width: 769px) {
    .page-company .greeting_bloc .bg_img .head1 {
      font-size: 229%;
    }
  }
  @media screen and (min-width: 1065px) and (max-width: 1680px) {
    .page-company .greeting_bloc .name_area .logo {
      width: 100%;
      margin-bottom: 8px;
    }
  }
  @media screen and (max-width: 1280px) {
    .page-company .greeting_bloc .txt_area {
      padding-top: 48px;
      padding-bottom: 48px;
      padding-left: 56px;
      padding-right: 56px;
      min-height: 880px;
    }
    .page-company .greeting_bloc-coo .bg_img {
      background-position: center right 20%;
    }
    .page-company .company .bg_img {
      position: static;
      width: 60%;
      padding-top: 58%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 48px;
    }
    .page-company .company .bdr_list {
      width: 100%;
    }
  }
  @media screen and (max-width: 1064px) {
    .page-company .greeting_bloc {
      padding-top: 60vw;
    }
    .page-company .greeting_bloc:not(:last-child) {
      margin-bottom: 8vw;
    }
    .page-company .greeting_bloc .bg_img {
      height: 60vw;
    }
    .page-company .greeting_bloc .bg_img::before {
      opacity: .1;
    }
    .page-company .greeting_bloc .bg_img .head1 {
      position: absolute;
      top: calc(50% - 1.8em);
      text-shadow: 0 0 16px rgba(192,192,192,1);
    }
    .page-company .greeting_bloc-ceo .bg_img {
      background-position: center left 90%;
    }
    .page-company .greeting_bloc-ceo .bg_img .head1 {
      left: 45%;
    }
    .page-company .greeting_bloc-coo .bg_img .head1 {
      right: 50%;
    }
    .page-company .greeting_bloc .txt_area {
      width: 100%;
      min-height: inherit;
      margin-top: -4vw;
    }
    .page-company .greeting_bloc .txt_area::before {
      opacity: 1;
    }
  }
  @media screen and (max-width: 960px) {
    .page-company .message .ttl_area .logo-gaw_nagoya img {
      width: 368px;
    }
    .page-company .message .ttl_area .logo-slu img {
      width: 232px;
    }
    .page-company .message_list--item {
      width: 100%;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 32px;
      border-left: none;
      border-top-width: 1px;
      border-top-style: solid;
      padding-left: 0;
      padding-right: 0;
    }
    .page-company .message_list--item:last-child {
      border-right: none;
      border-bottom-width: 1px;
      border-bottom-style: solid;
    }
    .page-company .message_list--item .ttl_area {
      margin-bottom: 0;
      width: 180px;
    }
    .page-company .message_list--item > p {
      width: 100%;
      max-width: 340px;
      text-align: left;
    }
  }
  @media screen and (max-width: 768px) {
    .page-company .greeting_bloc .name_area .logo {
      width: 100%;
      margin-bottom: 8px;
    }
    .page-company .scr_imgs {
      height: 150px;
    }
    .page-company .scr_imgs .bg_img {
      background-size: auto 150px;
      animation-name: scr_imgs-sp;
    }
    .page-company .company .bg_img {
      width: 80%;
      padding-top: 78%;
    }
  }
  @media screen and (max-width: 640px) {
    .page-company .message_list--item {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .page-company .message_list--item .ttl_area {
      margin-bottom: 8px;
    }
    .page-company .message_list--item > p {
      text-align: center;
    }
  }
  @media screen and (max-width: 560px) {
    .page-company .message .ttl_area .logo-gaw_nagoya img {
      width: 294px;
    }
    .page-company .message .ttl_area .logo-slu img {
      width: 186px;
    }
    .page-company .message_list--item {
      padding-top: 22px;
      padding-bottom: 24px;
    }
    .page-company .greeting_bloc .txt_area {
      padding-top: 32px;
      padding-bottom: 32px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .page-company .greeting_bloc .logo-slu img {
      width: 200px;
    }
    .page-company .greeting_bloc-ceo .bg_img .head1 {
      left: 40%;
    }
    .page-company .staff_list.clm-2-tab {
      gap: 12px;
    }
    .page-company .staff_list.clm-2-tab > * {
      width: calc(50% - 6px);
    }
    .page-company .staff_list--item .txt_area {
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .page-company .staff_list--item .job {
      letter-spacing: .05em;
      font-size: 79%;
      margin-bottom: 12px;
    }
    .page-company .staff_list--item .namae.head3 {
      font-size: 100%;
    }
    .page-company .staff_list--item .certification_list {
      margin-top: 16px;
    }
    .page-company .staff_list--item .certification_list li {
      font-size: 71%;
      letter-spacing: .08em;
    }
  }
  @media screen and (max-width: 374px) {
    .page-company .message_list--item > p {
      font-size: 91%;
    }
    .page-company .greeting_bloc .bg_img .head1 {
      font-size: 116%;
    }
    .page-company .staff_list.clm-2-tab > * {
      width: 100%;
    }
  }

/* sustainability
*************************************************** */
  .page-sustainability .sdgs .logo__ttl {
    column-gap: 80px;
  }
  .page-sustainability .sdgs .logo__ttl .sect_ttl {
    height: 272px;
  }
  .page-sustainability .sdgs .sect_ttl .fnt-en {
    line-height: 2em;
  }
  .page-sustainability .sdgs .logo__ttl .logo {
    width: 175px;
  }
  .page-sustainability .sdgs .logos {
    column-gap: 80px;
  }
  .page-sustainability .sdgs_list--item .img_area {
    padding-top: 66%;
  }
  .page-sustainability .sdgs_list--item-keizai .img_area .bg_img {
    background-image: url(../images/sustainability/sdgs_img-keizai.jpg);
  }
  .page-sustainability .sdgs_list--item-shakai .img_area .bg_img {
    background-image: url(../images/sustainability/sdgs_img-shakai.jpg);
  }
  .page-sustainability .sdgs_list--item-kankyou .img_area .bg_img {
    background-image: url(../images/sustainability/sdgs_img-kankyou.jpg);
  }
  .page-sustainability .sdgs_list--item .ico_list {
    column-gap: 24px;
  }
  .page-sustainability .sdgs_list--item .txt_area {
    padding: 32px;
  }
  .page-sustainability .sdgs_list--item .bdr_box {
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid #8d9396;
  }
  .page-sustainability .sdgs_list--item .txt_area--in {
    height: 100%;
  }
  .page-sustainability .sdgs_list--item .txt_area .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #8d9396;
  }
  @media screen and (max-width: 1400px) {
    .page-sustainability .sdgs .logo__ttl .sect_ttl {
      height: 232px;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1064px) {
    .page-sustainability .sdgs_list.clm-3 {
      gap: 16px;
    }
    .page-sustainability .sdgs_list.clm-3 > * {
      width: calc(100% / 3 - 11px);
    }
  }
  @media screen and (max-width: 960px) {
    .page-sustainability .sdgs .logo__ttl,
    .page-sustainability .sdgs .logos {
      column-gap: 40px;
    }
    .page-sustainability .sdgs .logo__ttl .sect_ttl {
      height: 202px;
    }
    .page-sustainability .sdgs .logo__ttl .logo-komaki_sdgs img {
      width: 108px;
    }
    .page-sustainability .sdgs .logo__ttl .logo,
    .page-sustainability .sdgs .logo__ttl .logo-morizo_kikkoro img {
      width: 140px;
    }
    .page-sustainability .sdgs .logos .logo-slu img {
      width: 266px;
    }
    .page-sustainability .sdgs .logos .logo-sdgs img {
      width: 322px;
    }
    .page-sustainability .sdgs_list--item .txt_area {
      padding-top: 32px;
      padding-bottom: 32px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .page-sustainability .sdgs_list--item .ico_list {
      column-gap: 16px;
    }
    .page-sustainability .sdgs_list--item .ico_list--item img {
      width: 64px;
      height: 64px;
    }
    .page-sustainability .sdgs_list--item {
      font-size: 93%;
    }
  }
  @media screen and (max-width: 768px) {
    .page-sustainability .sdgs .logo__ttl {
      column-gap: 16px;
    }
    .page-sustainability .sdgs .logos .logo-slu {
      margin-bottom: 24px;
    }
    .page-sustainability .sdgs_list.clm-1-lgsp {
      gap: 24px;
    }
    .page-sustainability .sdgs_list--item .bdr_box {
      height: inherit !important;
    }
  }
  @media screen and (min-width: 561px) and (max-width: 768px) {
    .page-sustainability .sdgs_list--item .bdr_box_wrap {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .page-sustainability .sdgs_list--item .bdr_box {
      width: calc(50% - 12px);
      border-bottom: 1px solid #8d9396;
    }
    .page-sustainability .sdgs_list--item .line {
      display: none;
    }
  }
  @media screen and (max-width: 560px) {
    .page-sustainability .sdgs .logo__ttl .sect_ttl {
      height: 162px;
    }
    .page-sustainability .sdgs .logo__ttl .logo-komaki_sdgs img {
      width: 77px;
    }
    .page-sustainability .sdgs .logo__ttl .logo,
    .page-sustainability .sdgs .logo__ttl .logo-morizo_kikkoro img {
      width: 100px;
    }
    .page-sustainability .sdgs .logos .logo-slu img {
      width: 212px;
    }
    .page-sustainability .sdgs .logos .logo-sdgs img {
      width: 258px;
    }
  }
  @media screen and (max-width: 374px) {
    .page-sustainability .sdgs .logo__ttl .logo-komaki_sdgs img {
      width: 54px;
    }
    .page-sustainability .sdgs .logo__ttl .logo,
    .page-sustainability .sdgs .logo__ttl .logo-morizo_kikkoro img {
      width: 68px;
    }
  }


/* contact
*************************************************** */
  .cf .info {
    column-gap: 48px;
    row-gap: 32px;
  }
  .cf .info .tel a {
    font-size: 267%;
    column-gap: 8px;
  }
  .cf .info .tel small {
    display: inline-block;
    font-size: 60%;
    transform: translateY(-3px);
  }
  .cf .line_bloc {
    width: 980px;
    max-width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .cf .line_bloc .logo {
    column-gap: 32px;
    row-gap: 8px;
  }
  .cf .cf_form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
  }
  @media screen and (max-width: 1400px) {
    .cf .info {
      column-gap: 32px;
    }
    .cf .info .logo-slu img {
      width: 104px;
    }
    .cf .info .logo-gaw_nagoya img {
      width: 320px;
    }
  }
  @media screen and (max-width: 1280px) {
    .cf .info {
      margin-bottom: 64px;
    }
    .cf .info .logo-slu img {
      width: 86px;
    }
    .cf .info .logo__tel {
      margin-bottom: 4px;
    }
    .cf .info .logo-gaw_nagoya {
      margin-bottom: 16px;
    }
    .cf .info .logo-gaw_nagoya img {
      width: 270px;
    }
    .cf .info .tel a {
      font-size: 200%;
    }
    .cf .line_bloc {
      width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .cf .info {
      column-gap: 24px;
      row-gap: 16px;
      margin-bottom: 40px;
    }
    .cf .info .logo-slu img {
      width: 72px;
    }
    .cf .info .logo__tel {
      margin-bottom: 0;
    }
    .cf .info .logo-gaw_nagoya {
      margin-bottom: 12px;
    }
    .cf .info .logo-gaw_nagoya img {
      width: 240px;
    }
    .cf .info .tel a {
      font-size: 172%;
    }
    .cf .info .time {
      font-size: 86%;
    }
    .cf .line_bloc .logo-line {
      width: 40vw;
    }
  }
  @media screen and (max-width: 374px) {
    .cf .info .time {
      font-size: 79%;
    }
  }

/* page-privacy
*************************************************** */
  .page-privacy .privacy_bloc .txtarea h3 {
    font-weight: normal;
    margin-top: 1.5em;
  }
  .page-privacy .privacy_bloc .txtarea p.mgn_btm {
    margin-bottom: 1.5em;
  }
  @media screen and (max-width: 768px) {
    .page-privacy .privacy_bloc .inner {
      padding-left: 0;
      padding-right: 0;
    }
  }


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

    ARCHIVE

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

/* main_column
**************************************** */
  .fix_wrap {
    column-gap: 64px;
  }
  .main_column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
    min-width: 0;
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .post--img {
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
  }
  .post--img .bg_img:not(.no_img) {
    background-size: cover;
  }
  .post--img .bg_img.no_img {
    background-image: url(../images/common/logo-slu-ver-wht.svg);
    background-size: 35%;
    background-color: #c0c0c0;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post .post--img img {
    overflow: hidden;
    border-radius: 3px;
  }
  @media screen and (min-width: 961px) {
    .post:hover .post--img .bg_img {
      transform: scale(1.025);
      opacity: .6;
    }
  }

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

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .side_sect:not(:last-child) { margin-bottom: 32px; }
  .side--ttl {
    margin-bottom: 24px;
    border-left-width: 1px;
    border-left-style: solid;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 32px;
    cursor: pointer;
  }
  .side--ttl.active {
    padding-left: 24px;
    background-color: #fff;
  }
  .side--cont {
    display: none;
  }
  @media screen and (min-width: 961px) {
    .side--ttl:hover {
      padding-left: 24px;
    }
  }

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

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

  /* --- cat --- */
  .side--cat {
    gap: 8px;
  }
  .side--cat a {
    display: block;
    line-height: 1em;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
  }
  @media screen and (min-width: 1065px) {
    .search_btn {
      display: none;
    }
  }
  @media screen and (max-width: 1064px) {
    .post_type-blog .side_column,
    .post_type-work .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;
    }
    .post_type-news .main_column{
      order: 3;
      margin-top: 24px;
    }
    .post_type-news .side_column {
      position: static !important;
      height: auto !important;
      order: 1;
      width: 100%;
      opacity: 1;
      padding: 0;
      pointer-events: all;
    }
    .post_type-news .side_column--in {
      display: none;
    }
    .archive-work .side_column {
      display: block;
    }
    .side_column.is_show {
      opacity: 1;
      pointer-events: all;
    }
    .side_column--in {
      position: static !important;
      transform: initial !important;
      width: 100% !important;
    }
    .search_btn {
      font-size: 93%;
    }
    .search_btn--plus {
      width: 32px;
      height: 32px;
      border-radius: 100%;
      overflow: hidden;
      margin-right: 12px;
    }
    .search_btn--plus::before {
      opacity: .05;
    }
    .search_btn--plus .line {
      position: absolute;
      top: 50%;
      left: calc(50% - 5px);
      width: 10px;
      height: 1px;
    }
    .search_btn--plus .line:nth-of-type(2) {
      transform: rotate(90deg);
    }
    .search_btn.active .search_btn--plus .line:nth-of-type(1) {
      transform: rotate(180deg);
    }
    .search_btn.active .search_btn--plus .line:nth-of-type(2) {
      transform: rotate(360deg);
    }
  }

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

/* blog
**************************************** */
  .posts-blog .post--date {
    margin-right: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  @media screen and (max-width: 1064px) {
    .posts-blog { margin-bottom: 56px; }
    .post_type-blog .fix_wrap.flex {
      display: block;
    }
    .archive .main_column,
    .single .main_column {
      overflow: visible;
      margin-right: 0;
    }
    .archive-blog .main_column,
    .single-blog .main_column {
      margin-bottom: 64px;
    }
  }
  @media screen and (max-width: 560px) {
    .archive-blog .main_column,
    .posts-blog {
      margin-bottom: 24px;
    }
    .single-blog .main_column {
      margin-bottom: 48px;
    }
  }

/* work
*************************************************** */
  .archive-work .search_area {
    width: 100%;
    max-width: 650px;
  }
  .archive-work .btn-search {
    height: 50px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .archive-work .btn-search .ico-arrow {
    width: 16px;
    height: 16px;
  }
  .archive-work .search_area .term_area {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  .archive-work .search_area .term_list {
    column-gap: 24px;
    row-gap: 0;
  }
  .archive-work .search_area .term_list--item {
    width: calc(50% - 12px);
  }
  .archive-work .search_area .term_list--item a {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .archive-work .search_area .term_list--item:nth-of-type(-n+2) a {
    border-top-width: 1px;
    border-top-style: solid;
  }
  .posts-work {
    gap: 64px;
  }
  .posts-work .post {
    width: calc(100% / 3 - 43px);
  }
  .posts-work .post--img {
    padding-top: 66.691%;
  }
  .posts-work .post .ttl {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 3.6em;
  }
  @media screen and (max-width: 1800px) {
    .posts-work {
      max-width: 1044px;
      margin-left: auto;
      margin-right: auto;
      gap: 48px;
    }
    .posts-work .post {
      width: calc(50% - 24px);
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1200px) {
    .posts-work .term_list--item {
      width: auto;
    }
    .posts-work .term_list--item a {
      padding-left: 8px;
      padding-right: 8px;
    }
  }
  @media screen and (max-width: 768px) {
    .posts-work {
      width: 490px;
      max-width: 100%;
    }
    .posts-work .post {
      width: 100%;
    }
    .posts-work .post .ttl {
      height: auto;
    }
  }
  @media screen and (max-width: 560px) {
    .archive-work .btn-search {
      padding-left: 16px;
      padding-right: 16px;
    }
    .archive-work .search_area .term_area {
      padding-top: 16px;
      padding-bottom: 24px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .archive-work .search_area .term_list {
      column-gap: 12px;
    }
    .archive-work .search_area .term_list--item {
      width: calc(50% - 6px);
    }
    .archive-work .search_area .term_list--item  a {
      padding-top: 8px;
      padding-bottom: 8px;
      font-size: 80%;
    }
    .posts-work .term_list--item {
      width: auto;
    }
    .posts-work .term_list--item a {
      padding-left: 8px;
      padding-right: 8px;
    }
  }
  @media screen and (max-width: 374px) {
    .archive-work .search_area .term_list--item {
      width: 100%;
    }
    .archive-work .search_area .term_list--item:nth-of-type(-n+2):not(:first-child) a {
      border-top: none;
    }
  }

/* news
**************************************** */

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

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


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

    SINGLE

############################################################################## */
  .single .main_column article {
    padding: 64px;
  }
  @media screen and (max-width: 768px) {
    .single .main_column article {
      padding: 24px;
    }
  }

  svg.ico-back {
    fill: #000;
    width: 14px;
    height: 15px;
    margin-right: 6px;
  }
  .wp-pagenavi {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    margin-top: 96px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-width: 1px;
    border-style: solid;
    font-weight: bold;
    line-height: 1.4;
    padding: 8px 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .4s all;
    margin: 0 0 0 -1px;
  }
  @media screen and (max-width: 960px) {
    .wp-pagenavi {
      margin-top: 56px;
    }
  }
  @media screen and (max-width: 560px) {
    .wp-pagenavi {
      margin-top: 32px;
    }
  }
  @media screen and (max-width: 320px) {
    .wp-pagenavi a,
    .wp-pagenavi span {
      padding: 6px 12px;
    }
  }

/* work
*************************************************** */
  .single-work .main_ttl {
    padding-bottom: 40px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .single-work .txt__yt {
    column-gap: 80px;
    row-gap: 40px;
  }
  .single-work .yt_thumb {
    width: 100%;
    max-width: 376px;
    padding-top: 56%;
  }
  .single-work .yt_thumb .arrow {
    position: absolute;
    top: calc(50% - 13px);
    left: calc(50% - 13px);
    z-index: 1;
    width: 26px;
    height: 26px;
    pointer-events: none;
  }
  .single-work .yt_thumb .arrow::before {
    border-radius: 100%;
  }
  .single-work .yt_thumb .arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left-width: 6px;
    border-right-width: 0;
  }
  .single-work .term_list {
    width: 100%;
  }
  .single-work .txt_area.show_yt .term_list {
    width: 634px;
  }
  .single-work .term_list--item {
    width: 120px;
  }
  .single-work .img_area .main_img {
    flex: 1;
    margin-right: 32px;
  }
  .single-work .img_area .thumb_list {
    width: 376px;
  }
  .single-work .img_area .img_src {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .single-work .img_area .main_img {
    height: 44vw;
    max-height: 596px;
  }
  .single-work .img_area .thumb_list--in {
    padding-bottom: 48px;
  }
  .single-work .img_area .img_list .img {
    width: calc(33.333% - 6px);
    padding-top: 21%;
    margin-bottom: 9px;
    margin-right: 9px;
  }
  .single-work .img_area .img_list .img:nth-of-type(3n+3) {
    margin-right: 0;
  }
  .single-work .img_area .thumb_list .slick-arrow {
    position: absolute;
    bottom: 0;
    font-size: 80%;
  }
  .single-work .img_area .thumb_list .slick-prev {
    right: calc(50% + 64px);
  }
  .single-work .img_area .thumb_list .slick-next {
    left: calc(50% + 64px);
  }
  @media screen and (min-width: 961px) {
    .single-work .yt_thumb:hover .bg_img {
      transform: scale(1.025);
      opacity: .6;
    }
    .single-work .yt_thumb:hover .arrow::before {
      background-color: #E52310;
      transform: scale(1.2);
    }
    .single-work .yt_thumb:hover .arrow::after {
      border-color: #fff;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
    }
    .single-work .img_area .thumb_list .img:hover .img_src {
      opacity: .7;
    }
  }
  @media screen and (max-width: 1280px) {
    .single-work .txt__yt {
      column-gap: 56px;
    }
    .single-work .txt_area.show_yt .term_list {
      width: 506px;
    }
    .single-work .img_area {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .single-work .img_area .main_img {
      margin-right: 0;
      height: auto;
      padding-top: 48vw;
      margin-bottom: 32px;
      width: 872px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .single-work .img_area .thumb_list {
      width: 100%;
    }
    .single-work .img_area .thumb_list--in {
      padding-bottom: 32px;
    }
    .single-work .img_area .img_list .img {
      width: calc(100% / 9 - 8px);
      padding-top: 7%;
    }
    .single-work .img_area .img_list .img:nth-of-type(3n+3) {
      margin-right: 9px;
    }
    .single-work .img_area .img_list .img:nth-of-type(9n+9) {
      margin-right: 0;
    }
  }
  @media screen and (max-width: 1064px) {
    .single-work .txt__yt .txts {
      margin-bottom: 32px;
    }
    .single-work .txt_area.show_yt .term_list {
      width: 380px;
    }
  }
  @media screen and (max-width: 960px) {
    .single-work .main_ttl {
      padding-bottom: 24px;
    }
    .single-work .yt_area {
      margin-left: auto;
      margin-right: auto;
    }
    .single-work .txt_area.show_yt .term_list {
      width: 100%;
    }
    .single-work .img_area .main_img {
      padding-top: 60vw;
      margin-bottom: 24px;
    }
    .single-work .img_area .img_list .img {
      width: calc(100% / 6 - 6px);
      margin-right: 7px;
      margin-bottom: 7px;
      padding-top: 11%;
    }
    .single-work .img_area .img_list .img:nth-of-type(3n+3),
    .single-work .img_area .img_list .img:nth-of-type(9n+9) {
      margin-right: 7px;
    }
    .single-work .img_area .img_list .img:nth-of-type(6n+6) {
      margin-right: 0;
    }
  }
  @media screen and (max-width: 560px) {
    .single-work .img_area .btn-modal {
      width: 100%;
    }
    .single-work .img_area .btn-modal .btn--in {
      height: 48px;
    }
    .single-work #modal_imgs .img:not(:last-child) {
      margin-bottom: 8px;
    }
  }

/* blog
*************************************************** */
  .single-blog .term_list--item {
    width: auto;
  }
  .single-blog .term_list--item a {
    padding-left: 8px;
    padding-right: 8px;

  }


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

    CONTACT FORM

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

/* attn_tour
*************************************************** */
  .attn_tour {
    border-radius: 16px;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 56px;
    padding-right: 56px;
    column-gap: 32px;
  }
  .attn_tour::before {
    opacity: .5;
  }
  .attn_tour::after {
    top: 24px;
    left: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    border-radius: 8px;
  }
  .attn_tour .txt_area {
    width: 440px;
    max-width: 100%;
  }
  .attn_tour .head3 {
    position: relative;
    padding-left: 24px;
    padding-bottom: 12px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
  }
  .attn_tour .head3::before {
    content: '';
    position: absolute;
    top: .95em;
    left: 0;
    translate: 0 -50%;
    width: 8px;
    height: 12px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  .attn_tour .img_area {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1;
    min-height: 180px;
  }
  .attn_tour .img_area img {
    object-fit: cover;
  }
  .attn_tour .img_area .txt {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 100%;
    font-weight: 700;
    opacity: .8;
  }
  @media (max-width: 1280px) {
    .attn_tour .txt_area {
      max-width: calc(100% - 280px);
    }
  }
  @media (max-width: 768px) {
    .attn_tour {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      padding: 40px;
    }
    .attn_tour::after {
      top: 12px;
      left: 12px;
      width: calc(100% - 24px);
      height: calc(100% - 24px);
    }
    .attn_tour .txt_area {
      width: 100%;
    }
    .attn_tour .img_area {
      width: 100%;
      padding-top: 48%;
      margin-bottom: 24px;
    }
    .attn_tour .txt_area {
      max-width: 100%;
    }
  }
  @media (max-width: 560px) {
    .attn_tour {
      padding: 28px;
    }
    .attn_tour .img_area {
      margin-bottom: 16px;
    }
    .attn_tour .head3 {
      margin-left: 0;
      padding-left: 16px;
      font-size: 116%;
    }
    .attn_tour-rsvp .mgn_txts p:last-child,
    .attn_tour-coming_soon .mgn_txts p:last-child {
      padding-right: 72px;
    }
  }

/* contact - layout
*************************************************** */
  .contact {
    padding-top: 20px;
  }
  .contact .tel {
    line-height: 1.9em;
  }
  .contact .head4 {
    line-height: 1.8em;
  }
  .contact .fukidashi {
    position: absolute;
    right: -112px;
    bottom: 100%;
  }
  .contact .fukidashi .cmnt_ppl {
    margin-top: 80px;
  }
  .contact .fukidashi .cmnt_box {
    width: 132px;
    height: 132px;
    border-radius: 100%;
    margin-left: -24px;
    line-height: 1.6em;
  }
  .contact .fukidashi .cmnt_box::before {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 2px;
    border-style: solid;
    border-top-width: 21px;
    border-right-width: 9px;
    border-left-width: 9px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
    z-index: -1;
  }
  @media (max-width: 1480px) {
    .contact .fukidashi {
      right: -64px;
    }
  }
  @media (max-width: 1280px) {
    .contact .head4 {
      text-align: left;
    }
  }
  @media screen and (max-width: 1064px) {
    .contact {
      padding-top: 0;
    }
  }
  @media screen and (max-width: 960px) {
    .contact .fukidashi {
      right: -48px;
    }
    .contact .fukidashi .cmnt_ppl {
      margin-top: 64px;
      translate: 12px 0;
    }
    .contact .fukidashi .cmnt_ppl img {
      width: 104px;
    }
    .contact .fukidashi .cmnt_box {
      width: 104px;
      height: 104px;
      line-height: 1.6em;
      font-size: 80%;
      letter-spacing: .05em;
    }
  }
  @media screen and (max-width: 560px) {
    .contact .head4 {
      font-size: 100%;
    }
    .contact .fukidashi {
      right: 4px;
      z-index: -1;
      text-align: center;
    }
    .contact .fukidashi .cmnt_box {
      width: 80px;
      height: 80px;
      font-size: 70%;
      margin-left: -80px;
    }
    .contact .fukidashi .cmnt_box::before {
      left: 50%;
      bottom: -12px;
      transform: translateX(-50%) rotate(0deg);
    }
    .contact .fukidashi .cmnt_ppl {
      margin-top: 96px;
      translate: 0 0;
    }
    .contact .fukidashi .cmnt_ppl img {
      width: 72px;
    }
  }
  @media (max-width: 413px) {
    .contact .head4 {
      font-size: 93%;
    }
  }
  @media (max-width: 374px) {
    .contact .head4 {
      font-size: 75%;
    }
  }

  #contact_pos {
    top: 0;
    left: 0;
    position: absolute;
  }
  @media screen and (max-width: 560px) {
    .form_area {
      position: relative;
    }
  }

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

    CONTACT FORM

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

  #cf_form {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 150px;
    padding-right: 150px;
  }

/* form_flow
*************************************************** */
  .form_flow_list {
    order: 1;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    max-width: 65%;
  }
  .form_flow_list--item {
    width: 33.333%;
  }
  .form_flow_list--item:last-child {
    z-index: -1;
  }
  .cf_form-confirm .form_flow_list .form_flow_list--item-confirm,
  .cf_form-complete .form_flow_list .form_flow_list--item-complete {
    z-index: 1;
  }
  .form_flow_list--item:not(:last-child) {
    border-right: none;
  }
  .cf_form-confirm .form_flow_list .form_flow_list--item-input,
  .cf_form-complete .form_flow_list .form_flow_list--item:not(.form_flow_list--item-complete) {
    color: #ccc;
  }
  .form_flow_list--item::before,
  .form_flow_list--item::after,
  .form_flow_list--item .num {
    background-color: #ccc;
  }
  .form_flow_list--item::before {
    content: '';
    position: absolute;
    top: 23px;
    left: calc(50% - 1em);
    z-index: -1;
    width: 100%;
    height: 2px;
  }
  .form_flow_list--item:last-of-type::before {
    content: none;
  }
  .form_flow_list--item .num {
    width: 48px;
    height: 48px;
    font-size: 125%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6px;
    font-weight: bold;
    color: #fff;
  }
  .cf_form-input .form_flow_list--item-input .num,
  .cf_form-confirm .form_flow_list--item-confirm .num,
  .cf_form-complete .form_flow_list--item-complete .num {
    background-color: #a59a85;
  }
  .cf_form-input .form_flow_list--item-input .txt,
  .cf_form-confirm .form_flow_list--item-confirm .txt,
  .cf_form-complete .form_flow_list--item-complete .txt {
    color: #000;
  }
  @media screen and (max-width: 960px) {
    .form_flow_list {
      width: 100%;
      max-width: 100%;
    }
    .form_flow_list--item {
      font-size: 100%;
      letter-spacing: 0em;
      line-height: 1.6em;
    }
  }
  @media screen and (max-width: 560px) {
    .form_flow_list {
      margin-bottom: 20px;
    }
  }
  @media screen and (max-width: 320px) {
    .form_flow_list--item {
      font-size: 90%;
    }
  }

/* COMMON
*************************************************** */
  .confirm_area,
  .response_load,
  .wpcf7-spinner,
  .wpcf7-response-output {
    display: none;
  }
  .form_list { width:100%; }
  .form_list--item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .form_list--item .ttl {
    white-space: nowrap;
    text-align: left;
    font-weight: normal;
  }
  .confirm_area .form_list--item .ttl .txt {
    font-weight: bold;
    font-size: 85%;
    opacity: .5;
  }
  .form_list--item .cont .txt { min-width: 36px; }
  .form_list--item .cont .flx {
    column-gap: 40px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"],
  .form_list--item .cont textarea {
    width: 100%;
    vertical-align: bottom;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"] {
    height: 44px;
    line-height: 44px;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"],
  .form_list--item .cont select,
  .form_list--item .cont textarea {
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 100%;
  }
  .form_list--item .cont textarea {
    height: 100px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .form_list--item .cont select { height: 40px; }
  .form_list--item .cont ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .form_list--item .cont input:hover { opacity: .7; }
  .form_list--item .cont textarea:hover { opacity: .7; }
  .form_list--item .cont input:focus { outline: none; }

/* radio & checkbox
*************************************************** */
  .form_list--item .cont .cf_rc input[type="radio"],
  .form_list--item .cont .cf_rc input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .form_list--item .cont .cf_rc .wpcf7-list-item {
    margin-left: 0;
    display: block;
  }
  .form_list--item .cont .cf_rc .wpcf7-form-control {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    column-gap: 24px;
  }
  .form_list--item .cont .cf_rc-ver .wpcf7-form-control {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .form_list--item .cont .cf_rc .wpcf7-list-item:not(:last-child) {
    margin-bottom: 0;
  }
  .form_list--item .cont .cf_rc .wpcf7-list-item-label {
    display: inline-block;
    padding-left: 24px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
  }

  .form_list--item .cont .cf_rc .wpcf7-list-item-label:hover { opacity: .7; }
  .form_list--item .cont .cf_rc .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
  }
  .form_list--item .cont .acceptance input[type="checkbox"] {
    position: relative;
    margin-right: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
  }
  .form_list--item .cont .cf_rc .wpcf7-list-item-label::before,
  .form_list--item .cont .acceptance input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid #000;
  }
  .form_list--item .cont .cf_rc input[type="radio"] + .wpcf7-list-item-label::before { border-radius: 10px; }
  .form_list--item .cont .cf_rc input[type="radio"]:checked ~ .wpcf7-list-item-label,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
    color: rgb(201,44,51);
    font-weight: bold;
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked ~ .wpcf7-list-item-label::before,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked ~ .wpcf7-list-item-label::before,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked {
    border-color: rgb(201,44,51);
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked ~ .wpcf7-list-item-label::after,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked ~ .wpcf7-list-item-label::after,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    z-index: 10;
    display: block;
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked ~ .wpcf7-list-item-label::after {
    top: 11px;
    left: 5px;
    width: 5px;
    height: 5px;
    background-color: rgb(201,44,51);
    border-radius: 100%;
  }
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked ~ .wpcf7-list-item-label::after,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked::after {
    top: 8px;
    left: 5px;
    width: 5px;
    height: 9px;
    border-right: 2px solid rgb(201,44,51);
    border-bottom: 2px solid rgb(201,44,51);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  @media  (min-width: 961px) and (max-width: 1400px) {
    .form_list--item .cont .cf_rc .wpcf7-list-item-label::before {
      top: 2px;
    }
    .form_list--item .cont .cf_rc input[type="radio"]:checked ~ .wpcf7-list-item-label::after {
      top: 7px;
    }
    .form_list--item .cont .cf_rc input[type="checkbox"]:checked ~ .wpcf7-list-item-label::after,
    .form_list--item .cont .acceptance input[type="checkbox"]:checked::after {
      top: 4px;
    }
  }

/* address
*************************************************** */
  .form_list--item .cont .cf_zip {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .form_list--item .cont .cf_zip input[type="text"] {
    width: auto;
    max-width: 200px;
  }
  @media (max-width: 960px) {
    .form_list-hor .form_list--item.form_list--item-address .cont .flx {
      column-gap: 12px;
    }
    .form_list-hor .form_list--item.form_list--item-address .cont .flx > p {
      width: 32px;
    }
  }

/* date
*************************************************** */
  .form_list--item .select-date select {
    margin-right: 8px;
  }

/* file
*************************************************** */
  .form_list--item ul.cf_files {
    overflow: hidden;
    margin-bottom: 8px;
    row-gap: 10px;
  }
  .form_list--item .cf_file {
    width: calc(100% / 3 - 8px*2/3);
  }
  .input_area .form_list--item .cf_file input[type="file"] {
    width: 100%;
    background-color: transparent !important;
  }
  .input_area .form_list--item .cf_file input[type="file"]::file-selector-button {
    color: #111111;
    font-size: 14px;
    border: 0;
    border-radius: 10em;
    padding: 4px 16px;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,.1);
    background-color: #f6f6f6;
    letter-spacing: .1em;
    font-size: 100%;
    text-align: center;
  }
  .confirm_area .form_list--item .attn_list {
    display: none;
  }
  .confirm_area .form_list--item ul.cf_files {
    margin-top: -4px;
    margin-bottom: -4px;
    row-gap: 0;
  }
  .confirm_area .form_list--item .cf_file {
    width: 100%;
    font-size: 85%;
  }
  .confirm_area .form_list--item .file_wrap {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  @media (max-width: 1280px) {
    .form_list--item .cf_files {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .form_list--item .cf_file {
      width: 100%;
    }
  }
  .form_list--item .file_wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    column-gap: 8px;
  }
  .form_list--item .file_wrap .preview {
    position: relative;
    width: 32px;
    height: 32px;
    background-color: #000;
  }
  .form_list--item .file_wrap .preview img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

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

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

  /* --- required --- */
  .required {
    color: rgb(201, 44, 51);
    margin-left: 4px;
  }

  /* --- cf_form--btns --- */
  .cf_form--btns p {
    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;
    column-gap: 16px;
  }
  .cf_form .btn-form {
    min-width: 180px;
    line-height: 44px;
    padding-left: 32px;
    padding-right: 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 3px;
    letter-spacing: .1em;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  .cf_form .btn-form.btn-confirm,
  .cf_form .btn-form.btn-send {
    color: #fff;
  }

  /* --- confirm complete none --- */
  .cf_form-confirm .confirm_none,
  .cf_form-complete .complete_none,
  .cf_form-confirm .cf_form--support {
    display: none;
  }

  /* --- error --- */
  .cf_form .wpcf7-not-valid-tip {
    display: none; /* validation engineでエラーテキストが重複するためトル */
  }
  .cf_form .formError {
    position: static !important;
    font-weight: bold;
  }
  .cf_form .formErrorArrow {
    display: none;
  }
  .cf_form .formErrorContent {
    position: relative;
    display: block;
    margin-bottom: 6px;
    line-height: 1.4em;
    padding-left: 16px;
    color: rgb(201,44,51) !important;
    font-size: 70%;
  }
  .cf_form .formErrorContent::before {
    display: inline-block;
    position: absolute;
    top: .8em;
    left: 0;
    content: '!';
    width: 13px;
    height: 13px;
    padding-left: 1px;
    line-height: 12px;
    margin-right: 4px;
    border-radius: 100%;
    background-color: rgb(201,44,51);
    color: #fff;
    text-align: center;
    transform: translateY(-50%) scale(.8);
    font-size: 85%;
  }
  .cf_form .formError + input,
  .cf_form .formError + select,
  .cf_form .formError + textarea,
  .cf_form .formError + input[type="file"]::file-selector-button {
    background-color: rgba(201,44,51,.1) !important;
    border-color: rgba(201,44,51,.5) !important;
  }
  input[name="recaptcha-v3"] + .wpcf7-not-valid-tip {
    display: table;
    margin-top: 24px;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  input[name="recaptcha-v3"] + .wpcf7-not-valid-tip::before {
    content: none;
  }
  input[name="recaptcha-v3"] + .wpcf7-not-valid-tip::after {
    content: '\5165\529B\5B8C\4E86\307E\3067\306E\5236\9650\6642\9593\3092\8D85\3048\305F\305F\3081\3001\30BB\30C3\30B7\30E7\30F3\306E\6709\52B9\671F\9650\304C\5207\308C\307E\3057\305F\3002\304A\624B\6570\3067\3059\304C\3001\3082\3046\4E00\5EA6\300E\5165\529B\5185\5BB9\3092\78BA\8A8D\300F\30DC\30BF\30F3\3092\62BC\3057\3066\304F\3060\3055\3044\3002';
    width: 100%;
    display: block;
    margin-top: 8px;
    text-align: justify;
    color: rgb(201,44,51);
    line-height: 1.6em;
  }

  /* --- ver --- */
  .form_list-ver .form_list--item .ttl {
    margin-bottom: 16px;
    line-height: 1em;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
  }
  .form_list-ver .form_list--item .ttl .txt {
    opacity: .5;
    font-weight: 700;
  }
  .form_list-ver .form_list--item-date .cont .ttl {
    margin-bottom: 0;
    opacity: .5;
    font-weight: 700;
    font-size: 93%;
  }
  /* --- hor --- */
  .form_list-hor .form_list--item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form_list-hor .form_list--item .ttl {
    width: 220px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .form_list-hor .form_list--item .cont {
    flex: 1;
    margin-left: 40px;
  }
  .form_list-hor .form_list--item-ver {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form_list-hor .form_list--item-ver .cont {
    margin-left: 0;
  }
  .form_list-hor .form_list--item-date .cf_time {
    margin-left: -32px;
  }

  /* --- wpcf7-response-output ---  */
  .wpcf7 form {
    position: relative;
    min-height: calc(108px + 122px);
  }
  .response_load {
    min-height: 108px;
    position: absolute;
    width: 100%;
  }
  .response_load .load {
    row-gap: 8px;
  }
  .response_load .line {
    width: 120px;
    height: 1px;
  }
  .response_load .line::before {
    clip-path: inset(100% 0 -20% 0);
  }
  .response_load.is_show .load,
  .response_load.is_show .line::before {
    animation-timing-function: cubic-bezier(0.77,0,0.18,1);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .response_load.is_show .load {
    animation-delay: 2.5s;
    animation-duration: .6s;
    animation-name: fade_out;
  }
  .response_load.is_show .line::before {
    animation-duration: 2.5s;
    animation-name: mask-to_rgt;
  }
  .wpcf7 form .wpcf7-response-output {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    border: none;
    margin: 0;
  }
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.aborted .wpcf7-response-output {
    background-color: #dc32320d;
  }
  .wpcf7 form.spam .wpcf7-response-output {
    background-color: #f56e280d;
  }
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #ffb9000d;
  }
  .hide_inputs {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  @media (max-width: 1480px) {
    .wpcf7 form .wpcf7-response-output {
      text-align: left;
    }
  }
  @media screen and (min-width: 961px) and (max-width: 1400px) {
    .form_list-hor .form_list--item .ttl {
      width: 160px;
    }
  }
  @media (max-width: 1280px) {
    #cf_form {
      padding-top: 60px;
      padding-bottom: 60px;
      padding-left: 80px;
      padding-right: 80px;
    }
  }
  @media only screen and (max-width: 960px) {
    #cf_form {
      padding-top: 56px;
      padding-bottom: 56px;
      padding-left: 40px;
      padding-right: 40px;
    }
    .form_list-hor .form_list--item {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .form_list-hor .form_list--item .ttl {
      width: auto;
      line-height: 1em;
      margin-bottom: 16px;
    }
    .form_list-hor .form_list--item-date .ttl__date .ttl {
      width: 100%;
      margin-bottom: 8px;
    }
    .form_list-hor .form_list--item .cont {
      margin-left: 0;
    }
    .cf_form .btn-form {
      min-width: auto;
    }
  }
  @media only screen and (max-width: 560px) {
    #cf_form {
      padding-top: 40px;
      padding-bottom: 40px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .form_list--item {
      padding-top: 12px;
      padding-bottom: 12px;
    }
    .form_list--item .cont input[type="text"],
    .form_list--item .cont input[type="email"],
    .form_list--item .cont input[type="tel"],
    .form_list--item .cont input[type="date"],
    .form_list--item .cont input[type="password"],
    .form_list--item .cont textarea {
      font-size: 16px;
    }
    .form_list--item .cont .cf_rc .wpcf7-list-item {
      display: block;
    }
    .form_list--item .cont .cf_zip input[type="text"] {
      width: calc(100% - 23px);
      margin-right: 0;
    }
    .form_list-ver .form_list--item-date .date__time.btm8 {
      margin-bottom: 12px;
    }
    .form_list-ver .form_list--item-date .cont .ttl {
      width: 100%;
      margin-bottom: 8px;
    }
    .cf_form--btns p {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      row-gap: 12px;
    }
    .wpcf7 form .wpcf7-response-output {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  }
  @media (max-width: 374px) {
    .form_list--item .select-date select {
      padding-left: 6px;
      font-size: 11px;
    }
    .form_list--item-date .cont select {
      font-size: 11px;
      padding-left: 6px;
    }
  }

/* know
*************************************************** */
  .form_list-hor .form_list--item.form_list--item-know .ttl {
    display: block;
  }
  .form_list--item-know .formError {
    width: 100%;
  }
  .form_list--item-know .mwform-radio-field {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .form_list--item-know .wpcf7-list-item {
    width: 100%;
  }
  .form_list--item-know .wpcf7-list-item label,
  .form_list--item-know .cont .know_input > p {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form_list--item-know .wpcf7-list-item label {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .form_list--item-know .cont .know_input .label {
    margin-right: 16px;
  }
  .form_list--item-know .cont .know_input input[type="text"] {
    width: 310px;
    max-width: 100%;
  }
  .form_list--item-know .cont .know_input-other .label {
    display: none;
  }
  .form_list--item-know .cont .know_input-other input[type="text"] {
    width: 470px;
  }
  .mw_wp_form_confirm .form_list--item-know .cont .know_input {
    display: none;
  }
  .mw_wp_form .form_list--item.form_list--item-know.is-error .cont input {
    background-color: transparent;
    border-color: #ccc;
  }
  @media (max-width: 1400px) {
    .form_list--item-know .cont .know_input input[type="text"] {
      width: 260px;
    }
    .form_list--item-know .cont .know_input-other input[type="text"] {
      width: 386px;
    }
  }
  @media (max-width: 1280px) {
    .form_list--item-know .cont .know_input input[type="text"] {
      width: 180px;
    }
    .form_list--item-know .cont .know_input-other input[type="text"] {
      width: 306px;
    }
  }
  @media (max-width: 960px) {
    .form_list--item-know .cont .know_input-other input[type="text"] {
      width: 336px;
    }
  }
  @media (max-width: 768px) {
    .form_list--item-know .cont .know_input .label {
      font-weight: bold;
      opacity: .6;
      font-size: 88%;
    }
  }
  @media (min-width: 561px) and (max-width: 768px) {
    .form_list--item-know .cont .know_input > p {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .form_list--item-know .cont .know_input input[type="text"],
    .form_list--item-know .cont .know_input-other input[type="text"] {
      width: 200px;
    }
  }
  @media (max-width: 560px) {
    .form_list--item-know .mwform-radio-field {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .form_list--item-know .cont .know_input {
      width: 100%;
      padding-left: 24px;
      margin-top: 2px;
    }
    .form_list--item-know .cont .know_input input[type="text"],
    .form_list--item-know .cont .know_input-other input[type="text"] {
      width: 100%;
    }
  }

