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

    KEYFRAMES

############################################################################## */
  @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-rev_btm {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
  }
  @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 fade-rev_lft {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-8px); }
  }
  @keyframes mask-to_top {
    0% { clip-path: inset(100% 0 -20% 0); }
    100% { clip-path: inset(0 0 -20% 0); }
  }
  @keyframes mask-rev_top {
    0% { clip-path: inset(0 0 -20% 0); }
    100% { lip-path: inset(0 0 100% 0); }
  }
  @keyframes mask-to_btm {
    0% { clip-path: inset(0 0 100% 0); }
    100% { clip-path: inset(0 0 -20% 0); }
  }
  @keyframes mask-rev_btm {
    0% { clip-path: inset(0 0 -20% 0); }
    100% { lip-path: inset(100% 0 -20% 0); }
  }
  @keyframes mask-to_rgt {
    0% { clip-path: inset(0 100% -20% 0); }
    100% { clip-path: inset(0 0 -20% 0); }
  }
  @keyframes mask-rev_rgt {
    0% { clip-path: inset(0 0 -20% 0); }
    100% { clip-path: inset(0 0 -20% 100%); }
  }
  @keyframes mask-to_lft {
    0% { clip-path: inset(0 0 -20% 100%); }
    100% { clip-path: inset(0 0 -20% 0); }
  }
  @keyframes mask-rev_lft {
    0% { clip-path: inset(0 0 -20% 0); }
    100% { clip-path: inset(0 100% -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 gnav_sub_out {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-16px); opacity: 0; }
  }
  @keyframes gnav_sub_in {
    0% { transform: translateX(16px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes scale_in{
    0%{
      opacity: 0;
      transform: scale(.9);
      clip-path: inset( 20% 20% 20% 20% round 0px );
    }
    100%{
      opacity: 1;
      transform: scale(1.025);
      clip-path: inset(0 0 0 0 round 0px);
    }
  }

  @keyframes scale_out{
    0%{
      opacity: 1;
      transform: scale(1.025);
      clip-path: inset(0 0 0 0 round 0px);
    }
    100%{
      opacity: 0;
      transform: scale(.9);
      clip-path: inset( 20% 20% 20% 20% round 0px );
    }
  }
  .loaded .ts, .loaded .ts-bf::before, .loaded .ts-af::after,
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after,
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4,0.4,0,1);
    transition-duration: .8s;
  }
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after {
    transition-duration: .6s;
  }
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-duration: 1.2s;
  }

  /* --- delay ---  */
  .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;
  }

  /* --- slide ---  */
  .slide-to_top,
  .slide-to_btm,
  .slide-to_rgt,
  .slide-to_lft {
    transform: translateY(110%);
  }
  span.slide-to_top:not(.flx),
  span.slide-to_btm:not(.flx),
  span.slide-to_rgt:not(.flx),
  span.slide-to_lft:not(.flx) {
    display: inline-block;
  }
  .visible.slide-to_top,
  .visible.slide-to_btm,
  .visible.slide-to_rgt,
  .visible.slide-to_lgt,
  .visible .slide-to_top,
  .visible .slide-to_btm,
  .visible .slide-to_rgt,
  .visible .slide-to_lgt {
    animation-timing-function: cubic-bezier(.4,.4,0,1);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-to_top;
  }
  .visible.slide-to_top,
  .visible .slide-to_top {
    animation-duration: 1.4s;
    animation-name: slide-to_top;
  }
  .visible.slide-to_btm,
  .visible .slide-to_btm {
    animation-duration: 1.4s;
    animation-name: slide-to_btm;
  }
  .visible.slide-to_rgt,
  .visible .slide-to_rgt {
    animation-duration: 1s;
    animation-name: slide-to_rgt;
  }
  .visible.slide-to_lft,
  .visible .slide-to_lft {
    animation-duration: 1s;
    animation-name: slide-to_lft;
  }

  /* --- scale ---  */
  .scale_in img {
    opacity: 0;
    scale: 1.025;
  }
  .visible .scale_in img {
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(.7,0,.2,1);
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: scale_in;
  }


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

    LOADING

====================================================================================== */
  #loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    pointer-events: none;
  }
  #loading .layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  #loading .layers .layer {
    position: absolute;
    inset: 0;
    transition-timing-function: cubic-bezier(0.4,0.4,0,1);
    transition-duration: .8s;
  }
  #loading .layer-01 {
    transform: translateY(0);
    z-index: 1;
  }
  .loaded #loading .layer-01 {
    transform: translateY(-100%);
  }
  .loaded:not(.min) #loading .layer-01 {
    transition-delay: .8s;
  }
  #loading .layer-02 {
    transform: translateY(100%);     /* 画面の下に待機 */
    z-index: 2;
  }
  .loaded:not(.mov_in) #loading .layer-02 {
    transform: translateY(0);        /* 下からせり上がって全面白になる */
  }
  #loading .loading--cont {
    z-index: 10;
    opacity: 0;
  }
  #loading .loading--cont.is-show {
    opacity: 1;
  }
  .loaded #loading .logo {
    opacity: 0;
    scale: 1.025;
  }
  /*body.mov_in #loading .layers .layer {
    opacity: 0;
  }
  body:not(.min).mov_in #loading .layers .layer { transition-delay: 1s; }*/


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

    COMMON

