@charset "UTF-8";

/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
/*
html, body {
  overflow-x: hidden;
}
*/

body {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.w_base {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header & global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-top: 10px solid #87c4e3;
  
}

.hd_bg > .hd {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  position: relative;
}

.hd_bg > .hd .hd_logo > .hd_logo_img > a > img {
  width: 350px;
  height: auto;
}

.hd_bg > .hd .hd_logo{
  display: flex;
  flex-direction: column;
}

.hd_bg > .hd .hd_logo > .hd_logo_title {
  order: 1;
  margin: 5px 0 0;
}

.hd_bg > .hd .hd_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hd_bg > .hd .hd_search .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.hd_bg > .hd .hd_search .input a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e8e8e8));
  background: linear-gradient(to bottom, white 0%, #e8e8e8 100%);
  color: #333;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

.hd_bg > .hd .hd_search .input input {
  width: 220px;
  height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 5px 5px 0;
}

.hd_bg > .hd .hd_search .send {
  margin: 0 0 0 20px;
  padding: 4px 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e8e8e8));
  background: linear-gradient(to bottom, white 0%, #e8e8e8 100%);
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
}

.hd_bg > .hd .hd_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hd_bg > .hd .hd_menu ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.5em;
}

.hd_bg > .hd .hd_menu ul > li:last-of-type {
  margin-right: 0;
}

.hd_bg > .hd .hd_menu ul > li > a {
  display: block;
  color: #333;
  font-size: 1.1em;
  text-decoration: none;
}

.hd_bg > .hd .hd_menu ul > .cart:before {
  content: url(../img/icon_cart.png);
  display: inline-block;
  margin: 0 5px;
}

.hd_bg > .hd .hd_menu ul > .login:before {
  content: url(../img/icon_login.png);
  display: inline-block;
  margin: 0 5px 0 0;
}

.hd_bg > .hd .hd_menu ul > .mypage:before {
  content: url(../img/icon_mypage.png);
  display: inline-block;
  margin: 0 8px 0 0;
}

.hd_bg > .hd .hd_menu ul > .regist:before {
  content: url(../img/icon_regist.png);
  display: inline-block;
  margin: 0 5px 0 0;
}

.hd_bg .nav_login {
  display: none;
}

.hd_bg .nav_bg {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  background: #fff;
  box-shadow: 0px 16px 16px -16px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 16px 16px -16px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 16px 16px -16px rgba(0, 0, 0, 0.09);
  font-family: Arial, Verdana, "Meiryo UI", "MS P?ｿｽS?ｿｽV?ｿｽb?ｿｽN" ;
  
}

.hd_bg .nav_bg .nav {
  overflow: visible;
}

.hd_bg .nav_bg .nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-ms-flex-wrap: wrap;
  flex-wrap: wrap;*/
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: space-between;
  width: 100%;
  height: 52px;
}

.hd_bg .nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}

.hd_bg .nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}

.hd_bg .nav_bg .nav .nav_list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 1.63em;
  color: #415081;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1340px) {
  
  .hd_bg .nav_bg .nav .nav_list > li > a {
    font-size: 0.8rem;

  }

}
.hd_bg .nav_bg .nav .nav_list > li > a > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hd_bg .nav_bg .nav .nav_list > li > a:hover, .hd_bg .nav_bg .nav .nav_list > li > a.current {
  background: #415081;
  color: #fff;
}

.hd_bg .nav_bg .nav .nav_list > li.houzinsamalist > a:hover, .hd_bg .nav_bg .nav .nav_list > li > a.current {
  background: #cc2929;
  color: #fff;
}

.hd_bg .nav_bg .nav .nav_list > li:hover .nav_clist {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}

.hd_bg .nav_bg .nav .nav_list > li:first-of-type {
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e8e8e8));
  background: linear-gradient(to bottom, white 0%, #e8e8e8 100%);
  border: 1px solid #ccc;
  border-top: none;
}

.hd_bg .nav_bg .nav .nav_list > li:first-of-type > a:after {
  content: url(../img/icon_arrow_blue.png);
  display: inline-block;
  margin: 0 0 0 10px;
}

.hd_bg .nav_bg .nav .nav_list > li:first-of-type > a:hover, .hd_bg .nav_bg .nav .nav_list > li:first-of-type > a.current {
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e8e8e8));
  background: linear-gradient(to bottom, white 0%, #e8e8e8 100%);
  color: #415081;
}

.hd_bg .nav_bg .nav .nav_list > li.youtube > .nav_clist > li > a {
  width: 200px;
}

.hd_bg .nav_bg .nav .nav_list > li.online_seminar {
  background: #007fe1;
  margin-left: -10px;
}

.hd_bg .nav_bg .nav .nav_list > li.online_seminar a {
  color: #fff;
}

.hd_bg .nav_bg .nav .nav_clist {
  display: none;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
  width: 280px;
  position: absolute;
  top: 100%;
  left: 0;
}

.hd_bg .nav_bg .nav .nav_clist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}

.hd_bg .nav_bg .nav .nav_clist > li > a {
  background-color: #415081;
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}

.hd_bg .nav_bg .nav .nav_clist > li.dspc > a,
.hd_bg .nav_bg .nav .nav_clist > li.bg_red > a {
  background: #f00;
}

.hd_bg .nav_bg .nav .nav_clist > li.bg_pink > a {
  background: #f77;
}

.hd_bg .nav_bg .nav .nav_clist > li.hows_p {
border-bottom: 1px solid rgba(65, 80, 129, 0.7);position: relative;
}

.hd_bg .nav_bg .nav .nav_clist > li.hows_p > a {
  background-color: #ffc2f4;
  color: #415081;
}

.hd_bg .nav_bg .nav .nav_clist > li.hows_b {
  border-bottom: 1px solid rgba(65, 80, 129, 0.7);position: relative;
  }
  
  .hd_bg .nav_bg .nav .nav_clist > li.hows_b > a {
    background-color: #cce5f9;
    color: #415081;
  }

.hd_bg .nav_bg .nav .nav_clist > li > a:hover, .hd_bg .nav_bg .nav .nav_clist > li > a.current {
  opacity: 0.8;
}

.hd_bg .nav_bg .nav .nav_clist > li.f_navi a {
  background: #000;
  color: #fff;
}

