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

    KEYFRAMES

############################################################################## */
  @keyframes fade_in {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes fade_out {
    0% { opacity: 1; }
    100% { opacity: 0; }
  }
  @keyframes slide-to_top {
    0% { transform: translateY(110%); }
    100% { transform: translateY(0%); }
  }
  @keyframes slide-to_btm {
    0% { transform: translateY(-110%); }
    100% { transform: translateY(0%); }
  }
  @keyframes slide-to_lft {
    0% { transform: translateX(110%); }
    100% { transform: translateX(0%); }
  }
  @keyframes slide-to_rgt {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(0%); }
  }
  @keyframes slide-rev_top {
    0% { transform: translateY(0%); }
    100% { transform: translateY(-110%); }
  }
  @keyframes slide-rev_btm {
    0% { transform: translateY(0%); }
    100% { transform: translateY(110%); }
  }
  @keyframes slide-rev_lft {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-110%); }
  }
  @keyframes slide-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(-8px); opacity: 0; }
  }
  @keyframes gnav_sub_in {
    0% { transform: translateX(8px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  .loaded .ts, .loaded .ts-bf::before, .loaded .ts-af::after,
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after,
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.23,1,0.32,1);
    transition-duration: .8s;
  }
  .loaded .ts-fast, .loaded .ts-fast-bf::before, .loaded .ts-fast-af::after {
    transition-duration: .4s;
  }
  .loaded .ts-slow, .loaded .ts-slow-bf::before, .loaded .ts-slow-af::after {
    transition-duration: 1.2s;
  }


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

    LOADING

====================================================================================== */
  @keyframes load_fade_out {
    0% {
      opacity: 1;
    }
    100% {
      transform: scale(1.15);
      opacity: 0;
    }
  }
  #loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    pointer-events: none;
  }
  #loading .layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  #loading .layers .layer,
  #loading .layers .layer::before {
    transition-property: all;
    transition-duration: .7s;
    transition-timing-function: cubic-bezier(0.55,0.08,0.68,0.53);
    transition-delay: 0s;
  }
  #loading .layers .layer {
    position: absolute;
    left: -50vw;
    top: -50vh;
    width: 200vw;
    height: 200vh;
  }
  #loading .loading--cont {
    z-index: 10;
  }
  #loading .loading--cont svg {
    opacity: 0;
    transition-property: all;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.22,0.61,0.36,1);
    transform: translate(0px, 100%) scale(1, 1.35);
  }
  body.mov_in #loading .layers .layer {
    opacity: 0;
  }
  body:not(.min).mov_in #loading .layers .layer { transition-delay: 2.8s; }


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

    COMMON

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

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

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

  /* --- sect_pdg --- */
  .sect_pdg {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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% - 32px); }
    .btm16 { margin-bottom: 8px; }
    .btm24 { margin-bottom: 16px; }
    .btm32 { margin-bottom: 16px; }
    .btm40 { margin-bottom: 24px; }
    .btm48 { margin-bottom: 24px; }
    .btm56 { margin-bottom: 32px; }
    .btm64 { margin-bottom: 32px; }
    .btm72 { margin-bottom: 40px; }
    .btm80 { margin-bottom: 40px; }
    .btm88 { margin-bottom: 48px; }
    .btm96 { margin-bottom: 48px; }
    .btm104 { margin-bottom: 56px; }
    .btm112 { margin-bottom: 56px; }
    .btm120 { margin-bottom: 64px; }
    .sect_pdg {
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .sect_pdg-sm {
      padding-top: 32px;
      padding-bottom: 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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  /* --- body --- */
  .clr-body,
  .clr-body-bf::before,
  .clr-body-af::after {
    color: #eff2f9;
    fill: #eff2f9;
  }
  .bg_clr-body,
  .bg_clr-body-bf::before,
  .bg_clr-body-af::after {
    background-color: #eff2f9;
  }
  .bdr_clr-body,
  .bdr_clr-body-bf::before,
  .bdr_clr-body-af::after {
    border-color: #eff2f9;
  }

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

  /* --- body_dk --- */
  .clr-body_dk,
  .clr-body_dk-bf::before,
  .clr-body_dk-af::after {
    color: #41444f;
    fill: #41444f;
  }
  .bg_clr-body_dk,
  .bg_clr-body_dk-bf::before,
  .bg_clr-body_dk-af::after {
    background-color: #41444f;
  }
  .bdr_clr-body_dk,
  .bdr_clr-body_dk-bf::before,
  .bdr_clr-body_dk-af::after {
    border-color: #41444f;
  }

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

  /* --- default - lt --- */
  .clr-def_lt,
  .clr-def_lt-bf::before,
  .clr-def_lt-af::after {
    color: #b5bfc6;
    fill: #b5bfc6;
  }
  .bg_clr-def_lt,
  .bg_clr-def_lt-bf::before,
  .bg_clr-def_lt-af::after {
    background-color: #b5bfc6;
  }
  .bdr_clr-def_lt,
  .bdr_clr-def_lt-bf::before,
  .bdr_clr-def_lt-af::after,
  .pn_list {
    border-color: #b5bfc6;
  }

  /* --- main --- */
  .clr-main,
  .clr-main-bf::before,
  .clr-main-af::after,
  .header:not(.active) .bnav_list--item.current .bnav_list--item_in,
  .header:not(.active) .bnav_list--item.current .bnav_list--item_in svg,
  .bnav_list--item-select_menu.select_show .bnav_list--item_in,
  .bnav_list--item-select_menu.select_show .bnav_list--item_in svg,
  .header.active .bnav_list--item-menu,
  .header.active .bnav_list--item-menu svg,
  .select_menu_list--item.selected,
  .select_menu_list--item.selected svg {
    color: #5ad3c5;
    fill: #5ad3c5;
  }
  .bg_clr-main,
  .bg_clr-main-bf::before,
  .bg_clr-main-af::after,
  .wp-pagenavi span.current {
    background-image: linear-gradient(135deg,#a7edb0 0%,#8bbdf9 100%);
  }
  .bdr_clr-main,
  .bdr_clr-main-bf::before,
  .bdr_clr-main-af::after,
  .wp-pagenavi span.current {
    border-color: #5ad3c5;
  }
  @media screen and (min-width: 961px) {
    .hov-clr-main:hover,.hov_area:hover .hov-clr-main,
    .hov-clr-main-bf:hover::before,.hov_area:hover .hov-clr-main-bf::before,
    .hov-clr-main-af:hover::after,.hov_area:hover .hov-clr-main-af::after,
    .tap_area:hover + .gnav_list--item_in {
      color: #5ad3c5;
      fill: #5ad3c5;
    }
    .hov-bg_clr-main:hover,.hov_area:hover .hov-bg_clr-main,
    .hov-bg_clr-main-bf:hover::before,.hov_area:hover .hov-bg_clr-main-bf::before,
    .hov-bg_clr-main-af:hover::after,.hov_area:hover .hov-bg_clr-main-af::after,
    .wp-pagenavi a:hover {
      background-color: #5ad3c5;
    }
    .hov-bdr_clr-main:hover,.hov_area:hover .hov-bdr_clr-main,
    .hov-bdr_clr-main-bf:hover::before,.hov_area:hover .hov-bdr_clr-main-bf::before,
    .hov-bdr_clr-main-af:hover::after,.hov_area:hover .hov-bdr_clr-main-af::after,
    .wp-pagenavi a:hover {
      border-color: #5ad3c5;
    }
  }

  .bg_clr-obaoba {
    background-image: linear-gradient(135deg,#a2b5fb 0%, #de4f9f 100%);
  }

  /* --- 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,
  .select_menu_list--item.selected {
    background-color: #fff;
  }
  .bdr_clr-wht,
  .bdr_clr-wht-bf::before,
  .bdr_clr-wht-af::after {
    border-color: #fff;
  }
  @media screen and (min-width: 961px) {
    .hov-clr-wht:hover,.hov_area:hover .hov-clr-wht,
    .hov-clr-wht-bf:hover::before,.hov_area:hover .hov-clr-wht-bf::before,
    .hov-clr-wht-af:hover::after,.hov_area:hover .hov-clr-wht-af::after,
    .wp-pagenavi a:hover {
      color: #fff;
      fill: #fff;
    }
    .hov-bg_clr-wht:hover,.hov_area:hover .hov-bg_clr-wht,
    .hov-bg_clr-wht-bf:hover::before,.hov_area:hover .hov-bg_clr-wht-bf::before,
    .hov-bg_clr-wht-af:hover::after,.hov_area:hover .hov-bg_clr-wht-af::after {
      background-color: #fff;
    }
    .hov-bdr_clr-wht:hover,.hov_area:hover .hov-bdr_clr-wht,
    .hov-bdr_clr-wht-bf:hover::before,.hov_area:hover .hov-bdr_clr-wht-bf::before,
    .hov-bdr_clr-wht-af:hover::after,.hov_area:hover .hov-bdr_clr-wht-af::after {
      border-color: #fff;
    }
  }

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

  /* --- cu --- */
  .clr-cu,
  .clr-cu-bf::before,
  .clr-cu-af::after {
    color: #ff0072;
    fill: #ff0072;
  }
  .bg_clr-cu,
  .bg_clr-cu-bf::before,
  .bg_clr-cu-af::after {
    background-color: #ff0072;
  }
  .bdr_clr-cu,
  .bdr_clr-cu-bf::before,
  .bdr_clr-cu-af::after {
    border-color: #ff0072;
  }

  /* --- co --- */
  .clr-co,
  .clr-co-bf::before,
  .clr-co-af::after {
    color: #006cff;
    fill: #006cff;
  }
  .bg_clr-co,
  .bg_clr-co-bf::before,
  .bg_clr-co-af::after {
    background-color: #006cff;
  }
  .bdr_clr-co,
  .bdr_clr-co-bf::before,
  .bdr_clr-co-af::after {
    border-color: #006cff;
  }

  /* --- pa --- */
  .clr-pa,
  .clr-pa-bf::before,
  .clr-pa-af::after {
    color: #FFAA02;
    fill: #FFAA02;
  }
  .bg_clr-pa,
  .bg_clr-pa-bf::before,
  .bg_clr-pa-af::after {
    background-color: #FFAA02;
  }
  .bdr_clr-pa,
  .bdr_clr-pa-bf::before,
  .bdr_clr-pa-af::after {
    border-color: #FFAA02;
  }

  /* --- vo --- */
  .clr-vo,
  .clr-vo-bf::before,
  .clr-vo-af::after {
    color: #f05163;
    fill: #f05163;
  }
  .bg_clr-vo,
  .bg_clr-vo-bf::before,
  .bg_clr-vo-af::after {
    background-color: #f05163;
  }
  .bdr_clr-vo,
  .bdr_clr-vo-bf::before,
  .bdr_clr-vo-af::after {
    border-color: #f05163;
  }

  /* --- da --- */
  .clr-da,
  .clr-da-bf::before,
  .clr-da-af::after {
    color: #54c1db;
    fill: #54c1db;
  }
  .bg_clr-da,
  .bg_clr-da-bf::before,
  .bg_clr-da-af::after {
    background-color: #54c1db;
  }
  .bdr_clr-da,
  .bdr_clr-da-bf::before,
  .bdr_clr-da-af::after {
    border-color: #54c1db;
  }

  /* --- vi --- */
  .clr-vi,
  .clr-vi-bf::before,
  .clr-vi-af::after {
    color: #FB9831;
    fill: #FB9831;
  }
  .bg_clr-vi,
  .bg_clr-vi-bf::before,
  .bg_clr-vi-af::after {
    background-color: #FB9831;
  }
  .bdr_clr-vi,
  .bdr_clr-vi-bf::before,
  .bdr_clr-vi-af::after {
    border-color: #FB9831;
  }

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

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

  /* --- page_head --- */
  .page_head {
    padding-top: 72px;
    padding-bottom: 88px;
    text-align: center;
  }
  .page_head::before,
  .page_head::after {
    content: '';
    position: absolute;
  }
  .page_head::before {
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 800vw;
    height: 800vw;
    border-radius: 100%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgb(147 169 193 / 15%);
  }
  .page_head::after {
    top: 0;
    left: 8px;
    width: calc(100% - 16px);
    height: 6px;
    border-radius: 0 0 6px 6px;
  }
  .page_ttl-jp,
  .page_ttl-en { display: block; }
  .page_ttl-jp {
    font-size: 240%;
    line-height: 1em;
    margin-bottom: 12px;
  }
  .page_ttl-en {
    font-size: 120%;
    text-transform: uppercase;
  }
  @media screen and (max-width: 560px) {
    .page_head {
      padding-top: 48px;
      padding-bottom: 44px;
    }
    .page_ttl-jp {
      font-size: 129%;
      margin-bottom: 12px;
    }
    .page_ttl-en {
      font-size: 70%;
    }
  }
  @media screen and (max-width: 374px) {
    .page_ttl-jp {
      font-size: 129%;
      margin-bottom: 10px;
    }
  }

  /* --- sect_ttl --- */
  .sect_ttl {
    font-size: 220%;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: .1em;
  }
  .sect_ttl-sm { font-size: 267%; }
  .sect_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }

  /* --- heading --- */
  .head1 { font-size: 213%; }
  .head2 { font-size: 160%; }
  .head3 { font-size: 120%; }
  .head4 { font-size: 100%; }

  /* --- skill_ico_ttl ---  */
  .skill_ico_ttl {
    line-height: 1em;
    margin-bottom: 6px;
    column-gap: 6px;
  }
  .skill_ico_ttl .label {
    font-size: 93%;
  }
  .skill_ico_ttl .skill_name {
    column-gap: 4px;
  }

/* txt
**************************************** */
  .fnt-jp {  font-family: 'Noto Sans JP', sans-serif; }
  .fnt-en {  font-family: 'Lato', 'Noto Sans JP', sans-serif; }
  .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; }
  .fnt-xxs { font-size: 80% }
  .fnt-xs  { font-size: 87% }
  .fnt-sm  { font-size: 93%; }
  .fnt-lg  { font-size: 107%; }
  .fnt-xl  { font-size: 113%; }
  .fnt-xxl { font-size: 120%; }
  .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;
  }
  .edge_txt-wht {
    text-shadow:1px 1px 0 rgba(255,255,255,.8), -1px -1px 0 rgba(255,255,255,.8),
              -1px 1px 0 rgba(255,255,255,.8), 1px -1px 0 rgba(255,255,255,.8),
              0px 1px 0 rgba(255,255,255,.8),  0-1px 0 rgba(255,255,255,.8),
              -1px 0 0 rgba(255,255,255,.8), 1px 0 0 rgba(255,255,255,.8);
  }
  .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: 0em; }
  .ls-50 { letter-spacing: .05em; }
  .ls-100 { letter-spacing: .1em; }
  .ls-150 { letter-spacing: .15em; }
  .ls-200 { letter-spacing: .2em; }
  .ls-250 { letter-spacing: .25em; }
  .ls-300 { letter-spacing: .3em; }
  .ls-350 { letter-spacing: .35em; }
  .ls-400 { letter-spacing: .4em; }
  .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; }
  @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;
  }

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

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