############################################################################## */
  .svg-symbol {
    display: none;
  }
  .wrapper {
    overflow-x: clip;
    overflow-y: visible;
  }


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

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

  /* --- sect_pdg --- */
  .sect_pdg {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .sect_pdg-sm {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .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;
    inset: 0;
    z-index: -1;
  }
  .poa-bf::before,
  .poa-af::after {
    content: '';
  }
  .poa.zi1,
  .poa-bf.zi1-bf::before,
  .poa-af.zi1-af::after {
    z-index: 1;
  }

  /* --- 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; }

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

/* 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;
  }

/* image
**************************************** */
  .ofc {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

/* 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 (any-hover: hover) {
    .hov-op0:hover, .hov-op0-bf:hover::before, .hov-op0-af:hover::after,
    .hov_area:hover .hov-op0, .hov_area:hover .hov-op0-bf::before, .hov_area:hover .hov-op0-af::after { opacity: 0; }
    .hov-op05:hover, .hov-op05-bf:hover::before, .hov-op05-af:hover::after,
    .hov_area:hover .hov-op05, .hov_area:hover .hov-op05-bf::before, .hov_area:hover .hov-op05-af::after { opacity: .05; }
    .hov-op10:hover, .hov-op10-bf:hover::before, .hov-op10-af:hover::after,
    .hov_area:hover .hov-op10, .hov_area:hover .hov-op10-bf::before, .hov_area:hover .hov-op10-af::after { opacity: .10; }
    .hov-op15:hover, .hov-op15-bf:hover::before, .hov-op15-af:hover::after,
    .hov_area:hover .hov-op15, .hov_area:hover .hov-op15-bf::before, .hov_area:hover .hov-op15-af::after { opacity: .15; }
    .hov-op20:hover, .hov-op20-bf:hover::before, .hov-op20-af:hover::after,
    .hov_area:hover .hov-op20, .hov_area:hover .hov-op20-bf::before, .hov_area:hover .hov-op20-af::after { opacity: .20; }
    .hov-op25:hover, .hov-op25-bf:hover::before, .hov-op25-af:hover::after,
    .hov_area:hover .hov-op25, .hov_area:hover .hov-op25-bf::before, .hov_area:hover .hov-op25-af::after { opacity: .25; }
    .hov-op30:hover, .hov-op30-bf:hover::before, .hov-op30-af:hover::after,
    .hov_area:hover .hov-op30, .hov_area:hover .hov-op30-bf::before, .hov_area:hover .hov-op30-af::after { opacity: .30; }
    .hov-op35:hover, .hov-op35-bf:hover::before, .hov-op35-af:hover::after,
    .hov_area:hover .hov-op35, .hov_area:hover .hov-op35-bf::before, .hov_area:hover .hov-op35-af::after { opacity: .35; }
    .hov-op40:hover, .hov-op40-bf:hover::before, .hov-op40-af:hover::after,
    .hov_area:hover .hov-op40, .hov_area:hover .hov-op40-bf::before, .hov_area:hover .hov-op40-af::after { opacity: .40; }
    .hov-op45:hover, .hov-op45-bf:hover::before, .hov-op45-af:hover::after,
    .hov_area:hover .hov-op45, .hov_area:hover .hov-op45-bf::before, .hov_area:hover .hov-op45-af::after { opacity: .45; }
    .hov-op50:hover, .hov-op50-bf:hover::before, .hov-op50-af:hover::after,
    .hov_area:hover .hov-op50, .hov_area:hover .hov-op50-bf::before, .hov_area:hover .hov-op50-af::after { opacity: .50; }
    .hov-op55:hover, .hov-op55-bf:hover::before, .hov-op55-af:hover::after,
    .hov_area:hover .hov-op55, .hov_area:hover .hov-op55-bf::before, .hov_area:hover .hov-op55-af::after { opacity: .55; }
    .hov-op60:hover, .hov-op60-bf:hover::before, .hov-op60-af:hover::after,
    .hov_area:hover .hov-op60, .hov_area:hover .hov-op60-bf::before, .hov_area:hover .hov-op60-af::after { opacity: .60; }
    .hov-op65:hover, .hov-op65-bf:hover::before, .hov-op65-af:hover::after,
    .hov_area:hover .hov-op65, .hov_area:hover .hov-op65-bf::before, .hov_area:hover .hov-op65-af::after { opacity: .65; }
    .hov-op70:hover, .hov-op70-bf:hover::before, .hov-op70-af:hover::after,
    .hov_area:hover .hov-op70, .hov_area:hover .hov-op70-bf::before, .hov_area:hover .hov-op70-af::after { opacity: .70; }
    .hov-op75:hover, .hov-op75-bf:hover::before, .hov-op75-af:hover::after,
    .hov_area:hover .hov-op75, .hov_area:hover .hov-op75-bf::before, .hov_area:hover .hov-op75-af::after { opacity: .75; }
    .hov-op80:hover, .hov-op80-bf:hover::before, .hov-op80-af:hover::after,
    .hov_area:hover .hov-op80, .hov_area:hover .hov-op80-bf::before, .hov_area:hover .hov-op80-af::after { opacity: .80; }
    .hov-op85:hover, .hov-op85-bf:hover::before, .hov-op85-af:hover::after,
    .hov_area:hover .hov-op85, .hov_area:hover .hov-op85-bf::before, .hov_area:hover .hov-op85-af::after { opacity: .85; }
    .hov-op90:hover, .hov-op90-bf:hover::before, .hov-op90-af:hover::after,
    .hov_area:hover .hov-op90, .hov_area:hover .hov-op90-bf::before, .hov_area:hover .hov-op90-af::after { opacity: .90; }
    .hov-op95:hover, .hov-op95-bf:hover::before, .hov-op95-af:hover::after,
    .hov_area:hover .hov-op95, .hov_area:hover .hov-op95-bf::before, .hov_area:hover .hov-op95-af::after { opacity: .95; }
    .hov-op100:hover, .hov-op100-bf:hover::before, .hov-op100-af:hover::after,
    .hov_area:hover .hov-op100, .hov_area:hover .hov-op100-bf::before, .hov_area:hover .hov-op100-af::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 (any-hover: hover) {
    .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;
    }
    .hov_area:hover .hov-bdr_clr-body, .hov-bdr_clr-body:hover,
    .hov_area:hover .hov-bdr_clr-body-bf::before, .hov-bdr_clr-body-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-body-af::after, .hov-bdr_clr-body-af:hover::after {
      border-color: #fff;
    }
  }

  /* --- body_lt --- */
  .clr-body_lt, .clr-body_lt-bf::before, .clr-body_lt-af::after {
    color: #f7f8f9; fill: #f7f8f9;
  }
  .bg_clr-body_lt, .bg_clr-body_lt-bf::before, .bg_clr-body_lt-af::after {
    background-color: #f7f8f9;
  }
  .bdr_clr-body_lt, .bdr_clr-body_lt-bf::before, .bdr_clr-body_lt-af::after {
    border-color: #f7f8f9;
  }
  @media (any-hover: hover) {
    .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: #f7f8f9; fill: #f7f8f9;
    }
    .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: #f7f8f9;
    }
    .hov_area:hover .hov-bdr_clr-body_lt, .hov-bdr_clr-body_lt:hover,
    .hov_area:hover .hov-bdr_clr-body_lt-bf::before, .hov-bdr_clr-body_lt-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-body_lt-af::after, .hov-bdr_clr-body_lt-af:hover::after {
      border-color: #f7f8f9;
    }
  }

  /* --- body_dk --- */
  .clr-body_dk, .clr-body_dk-bf::before, .clr-body_dk-af::after {
    color: #333333; fill: #333333;
  }
  .bg_clr-body_dk, .bg_clr-body_dk-bf::before, .bg_clr-body_dk-af::after {
    background-color: #333333;
  }
  .bdr_clr-body_dk, .bdr_clr-body_dk-bf::before, .bdr_clr-body_dk-af::after {
    border-color: #333333;
  }
  @media (any-hover: hover) {
    .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: #333333; fill: #333333;
    }
    .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: #333333;
    }
    .hov_area:hover .hov-bdr_clr-body_dk, .hov-bdr_clr-body_dk:hover,
    .hov_area:hover .hov-bdr_clr-body_dk-bf::before, .hov-bdr_clr-body_dk-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-body_dk-af::after, .hov-bdr_clr-body_dk-af:hover::after {
      border-color: #333333;
    }
  }

  /* --- default --- */
  .clr-def, .clr-def-bf::before, .clr-def-af::after,
  a, .wp-pagenavi a, .wp-pagenavi span, select, button,
  .cf_form .btn-form {
    color: #1a1a1a; fill: #1a1a1a;
  }
  .bg_clr-def, .bg_clr-def-bf::before, .bg_clr-def-af::after {
    background-color: #1a1a1a;
  }
  .bdr_clr-def, .bdr_clr-def-bf::before, .bdr_clr-def-af::after {
    border-color: #1a1a1a;
  }
  @media (any-hover: hover) {
    .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: #1a1a1a; fill: #1a1a1a;
    }
    .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 {
      background-color: #1a1a1a;
    }
    .hov_area:hover .hov-bdr_clr-def, .hov-bdr_clr-def:hover,
    .hov_area:hover .hov-bdr_clr-def-bf::before, .hov-bdr_clr-def-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-def-af::after, .hov-bdr_clr-def-af:hover::after {
      border-color: #1a1a1a;
    }
  }

  /* --- logo --- */
  .clr-logo, .clr-logo-bf::before, .clr-logo-af::after {
    color: #AA8350; fill: #AA8350;
  }
  .bg_clr-logo, .bg_clr-logo-bf::before, .bg_clr-logo-af::after {
    background-color: #AA8350;
  }
  .bdr_clr-logo, .bdr_clr-logo-bf::before, .bdr_clr-logo-af::after {
    border-color: #AA8350;
  }
  @media (any-hover: hover) {
    .hov_area:hover .hov-clr-logo, .hov-clr-logo:hover,
    .hov_area:hover .hov-clr-logo-bf::before, .hov-clr-logo-bf:hover::before,
    .hov_area:hover .hov-clr-logo-af::after, .hov-clr-logo-af:hover::after {
      color: #AA8350; fill: #AA8350;
    }
    .hov_area:hover .hov-bg_clr-logo, .hov-bg_clr-logo:hover,
    .hov_area:hover .hov-bg_clr-logo-bf::before, .hov-bg_clr-logo-bf:hover::before,
    .hov_area:hover .hov-bg_clr-logo-af::after, .hov-bg_clr-logo-af:hover::after {
      background-color: #AA8350;
    }
    .hov_area:hover .hov-bdr_clr-logo, .hov-bdr_clr-logo:hover,
    .hov_area:hover .hov-bdr_clr-logo-bf::before, .hov-bdr_clr-logo-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-logo-af::after, .hov-bdr_clr-logo-af:hover::after {
      border-color: #AA8350;
    }
  }

  /* --- main --- */
  .clr-main, .clr-main-bf::before, .clr-main-af::after {
    color: #a79b82; fill: #a79b82;
  }
  .bg_clr-main, .bg_clr-main-bf::before, .bg_clr-main-af::after,
  .cf_form-input .form_flow_list--item-input .num::before,
  .cf_form-confirm .form_flow_list--item-confirm .num::before,
  .cf_form-complete .form_flow_list--item-complete .num::before {
    background-color: #a79b82;
  }
  .bdr_clr-main, .bdr_clr-main-bf::before, .bdr_clr-main-af::after {
    border-color: #a79b82;
  }
  .wpcf7 form.sent .wpcf7-response-output {
    background-color: #a79b820d;
  }
  @media (any-hover: hover) {
    .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: #a79b82; fill: #a79b82;
    }
    .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,
    .wp-pagenavi a:hover {
      background-color: #a79b82;
    }
    .hov_area:hover .hov-bdr_clr-main, .hov-bdr_clr-main:hover,
    .hov_area:hover .hov-bdr_clr-main-bf::before, .hov-bdr_clr-main-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-main-af::after, .hov-bdr_clr-main-af:hover::after {
      border-color: #a79b82;
    }
  }

  /* --- main_dk --- */
  .clr-main_dk, .clr-main_dk-bf::before, .clr-main_dk-af::after {
    color: #7b6c59; fill: #7b6c59;
  }
  .bg_clr-main_dk, .bg_clr-main_dk-bf::before, .bg_clr-main_dk-af::after {
    background-color: #7b6c59;
  }
  .bdr_clr-main_dk, .bdr_clr-main_dk-bf::before, .bdr_clr-main_dk-af::after {
    border-color: #7b6c59;
  }
  @media (any-hover: hover) {
    .hov_area:hover .hov-clr-main_dk, .hov-clr-main_dk:hover,
    .hov_area:hover .hov-clr-main_dk-bf::before, .hov-clr-main_dk-bf:hover::before,
    .hov_area:hover .hov-clr-main_dk-af::after, .hov-clr-main_dk-af:hover::after {
      color: #7b6c59; fill: #7b6c59;
    }
    .hov_area:hover .hov-bg_clr-main_dk, .hov-bg_clr-main_dk:hover,
    .hov_area:hover .hov-bg_clr-main_dk-bf::before, .hov-bg_clr-main_dk-bf:hover::before,
    .hov_area:hover .hov-bg_clr-main_dk-af::after, .hov-bg_clr-main_dk-af:hover::after {
      background-color: #7b6c59;
    }
    .hov_area:hover .hov-bdr_clr-main_dk, .hov-bdr_clr-main_dk:hover,
    .hov_area:hover .hov-bdr_clr-main_dk-bf::before, .hov-bdr_clr-main_dk-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-main_dk-af::after, .hov-bdr_clr-main_dk-af:hover::after {
      border-color: #7b6c59;
    }
  }

  /* --- sub --- */
  .clr-sub, .clr-sub-bf::before, .clr-sub-af::after {
    color: #92B997; fill: #92B997;
  }
  .bg_clr-sub, .bg_clr-sub-bf::before, .bg_clr-sub-af::after,
  .wp-pagenavi span.current {
    background-color: #92B997;
  }
  .bdr_clr-sub, .bdr_clr-sub-bf::before, .bdr_clr-sub-af::after {
    border-color: #92B997;
  }
  strong {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: .35em;
    text-underline-offset: -.15em;
    text-decoration-skip-ink: none;
    text-decoration-color: #92B99780;
  }
  @media (any-hover: hover) {
    .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: #92B997; fill: #92B997;
    }
    .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: #92B997;
    }
    .hov_area:hover .hov-bdr_clr-sub, .hov-bdr_clr-sub:hover,
    .hov_area:hover .hov-bdr_clr-sub-bf::before, .hov-bdr_clr-sub-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-sub-af::after, .hov-bdr_clr-sub-af:hover::after {
      border-color: #92B997;
    }
  }

  /* --- wht --- */
  .clr-wht, .clr-wht-bf::before, .clr-wht-af::after,
  .wp-pagenavi span.current {
    color: #fff; fill: #fff;
  }
  .bg_clr-wht, .bg_clr-wht-bf::before, .bg_clr-wht-af::after {
    background-color: #fff;
  }
  .bdr_clr-wht, .bdr_clr-wht-bf::before, .bdr_clr-wht-af::after {
    border-color: #fff;
  }
  @media (any-hover: hover) {
    .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;
    }
    .hov_area:hover .hov-bdr_clr-wht, .hov-bdr_clr-wht:hover,
    .hov_area:hover .hov-bdr_clr-wht-bf::before, .hov-bdr_clr-wht-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-wht-af::after, .hov-bdr_clr-wht-af:hover::after {
      border-color: #fff;
    }
  }

  /* --- blk --- */
  .clr-blk, .clr-blk-bf::before, .clr-blk-af::after {
    color: #000000; fill: #000000;
  }
  .bg_clr-blk, .bg_clr-blk-bf::before, .bg_clr-blk-af::after {
    background-color: #000000;
  }
  .bdr_clr-blk, .bdr_clr-blk-bf::before, .bdr_clr-blk-af::after {
    border-color: #000000;
  }
  @media (any-hover: hover) {
    .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: #000000; fill: #000000;
    }
    .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: #000000;
    }
    .hov_area:hover .hov-bdr_clr-blk, .hov-bdr_clr-blk:hover,
    .hov_area:hover .hov-bdr_clr-blk-bf::before, .hov-bdr_clr-blk-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-blk-af::after, .hov-bdr_clr-blk-af:hover::after {
      border-color: #000000;
    }
  }

  /* --- gry --- */
  .clr-gry, .clr-gry-bf::before, .clr-gry-af::after {
    color: #e8e8e8; fill: #e8e8e8;
  }
  .bg_clr-gry, .bg_clr-gry-bf::before, .bg_clr-gry-af::after {
    background-color: #e8e8e8;
  }
  .bdr_clr-gry, .bdr_clr-gry-bf::before, .bdr_clr-gry-af::after,
  .calendar_list--item .cal-body td {
    border-color: #e8e8e8;
  }
  @media (any-hover: hover) {
    .hov_area:hover .hov-clr-gry, .hov-clr-gry:hover,
    .hov_area:hover .hov-clr-gry-bf::before, .hov-clr-gry-bf:hover::before,
    .hov_area:hover .hov-clr-gry-af::after, .hov-clr-gry-af:hover::after {
      color: #e8e8e8; fill: #e8e8e8;
    }
    .hov_area:hover .hov-bg_clr-gry, .hov-bg_clr-gry:hover,
    .hov_area:hover .hov-bg_clr-gry-bf::before, .hov-bg_clr-gry-bf:hover::before,
    .hov_area:hover .hov-bg_clr-gry-af::after, .hov-bg_clr-gry-af:hover::after {
      background-color: #e8e8e8;
    }
    .hov_area:hover .hov-bdr_clr-gry, .hov-bdr_clr-gry:hover,
    .hov_area:hover .hov-bdr_clr-gry-bf::before, .hov-bdr_clr-gry-bf:hover::before,
    .hov_area:hover .hov-bdr_clr-gry-af::after, .hov-bdr_clr-gry-af:hover::after {
      border-color: #e8e8e8;
    }
  }

  /* --- 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 (any-hover: hover) {
    .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 (any-hover: hover) {
    .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 (any-hover: hover) {
    .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 (any-hover: hover) {
    .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 (any-hover: hover) {
    .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: #E93223; fill: #E93223;
  }
  .bg_clr-yt, .bg_clr-yt-bf::before, .bg_clr-yt-af::after {
    background-color: #E93223;
  }
  .bdr_clr-yt, .bdr_clr-yt-bf::before, .bdr_clr-yt-af::after {
    border-color: #E93223;
  }
  @media (any-hover: hover) {
    .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: #E93223; fill: #E93223;
    }
    .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: #E93223;
    }
  }
  .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 (any-hover: hover) {
    .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 (any-hover: hover) {
    .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
**************************************** */

  @keyframes logo_stroke {
   0% {
     stroke-dashoffset: 2000;
     fill:transparent;
    }
     100% {
     stroke-dashoffset: 0;
     fill:#AA8350;
    }
  }

  /* --- sect_ttl --- */
  .sect_ttl {
    row-gap: 12px;
  }
  .sect_ttl .logo_mark {
    translate: 8% 0;
  }
  .sect_ttl .fnt-jp,
  .sect_ttl .fnt-en {
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: .1em;
  }
  .sect_ttl .fnt-jp {
    font-size: 272%;
    letter-spacing: .3em;
  }
  .sect_ttl .fnt-en {
    font-size: 143%;
    letter-spacing: .5em;
  }
  .sect_ttl.sect_ttl-sm .fnt-jp {
    font-size: 214%;
  }
  .sect_ttl.sect_ttl-sm .fnt-en {
    font-size: 114%;
  }
  .sect_ttl.sect_ttl-sm .fnt-cur {
    position: absolute;
    left: -136px;
    top: -100px;
  }
  .sect_ttl.sect_ttl-sm .fnt-cur-xs {
    left: -72px;
    top: -60px;
  }
  .logo_mark {
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    opacity: 0;
  }
  .visible .logo_mark {
    stroke-width: .5;
    animation-duration: 0s,1.2s;
    animation-timing-function: cubic-bezier(.55, .05, .22, .99);
    animation-delay: .2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    stroke: #AA8350;
    animation-name: fade_in,logo_stroke;
  }

  /* --- heading --- */
  h1,h2,h3,h4,h5,h6 { font-weight: 500; }
  .head1 { font-size: 229%; }
  .head2 { font-size: 200%; }
  .head3 { font-size: 179%; }
  .head4 { font-size: 157%; }
  .head5 { font-size: 143%; }

  @media (max-width: 1480px) {
    .sect_ttl .fnt-jp { font-size: 245%; }
    .sect_ttl .fnt-en { font-size: 129%; }
    .sect_ttl.sect_ttl-sm .fnt-jp { font-size: 193%; }
    .sect_ttl.sect_ttl-sm .fnt-en { font-size: 103%; }
    .head1 { font-size: 206%; }
    .head2 { font-size: 180%; }
    .head3 { font-size: 161%; }
    .head4 { font-size: 141%; }
    .head5 { font-size: 129%; }
    .sect_ttl .logo_mark { width: 320px; }
  }
  @media (max-width: 1280px) {
    .sect_ttl.sect_ttl-sm .fnt-cur {
      left: -96px;
      top: -64px;
    }
  }
  @media (max-width: 1064px) {
    .sect_ttl .fnt-jp { font-size: 218%; }
    .sect_ttl .fnt-en { font-size: 114%; }
    .sect_ttl.sect_ttl-sm .fnt-jp { font-size: 171%; }
    .sect_ttl.sect_ttl-sm .fnt-en { font-size: 91%; }
    .head1 { font-size: 183%; }
    .head2 { font-size: 160%; }
    .head3 { font-size: 143%; }
    .head4 { font-size: 126%; }
    .head5 { font-size: 114%; }
    .sect_ttl .logo_mark {
      width: 280px;
      height: 80px;
    }
  }
  @media (max-width: 768px) {
    .sect_ttl.sect_ttl-sm .fnt-cur {
      left: -64px;
      top: -48px;
    }
  }
  @media (max-width: 560px) {
    .sect_ttl .fnt-jp { font-size: 160%; }
    .sect_ttl .fnt-en { font-size: 100%; }
    .sect_ttl.sect_ttl-sm .fnt-jp { font-size: 150%; }
    .sect_ttl.sect_ttl-sm .fnt-en { font-size: 80%; }
    .sect_ttl.sect_ttl-sm .fnt-cur {
      left: -56px;
      top: -44px;
    }
    .head1 { font-size: 143%; }
    .head2 { font-size: 135%; }
    .head3 { font-size: 125%; }
    .head4 { font-size: 110%; }
    .head5 { font-size: 100%; }
    .sect_ttl .logo_mark {
      width: 200px;
      height: 56px;
    }
  }