.hd_bg .nav_bg .nav .nav_clist > li.f_navi a:hover, .hd_bg .nav_bg .nav .nav_clist > li.f_navi a.current {
  background-color: rgba(0, 0, 0, 0.95);
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.hd_bg .nav_bg .nav .nav_clist > li:hover .nav_glist {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}

.hd_bg .nav_bg .nav .nav_glist {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
}

.hd_bg .nav_bg .nav .nav_glist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.hd_bg .nav_bg .nav .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}

.hd_bg .nav_bg .nav .nav_glist > li > a:hover, .hd_bg .nav_bg .nav .nav_glist > li > a.current {
  background-color: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.hd_jpx{
 display:none;
}
@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.is-fixed {
  position: sticky;/*--is-fixed ?ｿｽ?ｿｽ?ｿｽ?ｿｽ?ｿｽﾇ表?ｿｽ?ｿｽ?ｿｽo?ｿｽO?ｿｽ?ｿｽﾌゑｿｽsticky?ｿｽﾉ変更--*/
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .hd_bg {
    background: #fff !important;
  }
  .hd {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: auto !important;
    padding: 10px;
  }
  .hd .hd_logo {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
  }
  .hd .hd_logo img {
    max-width: 100%;
    height: auto;
  }
  .hd .hd_search {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2 / 1 / 3 / 3;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    width: 50%;
  }
  .hd .hd_search .input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 0 0 10px;
  }
  .hd .hd_search .input a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e8e8e8));
    background: linear-gradient(to bottom, white 0%, #e8e8e8 100%);
    color: #333;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
  }
  .hd .hd_search .input input {
    width: 100%;
    height: 35px;
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 5px 5px 0;
  }
  .hd .hd_search .send {
    width: 60%;
    margin: 0 auto;
    padding: 7px 13px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 20px;
  }
  .hd .hd_menu {
    margin-right: 50px;
  }
  .hd .hd_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hd .hd_menu ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hd .hd_menu ul > li:nth-of-type(2n), .hd .hd_menu ul > li:last-of-type {
    display: none;
  }
  .hd .hd_menu ul > li > a {
    display: block;
    color: #333;
    font-size: 14px;
    text-decoration: none;
  }
  .hd .hd_menu ul > .cart:before {
    content: url(../img/icon_cart.png);
    display: inline-block;
    margin-right: 8px;
  }
  .nav {
    background: rgba(255, 255, 255, 0.95);
    color: #415081;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    z-index: 100;
    width: 100%;
    overflow-x: none;
    overflow-y: auto;
    top: 0px;
    right: -100%;
    position: fixed;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  .nav_login {
    position: fixed;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 20px 18vw 20px 10px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    z-index: 100;
  }
  .nav_login .M_helloMsg {
    display: none;
  }
  .nav_login > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc((100% - 2em - 1px) / 3);
    margin: 0 1em 0 0;
  }
  .nav_login > *:last-of-type {
    margin-right: 0;
  }
  .nav_login > * > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 10px 5px;
    background: #415081;
    color: #fff;
    border-radius: 5px;
  }
  .nav_login .mypage a:before {
    content: url(../img/icon_mypage.png);
    display: inline-block;
    margin-right: 7px;
  }
  .nav_login .login a:before {
    content: url(../img/icon_login.png);
    display: inline-block;
    margin-right: 7px;
  }
  .nav_login .regist a:before {
    content: url(../img/icon_regist.png);
    display: inline-block;
    margin-right: 7px;
  }
  .nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100% !important;
    margin: 87px 0 0;
  }
  .nav_list > li {
    width: 100%;
  }
  .nav_list > li:hover .nav_clist {
    display: block;
    -webkit-animation: none !important;
    animation: none !important;
  }
  .nav_list > li:first-of-type {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e8e8e8));
    background: linear-gradient(to bottom, white 0%, #e8e8e8 100%);
    border: none !important;
  }
  .nav_list > li:first-of-type > a:after {
    content: url(../img/icon_arrow_blue.png);
    display: inline-block;
    margin: 0 0 0 10px;
  }
  .nav_list > li.gaming_pc > a:after, .nav_list > li.site > a:after {
    content: url(../img/icon_arrow_blue.png);
    display: inline-block;
    margin: 0 0 0 10px;
  }
  .nav_list > li:nth-of-type(2), .nav_list > li:nth-of-type(3), .nav_list > li:nth-of-type(4), .nav_list > li:nth-of-type(5), .nav_list > li:nth-of-type(6) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .nav_list > li.online_seminar {
    background: #007fe1;
  }
  .nav_list > li.online_seminar a {
    color: #fff;
  }
  .nav_list > li > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 16px !important;
    color: #415081;
    font-weight: bold;
    display: block;
    height: auto !important;
    padding: 1em 1em 1em 1.5em !important;
    text-decoration: none;
    position: relative;
  }
  .nav_list > li > a span br {
    display: none;
  }
  .nav_list > li > a br.clear {
    clear: both;
  }
  .nav_list > li > a:hover, .nav_list > li > a.current {
    background-color: rgba(65, 80, 129, 0.95);
    color: #fff;
  }
  .nav_list > li > a::after {
    content: attr(data-text);
    display: block;
  }
  .nav_list > li > a img {
    display: none;
  }
  .nav_clist {
    -webkit-transition: none !important;
    transition: none !important;
    width: 100%;
    position: relative !important;
    top: 0 !important;
    /*
    display: block !important;
    position: relative !important;
    top: 0 !important;
    */
  }
  .nav_clist > li {
    width: 100%;
  }
  .nav_clist > li > a {
    background-color: rgba(65, 80, 129, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: block;
    font-size: 13px;
    padding: 1em 1em 1em 2em;
    text-decoration: none;
  }
  .nav_clist > li > a:hover, .nav_clist > li > a.current {
    background-color: rgba(65, 80, 129, 0.95);
    -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .nav_clist > li.f_navi a {
    background: #000;
    color: #fff;
  }
  .nav_clist > li.f_navi a:hover, .nav_clist > li.f_navi a.current {
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .nav_glist > li > a {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: block;
    font-size: 11px;
    padding: 1em 1em 1em 3em;
    text-decoration: none;
  }
  .nav_glist > li > a:hover, .nav_glist > li > a.current {
    background-color: #000;
    -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .sp_nav_open {
    right: 0 !important;
  }
  .sp_nav_trigger {
    cursor: pointer;
    z-index: 1000;
    position: fixed !important;
    top: 25px;
    right: 15px;
    margin-top: -5px;
    width: 36px;
    height: 24px;
  }
  .sp_nav_trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #415081;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav_trigger span:nth-of-type(2) {
    top: 10px;
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    content: 'MENU';
    display: block;
    width: 100%;
    padding-top: 20px;
    color: #415081;
    font-size: 10px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sp_nav_trigger.sp_active::after {
    content: 'CLOSE';
    bottom: -25px;
    color: #415081;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
    background: #415081;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(2) {
    opacity: 0;
    background: #415081;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
    background: #415081;
  }

}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
/*
.con_bg {
  background: url(../img/con_bg.png) no-repeat;
}
*/

.con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* padding: 30px 0; */
  padding: 0 0 30px;
}

.main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: calc(100% - 260px);
  /*max-width: 1060px;*/
  margin: 0 !important;
  padding: 0 0 30px;
}

.side {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  max-width: 240px;
  height: 100%;
  margin: 0;
  padding: 20px;
  background: #f8f8f8;
}

.side .side_calendar {
  padding: 5px 10px;
  background: #fff;
}

.side .side_bnr_list_01 {
  margin: 0 !important;
}

.side .side_bnr_list_01 li {
  margin-bottom: 10px;
}

.side .side_bnr_list_01 li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.side .side_bnr_list_01 li a:hover {
  opacity: 0.8;
}

.side .side_bnr_list_01 li a img {
  width: 100%;
}

.side .side_bnr_list_02 {
  margin: 20px 0 0;
  padding: 5px;
  background: #fff;
}

.side .side_bnr_list_02 li {
  margin-bottom: 5px;
}

.side .side_bnr_list_02 li:last-of-type {
  margin-bottom: 0;
}

.side .side_bnr_list_02 li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.side .side_bnr_list_02 li a:hover {
  opacity: 0.8;
}

.side .side_bnr_list_02 li a img {
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg .ft {
  padding: 40px 0;
  background: #f8f8f8;
}

.ft_bg .ft .ft_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ft_bg .ft .ft_con .ft_nav {
  width: calc((100% - 4em - 1px) / 5);
  margin: 0 1em 0 0;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.ft_bg .ft .ft_con .ft_nav:last-of-type {
  margin-right: 0;
}

.ft_bg .ft .ft_con .ft_nav > h3 {
  margin: 0 0 15px;
  color: #333;
}

.ft_bg .ft .ft_con .ft_nav > ul > li {
  margin: 0 0 10px;
  font-size: 14px;
}

.ft_bg .ft .ft_con .ft_nav > ul > li:last-of-type {
  margin: 0;
}

.ft_bg .ft .ft_con .ft_nav > ul > li > a {
  color: #333;
}

.ft_bg .ft .ft_con .ft_nav > ul > li > a:hover {
  text-decoration: underline;
}

.ft_bg .ft .ft_con .ft_nav > ul li.ft_contact > a:hover {
  color: #ff9800;
}

.ft_bg .ft .ft_con .ft_nav .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ft_bg .ft .ft_con .ft_nav .jasdaq {
  mix-blend-mode: multiply;
}

.ft_bg .ft_copy {
  padding: 10px 0;
  background: #415081;
  color: #fff;
  font-size: 16px;
}

.ft_bg .ft_copy .ft_copy_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav > li {
  border-left: 1px solid #fff;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav > li:last-of-type {
  border-right: 1px solid #fff;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav > li > a {
  display: block;
  padding: 0 20px;
  color: #fff;
}

.ft_bg .ft_copy .ft_copy_con p {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .ft_bg .ft {
    padding-right: 1em;
    padding-left: 1em;
  }
  .ft_bg .ft_copy {
    padding-right: 1em;
    padding-left: 1em;
    font-size: 14px;
  }
}

/*****************************?ｿｽﾇ従?ｿｽo?ｿｽi?ｿｽ[*************************************/
.Bnr {
  position: relative;
  margin: 0 auto;
  width: 1005px;
  display: none;
  font-family: "?ｿｽ?ｿｽ?ｿｽC?ｿｽ?ｿｽ?ｿｽI","Meiryo","?ｿｽq?ｿｽ?ｿｽ?ｿｽM?ｿｽm?ｿｽp?ｿｽS Pro W3","Hiragino Kaku Gothic Pro","?ｿｽl?ｿｽr ?ｿｽo?ｿｽS?ｿｽV?ｿｽb?ｿｽN",Osaka,sans-serif !important;
}

.Bnr .Bnr__img {
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  z-index: 88;
}

.Bnr__img__inner {
  width: 1005px;
  height: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background-color: #fafafa;
}

.Bnr .Bnr__img__inner a {
  display: block;
}

.Bnr .Bnr__img p.close {
  position: absolute;
  right: 10px;
  top: 10px;
}

.Bnr .Bnr__img p.close a {
  display: block;
  width: 20px;
  height: 25px;
  text-align: center;
}

.Bnr .Bnr__img p.close a span {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.Bnr .Bnr__img p.close a i {
  font-size: 20px;
  z-index: 888;
  color: #222;
}

@media screen and (max-width: 769px) {
  .Bnr {
    max-width: 100% !important;
  }
  .Bnr__img__inner {
    width: 100%;
    height: 100%;
  }
  .Bnr__img__inner img {
    width: 100%;
    height: 100%;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  display: none !important;
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
}

.pt_btn::before, .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}

.pt_btn::before {
  width: 7px;
  bottom: 0;
}

.pt_btn::after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: calc(100% - 260px);
  max-width: 1060px;
  margin-top: 0 !important;
  padding: 0 0 30px;
}

.index_main .bnr_headline{
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
  color: rgb(51, 51, 51) !important;
  font-weight: bold !important;
}

.index_main .bnr_headline span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 1em;
  padding: 0 1em;
  background-color: #fff;
  text-align: center;
}
.index_main .bnr_headline::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
}

.index_main h2, .index_main .reco_title {
  margin: 60px 0 20px !important;
  padding: 20px 0 0 !important;
  background: #fff !important;
  color: #333 !important;
  font-size: 24px !important;
  font-weight: bold !important;
  border-top: 1px solid #ccc;
}

.index_main .index_group h2 {
  border-top: none !important;
}

.index_main h2 .reco_para, .index_main .reco_title .reco_para {
  margin: 0 !important;
  font-size: 24px !important;
  color: #333 !important;
  line-height: normal;
}

.index_main .index_news {
  margin: 0 0 -20px;
}

.index_main .index_news h2 {
  margin: 0 0 10px !important;
  padding: 10px 0 0 !important;
}

.index_main .index_news .scroll-area {
  height: 180px;
  margin: 0 0 10px;
  overflow-y: auto;
}

.index_main .index_news .scroll-area > table {
  margin: 0;
}

.index_main .index_news .scroll-area > table tr table {
  margin: 0;
  border-top: 1px solid #ccc;
}

.index_main .index_news .scroll-area > table tr table td {
  padding: 6px 0;
}

.index_main .index_news .scroll-area > table tr table td:first-child {
  width: 100px;
}

.index_main .index_news .scroll-area > table tr table td a {
  display: block;
  width: 100% !important;
}

.index_main .index_news .scroll-area > table > tbody > tr:nth-child(2) > td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.index_main .index_news .scroll-area > table > tbody > tr:nth-child(2) > td > table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 0 0;
  padding: 0 5px;
}

