@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
/*.hd_bg {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/hd_bg_bg.png) repeat-x top left;
}*/

.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;
  padding: 20px 10px 0;
}

.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;
  display: flex;
  flex-direction: column;
}

.hd .hd_logo img {
  width: calc(100% - 20vw);
  max-width: 100%;
  height: auto;
}

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

.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;
  margin: -15px 0 0;
}

.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 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;
  padding: 0 55px 0 0;
}

.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:nth-of-type(3n), .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(https://gigaplus.makeshop.jp/applied/images_new/icon_cart.png);
  display: inline-block;
  margin-right: 8px;
}

.hd_jasdaq {
  width: 50%;
  margin: 0 auto 10px;
}
.hd_jasdaq_tab {
  display: none;
}
@media screen and (max-width: 568px) {

  .hd .hd_logo {
    margin: 0 0 25px;
  }

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

@media screen and (min-width: 568px) {
  .hd_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px !important;
  }
  .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 !important;
  }
  .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_search .input input {
    width: 350px !important;
    height: 35px;
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 5px 5px 0;
  }
  .hd_search .send {
    width: auto !important;
    margin: 0 0 0 10px !important;
    padding: 7px 13px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 20px;
  }
  .hd_jasdaq {
    display: none;
  }
  .hd_jasdaq_tab {
    display: block;
    width: 130px;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.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;
  display: -ms-flexbox;
  display: flex;
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  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(https://gigaplus.makeshop.jp/applied/images_new/icon_mypage.png);
  display: inline-block;
  margin-right: 7px;
}

.nav_login .login a:before {
  content: url(https://gigaplus.makeshop.jp/applied/images_new/icon_login.png);
  display: inline-block;
  margin-right: 7px;
}

.nav_login .regist a:before {
  content: url(https://gigaplus.makeshop.jp/applied/images_new/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;
  margin: 87px 0 0;
}

/*.nav_list > li {
  
    &:last-of-type > a:after {
      content: url(https://gigaplus.makeshop.jp/applied/images_new/icon_arrow_blue.png);
      display: inline-block;
      margin: 0 0 0 10px;
    }
    
}*/

.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%);
}

.nav_list > li:first-of-type > a:after {
  content: url(https://gigaplus.makeshop.jp/applied/images_new/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, .nav_list > li.youtube > a:after {
  content: url(https://gigaplus.makeshop.jp/applied/images_new/icon_arrow_blue.png);
  display: inline-block;
  margin: 0 0 0 10px;
}

.nav_list > li.online_seminar {
  background: #c20d0d;
}

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

.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 > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #415081;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}

.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 {
  display: none;
}

.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.dspc > a,
.nav_clist > li.bg_red > a {
  background: rgba(255, 0, 0, 0.75);
}

.nav_clist > li.bg_pink > a {
  background: rgba(255, 112, 112, 0.75);
}

.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_list > li.site > .nav_clist > li.youtube_list > a:after {
  content: url(https://gigaplus.makeshop.jp/applied/images_new/icon_arrow_white_02.png);
  display: inline-block;
  margin: 0 0 0 10px;
}

.nav_glist {
  display: none;
}

.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 {
  padding: 20px 10px 0;
}

.main {
  margin: -50px 0 30px !important;
}

.side {
  display: none;
}

/*
.side_head {
  background-color: #EEE;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}

.side_nav_list li a {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #CCC;
  color: #111;
  display: block;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none;

  &:hover {
    text-decoration: underline;
  }
}
*/
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg .ft {
  display: none;
}

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

.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: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.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;
  margin: 1em 5% 0;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav > li {
  width: calc((100% - 1em - 1px) / 2);
  margin: 0 1em 1em 0;
  border-left: 1px solid #fff;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav > li:nth-of-type(2n) {
  margin-right: 0;
  border-right: 1px solid #fff;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav > li:last-of-type {
  width: calc((100% - 1em - 1px) / 2 + 1em);
  border-right: 1px solid #fff;
}

.ft_bg .ft_copy .ft_copy_con .ft_copy_nav > li > a {
  display: block;
  padding: 0 20px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.ft_bg .ft_copy .ft_copy_con p {
  padding: 10px 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 10px;
  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: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 88;
}

.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  -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: 5px;
  bottom: 0;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  margin-top: -60px !important;
  margin-bottom: 20px;
  padding-top: 30px;
}

.index_main .bnr_headline{
  font-size: 18px;
  margin: 20px 0;
  color: #333 !important;
  font-weight: bold !important;
  position: relative;
  text-align: center;
}

.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: 0 0 20px !important;
  padding: 20px 0 0 !important;
  background: #fff !important;
  color: #333 !important;
  font-size: 22px !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: 22px !important;
  color: #333 !important;
  line-height: normal;
}

.index_main .index_news .scroll-area {
  height: 40vh;
  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.woong:before {
  display: none;
}

.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 .slick-dots {
  bottom: 0;
}

.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.woong:before {
  display: none;
}


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

.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 80px;
  border: 1px solid #d1cfcf;
  border-bottom: none;
}

.index_main .index_category .index_category_list .index_category_con {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  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(https://gigaplus.makeshop.jp/applied/images_new/img_category_01.png) no-repeat center center;
}

.index_main .index_category .index_category_list #lg_gram a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_04.png) no-repeat center center;
}

.index_main .index_category .index_category_list #gaming_pc a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_03.png) no-repeat center center;
}

.index_main .index_category .index_category_list #msi a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_06.png) no-repeat center center;
}

.index_main .index_category .index_category_list #hpc a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_15.png) no-repeat center center;
}