/* txt
**************************************** */
  .fnt-serif { font-family: "Noto Serif", serif; font-weight: 500; }
  .fnt-cur { font-family: "WindSong", cursive; letter-spacing: 0em; font-weight: 300; }
  .fnt-cur-lg { font-size: 1429%; }
  .fnt-cur-sm { font-size: 857%; }
  .fnt-cur-xs { font-size: 500%; }
  .mgn_txts p:not(:last-child) { margin-bottom: 1.5em; }
  .mgn_txts p.btm_no:not(:last-child) { margin-bottom: 0; }
  .txt-lft { text-align: left; }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-jus { text-align: justify; }
  .fnt-maxl { font-size: 129%; }
  .fnt-xxl { font-size: 121%; }
  .fnt-xl  { font-size: 114%; }
  .fnt-lg  { font-size: 107%; }
  .fnt-sm  { font-size: 93%; }
  .fnt-xs  { font-size: 86% }
  .fnt-xxs { font-size: 79% }
  .fnt-maxs { font-size: 72% }
  @media (max-width: 1280px) {
    .fnt-cur-lg { font-size: 857%; }
    .fnt-cur-sm { font-size: 500%; }
    .fnt-cur-xs { font-size: 300%; }
  }
  @media (max-width: 1064px) {
    .fnt-maxl { font-size: 121%; }
    .fnt-xxl { font-size: 114%; }
    .fnt-xl  { font-size: 109%; }
  }
  @media (max-width: 960px) {
    .fnt-cur-lg { font-size: 640%; }
    .fnt-cur-sm { font-size: 400%; }
    .fnt-cur-xs { font-size: 200%; }
  }
  @media (max-width: 560px) {
    .fnt-cur-lg { font-size: 500%; }
    .fnt-cur-sm { font-size: 350%; }
    .fnt-cur-xs { font-size: 188%; }
    .fnt-maxl { font-size: 114%; }
    .fnt-xxl { font-size: 109%; }
    .fnt-xl  { font-size: 106%; }
  }

  .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-50 { letter-spacing: .05em; }
  .ls-100 { letter-spacing: .1em; }
  .ls-150 { letter-spacing: .15em; }
  .ls-200 { letter-spacing: .2em; }
  .ls-250 { letter-spacing: .25em; }
  .ls-300 { letter-spacing: .3em; }
  .ls-350 { letter-spacing: .35em; }
  .ls-400 { letter-spacing: .4em; }
  .ls-450 { letter-spacing: .45em; }
  .ls-500 { letter-spacing: .5em; }
  .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; }
  .lh-21 { line-height: 2.1em; }
  .lh-22 { line-height: 2.2em; }
  .lh-23 { line-height: 2.3em; }
  .lh-24 { line-height: 2.4em; }
  .lh-25 { line-height: 2.5em; }
  .lh-26 { line-height: 2.6em; }
  .lh-27 { line-height: 2.7em; }
  .lh-28 { line-height: 2.8em; }
  .lh-29 { line-height: 2.9em; }
  .lh-30 { line-height: 3.0em; }

  .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;
  }
  @media screen and (max-width: 1480px) {
    .txt-jus-lgpc { text-align: justify; }
    .txt-lft-lgpc { text-align: left; }
    .txt-ctr-lgpc { text-align: center; }
    .txt-rgt-lgpc { text-align: right; }
  }
  @media screen and (max-width: 1280px) {
    .txt-jus-smpc { text-align: justify; }
    .txt-lft-smpc { text-align: left; }
    .txt-ctr-smpc { text-align: center; }
    .txt-rgt-smpc { text-align: right; }
  }
  @media screen and (max-width: 1064px) {
    .txt-jus-xspc { text-align: justify; }
    .txt-lft-xspc { text-align: left; }
    .txt-ctr-xspc { text-align: center; }
    .txt-rgt-xspc { text-align: right; }
  }
  @media screen and (max-width: 960px) {
    .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) {
    .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-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;
  }

  /* --- hor_list dot --- */
  .hor_list-dot > *:not(:last-child)::after {
    content: '\30FB';
    margin-left: 4px;
    margin-right: 4px;
  }

  /* --- hor_list slash --- */
  .hor_list-slash > *:not(:last-child)::after {
    content: '\FF0F';
    margin-left: 6px;
    margin-right: 6px;
  }

  /* --- hor_list comma --- */
  .hor_list-slash > *:not(:last-child)::after {
    content: '\3001';
    margin-left: 4px;
    margin-right: 4px;
  }

  /* --- line_list --- */
  .line_list--item {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .line_list--item .ttl {
    width: 220px;
  }
  @media (max-width: 768px) {
    .line_list--item .ttl {
      width: 100%;
      opacity: .65;
      font-size: 93%;
    }
  }

  /* --- tag_list --- */
  .tag_list {
    gap: 4px;
  }
  .tag_list--item {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    padding-right: 18px;
  }

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

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

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

  /* --- 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: 0;
    border-top-width: 1px;
    border-top-style: solid;
  }
  .ico-arrow-top::before,
  .ico-arrow-btm::before {
    transform: rotate(40deg);
  }
  .ico-arrow-top::after,
  .ico-arrow-btm::after {
    transform: rotate(-40deg);
  }
  .ico-arrow-top::after,
  .ico-arrow-btm::before {
    right: calc(50% - 3%);
  }
  .ico-arrow-top::before,
  .ico-arrow-btm::after {
    left: calc(50% - 3%);
  }
  .ico-arrow-lft::before,
  .ico-arrow-lft::after,
  .ico-arrow-rgt::before,
  .ico-arrow-rgt::after {
    right: calc(50% - 3%);
    width: 0;
    height: 40%;
    border-right-width: 1px;
    border-right-style: solid;
  }
  .ico-arrow-lft::before,
  .ico-arrow-rgt::before {
    transform: rotate(40deg);
  }
  .ico-arrow-lft::after,
  .ico-arrow-rgt::after {
    transform: rotate(-40deg);
  }
  .ico-arrow-lft::after,
  .ico-arrow-rgt::before {
    top: calc(50% - 3%);
  }
  .ico-arrow-lft::before,
  .ico-arrow-rgt::after {
    bottom: calc(50% - 3%);
  }

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

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

  /* --- btn-def --- */
  .btn-def {
    min-width: 240px;
  }
  .btn-def .btn--in {
    column-gap: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .btn-def .btn--in::before {
    border-width: 1px;
    border-style: solid;
  }
  .cir_arrow,
  .cir_outlink {
    width: 32px;
    height: 32px;
  }
  .cir_arrow::before,
  .cir_outlink::before {
    border-radius: 100vmax;
    border-width: 1px;
    border-style: solid;
  }
  .cir_arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 13%;
    height: 20%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  .cir_outlink .ico-outlink {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .btn-def.btn-sm .btn--in {
    padding-top: 18px;
    padding-bottom: 18px;
    column-gap: 24px;
  }
  .btn-def.btn-sm .btn--in .cir_arrow,
  .btn-def.btn-sm .btn--in .cir_outlink {
    scale: .85;
  }
  .btn-def.btn-xs .btn--in {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
    column-gap: 8px;
  }
  .btn-def.btn-xs .btn--in .txt {
    letter-spacing: .3em;
  }
  .btn-def.btn-xs .btn--in .cir_arrow,
  .btn-def.btn-xs .btn--in .cir_outlink {
    scale: .7;
  }
  .btn-def.btn-maxs .btn--in {
    padding-top: 0;
    padding-bottom: 1px;
    padding-left: 12px;
    padding-right: 0;
  }
  .btn-def.btn-maxs {
    min-width: 104px;
  }
  .btn-def.btn-maxs .btn--in {
    column-gap: 0;
    font-size: 70%;
  }
  .btn-def.btn-maxs .btn--in .cir_arrow,
  .btn-def.btn-maxs .btn--in .cir_outlink {
    scale: .5;
  }
  .btn-def.btn-maxs .btn--in .txt {
    letter-spacing: .2em;
  }
  @keyframes arrow_mov {
    0% { transform: translateX(0); opacity: .8; }
    50% { transform: translateX(4px); opacity: 0; }
    51% { transform: translateX(-4px); opacity: 0; }
    100% { transform: translateX(0); opacity: .8; }
  }
  @media (any-hover: hover) {
    .btn-def:hover .cir_arrow::before,
    .hov_area:hover .cir_arrow::before,
    .calendar_list .slick-arrow:not(.slick-disabled):hover::before,
    .btn-def:hover .cir_outlink::before,
    .hov_area:hover .cir_outlink::before {
      scale: .87;
      opacity: .5;
    }
    .btn-def:hover .cir_arrow::after,
    .hov_area:hover .cir_arrow::after,
    .calendar_list .slick-arrow:not(.slick-disabled):hover::after {
      animation-duration: 1s;
      animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
      animation-delay: 0s;
      animation-iteration-count: infinite;
      animation-fill-mode: forwards;
      animation-name: arrow_mov;
    }
  }
  @media (max-width: 1064px) {
    .btn-def .btn--in {
      padding-top: 18px;
      padding-bottom: 18px;
      column-gap: 24px;
    }
    .btn-def.btn-sm .btn--in {
      padding-top: 12px;
      padding-bottom: 12px;
      column-gap: 16px;
    }
    .btn-def.btn-xs .btn--in {
      padding-top: 4px;
      padding-bottom: 4px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .btn-def.btn-maxs .btn--in {
      padding-top: 0;
      padding-bottom: 1px;
      padding-left: 12px;
      padding-right: 0;
    }
  }
  @media (max-width: 560px) {
    .btn-def {
      min-width: 180px;
    }
    .btn-def .btn--in {
      padding-top: 12px;
      padding-bottom: 12px;
      padding-left: 16px;
      padding-right: 16px;
      column-gap: 20px;
    }
    .btn-def.btn-sm .btn--in {
      padding-top: 8px;
      padding-bottom: 8px;
      column-gap: 16px;
    }
    .btn-def.btn-xs .btn--in {
      padding-top: 4px;
      padding-bottom: 4px;
      padding-left: 16px;
      padding-right: 16px;
      column-gap: 6px;
    }
    .btn-def .btn--in .ls-500 {
      letter-spacing: .3em;
    }
  }


  .js-hov_txt {
    position: relative;
    display: inline-block;
    overflow: hidden;
    line-height: 1;
  }
  .js-hov_txt .hov_txt-btm {
    display: inline-block;
    white-space: nowrap;
    transform: translateY(110%);
  }

  .js-hov_txt .hov_txt-top {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    transform: translateY(0%);
  }
  @media (any-hover: hover) {
    .hov_area:hover .hov_txt-top {
      transform: translateY(-110%);
    }
    .hov_area:hover .hov_txt-btm {
      transform: translateY(0%);
    }
    .carousel_slider--item.hov_area .hov_txt-top,
    .lineup_list--item.hov_area .hov_txt-top {
      transform: translateY(0);
    }
    .carousel_slider--item.hov_area .hov_txt-btm,
    .lineup_list--item.hov_area .hov_txt-btm {
      transform: translateY(110%);
    }
    .carousel_slider--item.slick-current.hov_area:hover .hov_txt-top,
    .lineup_list--item.slick-current.hov_area:hover .hov_txt-top {
      transform: translateY(-110%);
    }
    .carousel_slider--item.slick-current.hov_area:hover .hov_txt-btm,
    .lineup_list--item.slick-current.hov_area:hover .hov_txt-btm {
      transform: translateY(0%);
    }
  }

  /* --- btn-fix_btm --- */
  .btn-fix_btm {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 1em;
  }
  .btn-fix_btm::after {
    border-width: 1px;
    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;
  }

/* calendar_btn
**************************************** */
  .calendar_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    column-gap: 24px;
    padding-right: 24px;
  }
  .calendar_btn::before {
    transform: translateY(-110%);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_top;
  }
  .calendar_btn .svg_ico {
    width: 96px;
    height: 96px;
  }
  .calendar_btn .svg_ico::after {
    inset: 6px;
  }
  .calendar_btn .cir_arrow {
    width: 24px;
    height: 24px;
  }
  @media (any-hover: hover) {
    .calendar_btn:hover::before {
      animation-name: slide-to_top;
    }
  }
  @media (max-width: 560px) {
    .calendar_btn {
      width: 100%;
      padding-right: 16px;
      column-gap: 16px;
    }
    .calendar_btn .svg_ico {
      width: 80px;
      height: 80px;
    }
    .calendar_btn .svg_ico svg {
      width: 36px;
      height: 36px;
    }
    .calendar_btn .ttl {
      font-size: 88%;
      margin-bottom: 4px;
    }
    .calendar_btn p {
      font-size: 70%;
    }
  }

/* 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 .txt_area {
    -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 .txt_area {
      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 {
    row-gap: 64px;
    column-gap: 48px;
  }
  .clm-2 > * { width: calc((100% - 48px) / 2); }
  .clm-3 { gap: 32px; }
  .clm-3 > * { width: calc((100% - 32px*2) / 3); }
  .clm-4 { gap: 24px; }
  .clm-4 > * { width: calc((100% - 24px*3) / 4); }
  .clm-5 { gap: 20px; }
  .clm-5 > * { width: calc((100% - 20px*4) / 5); }
  @media screen and (max-width: 1680px) {
    .clm-1-xlpc { gap: 48px; }
    .clm-1-xlpc > * { width: 100%; }
    .clm-2-xlpc { gap: 40px; }
    .clm-2-xlpc > * { width: calc((100% - 40px) / 2); }
    .clm-3-xlpc { gap: 32px; }
    .clm-3-xlpc > * { width: calc((100% - 32px*2) / 3); }
    .clm-4-xlpc { gap: 24px; }
    .clm-4-xlpc > * { width: calc((100% - 24px*3) / 4); }
    .clm-5-xlpc { gap: 20px; }
    .clm-5-xlpc > * { width: calc((100% - 20px*4) / 5); }
  }
  @media screen and (max-width: 1480px) {
    .clm-1-lgpc { gap: 48px; }
    .clm-1-lgpc > * { width: 100%; }
    .clm-2-lgpc { gap: 40px; }
    .clm-2-lgpc > * { width: calc((100% - 40px) / 2); }
    .clm-3-lgpc { gap: 32px; }
    .clm-3-lgpc > * { width: calc((100% - 32px*2) / 3); }
    .clm-4-lgpc { gap: 24px; }
    .clm-4-lgpc > * { width: calc((100% - 24px*3) / 4); }
    .clm-5-lgpc { gap: 20px; }
    .clm-5-lgpc > * { width: calc((100% - 20px*4) / 5); }
  }
  @media screen and (max-width: 1280px) {
    .clm-1-smpc { gap: 40px; }
    .clm-1-smpc > * { width: 100%; }
    .clm-2-smpc { gap: 32px; }
    .clm-2-smpc > * { width: calc((100% - 32px) / 2); }
    .clm-3-smpc { gap: 24px; }
    .clm-3-smpc > * { width: calc((100% - 24px*2) / 3); }
    .clm-4-smpc { gap: 20px; }
    .clm-4-smpc > * { width: calc((100% - 20px*3) / 4); }
    .clm-5-smpc { gap: 16px; }
    .clm-5-smpc > * { width: calc((100% - 16px*4) / 5); }
  }
  @media screen and (max-width: 1064px) {
    .clm-1-xspc { gap: 32px; }
    .clm-1-xspc > * { width: 100%; }
    .clm-2-xspc { gap: 24px; }
    .clm-2-xspc > * { width: calc((100% - 24px) / 2); }
    .clm-3-xspc { gap: 20px; }
    .clm-3-xspc > * { width: calc((100% - 20px*2) / 3); }
    .clm-4-xspc { gap: 16px; }
    .clm-4-xspc > * { width: calc((100% - 16px*3) / 4); }
    .clm-5-xspc { gap: 12px; }
    .clm-5-xspc > * { width: calc((100% - 12px*4) / 5); }
  }
  @media screen and (max-width: 960px) {
    .clm-1-tab { gap: 32px; }
    .clm-1-tab > * { width: 100%; }
    .clm-2-tab { column-gap: 32px; row-gap: 40px; }
    .clm-2-tab > * { width: calc((100% - 32px) / 2); }
    .clm-3-tab { gap: 20px; }
    .clm-3-tab > * { width: calc((100% - 20px*2) / 3); }
    .clm-4-tab { gap: 16px; }
    .clm-4-tab > * { width: calc((100% - 16px*3) / 4); }
    .clm-5-tab { gap: 12px; }
    .clm-5-tab > * { width: calc((100% - 12px*4) / 5); }
  }
  @media screen and (max-width: 768px) {
    .clm-1-lgsp { gap: 32px; }
    .clm-1-lgsp > * { width: 100%; }
    .clm-2-lgsp { gap: 24px; }
    .clm-2-lgsp > * { width: calc((100% - 24px) / 2); }
    .clm-3-lgsp { gap: 20px; }
    .clm-3-lgsp > * { width: calc((100% - 20px*2) / 3); }
    .clm-4-lgsp { gap: 16px; }
    .clm-4-lgsp > * { width: calc((100% - 16px*3) / 4); }
    .clm-5-lgsp { gap: 12px; }
    .clm-5-lgsp > * { width: calc((100% - 12px*4) / 5); }
  }
  @media screen and (max-width: 560px) {
    .clm-1-sp { gap: 24px; }
    .clm-1-sp > * { width: 100%; }
    .clm-2-sp { column-gap: 16px; row-gap: 24px; }
    .clm-2-sp > * { width: calc((100% - 16px) / 2); }
    .clm-3-sp { gap: 16px; }
    .clm-3-sp > * { width: calc((100% - 16px*2) / 3); }
    .clm-4-sp { gap: 12px; }
    .clm-4-sp > * { width: calc((100% - 12px*3) / 4); }
    .clm-5-sp { gap: 8px; }
    .clm-5-sp > * { width: calc((100% - 8px*4) / 5); }
  }
  @media screen and (max-width: 413px) {
    .clm-1-smsp { gap: 16px; }
    .clm-1-smsp > * { width: 100%; }
    .clm-2-smsp { gap: 12px; }
    .clm-2-smsp > * { width: calc((100% - 12px) / 2); }
    .clm-3-smsp { gap: 12px; }
    .clm-3-smsp > * { width: calc((100% - 12px*2) / 3); }
    .clm-4-smsp { gap: 8px; }
    .clm-4-smsp > * { width: calc((100% - 8px*3) / 4); }
    .clm-5-smsp { gap: 6px; }
    .clm-5-smsp > * { width: calc((100% - 6px*4) / 5); }
  }
  @media screen and (max-width: 374px) {
    .clm-1-xssp { gap: 16px; }
    .clm-1-xssp > * { width: 100%; }
    .clm-2-xssp { gap: 12px; }
    .clm-2-xssp > * { width: calc((100% - 12px) / 2); }
    .clm-3-xssp { gap: 12px; }
    .clm-3-xssp > * { width: calc((100% - 12px*2) / 3); }
    .clm-4-xssp { gap: 8px; }
    .clm-4-xssp > * { width: calc((100% - 8px*3) / 4); }
    .clm-5-xssp { gap: 6px; }
    .clm-5-xssp > * { width: calc((100% - 6px*4) / 5); }
  }


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

    GSAP

############################################################################## */
  .prlx .prlx_cont {
    height: calc(100% + 80px);
    top: -40px;
  }
  .prlx .prlx_obj {
    height: 120%;
    top: -10%;
    scale: 1.05;
  }

/* img_slider
*************************************************** */
  .img_slider_wrap {
    overflow: hidden;
  }

  .img_slider {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: img-slider-flow 70s linear infinite;
    will-change: transform;
    gap: 20px;
  }

  .img_slider--item {
    flex: 0 0 auto;
  }

  .img_slider picture,
  .img_slider img {
    display: block;
    height: 400px;
    width: auto;
  }

  @keyframes img-slider-flow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .img_slider { animation: none; }
  }

  @media (max-width: 1280px) {
    .img_slider picture,
    .img_slider img { height: 300px; }
  }

  @media (max-width: 1064px) {
    .img_slider picture,
    .img_slider img { height: 260px; }
  }

  @media (max-width: 560px) {
    .img_slider { animation-duration: 20s; }
    .img_slider { gap: 12px; }
    .img_slider picture,
    .img_slider img { height: 180px; }
  }

/* term
*************************************************** */
  .term_list {
    gap: 8px;
  }
  .term {
    z-index: 10;
  }
  .term a {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .term a::before {
    transform: trasnlateY(110%);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_top;
  }
  @media (any-hover: hover) {
    .term:hover a::before {
      animation-name: slide-to_top;
    }
  }

/* hr
*************************************************** */
  hr {
    height: 4px;
    width: 100%;
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }


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

    PLUGIN

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

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


  .carousel_nav {
    margin-top: 24px;
  }
  .carousel_nav .slick-arrow,
  .carousel_nav .slick-dot {
    width: 21px;
    height: 21px;
  }
  .carousel_nav .slick-arrow::before,
  .carousel_nav .slick-dot::before,
  .carousel_nav .slick-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .carousel_nav .slick-arrow::before {
    width: 8px;
    height: 8px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    rotate: 45deg;
  }
  .carousel_nav .slick-prev {
    scale: -1 -1;
  }
  .carousel_nav .slick-dots {
    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;
  }
  .carousel_nav .slick-dot::before,
  .carousel_nav .slick-dot::after {
    width: 5px;
    height: 5px;
    border-radius: 100vmax;
  }
  .carousel_nav .slick-dot::before {
    border-width: 1px;
    border-style: solid;
  }
  .carousel_nav .slick-active .slick-dot::after {
    opacity: 1;
  }
  @media (any-hover: hover) {
    .carousel_nav .slick-dots li:not(.slick-active) .slick-dot:hover {
      opacity: .5;
    }
  }


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

    HEADER

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

/* header
*************************************************** */
  .header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .header--nav {
    column-gap: 24px;
  }
  @media screen and (max-width: 960px) {
    .header {
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  @media screen and (max-width: 560px) {
    .header {
      padding-left: 16px;
      padding-right: 0;
    }
  }

/* hnav
*************************************************** */
  .min_pdg {
    padding-right: 210px;
  }
  .hnav_list {
    position: fixed;
    top: 0;
    right: 0;
    width: 210px;
    height: 100%;
    padding-top: 48px;
    mix-blend-mode: exclusion;
    z-index: 9999;
  }
  .hnav_list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
  }
  .hnav_list--item_in {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 48px;
    padding-right: 48px;
  }
  .hnav_list--item_in .label {
    width: 100%;
    row-gap: 12px;
  }
  .hnav_list--item_in .txt {
    line-height: 1em;
  }
  .hnav_list--item_in .ico-arrow {
    position: absolute;
  }
  .hnav_list--item_in.output-1 .txt {
    position: relative;
    padding-right: 24px;
  }
  .hnav_list--item_in.output-2 .txt .ico-arrow {
    display: none;
  }
  .hnav_list--item_in.output-1 .txt .ico-arrow {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
  }
  .hnav_list--item_in.output-2 > .ico-arrow {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  .hnav_list--item_in .current_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
  }
  .is-lowh .hnav_list {
    padding-top: 24px;
  }
  .is-lowh .hnav_list--item_in {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  @media (max-width: 1280px) {
    .min_pdg {
      padding-right: 160px;
    }
    .hnav_list {
      width: 160px;
    }
    .hnav_list--item_in {
      padding-top: 18px;
      padding-bottom: 18px;
      padding-left: 32px;
      padding-right: 32px;
    }
  }
  @media (max-width: 960px) {
    .min_pdg {
      padding-right: 0;
    }
    .hnav_list {
      display: none;
    }
  }

  /* --- anim --- */
  .home .hnav_list {
    clip-path: inset(0 0 100% 0);
  }
  .home .hnav_list--item {
    opacity: 0;
    transform: translateX(8px);
  }
  .home .hnav_list--item_in .current_layer,
  .home .head_btn_list.fixed,
  .calendar_btn {
    opacity: 0;
  }
  .home.loaded .hnav_list {
    clip-path: inset(0 0 0 0);
    transition-delay: 2.4s;
  }
  .home.loaded.min .hnav_list {
    transition-delay: 1s;
  }
  .home.loaded .hnav_list--item,
  .home.loaded .hnav_list--item_in .current_layer {
    opacity: 1;
    transform: translateX(0);
  }
  .home.loaded .hnav_list--item:nth-of-type(1) { transition-delay: calc(2.8s + .05s); }
  .home.loaded .hnav_list--item:nth-of-type(2) { transition-delay: calc(2.8s + .1s); }
  .home.loaded .hnav_list--item:nth-of-type(3) { transition-delay: calc(2.8s + .15s); }
  .home.loaded .hnav_list--item:nth-of-type(4) { transition-delay: calc(2.8s + .2s); }
  .home.loaded .hnav_list--item:nth-of-type(5) { transition-delay: calc(2.8s + .25s); }
  .home.loaded .hnav_list--item:nth-of-type(6) { transition-delay: calc(2.8s + .3s); }
  .home.loaded .hnav_list--item:nth-of-type(7) { transition-delay: calc(2.8s + .35s); }
  .home.loaded .hnav_list--item:nth-of-type(8) { transition-delay: calc(2.8s + .4s); }
  .home.loaded.min .hnav_list--item:nth-of-type(1) { transition-delay: calc(1.4s + .05s); }
  .home.loaded.min .hnav_list--item:nth-of-type(2) { transition-delay: calc(1.4s + .1s); }
  .home.loaded.min .hnav_list--item:nth-of-type(3) { transition-delay: calc(1.4s + .15s); }
  .home.loaded.min .hnav_list--item:nth-of-type(4) { transition-delay: calc(1.4s + .2s); }
  .home.loaded.min .hnav_list--item:nth-of-type(5) { transition-delay: calc(1.4s + .25s); }
  .home.loaded.min .hnav_list--item:nth-of-type(6) { transition-delay: calc(1.4s + .3s); }
  .home.loaded.min .hnav_list--item:nth-of-type(7) { transition-delay: calc(1.4s + .35s); }
  .home.loaded.min .hnav_list--item:nth-of-type(8) { transition-delay: calc(1.4s + .4s); }
  .home.loaded .hnav_list--item_in .current_layer { transition-delay: 3s; }
  .home.loaded.min .hnav_list--item_in .current_layer { transition-delay: 1.8s; }
  .home.loaded .head_btn_list.fixed,
  .calendar_btn {
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: fade-to_top;
  }
  .home.loaded.min .head_btn_list.fixed {
    animation-delay: 2s;
  }
  .loaded.scrolled .calendar_btn {
    animation-name: fade-to_rgt;
    animation-delay: 0s;
  }
  .calendar_btn,
  .scrolled.is-bottom .calendar_btn {
    animation-name: fade-rev_lft;
    animation-delay: 0s;
  }
  @media (max-width: 560px) {
    .loaded.scrolled .calendar_btn {
      animation-name: fade-to_top;
    }
    .calendar_btn,
    .scrolled.is-bottom .calendar_btn {
      animation-name: fade-rev_btm;
    }
  }

/* head_btn
*************************************************** */
  .head_btn_list.fixed {
    position: fixed;
    width: 209px;
    bottom: 0;
    right: 0;
    z-index: 9999;
  }
  .head_btn_list--item .head_btn--in {
    height: 96px;
    row-gap: 12px;
  }
  .head_btn_list--item .head_btn--in::before {
    transform: translateY(-110%);
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-rev_top;
  }
  @media (any-hover: hover) {
    .head_btn_list--item .head_btn--in:hover::before {
      animation-name: slide-to_top;
    }
  }
  @media (max-width: 1280px) {
    .head_btn_list.fixed {
      width: 159px;
    }
    .head_btn_list--item .head_btn--in {
      height: 80px;
      row-gap: 8px;
    }
    .head_btn_list--item .head_btn--in svg {
      width: 22px;
      height: 22px;
    }
    .head_btn_list--item .head_btn--in .txt {
      font-size: 93%;
      letter-spacing: .2em;
    }
  }
  @media (max-width: 960px) {
    .head_btn_list.fixed {
      display: none;
    }
  }

/* megamenu
*************************************************** */
  .megamenu {
    position: absolute;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .megamenu .megamenu_list--item .img_area {
    display: block;
  }
  .hnav_list--item:hover .megamenu {
    opacity: 1;
    pointer-events: all;
  }

/* gnav_btn
*************************************************** */
  .gnav_btn {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 100000;
    mix-blend-mode: exclusion;
    border-width: 1px;
    border-style: solid;
  }
  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    transition: all .4s;
    box-sizing: border-box;
    width: 100%;
    height: 1px;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: 4px;
    transform-origin: right bottom;
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 4px;
    transform-origin: right top;
  }
  .gnav_btn--txt {
    display: block;
    line-height: 1em;
    clip-path: inset(0 0 0);
    white-space: nowrap;
  }
  .gnav_btn--txt span {
    display: inline-block;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  .gnav_btn--txt .open {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .gnav_btn--txt .close {
    transform: translateY(200%);
  }
  .gnav_btn--lines {
    position: relative;
    width: 18px;
    height: 1px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
  }
  .gnav_btn.active .gnav_btn--lines span:nth-of-type(1) {
    opacity: 0;
  }
  .gnav_btn.active .gnav_btn--lines span:nth-of-type(2) {
    transform: rotate(26deg);
  }
  .gnav_btn.active .gnav_btn--lines span:nth-of-type(3) {
    transform: rotate(-26deg);
  }
  .gnav_btn.active .gnav_btn--txt .open {
    transform: translate(-50%,-200%);
  }
  .gnav_btn.active .gnav_btn--txt .close {
    transform: translateY(0);
  }
  .gnav_btn-ver {
    width: 56px;
    height: 56px;
  }
  .gnav_btn-ver .gnav_btn--txt {
    font-size: 10px;
    transform: scale(.9);
  }
  .gnav_btn-ver .gnav_btn--lines {
    margin-bottom: 10px;
  }
  .gnav_btn-hor .gnav_btn--in {
    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: 12px;
  }

/* gnav
*************************************************** */
  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
  .header.active .gnav {
    opacity: 1;
    pointer-events: all;
  }
  .gnav .tap_area {
    display: none;
  }
  .gnav .ico {
    display: inline-block;
  }
  .gnav_list--item_in .txt {
    line-height: 1em;
  }

/* slide_true
*************************************************** */
  @keyframes gnav_sub_out {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-16px); opacity: 0; }
  }
  @keyframes gnav_sub_in {
    0% { transform: translateX(16px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @media screen and (max-width: 768px) {
    .header.slide_true .gnav_sub {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0;
      pointer-events: none;
    }
    .header.slide_true .gnav_list--item:not(.sub_show) {
      position: relative;
      z-index: 0;
    }
    .header.slide_true .gnav_list--item_in .ico-arrow {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }
    .header.slide_true .gnav_list--item.has_sub .ico-arrow,
    .header.slide_true .gnav .tap_area {
      display: flex;
    }
    .header.slide_true .gnav_list--item .tap_area {
      column-gap: 12px;
      padding-bottom: 12px;
    }
    .header.slide_true .gnav_list--item .tap_area .label {
      row-gap: 8px;
    }
    .header.slide_true .gnav_list--item .tap_area .txt {
      line-height: 1em;
    }
    .header.slide_true .gnav_list--item .tap_area .txt:nth-of-type(2) {
      font-size: 70%;
      opacity: .5;
    }
    .header.slide_true .gnav_list--item.has_sub .tap_area .ico-arrow-rgt {
      display: none;
    }
    .header.slide_true .gnav_list--item.has_sub .gnav_list--item_in {
      padding-right: 24px;
    }
    .header.slide_true .snav_list {
      padding-left: 0;
      row-gap: 16px;
    }
    .header.slide_true .snav_list--item_in {
      column-gap: 12px;
    }
    .header.slide_true .snav_list--item .img_area {
      width: 72px;
      height: 44px;
    }
    .header.slide_true .snav_list--item .ttl {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1;
    }
    .header.slide_true .snav_list--item .ico-arrow {
      width: 12px;
      height: 12px;
    }
    .header.slide_true .gnav_list--item .tap_area,
    .header.slide_true .gnav_list--item.sub_show {
      z-index: 1;
    }
    .header.slide_true .gnav .gnav_list--item_in,
    .header.slide_true .gnav .gnav--cont > *:not(.gnav_lists),
    .header.slide_true .gnav .contact_btn {
      animation-duration: .4s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-name: gnav_sub_in;
    }
    .header.slide_true .gnav.sub_show .gnav_list--item_in,
    .header.slide_true .gnav.sub_show .gnav--cont > *:not(.gnav_list) {
      animation-name: gnav_sub_out;
      pointer-events: none;
    }
    .header.slide_true .gnav_sub {
      animation-duration: .4s;
      animation-iteration-count: 1;
      animation-fill-mode: forwards;
      animation-name: gnav_sub_out;
    }
    .header.slide_true .gnav_sub.is_show {
      animation-name: gnav_sub_in;
      pointer-events: all;
      z-index: 10;
    }
  }

/* acod_true
*************************************************** */
  @media screen and (max-width: 768px) {
    .header.acod_true .gnav_sub {
      display: none;
      transition: none;
    }
    .header.acod_true .gnav_list--item {
      position: relative;
    }
    .header.acod_true .gnav_list--item.has_sub {
      padding-right: 40px;
    }
    .header.acod_true .gnav_list--item.has_sub .acod_arrow {
      position: absolute;
      top: 6px;
      right: 0;
      width: 32px;
      height: 32px;
      z-index: 1;
    }
    .header.acod_true .gnav_list--item.has_sub .acod_arrow .ico-arrow {
      display: block;
      width: 16px;
      height: 16px;
    }
    .header.acod_true .gnav_list--item.sub_show .acod_arrow {
      transform: rotate(180deg);
    }
  }


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

    FOOTER

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

  .footer {
    min-height: 100dvh;
  }
  .footer .img_area,
  .footer .txt_area {
    width: 50%;
  }
  .footer .img_area .img {
    height: 50dvh;
  }
  .footer .txt_area .info_area {
    width: 100%;
    margin-top: auto;
    margin-right: auto;
  }
  .footer .txt_area .logo img {
    display: inline-block;
    translate: 8% 0;
  }
  .footer .txt_area .tel_area {
    margin-top: 0;
  }
  .footer .txt_area .tel {
    font-size: 257%;
  }
  .footer .txt_area .tel small {
    font-size: 56%;
  }
  .footer .map {
    padding: 2px;
  }
  .footer .map::before {
    border-width: 2px;
    border-style: solid;
  }
  .footer .map .btn-def {
    position: absolute;
    bottom: 2px;
    right: 2px;
  }
  .footer .map .btn-def .btn--in::before {
    border: none;
  }
  .fnav_list--item .txt {
    display: block;
  }
  .footer--copyright {
    text-align: center;
    margin-top: auto;
    height: 96px;
    row-gap: 6px;
  }
  .footer--copyright::before {
    border-top-width: 1px;
    border-top-style: solid;
  }
  @media (min-width: 961px) {
    .is-lowh .footer .map {
      margin-top: -20px;
    }
    .is-lowh .footer .map img {
      display: none;
    }
    .is-lowh .footer .map::before {
      content: none;
    }
    .is-lowh .footer .map .btn-def {
      position: static;
    }
  }
  @media (max-width: 1280px) {
    .footer--copyright {
      height: 80px;
      font-size: 93%;
    }
  }
  @media (max-width: 1064px) {
    .footer .txt_area .info_area {
      padding-top: 96px;
      padding-bottom: 96px;
    }
    .footer .txt_area .logo img {
      width: 220px;
    }
  }
  @media (max-width: 960px) {
    .footer {
      min-height: auto;
    }
    .footer .txt_area .logo img {
      width: 180px;
    }
    .footer .txt_area .info_area {
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .footer .map img {
      width: 320px;
    }
    .footer .txt_area .tel {
      font-size: 200%;
    }
  }


/* reCAPTCHA
*************************************************** */
  .footer .recaptcha_txt {
    display: block;
    line-height: 1.6em;
  }
  .grecaptcha-badge {
    visibility: hidden;
  }


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

    INDEX

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

/* bg-video
*************************************************** */
  .bg-video {
    position: fixed;      /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;          /* コンテンツの背面に配置 */
    overflow: hidden;
  }
  .bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* 画面いっぱいにトリミング表示 */
    transition-duration: 3s !important;
  }
  .bg-video .texture {
    background-image: url(../images/common/texture.webp);
    background-size: 3px;
    z-index: 1;
  }
  .forest.visible .bg-video video,
  .forest.is-end .bg-video video {
    opacity: .25;
  }

/* header--logo
*************************************************** */
  .home .header--logo {
    translate: 64px 72px;
  }
  .home .header--logo a {
    opacity: 0;
  }
  .subpage .header--logo:not(.fixed) {
    translate: 24px 32px;
  }
  .subpage .header--logo:not(.fixed) img {
    width: 280px;
  }
  .header--logo.fixed {
    translate: 0 0;
    position: fixed;
    top: 16px;
    left: 40px;
    opacity: 0;
  }
  .scrolled .header--logo.fixed {
    opacity: 1;
  }
  .header--logo.fixed img {
    width: 180px;
  }
  .home .header--logo .logo-wht,
   { opacity: 1; }
  .home .header--logo .logo-clr { opacity: 0; }
  .home .header--logo.is-clr .logo-wht { opacity: 0; }
  .home .header--logo.is-clr .logo-clr { opacity: 1; }

  /* --- anim --- */
  .home.loaded .header--logo a {
    transition-duration: 5s;
    transition-delay: 3s;
    opacity: 1;
  }
  .home.loaded.min .header--logo a {
    transition-delay: 2s;
  }
  @media (max-width: 1280px) {
    .home .header--logo:not(.fixed),
    .subpage .header--logo:not(.fixed) {
      translate: 32px 32px;
    }
    .home .header--logo:not(.fixed) img {
      width: 300px;
    }
    .subpage .header--logo:not(.fixed) img {
      width: 240px;
    }
  }
  @media (max-width: 768px) {
    .home .header--logo:not(.fixed) {
      translate: -55% 24px;
      left: 50dvw;
    }
    .home .header--logo:not(.fixed) img {
      width: 240px;
    }
    .header--logo.fixed {
      left: 24px;
    }
    .subpage .header--logo:not(.fixed) {
      translate: 0 0;
    }
    .header--logo.fixed img,
    .subpage .header--logo:not(.fixed) img {
      width: 144px;
    }
  }
  @media (max-width: 560px) {
    .home .header--logo:not(.fixed) img {
      width: 200px;
    }
    .header--logo.fixed img,
    .subpage .header--logo:not(.fixed) img {
      width: 96px;
    }
  }

/* hero
*************************************************** */
  .hero {
    height: 100dvh;
  }
  .hero .ttl {
    translate: 96px -80px;
    font-size: 330%;
    row-gap: .9em;
    width: 700px;
  }
  .hero .ttl svg {
    fill: none;
  }
  .hero .ttl .slide-to_top {
    animation-name: none;
  }

  /* --- anim --- */
  .loaded .hero .ttl .slide-to_top {
    animation-name: slide-to_top;
  }
  .loaded .hero .ttl > span:nth-of-type(1) .slide-to_top {
    animation-delay: 1.2s;
  }
  .loaded .hero .ttl > span:nth-of-type(2) .slide-to_top {
    animation-delay: 1.4s;
  }
  .loaded .hero .ttl > span:nth-of-type(3) .slide-to_top {
    animation-delay: 1.6s;
  }
  .loaded.min .hero .ttl > span:nth-of-type(1) .slide-to_top {
    animation-delay: .4s;
  }
  .loaded.min .hero .ttl > span:nth-of-type(2) .slide-to_top {
    animation-delay: .6s;
  }
  .loaded.min .hero .ttl > span:nth-of-type(3) .slide-to_top {
    animation-delay: .8s;
  }
  .scrolled .hero .ttl .fade_out-ls {
    opacity: 0;
    letter-spacing: .25em;
  }

  @media (max-width: 1280px) {
    .hero .ttl {
      translate: 64px -40px;
      width: calc(100% - 288px);
    }
  }
  @media (max-width: 960px) {
    .hero .ttl {
      translate: 40px -24px;
      width: 70%;
    }
  }
  @media (max-width: 560px) {
    .hero .ttl {
      translate: 28px -16px;
      width: 78%;
    }
  }

/* forest
*************************************************** */
  .forest .fnt-cur {
    position: absolute;
    right: -130px;
    top: -80px;
    padding-right: .3em;
  }
  .forest .head1 {
    row-gap: 1em;
  }
  .forest .img_area {
    width: 840px;
    padding-top: 44%;
  }
  .forest .img img {
    scale: 1.015;
    opacity: 0;
  }
  .forest .txt_area {
    padding-bottom: 24px;
  }
  .forest .slide-to_top {
    animation-name: slide-rev_btm;
  }
  .forest .mask-to_rgt {
    animation-name: mask-rev_rgt;
  }
  .forest .fade-to_top {
    animation-name: fade-rev_btm;
  }
  .forest .scale_in img {
    animation-name: scale_out;
  }
  .forest .txt_area.is-show .head1 .slide-to_top {
    animation-name: slide-to_top;
  }
  .forest .txt_area.is-show .fnt-cur.mask-to_rgt {
    animation-duration: 1.2s;
    animation-name: mask-to_rgt;
  }
  .forest .txt_area.is-show .head1 .fade_out-ls:nth-of-type(1) .slide-to_top {
    animation-delay: .6s;
  }
  .forest .txt_area.is-show .head1 .fade_out-ls:nth-of-type(2) .slide-to_top {
    animation-delay: .8s;
  }
  .forest .txt_area.is-show .mgn_txts.fade-to_top,
  .forest .txt_area.is-show .btn-def.fade-to_top {
    animation-delay: 1s;
    animation-name: fade-to_top;
  }
  .forest .txt_area.is-show .btn-def.fade-to_top {
    animation-delay: 1.1s;
  }
  .forest .img_area.is-show .scale_in img {
    animation-name: scale_in;
    animation-delay: 0s;
  }
  @media (max-width: 1600px) {
    .forest .inner {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      column-gap: 80px;
    }
    .forest .img_area {
      width: 560px;
      padding-top: 41%;
    }
  }
  @media (max-width: 1280px) {
    .forest .inner {
      column-gap: 64px;
    }
    .forest .img_area {
      width: 80%;
      padding-top: 42%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 64px;
    }
    .forest .txt_area {
      width: 100%;
      text-align: center;
    }
    .forest .txt_area .btn-def {
      margin-left: auto;
      margin-right: auto;
    }
    .forest .fnt-cur {
      right: -8px;
      top: 32px;
    }
  }
  @media (max-width: 1064px) {
    .forest .fnt-cur {
      top: -.35em;
    }
  }
  @media (max-width: 560px) {
    .forest .img_area {
      width: 90%;
      padding-top: 52%;
      margin-bottom: 40px;
    }
  }


/* message
*************************************************** */
  .message .fnt-cur {
    position: absolute;
    left: -280px;
    top: 0;
    padding-right: .3em;
  }
  .message .head1 {
    row-gap: 1em;
  }
  .message .img_area {
    row-gap: 2px;
  }
  .message .img {
    width: 353px;
    height: 353px;
  }
  .message .img:nth-of-type(1) {
    translate: -48px 0;
  }
  .message .img:nth-of-type(2) {
    translate: 48px 0;
  }
  .message .img img {
    display: block;
    scale: 1.015;
    opacity: 0;
  }
  .message .txt_area {
    padding-bottom: 24px;
  }
  .message .slide-to_top {
    animation-name: slide-rev_btm;
  }
  .message .mask-to_rgt {
    animation-name: mask-rev_rgt;
  }
  .message .fade-to_top {
    animation-name: fade-rev_btm;
  }
  .message .scale_in img {
    animation-name: scale_out;
  }
  .message.is-show .head1 .slide-to_top {
    animation-name: slide-to_top;
  }
  .message.is-show .fnt-cur.mask-to_rgt {
    animation-duration: 1.2s;
    animation-name: mask-to_rgt;
  }
  .message.is-show .head1 .fade_out-ls:nth-of-type(1) .slide-to_top {
    animation-delay: .6s;
  }
  .message.is-show .head1 .fade_out-ls:nth-of-type(2) .slide-to_top {
    animation-delay: .8s;
  }
  .message.is-show .mgn_txts.fade-to_top,
  .message.is-show .btn-def.fade-to_top {
    animation-delay: 1s;
    animation-name: fade-to_top;
  }
  .message.is-show .btn-def.fade-to_top {
    animation-delay: 1.1s;
  }
  .message.is-show .scale_in img {
    animation-name: scale_in;
  }
  .message.is-show .scale_in:nth-of-type(2) img {
    animation-delay: .2s;
  }
  @media (max-width: 1280px) {
    .message .fnt-cur {
      top: 56px;
      left: -150px;
    }
    .message .img {
      width: 32dvh;
      height: 32dvh;
    }
    .message .img:nth-of-type(1) {
      translate: -24px 0;
    }
    .message .img:nth-of-type(2) {
      translate: 24px 0;
    }
  }
  @media (max-width: 1064px) {
    .message .inner {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .message .img_area {
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      column-gap: 8px;
      margin-bottom: 80px;
    }
    .message .img {
      width: 29dvw;
      height: 29dvw;
    }
    .message .img:nth-of-type(1) {
      translate: 0 16px;
    }
    .message .img:nth-of-type(2) {
      translate: 0 -16px;
    }
  }
  @media (max-width: 960px) {
    .message .fnt-cur {
      top: 0;
      left: -40px;
    }
  }
  @media (max-width: 768px) {
    .message .img_area {
      margin-left: auto;
    }
    .message .img {
      width: 40dvw;
      height: 40dvw;
    }
  }

/* sherpika_bacons
*************************************************** */
  .sherpika_bacons .bacon_list--item {
    width: 50%;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .sherpika_bacons .bacon_list--item:not(:last-child) {
    border-right-width: 1px;
    border-right-style: solid;
  }
  @media (max-width: 1280px) {
    .sherpika_bacons .bacon_list--item .img_area img {
      width: 340px;
    }
  }
  @media (max-width: 960px) {
    .sherpika_bacons .bacon_list--item {
      width: 100%;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .sherpika_bacons .bacon_list--item:first-child {
      padding-top: 0;
    }
    .sherpika_bacons .bacon_list--item:last-child {
      padding-bottom: 0;
    }
    .sherpika_bacons .bacon_list--item:not(:last-child) {
      border-right: none;
      border-bottom-width: 1px;
      border-bottom-style: solid;
    }
  }
  @media (max-width: 560px) {
    .sherpika_bacons .bacon_list--item .img_area img {
      width: 260px;
    }
  }

/* online_shop
*************************************************** */
  .online_shop .slide_area {
    width: 50%;
  }
  .online_shop .slide_area .slider_wrap {
    width: 405px;
  }
  .online_shop .carousel_slider .slick-slide{
    opacity: .25;
    transition: opacity .6s ease;
    will-change: opacity;
  }
  .online_shop .carousel_slider .slick-center,
  .online_shop .carousel_slider .slick-current{
    opacity: 1;
  }
  .online_shop .carousel_slider.slick-slide,
  .online_shop .carousel_slider .slick-list {
    overflow: visible;
  }
  .online_shop .carousel_slider--item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .online_shop .head1 {
    row-gap: .8em;
  }
  .online_shop .fnt-cur {
    position: absolute;
    right: -20%;
    top: -25%;
    line-height: 1em;
    padding-right: 0.8em;
  }
  .online_shop .fnt-cur span {
    display: inline-block;
  }
  .online_shop .fnt-cur span:nth-of-type(2) {
    translate: 1.5em -.05em;
  }
  @media (max-width: 1280px) {
    .online_shop .fnt-cur {
      right: -15%;
      top: -19%;
    }
    .online_shop .txt_area {
      padding-top: 96px;
      padding-bottom: 64px;
      text-align: center;
    }
    .online_shop .txt_area .btn-def {
      margin-left: auto;
      margin-right: auto;
    }
    .online_shop .slide_area {
      width: 100%;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .online_shop .slide_area .slider_wrap {
      width: 320px;
    }
  }
  @media (max-width: 560px) {
    .online_shop .bg_img {
      inset: 0 0 345px 0;
    }
    .online_shop .slide_area .slider_wrap {
      width: 240px;
    }
  }

  /* --- anim --- */
  .online_shop .mask-to_top {
    animation-name: mask-rev_btm;
  }
  .online_shop .mask-to_top.is-show {
    animation-name: mask-to_top;
  }
  .online_shop .mask-to_rgt {
    animation-name: mask-rev_rgt;
  }
  .online_shop .txt_area.is-show .mask-to_rgt {
    animation-name: mask-to_rgt;
  }
  .online_shop .slide-to_top {
    animation-name: slide-rev_btm;
  }
  .online_shop .txt_area.is-show .slide-to_top {
    animation-name: slide-to_top;
  }
  .online_shop .txt_area.is-show .head1 > span:nth-of-type(1) .slide-to_top {
    animation-delay: .2s;
  }
  .online_shop .txt_area.is-show .head1 > span:nth-of-type(2) .slide-to_top {
    animation-delay: .3s;
  }
  .online_shop .fade-to_top {
    animation-name: fade-rev_btm;
  }
  .online_shop .slider_wrap.fade-to_top.is-show {
    animation-name: fade-to_top;
    animation-delay: .4s;
  }
  .online_shop .txt_area.is-show .fade-to_top {
    animation-delay: .5s;
    animation-name: fade-to_top;
  }
  .online_shop .txt_area.is-show .btn-def.fade-to_top {
    animation-delay: .6s;
  }
  .online_shop .bg_img.is-show .prlx_cont {
    opacity: .3;
    filter: blur(8px);
  }

/* calendar
*************************************************** */

  /* --- common --- */
  .calendar_list--item .cal-head,
  .calendar_list--item .cal-head-lft {
    column-gap: 24px;
  }
  .calendar_list--item .cal-head-lft .month_num {
    font-size: 500%;
  }
  .calendar_list--item .cal-head-lft .slash {
    font-size: 300%;
  }
  .calendar_list--item .cal-head-rgt {
    row-gap: 8px;
    translate: 0 -9px;
  }
  .calendar_list--item .cal-body {
    padding: 1px;
  }
  .calendar_list--item #calendarTable {
    table-layout: fixed;
  }
  .calendar_list--item .cal-body th {
    font-family: "Noto Serif", serif;
    font-weight: 500;
    text-align: center;
    padding-bottom: 12px;
    color: #999;
  }
  .calendar_list--item .cal-body th.calendarHeader {
    display: none;
  }
  .calendar_list--item .cal-body td.shukujitu { background-color: #F2F2F0; }
  .calendar_list--item .cal-body th.youbi_0 { color: #d7717a; }
  .calendar_list--item .cal-body td.youbi_0,
  .calendar_list--item .cal-body td.holiday,
  .calendar_list--item .cal-body td.shukujitu { color: #c45f68; }
  .calendar_list--item .cal-body .scheduleComment { color: #1a1a1a }
  .calendar_list--item .cal-body th.youbi_6 { color: #7c9df1; }
  .calendar_list--item .cal-body td.youbi_6 { color: #6184dd; }
  .calendar_list--item .cal-body td {
    border-width: 1px;
    border-style: solid;
    height: 80px;
    padding: 4px 10px;
    font-size: 93%;
    letter-spacing: .08em;
  }
  .calendar_list--item .cal-body .scheduleComment {
    font-size: 85%;
    opacity: .75;
    margin-top: 2px;
    letter-spacing: .05em;
    line-height: 1.4em;
  }
  .calendar_list .cir_arrow {
    position: absolute;
    top: 12px;
    width: 48px;
    height: 48px;
    z-index: 1;
  }
  .calendar_list .slick-prev {
    right: calc(48px + 12px);
    scale: -1 -1;
  }
  .calendar_list .slick-next {
    right: 0;
  }
  .calendar_list .cir_arrow.slick-disabled {
    pointer-events: none;
    opacity: .3;
  }
  .holiday_desc {
    column-gap: 8px;
    margin-top: 16px;
  }
  .holiday_desc .square {
    width: 16px;
    height: 16px;
    background-color: #f2f2f2;
    border-width: 1px;
    border-style: solid;
  }
  @media (max-width: 1064px) {
    .calendar_list--item .cal-head-lft .month_num {
      font-size: 400%;
    }
    .calendar_list--item .cal-head-rgt {
      font-size: 116%;
    }
  }
  @media (max-width: 768px) {
    .calendar_list--item .cal-body .scheduleComment {
      font-size: 80%;
      letter-spacing: .02em;
    }
  }
  @media (max-width: 560px) {
    .calendar_list--item .cal-head,
    .calendar_list--item .cal-head-lft {
      column-gap: 16px;
    }
    .calendar_list--item .cal-head-lft .month_num {
      font-size: 300%;
    }
    .calendar_list--item .cal-head-rgt {
      font-size: 93%;
      translate: 0 -2px;
    }
    .calendar_list--item .cal-body th {
      padding-bottom: 4px;
      font-size: 75%;
    }
    .calendar_list--item .cal-body td {
      font-size: 78%;
      padding: 0px 6px 6px;
      height: 56px;
    }
    .calendar_list .cir_arrow {
      top: 6px;
      width: 32px;
      height: 32px;
    }
    .calendar_list .slick-prev {
      right: calc(32px + 8px);
    }
  }

  /* --- home --- */
  .home .calendar .inner {
    column-gap: 88px;
  }
  .home .calendar .btn-def {
    position: absolute;
    bottom: 40px;
    left: 0;
  }
  .home .calendar .txt_area {
    padding-top: 40px;
  }
  .home .calendar .txt_area .sect_ttl {
    white-space: nowrap;
  }
  .home .calendar .calendar_area {
    border-width: 16px;
    border-style: solid;
    padding: 40px 56px;
  }
  @media (max-width: 1680px) {
    .home .calendar .inner {
      column-gap: 64px;
    }
    .home .calendar .calendar_area {
      border-width: 12px;
      padding: 32px 40px;
    }
  }
  @media (max-width: 1280px) {
    .home .calendar .txt_area,
    .home .calendar .calendar_area {
      width: 100%;
    }
    .home .calendar .txt_area {
      padding-top: 0;
      margin-bottom: 40px;
      text-align: center;
    }
    .home .calendar .calendar_area {
      margin-bottom: 40px;
    }
    .home .calendar .btn-def {
      position: relative;
      bottom: 0;
      margin-left: auto;
      margin-right: auto;
    }
  }
  @media (max-width: 768px) {
    .home .calendar .calendar_area {
      padding: 24px 28px;
    }
  }
  @media (max-width: 560px) {
    .home .calendar .inner {
      width: calc(100% - 24px);
    }
    .home .calendar .calendar_area {
      border-width: 8px;
      padding: 16px;
    }
    .home .calendar .txt_area br.smpc-none {
      display: block;
    }
  }

/* home_blog
*************************************************** */
  .home_blog .posts_wrap {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 770px auto;
    grid-template-rows: auto auto;
    column-gap: 64px;
    grid-template-areas:
      "posts_blog-col posts_blog-row"
      "posts_blog-col btn-def";
  }
  .home_blog .posts-blog.col { grid-area: posts_blog-col; }
  .home_blog .posts-blog.row { grid-area: posts_blog-row; }
  .home_blog .btn-def {
    grid-area: btn-def;
    margin-top: auto;
  }
  .home_blog .posts-blog.col {
    max-width: 770px;
    column-gap: 32px;
  }
  .home_blog .posts-blog.col .post {
    width: calc(50% - 32px/2);
  }
  .home_blog .posts-blog.row .post {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    column-gap: 16px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .home_blog .posts-blog.row .post:first-child {
    border-top-width: 1px;
    border-top-style: solid;
  }
  .home_blog .posts-blog.row .post--img {
    width: 120px;
    height: 80px;
    padding-top: 0;
    margin-bottom: 0;
  }
  .home_blog .posts-blog.row .post--txt_area {
    margin-bottom: 0;
    row-gap: 4px;
  }
  .home_blog .posts-blog.row .post--info {
    margin-bottom: 0px;
  }
  .home_blog .posts-blog.row .post--ttl {
    font-size: 100%;
    margin-bottom: 0;
  }
  .home_blog .posts-blog.row .post--txt {
    -webkit-line-clamp: 1;
  }
  .home_blog > .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 650px;
    height: 34vw;
    z-index: -1;
  }
  .home_blog > .bg_img .prlx_in {
    inset: -64px 0;
  }
  @media (max-width: 1480px) {
    .home_blog .posts_wrap {
      display: block;
    }
    .home_blog .posts-blog.col,
    .home_blog .posts-blog.row {
      margin-left: auto;
      margin-right: auto;
    }
    .home_blog .posts-blog.col {
      margin-bottom: 40px;
    }
    .home_blog .posts-blog.row {
      max-width: 770px;
      margin-bottom: 64px;
    }
    .home_blog .btn-def {
      margin-right: auto;
    }
  }
  @media (max-width: 560px) {
    .home_blog .posts-blog.col {
      margin-bottom: 0;
      column-gap: 16px;
    }
    .home_blog .posts-blog.col .post {
      width: calc(50% - 16px/2);
      padding-bottom: 24px;
      margin-bottom: 24px;
      border-bottom-width: 1px;
      border-bottom-style: solid;
    }
    .home_blog .posts-blog.col .post--date,
    .home_blog .posts-blog.col .term {
      font-size: 70%;
    }
    .home_blog .posts-blog.col .term a {
      padding-left: 6px;
      padding-right: 6px;
    }
    .home_blog .posts-blog.col .post--ttl {
      font-size: 80%;
    }
    .home_blog .posts-blog.col .post--txt {
      font-size: 75%;
      letter-spacing: .058em;
    }
  }

/* home_news
*************************************************** */
  .sect_bdr-top::before {
    border-top-width: 1px;
    border-top-style: solid;
    pointer-events: none;
  }
  .sect_bdr-btm::before {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .home_news .inner {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 220px auto;
    grid-template-rows: auto auto;
    column-gap: 120px;
    grid-template-areas:
      "news-sect_ttl news_list"
      "news-btn news_list";
  }
  .home_news  .sect_ttl { grid-area: news-sect_ttl; }
  .home_news  .news_list { grid-area: news_list; }
  .home_news  .btn-def {
    grid-area: news-btn;
    margin-top: auto;
  }
  @media (max-width: 1280px) {
    .home_news .inner {
      column-gap: 80px;
    }
    .home_news .post {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .home_news .news_list .post--date {
      margin-bottom: 6px;
    }
  }
  @media (max-width: 1064px) {
    .home_news .inner {
      display: block;
    }
    .home_news .posts-home_news {
      margin-bottom: 40px;
    }
    .home_news .btn-def {
      margin-right: 0;
      margin-left: auto;
    }
  }
  @media (max-width: 560px) {
    .home_news .posts-home_news {
      margin-bottom: 24px;
    }
  }



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

    PAGE

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

/* bacon
*************************************************** */
  .page-bacon .bacon--in {
    padding: 80px;
  }
  .page-bacon .bacon .fix_wrap {
    column-gap: 64px;
  }
  .page-bacon .bacon .side_column,
  .page-bacon .bacon .side_column--in {
    width: 380px !important;
  }
  .page-bacon .bacon .side_column--in {
    padding-top: 80px;
  }
  .page-bacon .bacon .side_ttl {
    margin-right: 8px;
  }
  .page-bacon .bacon_bnr_list--item {
    column-gap: 20px;
    padding: 16px 20px;
    border-top-width: 1px;
    border-top-style: solid;
  }
  .page-bacon .bacon_bnr_list--item:last-child {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .page-bacon .bacon_bnr_list--item .img_area {
    width: 72px;
    height: 72px;
  }
  .page-bacon .bacon_bnr_list--item .bg {
    border-width: 1px;
    border-style: solid;
    inset: -1px 0;
  }
  .page-bacon .bacon_bnr_list--item .img_area::before,
  .page-bacon .bacon_bnr_list--item .img_area::after {
    border-radius: 100vmax;
  }
  .page-bacon .bacon_bnr_list--item.is-active .bg {
    opacity: 1;
  }
  .page-bacon .bacon_bnr_list--item.is-active .img_area::before {
    opacity: 0;
  }
  .page-bacon .bacon_bnr_list--item.is-active .img_area::after {
    opacity: .3;
  }
  .page-bacon .bacon_bloc {
    padding: 80px;
  }
  .page-bacon .bacon_bloc:not(:last-child) {
    margin-bottom: 40px;
  }
  .page-bacon .bacon_bloc > * {
    width: 100%;
  }
  .page-bacon .bacon_bloc .img_area img {
    width: 500px;
  }
  .page-bacon .bacon_bloc .cur_ttl {
    position: absolute;
    top: 64px;
    right: 64px;
    font-size: 600%;
  }
  .page-bacon .bacon .feature_list {
    gap: 16px;
  }
  .page-bacon .bacon .feature_list--item {
    width: calc((100% - 16px*1) / 2);
    padding: 20px;
  }
  .page-bacon .bacon .feature_list--item .svg-ico img {
    width: 64px;
  }
  .page-bacon .bacon .lineup_area {
    padding-left: 40px;
    padding-right: 40px;
  }
  .page-bacon .bacon .lineup_area .frame {
    inset: 40px 0 0 0;
  }
  .page-bacon .bacon .lineup_area .frame::before {
    border-width: 3px;
    border-style: double;
  }
  .page-bacon .bacon .lineup_area .frame span {
    position: absolute;
    width: 8px;
    height: 8px;
  }
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(1),
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(2) {
    top: 0;
  }
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(2),
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(3) {
    right: 0;
  }
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(3),
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(4) {
    bottom: 0;
  }
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(4),
  .page-bacon .bacon .lineup_area .frame span:nth-of-type(1) {
    left: 0;
  }
  .page-bacon .bacon .lineup_area .lineup_ttl span {
    padding-left: 16px;
    padding-right: 12px;
    white-space: nowrap;
  }
  .page-bacon .bacon .lineup_area .img img {
    border-radius: 100vmax;
  }
  .page-bacon .bacon .lineup {
    left: 50%;
    translate: -50% 0;
    width: calc((100dvw - 210px) / 2);
    padding-top: 64px;
    padding-bottom: 48px;
    margin-top: auto;
  }
  .page-bacon .bacon .slider_wrap {
    width: 385px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-bacon .bacon .lineup_list.slick-slide,
  .page-bacon .bacon .lineup_list .slick-list {
    overflow: visible;
  }
  .page-bacon .bacon .lineup_list {
    max-width: 100%;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-bacon .bacon .lineup_list--item img {
    display: block;
  }
  .page-bacon .bacon .lineup_list--item .lineup_name {
    display: inline-block;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    width: 100%;
  }
  .page-bacon .bacon .lineup_list .slick-slide,
  .page-bacon .bacon .lineup_list .slick-slide .lineup_name{
    opacity: .25;
    transition: opacity .6s ease;
    will-change: opacity;
  }
  .page-bacon .bacon .lineup_list .slick-slide .lineup_name {
    opacity: 0;
  }
  .page-bacon .bacon .lineup_list .slick-center,
  .page-bacon .bacon .lineup_list .slick-current,
  .page-bacon .bacon .lineup_list .slick-center .lineup_name,
  .page-bacon .bacon .lineup_list .slick-current .lineup_name {
    opacity: 1;
  }
  .page-bacon .how_to_order .head1 {
    row-gap: .9em;
  }
  .page-bacon .how_to_order .img_area .img {
    position: absolute;
  }
  .page-bacon .how_to_order .img_area .img-01 {
    top: 12%;
    left: 83%;
    width: 240px;
    height: 360px;
  }
  .page-bacon .how_to_order .img_area .img-02 {
    top: 38%;
    right: 90%;
    width: 220px;
    height: 220px;
  }
  .page-bacon .how_to_order .img_area .img-03 {
    top: 64%;
    right: 73%;
    width: 340px;
    height: 210px;
  }
  @media (max-width: 1680px) {
    .page-bacon .bacon_bloc {
      padding-left: 56px;
      padding-right: 56px;
    }
    .page-bacon .bacon_bloc .cur_ttl {
      top: 80px;
      right: 48px;
      font-size: 500%;
    }
  }
  @media (max-width: 1480px) {
    .page-bacon .bacon .fix_wrap {
      column-gap: 40px;
    }
    .page-bacon .bacon .side_column,
    .page-bacon .bacon .side_column--in {
      width: 280px !important;
    }
    .page-bacon .bacon_bnr_list--item {
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 12px;
      padding-right: 12px;
      column-gap: 16px;
    }
    .page-bacon .bacon_bnr_list--item .img_area {
      width: 56px;
      height: 56px;
    }
    .page-bacon .bacon_bnr_list--item .img_area img {
      width: 48px;
    }
    .page-bacon .bacon_bnr_list--item .txt_area {
      font-size: 85%;
    }
    .page-bacon .bacon_bloc {
      padding-left: 48px;
      padding-right: 48px;
      padding-top: 48px;
      padding-bottom: 48px;
    }
    .page-bacon .bacon_bloc .cur_ttl {
      top: 64px;
      right: 24px;
      font-size: 400%;
    }
    .page-bacon .bacon_bloc .img_area img {
      width: 380px;
    }
    .page-bacon .how_to_order .img_area .img {
      scale: .8;
    }
    .page-bacon .how_to_order .img_area .img-01 {
      top: 5%;
      left: 75%;
    }
    .page-bacon .how_to_order .img_area .img-02 {
      top: 55%;
      right: 85%;
    }
    .page-bacon .how_to_order .img_area .img-03 {
      top: 71%;
      right: 70%;
    }
  }
  @media (max-width: 1280px) {
    .page-bacon .bacon .side_column,
    .page-bacon .bacon .side_column--in {
      width: 100% !important;
    }
    .page-bacon .bacon .side_column--in {
      padding-top: 0;
    }
    .page-bacon .bacon_bnr_list {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      gap: 8px;
    }
    .page-bacon .bacon_bnr_list--item {
      width: calc(50% - 4px);
    }
    .page-bacon .bacon_bnr_list--item .bg {
      opacity: 1;
    }
    .page-bacon .bacon .side_column {
      margin-bottom: 40px;
    }
    .page-bacon .bacon_bloc {
      padding-top: 64px;
    }
    .page-bacon .bacon_bloc .cur_ttl {
      top: 40px;
      font-size: 400%;
    }
    .page-bacon .bacon_bloc > .txt_area {
      margin-bottom: 40px;
    }
    .page-bacon .bacon .lineup {
      width: calc((100dvw - 160px) / 2);
    }
    .page-bacon .bacon .slider_wrap {
      width: 320px;
    }
  }
  @media (max-width: 1064px) {
    .page-bacon .bacon--in {
      padding: 64px 24px;
      row-gap: 16px;
    }
    .page-bacon .bacon--in::after {
      opacity: .05;
    }
    .page-bacon .bacon_bloc {
      padding: 64px !important;
      background-color: #fff;
    }
    .page-bacon .bacon_bloc .cur_ttl {
      top: 56px;
      right: 32px;
    }
    .page-bacon .bacon_bloc .lineup {
      width: 100%;
      padding-top: 48px;
      border-radius: 1.8vw;
    }
    .page-bacon .bacon .lineup_area .frame {
      inset: 38px 0 0 0;
    }
  }
  @media (max-width: 768px) {
    .page-bacon .bacon_bloc {
      padding: 48px !important;
    }
    .page-bacon .bacon .feature_list {
      gap: 12px;
    }
    .page-bacon .bacon .feature_list--item {
      width: 100%;
    }
    .page-bacon .bacon .feature_list--item .svg-ico,
    .page-bacon .bacon .feature_list--item .feature_ttl {
      text-align: left;
    }
    .page-bacon .bacon .feature_list--item .svg-ico img {
      width: 32px;
      height: 32px;
    }
    .page-bacon .bacon .feature_list--item .feature_ttl {
      min-height: 32px;
      margin-top: -32px;
      padding-left: 40px;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .page-bacon .how_to_order .img_area .img {
      scale: .55;
    }
    .page-bacon .how_to_order .img_area .img-01 {
      top: -5%;
      left: 77%;
    }
    .page-bacon .how_to_order .img_area .img-02 {
      top: 58%;
      right: 82%;
    }
    .page-bacon .how_to_order .img_area .img-03 {
      top: 73%;
      right: 65%;
    }
  }
  @media (max-width: 560px) {
    .page-bacon .bacon .side_column {
      margin-bottom: 24px;
    }
    .page-bacon .bacon .side_ttl {
      margin-right: 0;
    }
    .page-bacon .bacon_bnr_list--item {
      row-gap: 10px;
      padding-top: 16px;
    }
    .page-bacon .bacon_bnr_list--item .img_area {
      width: 80px;
      height: auto;
    }
    .page-bacon .bacon_bnr_list--item .img_area::before,
    .page-bacon .bacon_bnr_list--item .img_area::after {
      content: none;
    }
    .page-bacon .bacon_bnr_list--item .img_area img {
      width: 80px;
    }
    .page-bacon .bacon_bnr_list--item .txt_area {
      font-size: 100%;
    }
    .page-bacon .bacon--in {
      padding: 40px 12px;
    }
    .page-bacon .bacon_bloc {
      padding: 32px 20px !important;
    }
    .page-bacon .bacon_bloc:not(:last-child) {
      margin-bottom: 24px;
    }
    .page-bacon .bacon_bloc .cur_ttl {
      top: 40px;
      right: 24px;
      font-size: 277%;
    }
    .page-bacon .bacon_bloc .img_area img {
      width: 240px;
    }
    .page-bacon .bacon .feature_list {
      gap: 8px;
      width: 100%;
    }
    .page-bacon .bacon .feature_list--item {
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 12px;
      padding-right: 12px;
    }
    .page-bacon .bacon .slider_wrap {
      width: 220px;
    }
    .page-bacon .bacon .lineup_area {
      padding-left: 20px;
      padding-right: 20px;
    }
    .page-bacon .bacon .lineup_area .img img {
      width: 160px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .page-bacon .bacon_bloc .lineup {
      padding-top: 40px;
      padding-bottom: 24px;
    }
    .page-bacon .bacon .lineup_list--item .lineup_name {
      font-size: 80%;
    }
    .page-bacon .bacon .lineup_area .frame {
      inset: 36px 0 0 0;
    }

    .page-bacon .how_to_order .img_area .img {
      scale: .35;
    }
    .page-bacon .how_to_order .img_area .img picture {
      opacity: .4;
    }
    .page-bacon .how_to_order .img_area .img-01 {
      top: -11%;
      left: 64%;
    }
    .page-bacon .how_to_order .img_area .img-02 {
      top: 9%;
      right: 68%;
    }
    .page-bacon .how_to_order .img_area .img-03 {
      top: 59%;
      right: 59%;
    }
  }
  @media (max-width: 413px) {
    .page-bacon .bacon .feature_list--item .feature_ttl {
      font-size: 93%;
    }
    .page-bacon .how_to_order .mgn_txts {
      font-size: 93%;
    }
  }

/* story
*************************************************** */
  .page-story .lead .cur_ttl {
    top: -.8em;
    left: -0.6em;
  }
  .page-story .lead_bloc {
    column-gap: 104px;
  }
  .page-story .lead .txt_area {
    padding-bottom: 16px;
  }
  .page-story .lead .head1 {
    row-gap: .9em;
  }
  .page-story .process_list {
    column-gap: 80px;
  }
  .page-story .process_list--item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    width: calc(100% + 80px);
    height: 1px;
    z-index: -1;
  }
  .page-story .process_list--item .process_num {
    width: 56px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-story .process_list--item .process_num::before {
    rotate: 45deg;
  }
  .page-story .original--in {
    padding-left: 80px;
    padding-right: 80px;
    column-gap: 1px;
  }
  .page-story .original_bloc {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 64px;
    padding-right: 64px;
  }
  .page-story .original .original_ttl {
    font-size: 400%;
  }
  .page-story .original .fnt-cur {
    position: absolute;
    top: -.4em;
    left: 45%;
    translate: -50% 0;
  }

  /* --- anim --- */
  .page-story .original_bloc .mask-to_top {
    animation-name: mask-rev_btm;
  }
  .page-story .original_bloc .mask-to_top.is-show {
    animation-name: mask-to_top;
  }
  .page-story .original_bloc .mask-to_rgt {
    animation-name: mask-rev_rgt;
  }
  .page-story .original_bloc .txt_area.is-show .mask-to_rgt {
    animation-name: mask-to_rgt;
  }
  .page-story .original_bloc .slide-to_top {
    animation-name: slide-rev_btm;
  }
  .page-story .original_bloc .txt_area.is-show .slide-to_top {
    animation-name: slide-to_top;
  }
  .page-story .original_bloc .txt_area.is-show .head1 .slide-to_top {
    animation-delay: .2s;
  }
  .page-story .original_bloc .fade-to_top {
    animation-name: fade-rev_btm;
  }
  .page-story .original_bloc .img_area.is-show.fade-to_top {
    animation-delay: 0s;
    animation-name: fade-to_top;
  }
  .page-story .original_bloc .txt_area.is-show .fade-to_top {
    animation-delay: .5s;
    animation-name: fade-to_top;
  }
  .page-story .original_bloc .txt_area.is-show .btn-def.fade-to_top {
    animation-delay: .6s;
  }
  .page-story .original_bloc .bg_img.is-show .prlx_cont {
    opacity: .3;
    filter: blur(8px);
  }

  @media (max-width: 1480px) {
    .page-story .lead_bloc {
      column-gap: 80px;
    }
    .page-story .lead_bloc .img_area img {
      width: 480px;
    }
  }
  @media (max-width: 1280px) {
    .page-story .lead_bloc {
      column-gap: 56px;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .page-story .lead_bloc .img_area img {
      width: 344px;
    }
    .page-story .process_list {
      column-gap: 64px;
    }
    .page-story .process_list--item .svg_ico svg {
      width: 80px;
      height: 80px;
    }
    .page-story .original_bloc {
      padding-top: 64px;
      padding-bottom: 64px;
      padding-left: 40px;
      padding-right: 40px;
    }
    .page-story .original .original_ttl {
      font-size: 300%;
    }
  }
  @media (max-width: 1064px) {
    .page-story .lead_bloc .img_area {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 48px;
    }
    .page-story .lead .txt_area {
      width: 628px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .page-story .lead_bloc .txt_area .head1 {
      text-align: center;
    }
    .page-story .process_list {
      column-gap: 48px;
    }
    .page-story .original .original_ttl {
      font-size: 250%;
    }
  }
  @media (max-width: 560px) {
    .page-story .lead_bloc .img_area {
      margin-bottom: 24px;
    }
    .page-story .lead_bloc .img_area img {
      width: 272px;
    }
    .page-story .lead_bloc .txt_area .head1 {
      margin-bottom: 20px;
    }
    .page-story .process_list {
      row-gap: 32px;
    }
    .page-story .process_list--item:not(:last-child)::before {
      left: 20px;
      top: 20px;
      width: 1px;
      height: calc(100% + 32px);
    }
    .page-story .process_list--item .process_num {
      margin-left: 0;
      width: 40px;
      height: 40px;
      margin-bottom: -52px;
    }
    .page-story .process_list--item .txt_area {
      padding-left: 40px;
    }
    .page-story .process_list--item .svg_ico {
      text-align: right;
      translate: 0 -12px;
    }
    .page-story .process_list--item .svg_ico svg {
      width: 64px;
      height: 64px;
    }
    .page-story .process_list--item .txt_area .head2 {
      text-align: left;
      margin-top: -64px;
      padding-left: 20px;
    }
    .page-story .original--in {
      padding-left: 24px;
      padding-right: 24px;
      row-gap: 1px;
    }
    .page-story .original_bloc {
      padding-top: 48px;
      padding-bottom: 48px;
      padding-left: 32px;
      padding-right: 32px;
    }
    .page-story .original .original_ttl {
      font-size: 200%;
    }
  }

/* order
*************************************************** */
  .page-order .order_guide .head1 {
    row-gap: .9em;
  }
  .page-order .order_guide .guide_list--item {
    width: 50%;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .page-order .order_guide .guide_list--item:not(:last-child) {
    border-right-width: 1px;
    border-right-style: solid;
  }
  .page-order .order_guide .guide_list--item .num {
    padding: 10px 24px;
  }
  .page-order .order_guide .guide_list--item .num::before {
    border-radius: 100vmax;
  }
  .page-order .order_guide .gift {
    border-width: 12px;
    border-style: solid;
    padding: 24px 32px;
  }
  .page-order .order_guide .gift--in {
    column-gap: 24px;
  }
  .page-order .order_guide .gift .svg_ico {
    padding: 24px;
  }
  .page-order .order_guide .gift .svg_ico::before {
    border-radius: 100vmax;
  }
  .page-order .other_bloc {
    padding-bottom: 64px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .page-order .other_bloc:not(:last-child) {
    margin-bottom: 64px;
  }
  .page-order .other_bloc .ttl_area {
    width: 380px;
  }
  @media (max-width: 1280px) {
    .page-order .other_bloc .ttl_area {
      width: 320px;
    }
    .page-order .sect_ttl.sect_ttl-sm .fnt-cur {
      top: -36px;
      left: -36px;
    }
  }
  @media (max-width: 1064px) {
    .page-order .order_guide .guide_list--item {
      width: 100%;
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .page-order .order_guide .guide_list--item:first-child {
      padding-top: 0;
    }
    .page-order .order_guide .guide_list--item:last-child {
      padding-bottom: 0;
    }
    .page-order .order_guide .guide_list--item:not(:last-child) {
      border-right: none;
      border-bottom-width: 1px;
      border-bottom-style: solid;
    }
    .page-order .order_guide .gift .svg_ico {
      padding: 16px;
    }
    .page-order .order_guide .gift .svg_ico svg {
      width: 64px;
      height: 64px;
    }
    .page-order .sect_ttl.sect_ttl-sm .fnt-cur {
      top: -22px;
      left: -22px;
    }
  }
  @media (max-width: 768px) {
    .page-order .other_bloc {
      padding-bottom: 32px;
    }
    .page-order .other_bloc:not(:last-child) {
      margin-bottom: 32px;
    }
  }
  @media (max-width: 560px) {
    .page-order .order_guide .head1 {
      font-size: 130%;
      letter-spacing: .15em;
    }
    .page-order .order_guide .guide_list--item .img_area img {
      width: 220px;
    }
    .page-order .order_guide .gift {
      border-width: 8px;
      padding: 20px 24px;
      margin-top: 48px;
    }
    .page-order .order_guide .gift .svg_ico {
      padding: 8px;
      margin-right: auto;
    }
    .page-order .order_guide .gift .svg_ico svg {
      width: 28px;
      height: 28px;
    }
    .page-order .order_guide .gift .txt_area .head4 {
      padding-left: 56px;
      margin-top: -36px;
      margin-bottom: 16px;
    }
  }

/* about
*************************************************** */
  .page-about .shop_slider.slick-slide,
  .page-about .shop_slider .slick-list {
    overflow: visible;
  }
  .page-about .shop_slider--item {
    margin-left: 1px;
  }
  .page-about .access .map_area {
    padding: 6px;
  }
  .page-about .access .map_area::before {
    border-width: 6px;
    border-style: solid;
  }
  .page-about .calendar_area {
    padding: 48px 64px;
    border-width: 12px;
    border-style: solid;
  }
  .page-about .calendar_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    column-gap: 56px;
  }
  @media (max-width: 1680px) {
    .page-about .calendar_area {
      padding: 32px 40px;
    }
    .page-about .calendar_list {
      column-gap: 32px;
    }
  }
  @media (max-width: 1280px) {
    .page-about .calendar_list {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      row-gap: 40px;
    }
  }
  @media (max-width: 960px) {
    .page-about .access .map_area img {
      width: 380px;
    }
  }
  @media (max-width: 768px) {
    .page-about .access {
      padding-bottom: 104px;
    }
    .page-about .access .txt_area {
      width: 380px;
      max-width: 100%;
    }
    .page-about .access .txt_area .sect_ttl {
      margin-bottom: 16px;
    }
    .page-about .access .txt_area .add_txt {
      margin-bottom: 20px;
    }
    .page-about .access .btn-def {
      position: absolute;
      bottom: 0;
      left: 50%;
      translate: -50% 0;
    }
    .page-about .calendar_area {
      border-width: 8px;
    }
  }
  @media (max-width: 560px) {
    .page-about .access {
      padding-bottom: 72px;
    }
    .page-about .calendar_area {
      padding: 0;
      border: none;
    }
    .page-about .calendar_list {
      row-gap: 32px;
    }
  }

/* contact
*************************************************** */
  .page-contact .contact_bloc .sect_ttl {
    width: 264px;
  }
  .page-contact .contact_bloc-tel .info_list {
    column-gap: 24px;
  }
  .page-contact .contact_bloc-tel .tel_num a {
    font-size: 350%;
  }
  .page-contact .contact_bloc-tel .tel_num small {
    font-size: 70%;
  }
  @media (max-width: 1480px) {
    .page-contact .contact_bloc .fix_wrap {
      column-gap: 0;
    }
  }
  @media (max-width: 1064px) {
    .page-contact .contact_bloc .side_column,
    .page-contact .contact_bloc .sect_ttl,
    .page-contact .contact_bloc .txt_area {
      width: 100%;
    }
    .page-contact .contact_bloc .sect_ttl {
      text-align: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .page-contact .contact_bloc .sect_ttl.sect_ttl-sm .fnt-cur {
      left: 50%;
      translate: -65% 0;
    }
    .page-contact .contact_bloc-tel .tel_num a {
      font-size: 280%;
    }
    .page-contact .contact_bloc-form .side_column {
      margin-bottom: 64px;
    }
  }
  @media (max-width: 560px) {
    .page-contact .contact_bloc-tel .tel_num a {
      font-size: 233%;
    }
    .page-contact .contact_bloc-form .side_column {
      margin-bottom: 40px;
    }
  }


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

    ARCHIVE

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

/* main_column
**************************************** */
  .fix_wrap {
    column-gap: 80px;
  }
  .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;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post--img {
    width: 100%;
    padding-top: 68.25%;
  }
  .post--img .bg_img {
    background-position: center;
    background-repeat: no-repeat;
  }
  .post--img .bg_img:not(.no_img) {
    background-size: cover;
  }
  .post--img .bg_img.bg_img-ver {
    background-size: contain;
  }
  .post--img .bg_img.no_img {
    background-image: url(../images/common/no_img.svg);
    background-size: 55%;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 79%;
    color: #f6f6f6;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 2px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  @media (any-hover: hover) {
    .post:hover .post--img .bg_img {
      scale: 1.05;
    }
  }
  @media screen and (max-width: 960px) {
    .main_column {
      width: 100%;
    }
  }

/* side_column
**************************************** */
  .side_column,
  .side_column--in { width: 264px; }
  .side_column-bg {
    position: fixed;
    inset: 0;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
    backdrop-filter: blur(8px);
  }
  .side_column.is_show + .side_column-bg {
    opacity: 1;
    pointer-events: all;
  }
  .post_type-news .side_column,
  .post_type-news .side_column--in { width: 200px; }
  .side_sect {
    padding-bottom: 40px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .side_sect:not(:last-child) {
    margin-bottom: 40px;
  }
  .side--ttl {
    font-size: 120%;
    letter-spacing: .2em;
    line-height: 1;
    margin-bottom: 20px;
  }
  .side--ttl small {
    font-size: 120%;
    opacity: .2;
    display: block;
    line-height: 1;
  }

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

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

  @media screen and (min-width: 1281px) {
    .search_btn {
      display: none;
    }
  }
  @media screen and (max-width: 1280px) {
    .side_column .close {
      position: fixed;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      z-index: 1;
    }
    .side_column .close::before {
      border-width: 1px;
      border-style: solid;
    }
    .side_column .close .batsu::before,
    .side_column .close .batsu::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      width: 40%;
      height: 1px;
    }
    .side_column .close .batsu::before {
      rotate: 45deg;
    }
    .side_column .close .batsu::after {
      rotate: -45deg;
    }
    .archive:not(.archive-news) .side_column,
    .single:not(.single-news) .side_column {
      position: fixed !important;
      top: 0;
      right: 0;
      z-index: 100000;
      width: 400px;
      max-width: calc(100% - 24px);
      height: 100% !important;
      padding-top: 64px;
      padding-bottom: 72px;
      padding-left: 16px;
      padding-right: 16px;
      overflow-y: scroll;
      opacity: 0;
      pointer-events: none;
      transition: .4s all;
      background-color: #fff;
    }
    .post_type-news .main_column {
      order: 3;
    }
    .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 {
      width: 100% !important;
      display: none;
    }
    .archive:not(.archive-news) .side_column.is_show,
    .single:not(.single-news) .side_column.is_show {
      opacity: 1;
      pointer-events: all;
    }
    .side_column::before {
      content: ;
    }
    .side_column--in {
      position: static !important;
      transform: initial !important;
    }
    .side_sect:not(:last-child) {
      padding-bottom: 32px;
      margin-bottom: 32px;
    }
    .search_btn {
      font-size: 93%;
    }
    .search_btn--plus {
      width: 32px;
      height: 32px;
      border-radius: 100%;
      overflow: hidden;
      margin-right: 12px;
    }
    .search_btn--plus::before {
      opacity: .05;
    }
    .search_btn--plus .line {
      position: absolute;
      top: 50%;
      left: calc(50% - 5px);
      width: 10px;
      height: 1px;
    }
    .search_btn--plus .line:nth-of-type(2) {
      transform: rotate(90deg);
    }
    .search_btn.active .search_btn--plus .line:nth-of-type(1) {
      transform: rotate(180deg);
    }
    .search_btn.active .search_btn--plus .line:nth-of-type(2) {
      transform: rotate(360deg);
    }
  }

/* 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;
    background-color: #fff;
    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 (any-hover: hover) {
    .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--txt_area {
    flex: 1;
    row-gap: 8px;
  }
  .posts-blog .post--date {
    margin-right: 16px;
  }
  .posts-blog .post--ttl,
  .posts-blog .post--txt {
    width: 100%;
  }
  .posts-blog .post--txt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  @media screen and (max-width: 1280px) {
    .posts-blog { margin-bottom: 56px; }
    .archive .fix_wrap.flx,
    .single .fix_wrap.flx {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .archive .main_column,
    .single .main_column {
      overflow: visible;
      margin-right: 0;
    }
    .post_type-news .main_column {
      order: 2;
      margin-top: 48px;
      width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .archive-blog .main_column .posts-blog .post--date,
    .archive-blog .main_column .posts-blog .term {
      font-size: 70%;
    }
    .archive-blog .main_column .posts-blog .term a {
      padding-left: 6px;
      padding-right: 6px;
    }
    .archive-blog .main_column .posts-blog .post--ttl {
      font-size: 80%;
    }
    .archive-blog .main_column .posts-blog .post--txt {
      font-size: 75%;
      letter-spacing: .058em;
    }
    .posts-blog {
      margin-bottom: 24px;
    }
    .single-blog .main_column {
      margin-bottom: 48px;
    }
    .posts-blog .post {
      display: block;
    }
    .posts-blog .post--date {
      margin-bottom: 0;
    }
    .posts-blog .post--img {
      padding-left: 0;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 16px;
      text-align: center;
    }
    .posts-blog .post--img img {
      width: auto;
      max-width: 100%;
    }
  }

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

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

  /* --- news_list --- */
  .news_list .post {
    padding-top: 36px;
    padding-bottom: 36px;
    padding-right: 80px;
    padding-left: 24px;
    margin-bottom: 0;
    row-gap: 8px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .news_list .post.no_hov {
    padding-right: 24px !important;
  }
  .news_list .post:first-child {
    border-top-width: 1px;
    border-top-style: solid;
  }
  .news_list .post.no_hov .post--link::before {
    content: none;
  }
  .news_list .post::before {
    opacity: 0;
  }
  .news_list .post--date {
    margin-right: 24px;
    width: 128px;
    translate: 0 2px;
  }
  .news_list .post--cats {
    z-index: 1;
  }
  .news_list .post--cats a {
    font-size: 75%;
    border: 1px solid rgba(0,0,0,.25);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 100px;
    opacity: .5;
  }
  .news_list .post--cats a:not(:last-child) {
    margin-right: 6px;
  }
  .news_list .post--ttl {
    font-weight: normal;
  }
  .news_list .post--ttl .arrow_wrap {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    overflow: hidden;
  }
  .news_list .post--ttl .ico-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .news_list .cir_arrow {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 24px;
    height: 24px;
    translate: 0 -50%;
  }
  @media (any-hover: hover) {
    .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: 1064px) {
    .news_list .post {
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 0;
      padding-right: 64px;
    }
    .news_list .post.no_hov {
      padding-right: 0px !important;
    }
    .news_list .cir_arrow {
      right: 8px;
    }
  }
  @media (max-width: 768px) {
    .news_list .post--date {
      opacity: .65;
    }
    .news_list .post {
      padding-right: 48px;
    }
  }


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

    SINGLE

############################################################################## */
  .wp-pagenavi {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    column-gap: 16px;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-family: "Noto Serif", serif; font-weight: 500;
    position: relative;
    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;
    vertical-align: top;
    border-width: 1px;
    border-style: solid;
    font-weight: normal;
    line-height: 1.4;
    min-width: 40px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .4s all;
    margin: 0 0 0 -1px;
    border: none;
    background-color: #f8f8f8;
  }
  .wp-pagenavi .pages {
    width: 100%;
    background-color: transparent;
    order: 9999;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    display: none;
  }
  .btn-def.btn-back .btn--in {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .btn-def.btn-back .btn--in .cir_arrow {
    scale: -1 -1;
  }
  .pagenavi {
    margin-top: 80px;
  }
  .pagenavi-prev_next {
    column-gap: 16px;
  }
  .pagenavi-prev_next .btn-def.disabled {
    pointer-events: none;
    opacity: .5;
  }
  @media  only screen and (min-width: 961px) {
    .pn_list--item:hover {
      opacity: .6;
    }
  }
  @media screen and (max-width: 560px) {
    .pn_list--item {
      width: 50%;
    }
    .pn_list--item .post-pn {
      display: none;
    }
    .pagenavi .btn-def {
      min-width: auto;
    }
    .pagenavi .btn-def .cir_arrow {
      display: none;
    }
  }
  @media screen and (max-width: 320px) {
    .wp-pagenavi a,
    .wp-pagenavi span {
      padding: 6px 12px;
    }
  }

/* blog
*************************************************** */
  .single .main_column article {
    border-width: 12px;
    border-style: solid;
    padding: 64px 40px;
  }
  @media (max-width: 960px) {
    .single .main_column article {
      border-width: 8px;
    }
  }
  @media (max-width: 560px) {
    .single .main_column article {
      border-width: 4px;
      padding: 20px;
      width: calc(100% + 24px);
      margin-left: -12px;
    }
  }


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

    CONTACT FORM

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

/* form_flow
*************************************************** */
  .form_flow_list {
    order: 1;
    margin-bottom: 56px;
    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::before {
    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 {
    position: relative;
    width: 48px;
    height: 48px;
    font-size: 125%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    font-weight: bold;
    color: #fff;
  }
  .form_flow_list--item .num::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    rotate: 45deg;
  }
  @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
*************************************************** */
  #cf_form .confirm_area,
  .response_load,
  .wpcf7-spinner,
  .wpcf7-response-output {
    display: none;
  }
  .form_list { width:100%; }
  .form_list--item {
    border-bottom: 1px solid #e8e8e8;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .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: 8px; }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"],
  .form_list--item .cont textarea {
    width: 100%;
    vertical-align: bottom;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"] {
    height: 44px;
    line-height: 44px;
  }
  .form_list--item .cont input[type="text"],
  .form_list--item .cont input[type="email"],
  .form_list--item .cont input[type="tel"],
  .form_list--item .cont input[type="date"],
  .form_list--item .cont input[type="password"],
  .form_list--item .cont select,
  .form_list--item .cont textarea {
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    border: none;
    border-radius: 0px;
    background-color: #f6f6f6;
    font: inherit;
    font-size: 100%;
  }
  .form_list--item .cont textarea { height: 100px; }
  .form_list--item .cont select { height: 40px; }
  .form_list--item .cont ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .form_list--item .cont input:hover { opacity: .7; }
  .form_list--item .cont textarea:hover { opacity: .7; }
  .form_list--item .cont input:focus { outline: none; }

/* radio & checkbox
*************************************************** */
  .form_list--item .cont .cf_rc input[type="radio"],
  .form_list--item .cont .cf_rc input[type="checkbox"] {
    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-list-item:not(:last-child) {
    margin-bottom: 6px;
  }
  .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: 7px;
    left: 0;
  }
  .form_list--item .cont .acceptance input[type="checkbox"] {
    position: relative;
    margin-right: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
  }
  .form_list--item .cont .cf_rc .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: 12px;
    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: 9px;
    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);
  }

/* 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;
  }

/* 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: #1a1a1a;
    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 {
    background: rgb(201,44,51);
    color: #fff;
    font-size: 60%;
    padding: 7px 8px;
    line-height: 1em;
    display: block;
  }

  /* --- 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 {
    transition: .4s all;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border: none;
    border-radius: 0px;
    line-height: 1em;
    letter-spacing: .3em;
    font-size: 100%;
    background: transparent;
    border: 1px solid rgba(0,0,0,.2);
    cursor: pointer;
  }
  @media (any-hover: hover) {
    .cf_form .btn-form:hover {
      background-color: rgba(0,0,0,.05);
    }
  }

  /* --- error --- */
  .cf_form .wpcf7-not-valid-tip {
    display: none; /* validation engineでエラーテキストが重複するためトル */
  }
  .cf_form .formError {
    position: static !important;
    font-weight: bold;
  }
  .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;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  /* --- hor --- */
  .form_list-hor .form_list--item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form_list-hor .form_list--item .ttl {
    width: 220px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .form_list-hor .form_list--item .cont {
    flex: 1;
    margin-left: 40px;
  }

  /* --- 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;
  }

  @media (max-width: 1480px) {
    .wpcf7 form .wpcf7-response-output {
      text-align: left;
    }
  }

  @media only screen and (max-width: 960px) {
    .form_list-hor .form_list--item {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .form_list-hor .form_list--item .ttl {
      width: auto;
      line-height: 1em;
      margin-bottom: 16px;
    }
    .form_list-hor .form_list--item .cont {
      margin-left: 0;
    }
  }
  @media only screen and (max-width: 560px) {
    .form_list--item {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .form_list--item .cont input[type="text"],
    .form_list--item .cont input[type="email"],
    .form_list--item .cont input[type="tel"],
    .form_list--item .cont input[type="date"],
    .form_list--item .cont input[type="password"],
    .form_list--item .cont textarea {
      font-size: 16px;
    }
    .form_list--item .cont .cf_rc .wpcf7-list-item {
      display: block;
    }
    .form_list--item .cont .cf_zip input[type="text"] {
      width: calc(100% - 23px);
      margin-right: 0;
    }
    .cf_form--btns p {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      row-gap: 16px;
    }
    .wpcf7 form .wpcf7-response-output {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  }