.index_main .index_news .scroll-area > table > tbody > tr:nth-child(2) > td > table:nth-child(2n) {
  margin-right: 0;
}

.index_main .index_news .scroll-area > table > tbody > tr:nth-child(2) > td > table:nth-child(odd)::after {
  position: relative;
  right: -13px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px dotted #ccc;
}

.index_main .index_news .scroll-area > table > tbody > tr:nth-child(2) > td > table tbody {
  width: 100%;
}

.index_main .index_news .news_slide {
  margin: 0 0 10px;
}

.index_main .index_news .news_slide .slick-prev {
  left: 0;
  z-index: 10;
}

.index_main .index_news .news_slide .slick-next {
  right: 0;
  z-index: 10;
}

.index_main .index_news .news_slide table {
  margin: 0;
}

.index_main .index_news .news_slide table tr table {
  margin: 0;
  border-top: 1px solid #ccc;
}

.index_main .index_news .news_slide table tr table td {
  padding: 6px 0;
}

.index_main .index_news .news_slide table tr table td:first-child {
  width: 100px;
}

.index_main .index_news .news_slide table tr table td a {
  display: block;
  width: 100% !important;
}

.index_main .index_news .news_slide table > tbody > tr:nth-child(2) > td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.index_main .index_news .news_slide table > tbody > tr:nth-child(2) > td > table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 0 0;
  padding: 0 5px;
}