/* 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: 60%;
    height: 40%;
    border-width: 1px;
    border-style: solid;
  }
  .ico-outlink::before {
    bottom: 37.5%;
    left: 27.5%;
  }
  .ico-outlink::after {
    top: 37.5%;
    right: 27.5%;
    border-top: none;
    border-right: none;
  }

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

  /* --- btn-arrow ---  */
  .btn-arrow {
    width: 40px;
    height: 40px;
  }
  .btn-arrow .ico {
    width: 16px;
    height: 16px;
  }

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

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


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

    PARTS

############################################################################## */
  .app {
    display: table;
    padding-top: 4px;
    padding-bottom: 5px;
    padding-left: 8px;
    padding-right: 8px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 100px;
  }
  .app::before {
    border-radius: 100px;
  }
  .app-blanc { color: #64b1c6; }
  .app-blanc::before { background-color: #edf7fa; }
  .app-noir { color: #817674; }
  .app-noir::before { background-color: #e7e3e0; }
  .app-limited { color: #8d6cae; }
  .app-limited::before { background-color: #f1ebf5; }
  .app-dominant::before {
    background-image: linear-gradient(315deg, #ffd77d 0%, #55cdf2 50%, #ff94c8 100%);
    opacity: .3;
  }


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

    PLUGIN

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

/* slick
*************************************************** */
  .slick-track {
    display: flex;
  }
  .slick-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    height: auto !important;
  }


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

    WRAPPER

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



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

    HEADER

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

/* header
**************************************** */
  .header {
    position: fixed;
    bottom: 0;
    left: 0;
    padding-left: 64px;
    padding-right: 0;
    z-index: 10000;
    width: 100%;
  }
  .header:hover::before,
  .scrolled .header::before {
    opacity: .95;
  }
  .header--logo {
    z-index: 0;
  }
  @media screen and (max-width: 960px) {
    .header {
      padding-bottom: 8px;
      padding-left: 24px;
    }
    .scrolled .header::before {
      opacity: 0;
    }
    .header--nav {
      position: relative;
      z-index: 100;
    }
  }

/* bnav
**************************************** */
  .bnav {
    position: fixed;
    bottom: 16px;
    left: 50%;
    width: calc(100% - 16px);
    max-width: 560px;
    z-index: 10000;
    border-radius: 100px;
    box-shadow: 0 0 8px rgb(147 169 193 / 15%);
    padding-left: 8px;
    padding-right: 8px;
    opacity: 0;
    transform: translate(-50%,8px);
  }
  .loaded .bnav {
    opacity: 1;
    transform: translate(-50%,0);
  }
  .bnav_list--item {
    width: 20%;
    font-size: 70%;
  }
  .bnav_list--item:nth-of-type(3) {
    margin-left: auto;
  }
  .bnav_list--item_in {
    row-gap: 6px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .btn-switch,
  .btn-switch::before {
    border-radius: 100%;
  }
  .btn-switch {
    position: absolute;
    bottom: 8px;
    left: calc(50% - 32px);
    z-index: 10000;
    width: 64px;
    height: 64px;
  }
  .btn-switch::before {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  /* --- select_menu ---  */
  .bnav .select_menu_list {
    position: absolute;
    bottom: calc(100% + 16px);
    left: calc(50% - 118px / 2);
    width: 118px;
    transform: translateY(8px);
    row-gap: 4px;
    opacity: 0;
    pointer-events: none;
  }
  .bnav .select_menu_list--item,
  .bnav .select_menu_list--item::before {
    border-radius: 100px;
  }
  .bnav .select_menu_list--item {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    column-gap: 6px;
    box-shadow: 0 0 4px rgb(147 169 193 / 15%);
  }
  .bnav .select_menu_list--item.selected::before {
    opacity: 1;
  }
  .bnav .select_menu_list--item .txt {
    margin-bottom: 1px;
  }
  .bnav .select_menu_list--item.selected .txt {
    font-weight: 700;
  }
  .bnav .bnav_list--item.select_show .select_menu_list {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  /* --- btn-switch --- */
  .btn-switch svg {
    display: block;
    transform: translateY(1px);
  }
  .show_has_idols .btn-switch::before {
    background-image: linear-gradient(155deg,#fb6e8d 0%,#f64e73 100%);
  }
  .show_has_idols .btn-switch svg {
    fill: #fff;
    opacity: 1;
  }

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

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

  /* --- gnav ---  */
  .gnav,
  .gnav_sub {
    position: fixed;
    z-index: 9998;
    border-radius: 40px;
  }
  .gnav {
    top: 16px;
    right: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 112px);
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
    background: #fff;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
  }
  .gnav--logo {
    margin-bottom: 16px;
  }
  .gnav_lists {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gnav_list--item {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.1);
  }
  .gnav_list--item_in {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .gnav_list--item_in::before {
    content: none;
  }
  .gnav_list--item_in .ico-arrow {
    right: 0;
    transform: rotate(-90deg);
  }
  .gnav_list--item_in .current_layer {
    width: 2px;
    height: 100%;
    left: -24px;
  }
  .gnav_list--item .tap_area {
    z-index: 1;
  }
  .gnav_layer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
  }
  .header.active .gnav {
    opacity: 1;
    pointer-events: all;
    transform: translate(0,0);
  }
  .header.active .gnav_layer {
    opacity: .75;
  }
  .header.active + .wrapper .wrapper--in {
    filter: blur(3px);
  }
  .gnav_list--item.sub_show {
    z-index: 1;
  }
  .gnav .gnav_list--item_in,
  .gnav > *:not(.gnav_lists),
  .gnav .contact_btn {
    animation-duration: .4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: gnav_sub_in;
  }
  .gnav.sub_show .gnav_list--item_in,
  .gnav.sub_show > *:not(.gnav_lists),
  .gnav.sub_show .contact_btn {
    animation-name: gnav_sub_out;
  }

  /* --- snav ---  */
  .gnav_sub {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
    animation-duration: .4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: gnav_sub_out;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }
  .gnav_sub .inner {
    width: 100%;
  }
  .gnav_sub.is_show {
    animation-name: gnav_sub_in;
    z-index: 10;
  }
  .header.active .gnav_sub.is_show {
    pointer-events: all;
  }
  .snav_list {
    gap: 24px;
  }
  .snav_list--item {
    width: calc(100% / 6 - 20px);
  }
  .snav_list--item:nth-of-type(5n+5),
  .snav_list--item:last-child { margin-right: 0; }
  
  .gnav_list--item .tap_area {
    z-index: 1;
  }
  .snav_list {
    margin-top: 0;
    gap: 6px;
  }
  .snav_list--item {
    width: calc(100% / 3 - 4px);
  }
  .snav_list--item_in {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 8px;
    padding-right: 8px;
    row-gap: 8px;
  }
  .snav_list--item_in::before {
    border-radius: 8px;
  }
  .snav_list--item .img_area img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: 38px;
  }
  /*.snav_list--item .ttl {
    height: 2em;
  }*/
  .snav_list--item .txt {
    font-size: 70%;
  }
  .gnav_sub .tap_area-prev {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: rgba(0,0,0,.1);
    text-align: center;
  }
  .gnav_sub .tap_area-prev .ico-arrow-lft {
    position: absolute;
    left: 0;
    top: 8px;
    display: block;
    margin-right: 8px;
  }
  .gnav_sub .tap_area-prev .ico-arrow-btm {
    display: none;
  }
  .gnav_sub .tap_area-prev .txt {
    display: block;
    line-height: 1em;
  }
  .gnav_sub .tap_area-prev .txt:nth-of-type(2) {
    opacity: 1;
    margin-top: 8px;
    font-size: 71%;
  }

  /* --- idol ---  */
  .gnav_list--item-idol {
    border: none;
  }
  .gnav_list--item-idol .gnav_list--item_in {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 116%;
  }
  .gnav_list--item-idol .gnav_list--item_in::before,
  .gnav_list--item-idol .gnav_list--item_in::after {
    content: '';
    border-radius: 100px;
  }
  .gnav_list--item-idol .gnav_list--item_in::before {
    z-index: -10;
  }
  .gnav_list--item-idol .gnav_list--item_in::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    z-index: -1;
    background-color: #fff;
  }
  .gnav_list--item-idol .gnav_list--item_in img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 58px;
    width: auto;
    opacity: 0;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: .3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: fade_out;
  }
  .active .gnav_list--item-idol .gnav_list--item_in img {
    animation-name: fade_in;
  }
  .gnav_list--item-idol .gnav_list--item_in img:first-child {
    left: 32px;
  }
  .gnav_list--item-idol .gnav_list--item_in img:last-child {
    right: 32px;
  }

  /* --- party & gasha ---  */
  .gnav_list--item-party .snav_list--item,
  .gnav_list--item-gasha .snav_list--item,
  .gnav_list--item-idols .snav_list--item {
    width: calc(50% - 3px);
  }

  @media screen and (min-width: 561px) {
    .gnav,
    .gnav_sub {
      top: 30px;
      right: 40px;
      width: 360px;
      padding-top: 32px;
      padding-bottom: 32px;
      padding-left: 24px;
      padding-right: 24px;
      transform: translateY(12px);
      border-radius: 8px;
    }
    .gnav {
      height: auto;
    }
    .gnav_sub {
      padding-top: 0;
      padding-bottom: 0;
    }
    .gnav--logo {
      text-align: center;
    }
  }
  @media screen and (max-width: 560px) {
    .gnav--logo {
      margin-bottom: 8px;
    }
    .gnav_list--item_in .current_layer {
      left: -20px;
    }
  }

/* contact_list
**************************************** */
  .contact_list--item,
  .contact_list--item_in {
    height: 100%;
  }
  .contact_list--item_in {
    min-width: 164px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact_list--item_in::before {
    opacity: .1;
    animation-duration: .4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-name: slide-to_rgt;
  }
  .contact_list--item_in:hover::before {
    animation-name: slide-rev_rgt;
  }
  @media screen and (min-width: 961px) {
    .contact_list {
      margin-left: -24px;
    }
  }


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

    FOOTER

############################################################################## */
  .footer {
    padding: 24px 0;
  }
  .fnav_list--item .txt {
    display: block;
  }
  .pagetop {
  }
  .footer--copyright {
    text-align: center;
  }

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


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

    common

############################################################################## */
  .ttl__desc .line {
    height: 1px;
    margin-left: 8px;
    margin-right: 8px;
    transform: translateY(-.5em);
  }
  .ttl__desc .head3,
  .ttl__desc .head4 {
    column-gap: 6px;
  }
  .ttl__desc .img_ico img {
    width: auto;
    height: 16px;
  }
  .ttl__desc .sub_ttl {
    font-size: 66%;
    transform: translateY(2px);
  }
  .ttl__desc .arrow {
    width: 16px;
    height: 16px;
  }

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

    skill - single

############################################################################## */
  .skill_slider {
    width: 100%;
  }
  .idol .skill_ico {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 28%;
    height: 28%;
    transform: translate(-15%,-15%);
  }
  .idol .skill_ico img {
    display: block;
  }
  .idol .img {
    border-radius: 15%;
    overflow: hidden;
  }
  .idol .second {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    font-size: 65%;
    letter-spacing: 0em;
    line-height: 1em;
    height: 28%;
    width: 40%;
    border-radius: 100px;
    white-space: nowrap;
    translate: 7% 15%;
  }
  .post_type-gasha .idol .second,
  .ssr_list--item .idol .second {
    font-size: 55%;
  }
  .show_has_idols .idol:not(.has_idol):not(.no_idol) img,
  .show_has_idols .idol:not(.has_idol):not(.no_idol) + .txt_area .skill_ico img,
  .archive-idol .ssr_list--item input[type="checkbox"]:not(:checked) + .check + .checked_layer + .idol .img img,
  .archive-idol .ssr_list--item input[type="checkbox"]:not(:checked) + .check + .checked_layer + .idol .skill_ico img {
    filter: grayscale(90%);
    opacity: .5;
  }

  .idol .spec_badge {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 56%;
    height: 28%;
  }
  .idol .spec_badge.flx-end-ctr {
    right: 0;
    transform: translate(7.5%,15%);
  }
  .idol .spec_badge.flx-stt-ctr {
    left: 0;
    transform: translate(-7.5%,15%);
  }
  .idol .spec_badge .spec {
    font-size: 50%;
    line-height: 1em;
    text-transform: capitalize;
    width: 50%;
    height: 100%;
    border-radius: 100vmax;
    letter-spacing: 0em;
    border: 1px solid #fff;
    overflow: hidden;
    background-color: #fff;
  }
  .idol .spec_badge .spec:not(:first-child) {
    translate: -20% 0;
  }
  .idol .spec_badge .spec:nth-of-type(1) { z-index: 3; }
  .idol .spec_badge .spec:nth-of-type(2) { z-index: 2; }
  .idol .spec_badge .spec:nth-of-type(3) { z-index: 1; }
  .archive-idol .main_area .idol .spec_badge .spec {
    font-size: 60%;
  }
  body:not(.archive-idol).show_has_idols .idol:not(.has_idol):not(.no_idol) .spec_badge,
  .archive-idol .ssr_list--item input[type="checkbox"]:not(:checked) + .check + .checked_layer + .idol .spec_badge {
    filter: grayscale(90%);
  }
  body:not(.show_has_idols) .idol,
  .scale-sm .unit .idol,
  .guest_bloc .idol,
  .post_type-idol.archive-idol .main_area .idol {
    pointer-events: none;
  }

  .guest_bloc .idol .img img,
  .post_type-idol.archive-idol .main_area .idol .img img,
  .post_type-idol.archive-idol .ssr_list--item input[type="checkbox"]:checked + .check + .checked_layer + .idol .img img,
  .post_type-idol.archive-idol .ssr_list--item input[type="checkbox"]:checked + .check + .checked_layer + .idol .skill_ico img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
  }
  .center_desc .idol .second,
  .guest_bloc .idol .second,
  .center_desc .idol .skill_ico,
  .guest_bloc .idol .skill_ico {
    display: none;
  }
  .idol_tbl {
    row-gap: 6px;
  }
  .idol_tbl .spec_bloc {
    padding-top: 0;
    padding-bottom: 0;
  }
  .idol_tbl .radius_box {
    column-gap: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 32px;
    border-radius: 8px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .idol_tbl .radius_box_ttl {
    column-gap: 6px;
    width: 58px;
  }
  .idol_tbl .radius_box_ttl .num {
    font-size: 230%;
    letter-spacing: -.05em;
    line-height: 1.4em;
  }
  .idol_tbl .radius_box_ttl .percentage {
    display: inline-block;
    transform: translateY(1.3em);
    line-height: 1.4em;
  }
  .idol_tbl .spec_blocs,
  .idol_tbl .spec_bloc {
    gap: 4px;
  }
  .idol_tbl .spec_bloc_ttl {
    padding-top: calc(40px - .5em);
    padding-right: 8px;
    width: 2em;
    line-height: 1em;
  }
  .idol_tbl-mutual .spec_bloc_ttl,
  .idol_tbl-dominant_harmony .spec_bloc_ttl {
    width: 4em;
  }
  .idol_tbl .spec_bloc .type {
    gap: 2px;
  }
  .idol_tbl .idol .img img {
    display: block;
    width: 80px;
    height: auto;
  }
  @media screen and (max-width: 1064px) {
    .idol_tbl .radius_box {
      column-gap: 16px;
      padding-top: 16px;
      padding-bottom: 16px;
    }
    .idol_tbl .spec_bloc_ttl {
      padding-top: calc(28px - .5em);
    }
    .idol_tbl .idol .img img {
      width: 55px;
    }
  }
  @media screen and (max-width: 1064px) and (min-width: 769px) {
    .idol_tbl .radius_box {
      padding-left: 16px;
      padding-right: 24px;
    }
  }
  @media screen and (max-width: 768px) {
    .idol_tbl {
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .idol_tbl .radius_box {
      width: 100%;
      column-gap: 12px;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .idol_tbl .spec_bloc_ttl {
      padding-top: calc(25px - .5em);
    }
    .idol_tbl .idol .img img {
      width: 50px;
    }
  }
  @media screen and (max-width: 560px) {
    .idol_tbl {
      gap: 4px;
    }
  }
  @media screen and (max-width: 413px) {
    .idol_tbl .spec_bloc_ttl {
      padding-top: calc(22px - .5em);
    }
    .idol_tbl .idol .img img {
      width: 45px;
    }
  }
  @media screen and (max-width: 374px) {
    .idol_tbl .radius_box {
      padding-left: 16px;
      padding-right: 20px;
    }
    .idol_tbl .spec_bloc_ttl {
      padding-top: calc(20px - .5em);
    }
    .idol_tbl .radius_box_ttl .num {
      font-size: 180%;
    }
    .idol_tbl .radius_box_ttl .percentage {
      transform: translateY(.8em);
    }
    .idol_tbl .idol .img img {
      width: 40px;
    }
  }
  .idol_tbl .center_desc .center_idols {
    gap: 2px;
  }
  .idol_tbl .center_desc .center_idols .idol {
    width: calc(100% / 8 - 2px);
  }
  .idol_tbl .center_desc .center_idols .idol .img img {
    width: 100%;
    height: auto;
  }

/* skill 予想着色
*************************************************** */

  /* --- common --- */
  .type-cu .no_idol .img {
    background-color: #fd0267;
  }
  .type-co .no_idol .img {
    background-color: #036efe;
  }
  .type-pa .no_idol .img {
    background-color: #ffa509;
  }
  .no_idol img {
    opacity: .95 !important;
  }

  /* --- over_drive --- */
/*  .idol_tbl-over_drive .radius_box-7 .spec_bloc-da .type:nth-of-type(2) .no_idol img,*/
/*  .idol_tbl-over_drive .radius_box-7 .spec_bloc-vo .type:nth-of-type(3) .no_idol img,*/
/*  .idol_tbl-over_drive .radius_box-7 .spec_bloc-vi .type:nth-of-type(1) .no_idol img,*/

  /* --- spike --- */
  .idol_tbl-tricolor_spike .radius_box-9 .spec_bloc-da .type:nth-of-type(1) .no_idol img,
  .idol_tbl-tricolor_spike .radius_box-11 .spec_bloc-vo .type:nth-of-type(1) .no_idol img,
  .idol_tbl-tricolor_spike .radius_box-9 .spec_bloc-vo .type:nth-of-type(2) .no_idol img,
  .idol_tbl-tricolor_spike .radius_box-11 .spec_bloc-vi .type:nth-of-type(2) .no_idol img,
  .idol_tbl-tricolor_spike .radius_box-7 .spec_bloc-vo .type:nth-of-type(3) .no_idol img,
  .idol_tbl-tricolor_spike .radius_box-9 .spec_bloc-vi .type:nth-of-type(3) .no_idol img,
  .idol_tbl-tricolor_spike .radius_box-11 .spec_bloc-da .type:nth-of-type(3) .no_idol img,

  /* --- dominant_harmony --- */
  .idol_tbl-dominant_harmony .radius_box-13 .spec_bloc-voda .type:nth-of-type(3) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-11 .spec_bloc-vivo .type:nth-of-type(1) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-9 .spec_bloc-vivo .type:nth-of-type(1) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-6 .spec_bloc-voda .type:nth-of-type(1) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-13 .spec_bloc-davi .type:nth-of-type(1) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-11 .spec_bloc-voda .type:nth-of-type(2) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-9 .spec_bloc-voda .type:nth-of-type(2) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-6 .spec_bloc-davi .type:nth-of-type(2) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-13 .spec_bloc-vivo .type:nth-of-type(2) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-11 .spec_bloc-davi .type:nth-of-type(3) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-9 .spec_bloc-davi .type:nth-of-type(3) .no_idol img,
  .idol_tbl-dominant_harmony .radius_box-6 .spec_bloc-vivo .type:nth-of-type(3) .no_idol img {
    opacity: .35 !important;
  }

  /* --- party - dominant --- */
  .page-dominant .formation_sect-cu-pacu .spec_bloc-vivo .radius_box-9 .skill-dominant_harmony .no_idol .img,
  .page-dominant .formation_sect-co-paco .spec_bloc-davi .radius_box-9 .skill-dominant_harmony .no_idol .img {
    background-color: #FFAA02;
  }
  .page-dominant .formation_sect-cu-cocu .spec_bloc-vivo .radius_box-9 .skill-dominant_harmony .no_idol .img,
  .page-dominant .formation_sect-pa-copa .spec_bloc-davi .radius_box-9 .skill-dominant_harmony .no_idol .img {
    background-color: #006cff;
  }
  .page-dominant .formation_sect-co-cuco .spec_bloc-voda .radius_box-9 .skill-dominant_harmony .no_idol .img,
  .page-dominant .formation_sect-pa-cupa .spec_bloc-vivo .radius_box-9 .skill-dominant_harmony .no_idol .img {
    background-color: #ff0072;
  }
  .page-dominant .formation_sect-cu-cocu .spec_bloc-voda .radius_box-9 .skill-dominant_harmony .no_idol img,
  .page-dominant .formation_sect-cu-pacu .spec_bloc-vivo .radius_box-9 .skill-dominant_harmony .no_idol img,
  .page-dominant .formation_sect-co-paco .spec_bloc-davi .radius_box-9 .skill-dominant_harmony .no_idol img,
  .page-dominant .formation_sect-co-cuco .spec_bloc-voda .radius_box-9 .skill-dominant_harmony .no_idol img,
  .page-dominant .formation_sect-pa-cupa .spec_bloc-vivo .radius_box-9 .skill-dominant_harmony .no_idol img,
  .page-dominant .formation_sect-pa-copa .spec_bloc-davi .radius_box-9 .skill-dominant_harmony .no_idol img {
    opacity: .35 !important;
  }
  .page-dominant .formation_sect-co-cuco .spec_bloc-voda .radius_box-13 .skill-dominant_harmony .no_idol img {
    opacity: .35 !important;
  }


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

    dominant

############################################################################## */
  .formation_sect .inner {
    row-gap: 8px;
  }
  .formation_sect:not(:last-child) .inner {
    padding-bottom: 0;
  }
  .formation_sect .spec_bloc_ttl {
    line-height: 1em;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 8px;
  }
  .formation_sect .spec_bloc_ttl .txt {
    column-gap: 4px;
  }
  .formation_sect .spec_bloc_ttl .arrow::before {
    z-index: 1;
  }
  .formation_sect .spec_bloc.is_hide .spec_bloc_ttl {
    padding-left: 12px;
    padding-right: 12px;
  }
  .formation_sect .spec_bloc.is_hide .spec_bloc_ttl {
    background-color: #fff;
  }
  .formation_sect .spec_bloc.is_hide .spec_bloc_ttl .ico-arrow {
    transform: rotate(-180deg);
  }
  .formation_sect .spec_list {
    gap: 24px;
  }
  .formation_sect .spec_list--item {
    width: calc(100% / 3 - 20px);
  }
  .formation_sect .unit {
    gap: 8px;
    padding-top: 4px;
  }
  .formation_sect .idol_tbl .radius_box {
    padding-left: 20px;
    padding-right: 24px;
  }
  .formation_sect .unit .skill {
    width: calc(20% - 7px);
    font-size:80%;
    gap: 4px;
  }
  .formation_sect .unit .skill-over_load .idol:not(.is_show):not(.no_idol) {
    display: none;
  }
  .page-domi_breath-over_load .formation_sect .unit .skill-over_load .idol:not(.is_show):not(.no_idol) {
    display: block;
  }
  .formation_sect .unit .guest_bloc {
    padding: 8px 10px;
    margin-top: 0;
    width: 100%;
  }
  .formation_sect .unit .guest_bloc::before {
    border-radius: 5px;
  }
  .formation_sect .unit .guest_bloc .skill {
    width: 100%;
    gap: 2px;
  }
  .formation_sect .unit .guest_bloc .skill .idol {
    width: calc(100% / 6 - 2px);
  }
  .scale-lg .formation_sect .radius_box {
    height: auto !important;
  }
  .scale-sm .formation_sect .spec_bloc {
    width: calc(100% / 3 - 8px);
  }
  .scale-sm .formation_sect .spec_bloc_ttl,
  .scale-sm .formation_sect .spec_bloc_ttl .txt {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4px;
  }
  .scale-sm .formation_sect .center_desc,
  .scale-sm .formation_sect .spec_bloc_ttl .arrow {
    display: none;
  }
  .scale-sm .formation_sect .idol_tbl {
    row-gap: 0;
  }
  .scale-sm .formation_sect .idol_tbl .radius_box:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .scale-sm .formation_sect .idol_tbl .radius_box:not(:last-child) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 0;
  }
  .scale-sm .formation_sect .unit {
    padding-top: 0;
  }
  @media screen and (max-width: 1280px) {
    .scale-sm .formation_sect .idol_tbl .radius_box {
      padding-right: 20px;
    }
    .scale-sm .formation_sect .idol_tbl .radius_box_ttl {
      display: none;
    }
  }
  @media screen and (max-width: 880px) {
    .scale-sm .formation_sect:not(.formation_sect-guest) .idol_tbl .guest_bloc {
      display: none;
    }
  }
  @media screen and (max-width: 768px) {
    .formation_sect .ttl__desc,
    .formation_sect .spec_bloc_ttl {
      width: 100%;
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
    }
    .scale-sm .formation_sect .ttl__desc,
    .scale-sm .formation_sect .spec_bloc_ttl {
      max-width: 100%;
    }
    .scale-sm .formation_sect .ttl__desc {
      padding-left: 8px;
      padding-right: 8px;
    }
    .scale-sm .formation_sect .idol_tbl .radius_box {
      padding-top: 16px;
      padding-bottom: 16px;
      padding-left: 8px;
      padding-right: 8px;
    }
    .scale-sm .formation_sect-guest .idol_tbl .guest_bloc .skill_ico_ttl {
      font-size: 70%;
    }
  }
  @media screen and (max-width: 560px) {
    .formation_sect .inner {
      width: calc(100% - 8px);
    }
    .formation_sect .spec_blocs {
      row-gap: 10px;
    }
    .formation_sect .spec_bloc {
      padding-left: 12px;
      padding-right: 12px;
      width: 100%;
    }
    .formation_sect .idol_tbl .radius_box {
      max-width: 340px;
    }
    .scale-sm .formation_sect:not(:first-child) .inner {
      padding-top: 32px;
    }
    .scale-sm .formation_sect .ttl__desc {
      margin-bottom: 4px;
      font-size: 80%;
    }
    .scale-sm .formation_sect .ttl__desc .head3 {
      column-gap: 4px;
    }
    .scale-sm .formation_sect .ttl__desc .head3 img {
      width: 16px;
      height: 16px;
    }
    .scale-sm .formation_sect .spec_bloc {
      width: calc(100% / 3 - 1px);
      padding-left: 0;
      padding-right: 0;
    }
    .scale-sm .formation_sect .spec_bloc_ttl {
      padding-top: 0;
      padding-bottom: 0;
      margin-bottom: 6px;
    }
    .scale-sm .formation_sect .spec_bloc_ttl .txt {
      font-size: 72%;
      row-gap: 2px;
    }
    .scale-sm .formation_sect .spec_bloc_ttl .txt img {
      width: auto;
      height: 12px;
    }
    .scale-sm .formation_sect .idol_tbl .radius_box {
      padding-top: 12px;
      padding-bottom: 12px;
      padding-left: 2px;
      padding-right: 2px;
      border-radius: 4px;
    }
    .scale-sm .formation_sect .idol_tbl .idol .second {
      font-size: 35%;
    }
    .scale-sm .formation_sect .unit .guest_bloc {
      padding: 6px 4px;
    }
    .scale-sm .formation_sect .unit .guest_bloc:before {
      border-radius: 3px;
    }
    .scale-sm .formation_sect-guest .idol_tbl .guest_bloc .skill_ico_ttl {
      column-gap: 2px;
      transform: scale(.6);
      margin-top: -4px;
      margin-bottom: 1px;
      margin-left: -10px;
      width: 48px;
    }
    .scale-sm .formation_sect-guest .idol_tbl .guest_bloc .skill_ico_ttl .skill_name .txt {
      display: none;
    }
    .scale-sm .formation_sect-guest .idol_tbl .guest_bloc .skill_ico_ttl img {
      width: 10px;
      height: 10px;
    }
  }

/* unit内 idol_tbl
*************************************************** */
  .formation_sect .idol_tbl .unit .idol .img img {
    width: 100%;
    height: auto;
  }

  /*
  voda | vivo | davi　の場合
  .formation_sect .spec_bloc-cocu .spec_list--item-voda .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cocu .spec_list--item-davi .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-cocu .spec_list--item-vivo .unit:nth-child(3n),
  .formation_sect .spec_bloc-pacu .spec_list--item-voda .unit:nth-child(3n),
  .formation_sect .spec_bloc-pacu .spec_list--item-davi .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-pacu .spec_list--item-vivo .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-paco .spec_list--item-voda .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-paco .spec_list--item-davi .unit:nth-child(3n),
  .formation_sect .spec_bloc-paco .spec_list--item-vivo .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cuco .spec_list--item-voda .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cuco .spec_list--item-davi .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-cuco .spec_list--item-vivo .unit:nth-child(3n),
  .formation_sect .spec_bloc-cupa .spec_list--item-voda .unit:nth-child(3n),
  .formation_sect .spec_bloc-cupa .spec_list--item-davi .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cupa .spec_list--item-vivo .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-copa .spec_list--item-voda .unit:nth-child(3n),
  .formation_sect .spec_bloc-copa .spec_list--item-davi .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-copa .spec_list--item-vivo .unit:nth-child(3n-1) {
    opacity: 1;
  }
  */

  /*
  voda | davi | vivo　の場合
  */
  /*.formation_sect .spec_bloc-cocu .spec_list--item-voda .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cocu .spec_list--item-vivo .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-cocu .spec_list--item-davi .unit:nth-child(3n),
  .formation_sect .spec_bloc-pacu .spec_list--item-voda .unit:nth-child(3n),
  .formation_sect .spec_bloc-pacu .spec_list--item-vivo .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-pacu .spec_list--item-davi .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-paco .spec_list--item-voda .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-paco .spec_list--item-vivo .unit:nth-child(3n),
  .formation_sect .spec_bloc-paco .spec_list--item-davi .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cuco .spec_list--item-voda .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cuco .spec_list--item-vivo .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-cuco .spec_list--item-davi .unit:nth-child(3n),
  .formation_sect .spec_bloc-cupa .spec_list--item-voda .unit:nth-child(3n),
  .formation_sect .spec_bloc-cupa .spec_list--item-vivo .unit:nth-child(3n-2),
  .formation_sect .spec_bloc-cupa .spec_list--item-davi .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-copa .spec_list--item-voda .unit:nth-child(3n-1),
  .formation_sect .spec_bloc-copa .spec_list--item-vivo .unit:nth-child(3n),
  .formation_sect .spec_bloc-copa .spec_list--item-davi .unit:nth-child(3n-2) {
    opacity: 1;
  }*/

/*  .formation_sect .spec_bloc-cocu .spec_list--item-vivo .unit:nth-child(1),*/
/*  .formation_sect .spec_bloc-cocu .spec_list--item-davi .unit:nth-child(2),*/
  .formation_sect .spec_bloc-cocu .spec_list--item-voda .unit:nth-child(4),
  .formation_sect .spec_bloc-cocu .spec_list--item-davi .unit:nth-child(3),

  .formation_sect .spec_bloc-pacu .spec_list--item-voda .unit:nth-child(1),
  .formation_sect .spec_bloc-pacu .spec_list--item-vivo .unit:nth-child(2),
/*  .formation_sect .spec_bloc-pacu .spec_list--item-voda .unit:nth-child(3),*/
/*  .formation_sect .spec_bloc-pacu .spec_list--item-vivo .unit:nth-child(4),*/

/*  .formation_sect .spec_bloc-paco .spec_list--item-voda .unit:nth-child(1),*/
/*  .formation_sect .spec_bloc-paco .spec_list--item-vivo .unit:nth-child(2),*/
  .formation_sect .spec_bloc-paco .spec_list--item-vivo .unit:nth-child(3),
  .formation_sect .spec_bloc-paco .spec_list--item-davi .unit:nth-child(4),

  .formation_sect .spec_bloc-cuco .spec_list--item-davi .unit:nth-child(1),
  .formation_sect .spec_bloc-cuco .spec_list--item-voda .unit:nth-child(2),
/*  .formation_sect .spec_bloc-cuco .spec_list--item-davi .unit:nth-child(3),*/
/*  .formation_sect .spec_bloc-cuco .spec_list--item-voda .unit:nth-child(4),*/

/*  .formation_sect .spec_bloc-cupa .spec_list--item-davi .unit:nth-child(1),*/
/*  .formation_sect .spec_bloc-cupa .spec_list--item-voda .unit:nth-child(2),*/
  .formation_sect .spec_bloc-cupa .spec_list--item-voda .unit:nth-child(3),
  .formation_sect .spec_bloc-cupa .spec_list--item-vivo .unit:nth-child(4),

  .formation_sect .spec_bloc-copa .spec_list--item-vivo .unit:nth-child(1),
  .formation_sect .spec_bloc-copa .spec_list--item-davi .unit:nth-child(2)
/*  .formation_sect .spec_bloc-copa .spec_list--item-vivo .unit:nth-child(3),*/
/*  .formation_sect .spec_bloc-copa .spec_list--item-davi .unit:nth-child(4)*/
  {
    opacity: 1;
  }

/*  .formation_sect-cu-cocu .spec_bloc-vivo .radius_box:nth-child(1) .unit,*/
/*  .formation_sect-cu-cocu .spec_bloc-davi .radius_box:nth-child(2) .unit,*/
  .formation_sect-cu-cocu .spec_bloc-voda .radius_box:nth-child(4) .unit,
  .formation_sect-cu-cocu .spec_bloc-davi .radius_box:nth-child(3) .unit,

  .formation_sect-cu-pacu .spec_bloc-voda .radius_box:nth-child(1) .unit,
  .formation_sect-cu-pacu .spec_bloc-vivo .radius_box:nth-child(2) .unit,
/*  .formation_sect-cu-pacu .spec_bloc-voda .radius_box:nth-child(3) .unit,*/
/*  .formation_sect-cu-pacu .spec_bloc-vivo .radius_box:nth-child(4) .unit,*/

/*  .formation_sect-co-paco .spec_bloc-voda .radius_box:nth-child(1) .unit,*/
/*  .formation_sect-co-paco .spec_bloc-vivo .radius_box:nth-child(2) .unit,*/
  .formation_sect-co-paco .spec_bloc-vivo .radius_box:nth-child(3) .unit,
  .formation_sect-co-paco .spec_bloc-davi .radius_box:nth-child(4) .unit,

  .formation_sect-co-cuco .spec_bloc-davi .radius_box:nth-child(1) .unit,
  .formation_sect-co-cuco .spec_bloc-voda .radius_box:nth-child(2) .unit,
/*  .formation_sect-co-cuco .spec_bloc-davi .radius_box:nth-child(3) .unit,*/
/*  .formation_sect-co-cuco .spec_bloc-voda .radius_box:nth-child(4) .unit,*/

/*  .formation_sect-pa-cupa .spec_bloc-davi .radius_box:nth-child(1) .unit,*/
/*  .formation_sect-pa-cupa .spec_bloc-voda .radius_box:nth-child(2) .unit,*/
  .formation_sect-pa-cupa .spec_bloc-voda .radius_box:nth-child(3) .unit,
  .formation_sect-pa-cupa .spec_bloc-vivo .radius_box:nth-child(4) .unit,

  .formation_sect-pa-copa .spec_bloc-vivo .radius_box:nth-child(1) .unit,
  .formation_sect-pa-copa .spec_bloc-davi .radius_box:nth-child(2) .unit
/*  .formation_sect-pa-copa .spec_bloc-vivo .radius_box:nth-child(3) .unit,*/
/*  .formation_sect-pa-copa .spec_bloc-davi .radius_box:nth-child(4) .unit*/
  {
    opacity: 1;
  }

  /*.formation_sect .spec_bloc:nth-of-type(2)::before {
    background-color: rgba(0,0,0,.5);
    z-index: 1;
    border-radius: 10px;
  }
  .formation_sect .spec_bloc:nth-of-type(2)::after {
    content: 'ドミナント2週目予想';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%,-50%);
    color: #fff;
  }*/
  @media screen and (max-width: 960px) {
    .formation_sect .spec_list {
      gap: 8px;
    }
    .formation_sect .spec_list--item {
      width: calc(100% / 3 - 6px);
    }
    .formation_sect .unit {
      column-gap: 1px;
    }
    .formation_sect .unit .skill {
      gap: 2px;
      width: calc(20% - 1px);
    }
  }
  @media screen and (max-width: 560px) {
  }

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

    PAGE

############################################################################## */
  .btn-cir_fixed {
    position: fixed;
    bottom: 80px;
    left: 8px;
    z-index: 10000;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    box-shadow: 0 0 8px rgb(147 169 193 / 15%);
  }
  .btn-cir_fixed::before {
    z-index: 1;
    border-radius: 100%;
    border-style: solid;
  }
  .btn-cir_fixed svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .scale-lg .btn-scale .ico-large,
  .scale-sm .btn-scale .ico-small {
    opacity: 0;
  }
  .scale-lg .btn-scale::before {
    border-width: 3px;
  }
  .scale-sm .btn-scale::before {
    border-width: 1px;
  }
  .btn-jeneric {
    left: auto;
    left: inherit;
    right: 8px;
  }
  .jeneric-off .btn-jeneric .ico-jeneric_on,
  .jeneric-on .btn-jeneric .ico-jeneric_off {
    opacity: 0;
  }
  .jeneric-on .btn-jeneric::before {
    border-width: 3px;
  }
  .jeneric-off .btn-jeneric::before {
    border-width: 1px;
  }
  .jeneric-off .formation_sect-cu-cocu .skill-over_load .idol[data-type="cu"],
  .jeneric-off .formation_sect-cu-cocu .skill-over_drive .idol[data-type="co"],
  .jeneric-off .formation_sect-cu-pacu .skill-over_load .idol[data-type="cu"],
  .jeneric-off .formation_sect-cu-pacu .skill-over_drive .idol[data-type="pa"],
  .jeneric-off .formation_sect-co-paco .skill-over_load .idol[data-type="co"],
  .jeneric-off .formation_sect-co-paco .skill-over_drive .idol[data-type="pa"],
  .jeneric-off .formation_sect-co-cuco .skill-over_load .idol[data-type="co"],
  .jeneric-off .formation_sect-co-cuco .skill-over_drive .idol[data-type="cu"],
  .jeneric-off .formation_sect-pa-cupa .skill-over_load .idol[data-type="pa"],
  .jeneric-off .formation_sect-pa-cupa .skill-over_drive .idol[data-type="cu"],
  .jeneric-off .formation_sect-pa-copa .skill-over_load .idol[data-type="pa"],
  .jeneric-off .formation_sect-pa-copa .skill-over_drive .idol[data-type="co"] {
    display: none;
  }

/* party
*************************************************** */
  .page-dominant .formation_sect .unit {
/*    opacity: .2;*/
  }
  .page-dominant .formation_sect .idol[data-second="4"] { order: 1; }
  .page-dominant .formation_sect .idol[data-second="6"] { order: 3; }
  .page-dominant .formation_sect .idol[data-second="7"] { order: 5; }
  .page-dominant .formation_sect .idol[data-second="9"] { order: 7; }

  .page-dominant .formation_sect-cu-cocu .skill-over_drive .idol[data-type="co"][data-second="4"],
  .page-dominant .formation_sect-cu-pacu .skill-over_drive .idol[data-type="pa"][data-second="4"],
  .page-dominant .formation_sect-co-paco .skill-over_drive .idol[data-type="pa"][data-second="4"],
  .page-dominant .formation_sect-co-cuco .skill-over_drive .idol[data-type="cu"][data-second="4"],
  .page-dominant .formation_sect-pa-cupa .skill-over_drive .idol[data-type="cu"][data-second="4"],
  .page-dominant .formation_sect-pa-copa .skill-over_drive .idol[data-type="co"][data-second="4"],
  .page-dominant .formation_sect-cu-cocu .skill-over_load .idol[data-type="cu"][data-second="4"],
  .page-dominant .formation_sect-cu-pacu .skill-over_load .idol[data-type="cu"][data-second="4"],
  .page-dominant .formation_sect-co-paco .skill-over_load .idol[data-type="co"][data-second="4"],
  .page-dominant .formation_sect-co-cuco .skill-over_load .idol[data-type="co"][data-second="4"],
  .page-dominant .formation_sect-pa-cupa .skill-over_load .idol[data-type="pa"][data-second="4"],
  .page-dominant .formation_sect-pa-copa .skill-over_load .idol[data-type="pa"][data-second="4"] { order: 2; }
  .page-dominant .formation_sect-cu-cocu .skill-over_drive .idol[data-type="co"][data-second="6"],
  .page-dominant .formation_sect-cu-pacu .skill-over_drive .idol[data-type="pa"][data-second="6"],
  .page-dominant .formation_sect-co-paco .skill-over_drive .idol[data-type="pa"][data-second="6"],
  .page-dominant .formation_sect-co-cuco .skill-over_drive .idol[data-type="cu"][data-second="6"],
  .page-dominant .formation_sect-pa-cupa .skill-over_drive .idol[data-type="cu"][data-second="6"],
  .page-dominant .formation_sect-pa-copa .skill-over_drive .idol[data-type="co"][data-second="6"],
  .page-dominant .formation_sect-cu-cocu .skill-over_load .idol[data-type="cu"][data-second="6"],
  .page-dominant .formation_sect-cu-pacu .skill-over_load .idol[data-type="cu"][data-second="6"],
  .page-dominant .formation_sect-co-paco .skill-over_load .idol[data-type="co"][data-second="6"],
  .page-dominant .formation_sect-co-cuco .skill-over_load .idol[data-type="co"][data-second="6"],
  .page-dominant .formation_sect-pa-cupa .skill-over_load .idol[data-type="pa"][data-second="6"],
  .page-dominant .formation_sect-pa-copa .skill-over_load .idol[data-type="pa"][data-second="6"] { order: 4; }
  .page-dominant .formation_sect-cu-cocu .skill-over_drive .idol[data-type="co"][data-second="7"],
  .page-dominant .formation_sect-cu-pacu .skill-over_drive .idol[data-type="pa"][data-second="7"],
  .page-dominant .formation_sect-co-paco .skill-over_drive .idol[data-type="pa"][data-second="7"],
  .page-dominant .formation_sect-co-cuco .skill-over_drive .idol[data-type="cu"][data-second="7"],
  .page-dominant .formation_sect-pa-cupa .skill-over_drive .idol[data-type="cu"][data-second="7"],
  .page-dominant .formation_sect-pa-copa .skill-over_drive .idol[data-type="co"][data-second="7"],
  .page-dominant .formation_sect-cu-cocu .skill-over_load .idol[data-type="cu"][data-second="7"],
  .page-dominant .formation_sect-cu-pacu .skill-over_load .idol[data-type="cu"][data-second="7"],
  .page-dominant .formation_sect-co-paco .skill-over_load .idol[data-type="co"][data-second="7"],
  .page-dominant .formation_sect-co-cuco .skill-over_load .idol[data-type="co"][data-second="7"],
  .page-dominant .formation_sect-pa-cupa .skill-over_load .idol[data-type="pa"][data-second="7"],
  .page-dominant .formation_sect-pa-copa .skill-over_load .idol[data-type="pa"][data-second="7"] { order: 6; }
  .page-dominant .formation_sect-cu-cocu .skill-over_drive .idol[data-type="co"][data-second="9"],
  .page-dominant .formation_sect-cu-pacu .skill-over_drive .idol[data-type="pa"][data-second="9"],
  .page-dominant .formation_sect-co-paco .skill-over_drive .idol[data-type="pa"][data-second="9"],
  .page-dominant .formation_sect-co-cuco .skill-over_drive .idol[data-type="cu"][data-second="9"],
  .page-dominant .formation_sect-pa-cupa .skill-over_drive .idol[data-type="cu"][data-second="9"],
  .page-dominant .formation_sect-pa-copa .skill-over_drive .idol[data-type="co"][data-second="9"],
  .page-dominant .formation_sect-cu-cocu .skill-over_load .idol[data-type="cu"][data-second="9"],
  .page-dominant .formation_sect-cu-pacu .skill-over_load .idol[data-type="cu"][data-second="9"],
  .page-dominant .formation_sect-co-paco .skill-over_load .idol[data-type="co"][data-second="9"],
  .page-dominant .formation_sect-co-cuco .skill-over_load .idol[data-type="co"][data-second="9"],
  .page-dominant .formation_sect-pa-cupa .skill-over_load .idol[data-type="pa"][data-second="9"],
  .page-dominant .formation_sect-pa-copa .skill-over_load .idol[data-type="pa"][data-second="9"] { order: 8; }

  /* --- domi_breath --- */
  .page-domi_breath .spec_bloc-voda .skill-mutual .idol:not([data-spec="voda"]),
  .page-domi_breath .spec_bloc-davi .skill-mutual .idol:not([data-spec="davi"]),
  .page-domi_breath .spec_bloc-vivo .skill-mutual .idol:not([data-spec="vovi"]) {
    display: none;
  }
  .formation_sect .idol[data-second="4"] { order: 1; }
  .formation_sect .idol[data-second="6"] { order: 2; }
  .formation_sect .idol[data-second="7"] { order: 3; }
  .formation_sect .idol[data-second="9"] { order: 4; }
  .formation_sect .idol[data-second="11"] { order: 5; }


  .page-groove .formation_sect .unit .skill-over_load .idol:not(.is_show):not(.no_idol) {
    display: block;
  }
  .page-groove .idol_tbl .radius_box_ttl .num {
    font-size: 172%;
  }
  .page-groove .idol_tbl .radius_box_ttl .percentage {
    transform: translateY(.8em);
  }

/* idols - limited
*************************************************** */
  .page-limited .limited_list {
    row-gap: 24px;
  }
  .page-limited .period_bloc {
    display: none;
  }
  .page-limited .period_list {
    gap: 8px;
  }
  .page-limited .period_list--item {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
    column-gap: 16px;
    width: calc(25% - 6px);
  }
  .page-limited .period_list--item .ttl {
    width: 40px;
  }
  .page-limited .period_list--item .idols {
    column-gap: 6px;
    width: 196px;
  }
  .page-limited .ttl__desc {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
  }
  .page-limited .ttl__desc .tag_txt {
    margin-right: auto;
    margin-left: 12px;
  }
  .page-limited .limited_list--item.is_show .period_bloc {
    margin-bottom: 40px;
  }
  .page-limited .limited_list--item.is_show .ttl__desc {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
  @media screen and (max-width: 1400px) {
    .page-limited .period_list--item {
      width: calc(33% - 3px);
    }
  }
  @media screen and (max-width: 1064px) {
    .page-limited .period_list--item {
      width: calc(50% - 4px);
    }
  }
  @media screen and (max-width: 768px) {
    .page-limited .period_list--item {
      width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .page-limited .limited_list {
      row-gap: 16px;
    }
    .page-limited .period_list {
      gap: 4px;
    }
    .page-limited .period_list--item {
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .page-limited .period_list--item .idols {
      width: 176px;
      column-gap: 4px;
    }
    .page-limited .period_list--item .idol .img {
      width: 56px;
      height: 56px;
    }
    .page-limited .limited_list--item.is_show .period_bloc {
      margin-bottom: 8px;
    }
  }
  @media screen and (max-width: 374px) {
    .page-limited .period_list--item .idols {
      column-gap: 4px;
      width: 156px;
    }
    .page-limited .period_list--item .idol .img {
      width: 48px;
      height: 48px;
    }
  }

/* idols - blanc
*************************************************** */
  .page-blanc .idol_tbl .info_list--item-date,
  .page-dominant .idol_tbl .info_list--item-date {
    position: absolute;
    top: 0;
    right: 6px;
  }


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

    ARCHIVE

############################################################################## */
  .archive .skill_sect .inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .archive .skill_sect .inner {
    max-width: 500px;
  }
  .archive .idol_tbl.slick-initialized .slick-slide {
    display: flex;
    margin-left: 8px;
    margin-right: 8px;
  }
  .archive .idol_tbl .slick-list {
    overflow: visible;
  }
  .archive-idol .idol_tbl .radius_box {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 8px;
    padding-right: 8px;
    display: none;
  }
  .archive-idol .idol_tbl .radius_box.no_voice {
    display: none;
  }
  .archive-idol .idol_tbl .radius_box.is_show {
    display: block;
  }
  .archive-idol .idol_tbl .radius_box.radius_box-mystyle {
    order: 100000000 !important;
  }
  .archive-idol .main_area,
  .archive-idol .sub_area {
    padding-left: 8px;
    padding-right: 8px;
  }
  .archive-idol .main_area {
    column-gap: 12px;
  }
  .archive-idol .main_area .badge-playoff {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 28%;
    height: 28%;
    border-radius: 100vmax;
    translate: -15% -15%;
  }
  .post_type-idol.archive-idol .main_area .idol .skill_ico {
    display: none;
  }
  .archive-idol .main_area .idol .img img {
    width: 64px;
    height: 64px;
  }
  .archive-idol .main_area .idol_name {
    column-gap: 6px;
    margin-right: 4px;
  }
  .archive-idol .main_area .idol_name .ssr_num {
    width: 18px;
    height: 18px;
    padding-left: 1px;
    border-radius: 100%;
  }
  .archive-idol .main_area .btn-arrow {
    margin-left: auto;
    margin-right: -8px;
  }
  .archive-idol .radius_box.sub_open .main_area .btn-arrow {
    transform: rotate(180deg);
  }
  .archive-idol .sub_area {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top-width: 1px;
    border-top-style: solid;
  }
  .archive-idol .sub_area .idol .img img {
    width: 46px;
    height: 46px;
  }
  .archive-idol .ssr_list {
    gap: 4px;
  }
  .archive-idol .ssr_list--item {
    width: calc(50% - 2px);
    column-gap: 6px;
    padding: 4px;
  }
  .archive-idol .ssr_list--item .check {
    position: absolute;
    display: inline-block;
    top: 6px;
    right: 6px;
    z-index: 1;
    width: 16px;
    height: 16px;
    transform: scale(1.1);
    opacity: 0;
  }
  .archive-idol .ssr_list--item .check svg {
    fill: #fb6e8d;
  }
  .archive-idol .ssr_list--item .check::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 6px;
    height: 3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(135deg) translate(-50%,-50%);
    transform-origin: 0 0;
  }
  .archive-idol .ssr_list--item .checked_layer {
    border-radius: 4px;
  }
  .archive-idol .ssr_list--item .txt_area {
    column-gap: 4px;
  }
  .archive-idol .ssr_list--item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .archive-idol .ssr_list--item input[type="checkbox"]:checked + .check {
    opacity: 1;
    transform: scale(1);
  }
  .archive-idol .ssr_list--item input[type="checkbox"]:checked + .check + .checked_layer {
    opacity: .5;
  }
  .archive-idol .ssr_list--item .app {
    font-size: 70%;
  }
  .archive-idol .ssr_list--item .skill_txt {
    font-size: 70%;
    width: 100%;
  }
  @media screen and (max-width: 1064px) {
    .archive .idol_tbl > * {
      width: 100%;
    }
    .archive .skill_sect .inner {
      max-width: 380px;
    }
  }
  @media screen and (max-width: 768px) {
    .archive .skill_sect .inner {
      max-width: 330px;
      padding-top: 2px;
      padding-bottom: 2px;
    }
    .archive .idol_tbl.slick-initialized .slick-slide {
      margin-left: 4px;
      margin-right: 4px;
    }
  }
  @media screen and (max-width: 560px) {
    .archive-idol .idol_tbl .radius_box {
      padding-top: 8px;
      padding-bottom: 8px;
      padding-left: 4px;
      padding-right: 4px;
    }
    .archive-idol .main_area {
      column-gap: 8px;
    }
    .archive-idol .main_area .idol .img img {
      width: 56px;
      height: 56px;
    }
    .archive-idol .ssr_list--item .app {
      margin-bottom: 2px;
    }
  }

/* cookie
*************************************************** */
  .page-cookie .cookie {
    margin-bottom: 64px;
  }
  .page-cookie .cookie textarea {
    width: 100%;
    height: 160px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 10px;
    font-size: 16px;
  }
  .page-cookie .cookie button {
    background-color: transparent;
    width: 100%;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 100px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 100%;
    letter-spacing: .2em;
  }
  .page-cookie .btn-scale {
    display: none;
  }
  @media screen and (min-width: 769px) {
    .page-cookie .clm-2 { gap: 56px; }
    .page-cookie .clm-2 > * {
      width: calc(50% - 28px);
    }
  }
  @media screen and (max-width: 768px) {
    .page-cookie .clm-1-lgsp { gap: 56px; }
  }


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

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .post--date {
    opacity: .5;
    font-size: 93%;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post--img {
    width: 100%;
    padding-top: 68.25%;
  }
  .post--img .img_src {
    background-position: center;
    background-repeat: no-repeat;
  }
  .post--img .img_src:not(.no_img) {
    background-size: cover;
  }
  .post--img .img_src.no_img {
    background-image: url(../images/common/no_img.svg);
    background-color: #e4e4e4;
  }
  .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 screen and (max-width: 960px) {
    .main_column {
      width: 100%;
    }
  }

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

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

  /* --- archive --- */
  .side_column .archive_list--ttl::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: .4s ease-out;
  }
  .side_column .archive_list--ttl.active::after { transform: rotate(315deg); }
  .side_column .archive_month { display: none; }
  @media screen and (min-width: 1065px) {
    .search_btn {
      display: none;
    }
  }
  @media screen and (max-width: 1064px) {
    .archive:not(.archive-news) .side_column,
    .single:not(.single-news) .side_column {
      position: fixed !important;
      top: 0;
      left: 0;
      z-index: 10000;
      width: 100%;
      height: 100% !important;
      padding-top: 24px;
      padding-bottom: 72px;
      padding-left: 16px;
      padding-right: 16px;
      overflow-y: scroll;
      opacity: 0;
      pointer-events: none;
      transition: .4s all;
      background-color: #fff;
    }
    .archive-news .side_column,
    .single-news .side_column {
      position: static !important;
      order: 1;
      width: 100%;
      display: none;
      opacity: 1;
      padding: 0;
      pointer-events: all;
    }
    .archive:not(.archive-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) {
      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 screen and (min-width: 961px) {
    .news_side .archive_list a:hover::before {
      opacity: 1;
      transform: scale(1);
    }
  }
  @media screen and (max-width: 1064px) {
    .news_side {
      padding-top: 16px;
      padding-bottom: 16px;
    }
  }
  @media screen and (max-width: 960px) {
    .news_side .archive_list a {
      padding-left: 0;
    }
    .news_side .archive_child_list--item a {
      padding-left: 8px;
    }
  }

/* blog
**************************************** */
  .archive .posts-blog .post {
    border-bottom: 2px solid rgba(0,0,0,.1);
  }
  .posts-blog .post--txt_area {
    flex: 1;
  }
  .posts-blog .post--date {
    margin-right: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  @media screen and (max-width: 1064px) {
    .posts-blog { margin-bottom: 56px; }
    .archive .fix_wrap.flx,
    .single .fix_wrap.flx {
      display: block;
    }
    .archive .main_column,
    .single .main_column {
      overflow: visible;
      margin-right: 0;
    }
    .archive-blog .main_column,
    .single-blog .main_column {
      margin-bottom: 64px;
    }
    .archive-news .main_column,
    .single-news .main_column {
      order: 2;
      margin-top: 48px;
    }
  }
  @media screen and (max-width: 560px) {
    .archive-blog .main_column,
    .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-bottom: 28px;
    padding-top: 28px;
    padding-right: 48px;
    padding-left: 24px;
    margin-bottom: 0;
    border-bottom-width: 1px;
    border-bottom-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;
    transform: translateY(3px);
  }
  .news_list .post--cats {
    z-index: 1;
  }
  .news_list .post--cats a {
    font-size: 75%;
    border: 1px solid rgba(0,0,0,.25);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 100px;
    opacity: .5;
  }
  .news_list .post--cats a:not(:last-child) {
    margin-right: 6px;
  }
  .news_list .post--ttl {
    width: 100%;
    margin-top: 8px;
    font-weight: normal;
  }
  .news_list .post--ttl .arrow_wrap {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    overflow: hidden;
  }
  .news_list .post--ttl .ico-arrow {
    position: absolute;
    top: 0;
    left: 0;
  }
  @media screen and (min-width: 961px) {
    .news_list .post:hover::before {
      opacity: .02;
    }
    .news_list .post--cats a:hover {
      opacity: 1;
      background-color: rgba(0,0,0,.04);
      border-color: transparent;
    }
    .news_list .post:hover .ico-arrow {
      animation-duration: .8s;
      animation-timing-function: cubic-bezier(0.07, 0.51, 0.12, 1);
      animation-delay: 0s,.4s;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-play-state: running;
      animation-name: slide-rev_rgt-lg,slide-to_rgt-lg;
    }
  }
  @media screen and (max-width: 960px) {
    .news_list .post {
      padding-left: 0;
      padding-right: 26px;
    }
    .news_list .post--ttl .arrow_wrap {
      right: 4px;
    }
    .news_list .post--date {
      margin-right: 16px;
      transform: translateY(1px);
    }
    .news_list .post--ttl {
      margin-top: 6px;
    }
  }


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

    SINGLE

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

  @media screen and (max-width: 768px) {
    .post_type-fes_skill .idol_tbl .radius_box,
    .post_type-limited_skill .idol_tbl .radius_box,
    .post_type-permanent_skill .idol_tbl .radius_box {
      max-width: 340px;
    }
  }

/* gasha
*************************************************** */
  .idol_tbl .idols {
    gap: 8px;
  }
  .idol_tbl .idols .idol img {
    width: 100%;
    max-width: 65px;
  }
  @media screen and (max-width: 560px) {
    .idol_tbl .idols {
      gap: 1vw;
    }
    .idol_tbl .idols .idol {
      width: calc(100% / 7 - .86vw);
    }
  }
  @media screen and (max-width: 413px) {
    .idol_tbl .idols .idol {
      width: calc(100% / 6 - .84vw);
    }
  }

  .prob_area {
    gap: 6px;
  }
  .prob_area .prob_bloc {
    width: calc(100% / 3 - 4px);
    border-radius: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .gasha_bloc:not(:last-child) {
    margin-bottom: 40px;
  }
  @media screen and (max-width: 560px) {
    .gasha_bloc:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .single-gasha .idol_tbl > .ttl__desc {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
  }
  .single-gasha .gasha:not(.is_show):not(:last-child) {
    margin-bottom: 10px;
  }
  .single-gasha .gasha.is_show {
    margin-bottom: 40px;
  }
  .single-gasha .gasha.is_show .idol_tbl > .ttl__desc {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .single-gasha .gasha.is_show .idol_tbl > .ttl__desc .arrow .ico {
    transform: rotate(180deg);
  }
  .single-gasha .idol_tbl > .ttl__desc .img_ico {
    width: auto;
    height: auto;
  }
  .single-gasha .idol_tbl > .ttl__desc .img_ico img {
    width: auto;
    height: 20px;
  }
  .single-gasha .idol_tbl .radius_box {
    padding-left: 24px;
    padding-right: 24px;
  }
  @media screen and (max-width: 768px) {
    .single-gasha .idol_tbl .radius_box {
      max-width: 100%;
    }
  }
  @media screen and (max-width: 560px) {
    .single-gasha .idol_tbl .radius_box {
      padding-left: 16px;
      padding-right: 16px;
    }
    .single-gasha .gasha.is_show .idol_tbl > .ttl__desc {
      margin-bottom: 8px;
    }
  }


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

    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;
  }
  .form_flow_list--item:not(:last-child) {
    border-right: none;
  }
  .mw_wp_form_confirm .form_flow_list .form_flow_list--item-input,
  .mw_wp_form_complete .form_flow_list .form_flow_list--item:not(.form_flow_list--item-complete) {
    color: #ccc;
  }
  .form_flow_list--item::before,
  .form_flow_list--item::after,
  .form_flow_list--item .num {
    background-color: #ccc;
  }
  .form_flow_list--item::before {
    content: '';
    position: absolute;
    top: 23px;
    left: calc(50% - 1em);
    z-index: -1;
    width: 100%;
    height: 2px;
  }
  .form_flow_list--item:last-of-type::before {
    content: none;
  }
  .form_flow_list--item .num {
    width: 48px;
    height: 48px;
    font-size: 125%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    margin-bottom: 6px;
    font-weight: bold;
    color: #fff;
  }
  @media screen and (max-width: 960px) {
    .form_flow_list {
      width: 100%;
      max-width: 80%;
    }
    .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 {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 56px;
    padding-right: 56px;
  }
  .form_list { width:100%; }
  .form_list--item {
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .form_list--item .ttl {
    white-space: nowrap;
    text-align: left;
    font-weight: normal;
  }
  .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;
    font: inherit;
    font-size: 100%;
    background-color: #f6f6f6;
  }
  .form_list--item .cont textarea { height: 100px; }
  .form_list--item .cont select { height: 40px; }
  .form_list--item .cont ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .form_list--item .cont input:hover { opacity: .7; }
  .form_list--item .cont textarea:hover { opacity: .7; }
  .form_list--item .cont input:focus { outline: none; }

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

  .form_list--item .cont .cf_rc .mwform-radio-field-text:hover { opacity: .7; }
  .form_list--item .cont .cf_rc .mwform-radio-field-text::before,
  .form_list--item .cont .cf_rc .mwform-checkbox-field-text::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
  }
  .form_list--item .cont .acceptance input[type="checkbox"] {
    position: relative;
    margin-right: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
  }
  .form_list--item .cont .cf_rc .mwform-radio-field-text::before,
  .form_list--item .cont .cf_rc .mwform-checkbox-field-text::before,
  .form_list--item .cont .acceptance input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid #000;
  }
  .form_list--item .cont .cf_rc input[type="radio"] + .mwform-radio-field-text::before { border-radius: 10px; }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text {
    color: rgb(201,44,51);
    font-weight: bold;
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text::before,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text::before,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked {
    border-color: rgb(201,44,51);
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text::after,
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    z-index: 10;
    display: block;
  }
  .form_list--item .cont .cf_rc input[type="radio"]:checked + .mwform-radio-field-text::after {
    top: 12px;
    left: 5px;
    width: 5px;
    height: 5px;
    background-color: rgb(201,44,51);
    border-radius: 100%;
  }
  .form_list--item .cont .cf_rc input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
  .form_list--item .cont .acceptance input[type="checkbox"]:checked::after {
    top: 9px;
    left: 5px;
    width: 5px;
    height: 9px;
    border-right: 2px solid rgb(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;
  }

/* 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: 70%;
    padding: 7px 8px;
    line-height: 1em;
  }

  /* --- cf_form--btns --- */
  .cf_form--btns {
    padding-top: 32px;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .cf_form--btns button {
    min-width: 180px;
    line-height: 44px;
    padding-left: 32px;
    padding-right: 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 3px;
    letter-spacing: .1em;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

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

  /* --- ver --- */
  .form_list-ver .form_list--item .ttl {
    margin-bottom: 16px;
    line-height: 1em;
  }
  /* --- 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;
  }

  /* --- thanks_area ---  */
  .thanks_area {

  }

  @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) {
    #cf_form {
      padding-top: 16px;
      padding-bottom: 24px;
      padding-left: 16px;
      padding-right: 16px;
    }
    .form_list--item {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .form_list--item .cont input[type="text"],
    .form_list--item .cont input[type="email"],
    .form_list--item .cont input[type="tel"],
    .form_list--item .cont input[type="date"],
    .form_list--item .cont input[type="password"],
    .form_list--item .cont textarea {
      font-size: 16px;
    }
    .form_list--item .cont .cf_rc .wpcf7-list-item {
      display: block;
    }
    .form_list--item .cont .cf_zip input[type="text"] {
      width: calc(100% - 23px);
      margin-right: 0;
    }
    .cf_form--btns {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-top: 16px;
    }
    .cf_form--btns button {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
    .cf_form--btns button:not(:last-child) {
      margin-bottom: 8px;
    }
  }