.index_main .index_category .index_category_list #gigabite a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_08.png) no-repeat center center;
}

.index_main .index_category .index_category_list #houjin a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_20.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_support a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_31.png) no-repeat center center;
}

.index_main .index_category .index_category_list #help_desc a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_18.png) no-repeat center center;
}

.index_main .index_category .index_category_list #note_pc a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_02.png) no-repeat center center;
}

.index_main .index_category .index_category_list #gaming_accessory a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_05.png) no-repeat center center;
}

.index_main .index_category .index_category_list #tablet a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_16.png) no-repeat center center;
}

.index_main .index_category .index_category_list #bauhutte a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_07.png) no-repeat center center;
}

.index_main .index_category .index_category_list #toys a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_10.png) no-repeat center center;
}

.index_main .index_category .index_category_list #pc_parts a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_09.png) no-repeat center center;
}

.index_main .index_category .index_category_list #camera a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_17.png) no-repeat center center;
}

.index_main .index_category .index_category_list #equipment a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_13.png) no-repeat center center;
}

.index_main .index_category .index_category_list #softwear a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_11.png) no-repeat center center;
}

.index_main .index_category .index_category_list #premium a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_22.png) no-repeat center center;
}

.index_main .index_category .index_category_list #rental a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_21.png) no-repeat center center;
}

.index_main .index_category .index_category_list #programing a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_23.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_learning a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_24.png) no-repeat center center;
}

.index_main .index_category .index_category_list #mobile_work a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_25.png) no-repeat center center;
}

.index_main .index_category .index_category_list #old_pc a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_26.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_seminar a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_27.png) no-repeat center center;
}

.index_main .index_category .index_category_list #out_of_order a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_28.png) no-repeat center center;
}

.index_main .index_category .index_category_list #online_ap a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_29.png) no-repeat center center;
}

.index_main .index_category .index_category_list #sp_lecture a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_30.png) no-repeat center center;
}

.index_main .index_category .index_category_list #optimisation a:before {
  height: 72px;
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_32.svg) no-repeat center center;
}

.index_main .index_category .index_category_list #help_desk a:before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_19.png) no-repeat center center;
}

.index_main .index_category .index_category_list #sns_support a:before {
  height: 72px;
  background: url(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/img_category_38.png) no-repeat center center;
  background-size: contain;
}

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

.index_main .index_category .index_category_list #pc_rental a:before {
  height: 72px;
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_43.png) no-repeat center center;
  background-size: contain;
}

.index_main .index_category .index_category_list #nas_total a:before {
  height: 72px;
  background: url(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/img_category_48.png) no-repeat center center;
  background-size: contain;
}

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

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

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

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

.index_main .index_category .index_category_list .index_category_con a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  color: #333;
  text-decoration: none;
}

.index_main .index_category .index_category_list .index_category_con a:before {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  content: "";
  display: block;
  width: 113px;
  height: 92px;
  margin: auto auto 0;
}

.index_main .index_category .index_category_list .index_category_con a > h3 {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 10px;
  font-size: 16px;
}

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

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

.index_main .index_category .index_category_list .index_category_con .sub_menu {
  display: none;
}

/* div#nas_solution.index_category_con,
div#pc_rental.index_category_con,
div#nas_total.index_category_con,
div#r_solution.index_category_con,
div#r_solution_online.index_category_con,
div#r_solution_deconoba.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;
  border-right: 1px solid #d1cfcf;
  border-bottom: 1px solid #d1cfcf;
} */