.index_main .index_news .news_slide table > tbody > tr:nth-child(2) > td > table:nth-child(2n) {
  margin-right: 0;
}

.index_main .index_news .news_slide table > tbody > tr:nth-child(2) > td > table:nth-child(odd)::after {
  position: relative;
  right: -13px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px dotted #ccc;
}

.index_main .index_news .news_slide table > tbody > tr:nth-child(2) > td > table tbody {
  width: 100%;
}


.index_main .index_campaign .index_campaign_slider {
  margin: 0 0 50px;
}

.index_main .index_campaign .index_campaign_slider .index_campaign_con {
  margin: 0 1em 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.index_main .index_campaign .index_campaign_slider .index_campaign_con > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  color: #333;
  text-decoration: none;
}

.index_main .index_campaign .index_campaign_slider .index_campaign_con > a > .campaign_title {
  width: 100%;
  padding: 10px;
}

.index_main .index_category .index_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 50px;
  border: 1px solid #d1cfcf;
  border-bottom: none;
}

.index_main .index_category .index_category_list .index_category_con {
  position: relative;
  width: calc(100% / 2);
  background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), color-stop(99%, #f0f0ec));
  background: linear-gradient(to bottom, #fefefe 0%, #f0f0ec 99%);
  border-right: 1px solid #d1cfcf;
  border-bottom: 1px solid #d1cfcf;
}

.index_main .index_category .index_category_list .index_category_con:nth-of-type(2n) {
  border-right: none;
}

.index_main .index_category .index_category_list #desctop_pc a:before {
  background: url(../img/img_category_01.png) no-repeat center center;
}

.index_main .index_category .index_category_list #lg_gram a:before {
  background: url(../img/img_category_04.png) no-repeat center center;
}

.index_main .index_category .index_category_list #gaming_pc a:before {
  background: url(../img/img_category_03.png) no-repeat center center;
}

.index_main .index_category .index_category_list #msi a:before {
  background: url(../img/img_category_06.png) no-repeat center center;
}

.index_main .index_category .index_category_list #hpc a:before {
  background: url(../img/img_category_15.png) no-repeat center center;
}

.index_main .index_category .index_category_list #gigabite a:before {
  background: url(../img/img_category_08.png) no-repeat center center;
}

.index_main .index_category .index_category_list #houjin a:before {
  background: url(../img/img_category_20.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_support a:before {
  background: url(../img/img_category_31.png) no-repeat center center;
}

.index_main .index_category .index_category_list #help_desc a:before {
  background: url(../img/img_category_18.png) no-repeat center center;
}

.index_main .index_category .index_category_list #note_pc a:before {
  background: url(../img/img_category_02.png) no-repeat center center;
}

.index_main .index_category .index_category_list #gaming_accessory a:before {
  background: url(../img/img_category_05.png) no-repeat center center;
}

.index_main .index_category .index_category_list #tablet a:before {
  background: url(../img/img_category_16.png) no-repeat center center;
}

.index_main .index_category .index_category_list #bauhutte a:before {
  background: url(../img/img_category_07.png) no-repeat center center;
}

.index_main .index_category .index_category_list #toys a:before {
  height: 82px;
  background: url(../img/img_category_10.png) no-repeat center center/contain;
}

.index_main .index_category .index_category_list #pc_parts a:before {
  background: url(../img/img_category_09.png) no-repeat center center;
}

.index_main .index_category .index_category_list #camera a:before {
  background: url(../img/img_category_17.png) no-repeat center center;
}

.index_main .index_category .index_category_list #equipment a:before {
  background: url(../img/img_category_13.png) no-repeat center center;
}

.index_main .index_category .index_category_list #softwear a:before {
  background: url(../img/img_category_11.png) no-repeat center center;
}

.index_main .index_category .index_category_list #premium a:before {
  background: url(../img/img_category_22.png) no-repeat center center;
}

.index_main .index_category .index_category_list #rental a:before {
  background: url(../img/img_category_21.png) no-repeat center center;
}

.index_main .index_category .index_category_list #programing a:before {
  background: url(../img/img_category_23.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_learning a:before {
  background: url(../img/img_category_24.png) no-repeat center center;
}

.index_main .index_category .index_category_list #mobile_work a:before {
  height: 82px;
  background: url(../img/img_category_25.png) no-repeat center center/contain;
}

.index_main .index_category .index_category_list #old_pc a:before {
  background: url(../img/img_category_26.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_seminar a:before {
  background: url(../img/img_category_27.png) no-repeat center center;
}

.index_main .index_category .index_category_list #out_of_order a:before {
  background: url(../img/img_category_28.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_ap a:before {
  background: url(../img/img_category_29.png) no-repeat center center;
}

.index_main .index_category .index_category_list #sp_lecture a:before {
  background: url(../img/img_category_30.png) no-repeat center center;
}

.index_main .index_category .index_category_list #optimisation a:before {
  height: 72px;
  background: url(../img/img_category_32.svg) no-repeat center center;
}

.index_main .index_category .index_category_list #help_desk a:before {
  background: url(../img/img_category_19.png) no-repeat center center;
}

.index_main .index_category .index_category_list #sns_support a:before {
  height: 72px;
  background: url(../img/img_category_33.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #inspection a:before {
  height: 72px;
  background: url(../img/img_category_34.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #auto a:before {
  height: 72px;
  background: url(../img/img_category_35.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #web_support a:before {
  height: 72px;
  background: url(../img/img_category_36.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #web_support_high a:before {
  height: 72px;
  background: url(../img/img_category_37.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #dspc a:before {
  height: 72px;
  background: url(../img/img_category_38.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #asus a:before {
  height: 82px;
  background: url(../img/img_category_39.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #creatornote a:before {
  height: 92px;
  background: url(../img/img_category_40.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #shinbarikata a:before {
  height: 102px;
  background: url(../img/img_category_41.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #nas_solution a:before {
  height: 72px;
  background: url(../img/img_category_42.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #pc_rental a:before {
  height: 102px;
  background: url(../img/img_category_43.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #raizan a:before {
  height: 102px;
  background: url(../img/img_category_44.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #nas_total a:before {
  height: 72px;
  background: url(../img/img_category_45.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #r_solution a:before {
  height: 72px;
  background: url(../img/img_category_46.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #r_solution_online a:before {
  height: 72px;
  background: url(../img/img_category_47.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #r_solution_deconoba a:before {
  height: 72px;
  background: url(../img/img_category_48.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #barikatapro a:before {
  height: 96px;
  background: url(../img/img_category_barikatapro.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #barikataplus a:before {
  height: 96px;
  background: url(../img/img_category_barikatapro.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #original_nas a:before {
  height: 96px;
  background: url(../img/img_original_nas.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #online_gamers a:before {
  height: 96px;
  background: url(../img/img_online_gamers.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #hows_cat_kitchen a:before {
  height: 72px;
  background: url(../img/img_hows_cat_kitchen.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #hows_cat_kisetsu a:before {
  height: 72px;
  background: url(../img/img_hows_cat_kisetsu.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #hows_cat_seikatsu a:before {
  height: 72px;
  background: url(../img/img_hows_cat_seikatsu.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #hows_cat_beauty a:before {
  height: 72px;
  background: url(../img/img_hows_cat_beauty.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #chikappa a:before {
  height: 96px;
  background: url(../img/img_category_chikappa.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #fabrikpc a:before {
  height: 102px;
  background: url(../img/img_category_fabrikpc.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #razer a:before {
  height: 82px;
  background: url(../img/img_category_razer.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list .index_category_con > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 30px 25px 140px;
  color: #333;
  text-decoration: none;
}

.index_main .index_category .index_category_list .index_category_con > a:before {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 113px;
  height: 92px;
}

.index_main .index_category .index_category_list .index_category_con > a > h3 {
  font-size: 22px;
}

.index_main .index_category .index_category_list #barikatapro.index_category_con > a > h3 > img,
.index_main .index_category .index_category_list #barikataplus.index_category_con > a > h3 > img {
  width: 200px;
  height: auto;
}

.index_main .index_category .index_category_list .index_category_con > a > h3 > img {
  width: 150px;
  height: auto;
}

.index_main .index_category .index_category_list #sp_lecture.index_category_con > a > h3 {
  font-size: 18px;
}

.index_main .index_category .index_category_list #online_support.index_category_con > a > h3 {
  font-size: 15px;
}

.index_main .index_category .index_category_list #optimisation.index_category_con > a > h3 {
  font-size: 18px;
}

.index_main .index_category .index_category_list #help_desk.index_category_con > a > h3 {
  font-size: 18px;
}

.index_main .index_category .index_category_list #sns_support.index_category_con > a > h3 {
  font-size: 16px;
}

.index_main .index_category .index_category_list #inspection.index_category_con > a > h3,
.index_main .index_category .index_category_list #auto.index_category_con > a > h3,
.index_main .index_category .index_category_list #web_support.index_category_con > a > h3,
.index_main .index_category .index_category_list #web_support_high.index_category_con > a > h3 {
  font-size: 16px;
  letter-spacing: -0.05em;
}

.index_main .index_category .index_category_list .index_category_con > a > p {
  font-size: 16px;
}

.index_main .index_category .index_category_list #sp_lecture.index_category_con > a > p,
.index_main .index_category .index_category_list #online_support.index_category_con > a > p,
.index_main .index_category .index_category_list #inspection.index_category_con > a > p,
.index_main .index_category .index_category_list #auto.index_category_con > a > p,
.index_main .index_category .index_category_list #web_support.index_category_con > a > p,
.index_main .index_category .index_category_list #web_support_high.index_category_con > a > p {
  font-size: 14px;
}

.index_main .index_category .index_category_list .index_category_con:hover .sub_menu {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 20px 30px;
  background: #fff;
  border: 5px solid #1f4583;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu h4 {
  height: 60px;
  margin: 0 0 20px;
  padding: 0 40px 0 55px;
  background: url(../img/bg_categoty_title.png) no-repeat center left;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu h4 > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background: url(../img/icon_arrow_white.png) no-repeat right center;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.03em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu h4 > a:after {
  position: absolute;
  bottom: 10px;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu h4 > a:hover {
  width: 90%;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > * {
  width: calc((100% - 2em - 1px) / 2);
  margin: 0 2em 0 0;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > *:last-of-type {
  margin-right: 0;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > * h5 {
  width: 100%;
  margin: 0 0 15px;
  padding: 5px 10px;
  color: #1f4583;
  font-size: 18px;
  font-weight: normal;
  border: 1px solid #1f4583;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > * ul {
  margin: 0 10px;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > * ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 10px;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > * ul li:before {
  content: url(../img/icon_arrow_black.png);
  display: inline-block;
  margin: 0 5px 0 0;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > * ul li a {
  padding: 0;
  color: #1f4583;
  font-size: 16px;
}

.index_main .index_category .index_category_list .index_category_con .sub_menu .sub_menu_con > * ul li a:hover {
  text-decoration: underline;
}

div#hows_cat_kitchen.index_category_con,
div#hows_cat_kisetsu.index_category_con,
div#hows_cat_seikatsu.index_category_con,
div#hows_cat_beauty.index_category_con {
  position: relative;
  width: calc(100% / 2);
  background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), color-stop(99%, #f0f0ec));
  background: #cce5f9;
  /*background: linear-gradient(to bottom, #fefefe 0%, #c2dafb 99%);*/
  border-right: 1px solid #d1cfcf;
  border-bottom: 1px solid #d1cfcf;
}

div#hows_cat_kitchen.index_category_con:before,
div#hows_cat_kisetsu.index_category_con:before,
div#hows_cat_seikatsu.index_category_con:before,
div#hows_cat_beauty.index_category_con:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: #f00 transparent transparent transparent;
}

div#hows_cat_kitchen.index_category_con:after,
div#hows_cat_kisetsu.index_category_con:after,
div#hows_cat_seikatsu.index_category_con:after,
div#hows_cat_beauty.index_category_con:after {
    position: absolute;
    content: "NEW";
    transform: rotate(315deg);
    display: block;
    font-size: 11px;
    white-space: pre;
    color: #fff;
    top: 12px;
    left: 4px;
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}

.index_main .index_ranking .index_ranking_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 80px;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con {
  position: relative;
  width: calc((100% - 4em - 1px) / 5);
  margin: 0 1em 0 0;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:first-of-type::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: url(../img/rank1.png);
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:nth-of-type(2)::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: url(../img/rank2.png);
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:nth-of-type(3)::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: url(../img/rank3.png);
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:nth-of-type(4)::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: url(../img/rank4.png);
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:nth-of-type(5) {
  margin-right: 0;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:nth-of-type(5)::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: url(../img/rank5.png);
}

.index_main .index_ranking .index_ranking_list .index_ranking_con > .ranking_item {
  padding: 10px;
  border: 1px solid #ccc;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con > .ranking_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con > .ranking_item > a > img {
  width: 70%;
  height: auto;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con > .ranking_goods {
  padding: 10px;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con > .ranking_goods > a {
  color: #1c1c1c;
  font-size: 12px;
  text-decoration: none;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con > .ranking_price {
  color: #ff0000;
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  line-height: 16px;
  padding: 0 10px;
}

.index_main .index_ranking .index_check_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 80px;
}

.index_main .index_ranking .index_check_list .index_check_con {
  width: calc((100% - 4em - 1px) / 5);
  margin: 0 1em 0 0;
}

.index_main .index_ranking .index_check_list .index_check_con:nth-of-type(5) {
  margin-right: 0;
}

.index_main .index_ranking .index_check_list .index_check_con > .ranking_item {
  padding: 10px;
  border: 1px solid #ccc;
}

.index_main .index_ranking .index_check_list .index_check_con > .ranking_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index_main .index_ranking .index_check_list .index_check_con > .ranking_item > a > img {
  width: 70%;
  height: auto;
}

.index_main .index_ranking .index_check_list .index_check_con > .ranking_goods {
  padding: 10px;
}

.index_main .index_ranking .index_check_list .index_check_con > .ranking_goods > a {
  color: #1c1c1c;
  font-size: 12px;
  text-decoration: none;
}

.index_main .index_ranking .index_check_list .index_check_con > .ranking_price {
  color: #ff0000;
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  line-height: 16px;
  padding: 0 10px;
}

.index_main .index_topics .index_topics_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 30px;
}

.index_main .index_topics .index_topics_list .index_topics_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 0 0;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.index_main .index_topics .index_topics_list .index_topics_con:nth-of-type(-n+2) {
  border-top: 1px solid #ccc;
}

.index_main .index_topics .index_topics_list .index_topics_con:nth-of-type(2n) {
  margin-right: 0;
}

.index_main .index_topics .index_topics_list .index_topics_con > figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 20px 0 0;
}

.index_main .index_topics .index_topics_list .index_topics_con > figure > img {
  width: 100%;
  /*
                        height: 100%;
                        object-fit: cover;
                        font-family: "object-fit: cover;";
                        */
}

.index_main .index_topics .index_topics_list .index_topics_con > .title {
  width: 80%;
}

.index_main .index_topics .more > a {
  display: block;
  width: 360px;
  margin: 0 auto 20px;
  padding: 5px 20px;
  background: 13px 20px;
  color: #333;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #333;
}

.index_main .index_shop {
  margin: 0 0 20px;
  /*
    .index_shop_list {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      padding: 30px 20px;
      background: #f8f8f8;

      .index_shop_area {
        width: calc((100% - 5em - 1px) / 6);
        margin: 0 1em 0 0;

        &:nth-of-type(6n) {
          margin-right: 0;
        }

        h3 {
          position: relative;
          margin: 0 0 10px;
          padding: 0 0 0 10px;
          font-size: 16px;

          &:before {
            position: absolute;
            top: 4px;
            left: 0;
            content: "";
            display: inline-block;
            width: 5px;
            height: 18px;
            margin: 0 10px 0 0;
            background: #b7282b;
          }
        }

        ul {

          li {
            margin: 0 0 10px;

            a {
              display: block;
              color: #333;
              font-size: 16px;
              text-decoration: none;
              letter-spacing: -0.05em;

              &:hover {
                text-decoration: underline;
              }
            }
          }
        }
      }
    }
    */
}

.index_main .index_group {
  border-bottom: 1px solid #ccc !important;
  padding-bottom: 20px !important;
}

.index_main .index_shop > .index_shop_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 30px 20px 10px;
  background: #f8f8f8;
}

.index_main .index_shop > .index_shop_con > * {
  width: calc((100% - 2em - 1px) / 3);
  margin: 0 1em 0 0;
}

.index_main .index_shop > .index_shop_con > *:nth-of-type(3n) {
  margin-right: 0;
}

.index_main .index_shop > .index_shop_con > * h3 {
  position: relative;
  display: block;
  margin: 0 0 20px;
  font-size: 20px;
  cursor: pointer;
}

.index_main .index_shop > .index_shop_con > * h3::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.index_main .index_shop > .index_shop_con > .index_hous_list > * h3::after {
  top: 25% !important;
  top: 25% !important;
}

.index_main .index_shop > .index_shop_con > .index_city_list > * h3::after {
  top: 25% !important;
}

.index_main .index_shop > .index_shop_con > * h3.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20%;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap {
  display: none;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area h4 {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  padding: 0 0 0 10px;
  font-size: 16px;
  cursor: pointer;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area h4:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  display: inline-block;
  width: 5px;
  height: 18px;
  margin: 0 10px 0 0;
  background: #b7282b;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area h4::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area .no_after::after {
  display: none !important;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area .no_after a {
  color: #000000 !important;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area h4.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area ul {
  display: none;
  margin: -5px 0 20px;
  padding: 0 0 0 10px;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area ul li {
  margin: 0 0 15px;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area ul li:last-of-type {
  margin-bottom: 0;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area ul li a {
  display: inline-block;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: -0.05em;
}

.index_main .index_shop > .index_shop_con > * .index_shop_list_wrap .index_shop_area ul li a:hover {
  text-decoration: underline;
}

.index_main .index_shop > .index_shop_con .index_shop_list h3 {
  width: 70px;
}

.index_main .index_shop > .index_shop_con .index_si_list h3 {
  width: 230px;
}

.index_main .index_shop > .index_shop_con .index_tokki_list h3 {
  width: 250px;
}

.index_main .index_shop > .index_shop_con .index_hous_list h3 {
  width: 190px;
}

.index_main .index_shop > .index_shop_con .index_city_list h3 {
  width: 230px;
}

.index_main .index_link {
  padding: 20px 30px;
  background: #f8f8f8;
}

/*
.index_main .index_category .index_category_list .index_category_con:nth-of-type(18):before {
  background: url(../img/img_category_14.png) no-repeat center center;
}
*/
@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.index_side {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  max-width: 240px;
  height: 100%;
  padding: 20px;
  background: #f8f8f8;
}

.index_side .index_bnr_list_01 {
  margin: 20px 0 0;
}

.index_side .index_bnr_list_01 li {
  margin-bottom: 10px;
}

.index_side .index_bnr_list_01 li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_side .index_bnr_list_01 li a:hover {
  opacity: 0.8;
}

.index_side .index_bnr_list_01 li a img {
  width: 100%;
}

.index_side .index_bnr_list_02 {
  margin: 20px 0 0;
  padding: 5px;
  background: #fff;
}

.index_side .index_bnr_list_02 li {
  margin-bottom: 5px;
}

.index_side .index_bnr_list_02 li:last-of-type {
  margin-bottom: 0;
}

.index_side .index_bnr_list_02 li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.index_side .index_bnr_list_02 li a:hover {
  opacity: 0.8;
}

.index_side .index_bnr_list_02 li a img {
  width: 100%;
}

.index_news_item {
  border-bottom: 1px dotted #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  padding: 10px 0;
  width: 100%;
}

.index_news_item_date {
  width: 130px;
}

.index_news_item_date:before {
  content: url(../img/icon_circle_arrow_green.gif);
  vertical-align: bottm;
  margin-right: 0.2em;
}

.index_news_item_ttl {
  width: calc(100% - 140px);
}

.index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}

.index_news_item_icon_new:before {
  content: "NEW";
}

.index_news_scrl {
  max-height: 300px;
  overflow: auto;
}

.index_slider_bg {
  display: none;
}


#js-info-wrap{
  font-size: 1.2em;
  color: #333;
  background-color: #F8F8F8;
  /* margin:0 auto 20px; */
  margin:0 auto;
  padding-left: 10px;
}

.info {
	display:none;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.info-list {
  overflow-y:hidden;
  height: 65px;
  width: 100%;
  position: relative;
}
.info-list table{
  margin-top:0!important;
}
.info-list>table{
  position: absolute;
  top: 0;
}

.info-list>table>tbody>tr:first-of-type,
.info-list>table>tbody>tr:last-of-type{
  display:none;
}

.info-list>table tr{
  height: 65px;
  /* display: flex;
  align-items: center; */
}

.info-list>table tr td{
  padding: 0;
}

.info-list table tr>td>table {
  height: 65px;
}

.info-control {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-control__btn {
	position : relative;

	display : block;

	width : 20px;
	height : 20px;
	margin-bottom : 5px;
	padding : 0;

	cursor : pointer;

	border : none;
	outline : none;
	background : none;

	appearance : none;
  transition: all ease 0.3s;
}

.info-control__btn:hover{
  opacity: 0.5;
}

.info-control__btn:before , .info-control__btn:after {
	position : absolute;
	right : 0;
	bottom : 0;
	left : 0;

	display : block;

	width : 8px;
	height : 8px;
	margin : auto;

	content : "";
}

.info-control__btn--prev:before , .info-control__btn--prev:after {
  top:5px;
}
.info-control__btn--next:before , .info-control__btn--next:after {
  bottom:5px;
}

.info-control__btn--prev:after {
	transform : rotate(45deg);
	border-top : solid 2px #333;
	border-left : solid 2px #333;
}

.info-control__btn--next:before {
	transform : rotate(45deg);

	border-right : solid 2px #333;
	border-bottom : solid 2px #333;
}
.info-list .woong:first-of-type{
	width:100px!important;
}

/*-- object-fit ver IE11 ?ｿｽT?ｿｽ[?ｿｽo?ｿｽ[?ｿｽA?ｿｽb?ｿｽv?ｿｽﾅ難ｿｽ?ｿｽ?ｿｽm?ｿｽF?ｿｽﾏゑｿｽ -- */
/*--
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_slider .slick-slider img {
  width: calc(100% - 20px) !important;
}

#playerbox {
  width: 100%;
  height: 450px;
  margin: 0 0 40px;
}

#playerbox iframe {
  width: 100%;
  height: 100%;
}

#playlist h3 {
  margin: 0 0 25px;
  padding: 0 0 0 10px !important;
  font-size: 1.5rem;
  border-left: 6px solid #87c4e3;
}

#playlist #movie_playlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#playlist #movie_playlist li {
  width: calc((100% - 2em - 1px) / 3);
  margin: 0 1em 1em 0;
  padding: 10px;
  background: #f8f8f8;
  border: 1px solid #ddd;
}

#playlist #movie_playlist li:nth-child(3n) {
  margin-right: 0;
}

#playlist #movie_playlist li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-size: 1.16rem;
  font-weight: bold;
}

#playlist #movie_playlist li a:hover {
  text-decoration: none;
}

#playlist #movie_playlist li a figure {
  margin: 0 0 15px;
}

#playlist #movie_playlist li a span {
  display: block;
  margin: 10px 0 0;
  font-size: 1.0rem;
  font-weight: normal !important;
}

.page_news {
  margin: 0 0 40px;
  border-bottom: 1px solid #ccc;
}

.page_news h2 {
  margin: 0 0 10px !important;
  padding: 10px 0 0 !important;
}

.page_news div.pcp_news{
  color: #333;
  font-size: 24px;
  font-weight: bold;
  border-top: 1px solid #ccc;
  margin: 0 0 10px !important;
  padding: 10px 0 0 !important;
}

.page_news .scroll-area {
  height: 175px;
  margin: 0 0 10px;
  overflow-y: auto;
}

.page_news .scroll-area > table {
  margin: 0;
}

.page_news .scroll-area > table tr table {
  margin: 0;
  border-top: 1px solid #ccc;
}

.page_news .scroll-area > table tr table td {
  padding: 6px 0;
}

.page_news .scroll-area > table tr table td:first-child {
  width: 100px;
}

.page_news .scroll-area > table tr table td a {
  display: block;
  width: 100% !important;
}

.page_news .scroll-area > table > tbody > tr:nth-child(2) > td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page_news .scroll-area > table > tbody > tr:nth-child(2) > td > table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 0 0;
  padding: 0 5px;
}

.page_news .scroll-area > table > tbody > tr:nth-child(2) > td > table:nth-child(2n) {
  margin-right: 0;
}

.page_news .scroll-area > table > tbody > tr:nth-child(2) > td > table:nth-child(odd)::after {
  position: relative;
  right: -13px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px dotted #ccc;
}

.page_news .scroll-area > table > tbody > tr:nth-child(2) > td > table tbody {
  width: 100%;
}

.sitemap_link {
  margin: 0 0 30px!important;
}

.sitemap_link ::before {
  content: ">";
  display: inline-block;
  margin: 0 5px 0 0;
}

.sitemap_link > a {
  color: #333;
  font-size: 20px;
}

.sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sitemap .sitemap_nav {
  width: calc((100% - 3em - 1px) / 4);
  margin: 0 1em 0 0;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.sitemap .sitemap_nav:last-of-type {
  margin-right: 0;
}
.sitemap .sitemap_nav > ul > li > a:hover {
  text-decoration: underline;
}

.sitemap .sitemap_nav > ul > li {
  margin: 0 0 10px;
  font-size: 14px;
}

.sitemap .sitemap_nav > ul > li::before {
  content: ">";
  display: inline-block;
  margin: 0 5px 0 0;
}

.sitemap .sitemap_nav > ul > li:last-of-type {
  margin: 0;
}

.sitemap .sitemap_nav > ul > li > a {
  color: #333;
}

.sitemap .sitemap_nav > ul > li > a:hover {
  text-decoration: underline;
}

#original_nas > .index_main > .index_category > .index_category_list > .index_category_con > a > h3 > img {
    width: 100px;
    height: auto;
}

/*#original_nas { */
    /*background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), color-stop(99%, #ff5050));*/
    /*background: linear-gradient(to bottom, #fefefe 0%, #ff5050 99%);*/
/* } */

.index_main .index_category .index_category_list > #original_nas > a > p {
  font-size: 16px;
}

.index_main .index_category .index_category_list > #original_nas > a > h3 > img {
    width: 95px;
    height: auto;
}


/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}

.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}

.mcon h2,.mcon h1.heading_cat {
  margin: 0 0 20px;
  padding: 20px 0 0;
  color: #333;
  font-size: 24px;
  border-top: 1px solid #ccc;
}

.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}

.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}

.mcon h5, .mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}

.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}

.mcon iframe {
  max-width: 100%;
}

.mcon img {
  max-width: 100%;
  height: auto;
}

.mcon #itemImg img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.mcon #r_searchList .imgWrap img {
  max-width: 200px;
  width: 100%;
}

.mcon p {
  margin-bottom: 1em;
}
.mcon p.mgn_top{
  margin-top: 80px;
}
/*# sourceMappingURL=style.css.map */

.Side_Banner_head{
  position: fixed;
  display: inline-block;
  transition: all .2s ease;
  top: 150px;
 }

 a.Side_Banner {
  position: fixed;
  display: inline-block;
  transition: all .2s ease;
  z-index: 9999;
 }

 img .Side_Banner_head,
 img .Side_Banner{
   width:280px;
 }
 
 a.Side_Banner.right { right: -80px;} 
 a.Side_Banner.right:hover{ right: 0;}
   
 a.Side_Banner.top1 { top: 230px; }
 a.Side_Banner.top2 { top: 280px; }
 a.Side_Banner.top3 { top: 330px; }
 a.Side_Banner.top4 { top: 380px; }
 a.Side_Banner.top5 { top: 430px; }

 @media screen and (max-width: 1599px) {
 .Side_Banner_dn{
  display: none;
 }
}


/* TOPページのみ表示するclass .toppage 表示はJSで */
.toppage {
  display: none;
}

/* カテゴリページデザイン */
#r_subGroup > table > tbody > tr > td {
  display: inline-block;
  height: auto;
  width: 25%;
  padding: 8px;
}
#r_subGroup table {
  margin: 0 0 10px 0;
}
#r_subGroup > table > tbody > tr > td > table > tbody > tr > td:first-child {
  display: none;
}