/* div#nas_solution.index_category_con:before,
div#pc_rental.index_category_con:before,
div#nas_total.index_category_con:before,
div#r_solution.index_category_con:before,
div#r_solution_online.index_category_con:before,
div#r_solution_deconoba.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#nas_solution.index_category_con:after,
div#pc_rental.index_category_con:after,
div#nas_total.index_category_con:after,
div#r_solution.index_category_con:after,
div#r_solution_online.index_category_con:after,
div#r_solution_deconoba.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-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 20px;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con {
  position: relative;
  width: 100%;
  margin: 0 0 40px;
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:first-of-type::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: url(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/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(https://gigaplus.makeshop.jp/applied/images_new/rank4.png);
}

.index_main .index_ranking .index_ranking_list .index_ranking_con:nth-of-type(5)::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: url(https://gigaplus.makeshop.jp/applied/images_new/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-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 20px;
}

.index_main .index_ranking .index_check_list .index_check_con {
  width: 100%;
  margin: 0 0 40px;
}

.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-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 20px;
}

.index_main .index_topics .index_topics_list .index_topics_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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.index_main .index_topics .index_topics_list .index_topics_con:first-of-type {
  border-top: 1px solid #ccc;
}

.index_main .index_topics .index_topics_list .index_topics_con > figure {
  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;
  width: 80px;
  height: 80px;
  margin: 0 10px 0 0;
}

.index_main .index_topics .index_topics_list .index_topics_con > figure > img {
  width: 100%;
}

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

.index_main .index_topics .more > a {
  display: block;
  width: 100%;
  margin: 0 auto 40px;
  padding: 10px;
  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_main .index_group {
  border-bottom: 1px solid #ccc !important;
  padding-bottom: 20px !important;
}

.index_main .index_shop > .index_shop_con {
  padding: 30px 20px 10px;
  background: #f8f8f8;
}

.index_main .index_shop > .index_shop_con > * {
  width: 100%;
}

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

.index_main .index_shop > .index_shop_con > * h3::after {
  content: "";
  position: absolute;
  right: -25px;
  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 > * 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;
  margin: 0 0 20px;
}

.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_list h3 {
  width: 70px;
}

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

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

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

.index_main .index_link div img {
  width: 100%;
  padding: 0 10px;
}

/*
.index_main .index_category .index_category_list .index_category_con:nth-of-type(18):before {
  background: url(https://gigaplus.makeshop.jp/applied/images_new/img_category_14.png) no-repeat center center;
}
*/
@media screen and (min-width: 568px) {
  .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: inline-block;
    margin: 0 0 20px;
    font-size: 20px;
    cursor: pointer;
  }
  .index_main .index_shop > .index_shop_con > * h3::after {
    content: "";
    position: absolute;
    right: -35px;
    top: 18%;
    -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 > * h3.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
  }
  .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 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;
  }
}

@media screen and (min-width: 568px) {
  .index_category .index_category_list .index_category_con {
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
    -ms-flex-direction: unset !important;
    flex-direction: unset !important;
  }
  .index_category .index_category_list .index_category_con:before {
    -webkit-box-ordinal-group: unset !important;
    -ms-flex-order: unset !important;
    order: unset !important;
    margin: 10px !important;
  }
}

.index_slider_bg {
  display: none;
}

.index_side {
  display: none;
}

.index_side .index_bnr_list li {
  margin-bottom: 4px;
}

.index_side .index_bnr_list a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(https://gigaplus.makeshop.jp/applied/images_new/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}

.index_side .index_bnr_list a:hover {
  background-color: #000;
  background-image: url(https://gigaplus.makeshop.jp/applied/images_new/icon_elink_white.png);
  color: #FFF;
}

.index_slide {
  margin-bottom: 20px;
}
#js-info-wrap{
  font-size: 1.2em;
  color: #333;
  background-color: #F8F8F8;
  margin:0 auto;
  padding:0 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;
}
.info-list .woong:before{
	content:none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_slider .slick-slider img {
  width: calc(100% - 20px) !important;
}

#playerbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 50px;
}

#playerbox iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#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;
  margin: 0 0 20px !important;
  padding: 10px 0 0 !important;
}

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


.page_news div.pcp_news{
  font-size: 22px;
  font-weight: bold;
  border-top: 1px solid #ccc;
}

.page_news .scroll-area {
  height: 40vh;
  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.woong:before {
  display: none;
}

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

.sitemap .sitemap_nav {
  margin: 0 0 1em;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.sitemap .sitemap_nav:last-of-type {
  margin-right: 0;
}

.sitemap .sitemap_nav > h3 {
  margin: 0 0 15px;
  color: #333;
}

.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;
}

@media screen and (max-width: 568px) {
  #movie_playlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #movie_playlist li {
    width: 100% !important;
    margin: 0 0 1em;
    padding: 10px;
    background: #f8f8f8;
    border: 1px solid #ddd;
  }
  #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;
  }
  #movie_playlist li a:hover {
    text-decoration: none;
  }
  #movie_playlist li a figure {
    margin: 0 0 15px;
  }
  #movie_playlist li a span {
    display: block;
    margin: 10px 0 0;
    font-size: 1.0rem;
    font-weight: normal !important;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  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: 10px 0 0;
  color: #333;
  font-size: 22px;
  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 {
  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 #r_searchList .imgWrap img {
  max-width: 200px;
  width: 100%;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** ���i�y�[�W
******************************************************************************
----------------------------------------------------------------------------*/

div.M_imageMain img {
  margin: 0 auto;
}

div.M_imageWrap div.M_imageMain {
  height: 100vw!important;
}

div#detail ul#itemLink {
  margin-bottom: 12px;
}

#detailInfo table td {
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** �J�e�S���y�[�W
******************************************************************************
----------------------------------------------------------------------------*/

#r_subGroup > table > tbody > tr > td {
	display: inline-block;
	height: auto;
	width: 50%;
	padding: 8px;
}
#r_subGroup > table > tbody > tr > td > table > tbody > tr > td:first-child {
	display: none;
}