@charset "UTF-8";
/* ======================================================
 * top_common_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 768px)
 * Print
====================================================== */
/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 768px) {
  .ic-arrow__right,
  .ic-arrow__left,
  .ic-arrow__bottom {
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  .ic-arrow__right::before,
  .ic-arrow__left::before,
  .ic-arrow__bottom::before {
    content: "";
    position: absolute;
    display: block;
    top: 0.55em;
    left: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #5f6b78;
    border-right: 2px solid #5f6b78;
  }
  .ic-arrow__right::before {
    transform: rotate(45deg);
  }
  .ic-arrow__bottom::before {
    transform: rotate(135deg);
  }
  .ic-arrow__left::before {
    transform: rotate(-135deg);
  }
  /* 三角 */
  .ic-arrow-tr__right,
  .ic-arrow-tr__left,
  .ic-arrow-tr__bottom {
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  .ic-arrow-tr__right::before,
  .ic-arrow-tr__left::before,
  .ic-arrow-tr__bottom::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .ic-arrow-tr__right::before {
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent #b3b3b3;
  }
  .ic-arrow-tr__bottom::before {
    border-width: 9px 5px 0 5px;
    border-color: #b3b3b3 transparent transparent transparent;
  }
  .ic-arrow-tr__left::before {
    border-width: 5px 9px 5px 0;
    border-color: transparent #b3b3b3 transparent transparent;
  }


  /* ======================================================
   * Header
  ====================================================== */
  .Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #000;
    z-index: 10;
  }
  .Header__inner {
    display: flex;
    align-items: center;
    padding: 5px 15px 6px;
    height: 40px;
  }

  .header-logo > a {
    display: flex;
    align-items: center;
  }
  .header-logo__icon {
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
  }
  .header-logo__text {
    height: 20px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #ccc;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.2;
  }

  .header-gnav__wrap {
    display: none;
    position: fixed;
    top: 40px;
    left: 0;
    overflow-y: auto;
    width: 100%;
    height: calc(100vh - 40px);
    background-color: #fff;
    z-index: 11;
  }
  .header-gnav__menu {
    display: block;
    position: absolute;
    top: 2px;
    right: 5px;
    padding: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-indent: 100%;
    transition: none;
  }
  .header-gnav__menu__icon {
    display: block;
    overflow: hidden;
  }

  /* ------------------------------------------------------
   * header-gnav-account
  ------------------------------------------------------ */
  .header-gnav-account {
    padding: 15px;
    background-color: #f2f2f2;
  }
  .header-gnav-account.is-login {
    padding-top: 14px;
  }
  .header-gnav-account__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
  }
  /* アカウント名 */
  .header-gnav-account__name {
    position: relative;
    padding-left: 20px;
    font-weight: bold;
    line-height: 1.1;
  }
  .header-gnav-account__icon {
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
  }
  .header-gnav-account__name__label {
    font-size: 16px;
  }
  .header-gnav-account__inner {
    display: flex;
    justify-content: space-between;
    margin-top: 17px;
  }
  /* 新規登録 */
  .header-gnav-account__register {
    width: 48%;
  }
  .header-gnav-account__register__regist > a {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 36px;
    padding: 6px 15px;
    color: #fff;
    background-color: #666;
    border-radius: 50px;
  }
  /* ログイン */
  .header-gnav-account__login {
    width: 48%;
  }
  a.header-gnav-account__login__link {
    display: flex;
    justify-content: center;
    position: relative;
    height: 36px;
    padding: 6px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    background-color: #000;
    border-radius: 50px;
    white-space: nowrap;
  }
  .header-gnav-account__login__icon {
    display: block;
    position: relative;
    top: 3px;
    margin-right: 8px;
  }
  /* ログアウト */
  .header-gnav-account__logout {
    position: relative;
    top: -1px;
    color: #666;
    font-size: 12px;
  }
  .header-gnav-account__info {
    margin-top: 17px;
  }
  .header-gnav-account__info__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .header-gnav-account__info__item {
    width: calc((100% - 12px) / 2);
    margin-top: 15px;
    text-align: center;
    line-height: 1.2;
  }
  .header-gnav-account__info__cont {
    height: 100%;
    padding: 8px 0;
    background-color: #fff;
    border-radius: 10px;
  }
  .header-gnav-account__info__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 42px;
    padding: 8px 0;
    background-color: #fff;
    border-radius: 10px;
  }
  .header-gnav-account__info__icon {
    margin-right: 10px;
  }
  .header-gnav-account__info__title {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .header-gnav-account__info__text {
    font-size: 14px;
    font-weight: bold;
  }
  /*キャッシュバック*/
  .header-gnav-account__info__cashback {
    line-height: 1.2;
    background-color: #fff;
    border-radius: 50px;
  }
  .header-gnav-account__info__lead {
    font-size: 14px;
  }
  .header-gnav-account__info__balance {
    margin-left: 20px;
    font-weight: bold;
    font-size: 19px;
  }
  /*FMV プレミアムサービス 未加入*/
  .header-gnav-account__info__premium_regist .header-gnav-account__info__text {
    color: #666;
  }
  /*ご登録情報の確認*/
  .header-gnav-account__info__confirmation {
    font-size: 14px;
  }

  .header-gnav__inner {
    padding: 20px 15px 70px;
  }
  .header-gnav__box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .header-gnav__btn {
    width: calc((100% - 15px) / 2);
  }
  .header-gnav__btn:not(:nth-child(-n+2)) {
    margin-top: 15px;
  }
  .header-gnav__btn a {
    display: block;
    position: relative;
    width: 100%;
    padding: 10px 25px 12px;
    border: 1px solid #666;
    border-radius: 10px;
    background-color: #fff;
  }
  .header-gnav__btn a::before {
    content: "";
    display: inline-block;
    position: relative;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-width: 5px 0 5px 9px;
    border-style: solid;
    border-color: transparent transparent transparent #b3b3b3;
    transform: translateX(-50%);
  }
  .header-gnav__title {
    padding: 6px 14px 5px;
    font-size: 15px;
    background-color: #f2f2f2;
    font-weight: bold;
  }
  .header-gnav__list[data-col-sp="2"] {
    display: flex;
    flex-flow: row wrap;
  }
  .header-gnav__list[data-col-sp="2"] > * {
    border-top: none;
    width: calc((100% - 15px)/2);
    margin-left: 15px;
  }
  .header-gnav__list[data-col-sp="2"] > *:nth-of-type(2n+1) {
    margin-left: 0;
  }
  .header-gnav__list[data-col-sp="2"] > *:nth-of-type(n+3) {
    border-top: 1px solid #f2f2f2;
  }
  .header-gnav__section:last-child .header-gnav__list > li:last-child {
    border-bottom: 1px solid #f2f2f2;
  }
  .header-gnav__list > *:first-child {
    border-top: none;
  }
  .header-gnav__item {
    border-top: 1px solid #f2f2f2;
  }
  .header-gnav__item > a {
    position: relative;
    display: block;
    padding: 10px 5px 10px 32px;
  }
  .header-gnav__item > a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    width: 0;
    height: 0;
    margin-top: -6px;
    border-width: 5px 0 5px 9px;
    border-style: solid;
    border-color: transparent transparent transparent #b3b3b3;
  }
  .header-gnav__item > a[target="_blank"]::before {
    content: none;
  }
  .header-gnav__item .is-blank {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 14px;
    margin-top: -6px;
  }

  /* ------------------------------------------------------
   * Header__important
  ------------------------------------------------------ */
  .Header__important {
    display: none;
    padding: 0 15px 15px;
    background-color: #ffeef0;
  }
  .Header__important__title {
    padding-top: 15px;
    color: #ac2330;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }
  .Header__important__item {
    margin-top: 10px;
    font-size: 14px;
  }
  .Header__important__item a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  .Header__important__item a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0.55em;
    left: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #5f6b78;
    border-right: 2px solid #5f6b78;
    transform: rotate(45deg);
  }

  /* ======================================================
   * Assist
  ====================================================== */
  .Assist {
    display: none;
  }

  /* ======================================================
   * Footer
  ====================================================== */
  .Footer__head {
    background-color: #fff;
  }
  .Footer__body {
    background-color: #000;
  }
  .Footer__inner {
    padding: 0 15px;
  }
  .Footer__body .Footer__inner {
    padding: 20px 15px;
  }
  .Footer__guide {
    display: none;
  }
  .footer-snav__list {
    display: flex;
    flex-flow: row wrap;
    padding: 15px 0;
  }
  .footer-snav__item {
    width: 50%;
    line-height: 1.4;
  }
  .footer-snav__item:not(:nth-child(-n+2)){
    margin-top: 5px;
  }
  .footer-snav__item > a {
    display: inline-block;
    font-size: 10px;
  }

  .footer-copyright {
    color: #b3b3b3;
    font-size: 10px;
    text-align: center;
  }

  /* ======================================================
   * Contents
  ====================================================== */
  /* ------------------------------------------------------
   * home-account
  ------------------------------------------------------ */
  .home-account {
    padding: 12px 15px 15px;
    background-color: #f2f2f2;
  }
  .home-account.is-login {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .home-account__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
  }
  .home-account.is-login .home-account__head {
    padding: 12px 15px 15px;
  }
  .home-account__cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
  }
  /* アカウント名 */
  .home-account__name {
    position: relative;
    padding-left: 20px;
    font-weight: bold;
    line-height: 1.1;
  }
  .home-account__icon {
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
  }
  .home-account__name__label {
    font-size: 16px;
  }
  .home-account__inner {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }
  /* 重要なお知らせ */
  .home-account__trigger {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
  }
  .home-account__trigger::before,
  .home-account__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 2px;
    margin: -1px 0 0 0;
    background-color: #666;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .home-account__trigger::before {
    transform: rotate(90deg);
  }
  .home-account__trigger.is-active::before {
    transform: rotate(0deg);
  }
  .home-account__trigger:hover {
    text-decoration: none;
  }
  /* 新規登録 */
  .home-account__register {
    width: 48%;
  }
  .home-account__register__regist > a {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 36px;
    padding: 6px 15px;
    color: #fff;
    background-color: #666;
    border-radius: 50px;
  }
  /* ログイン */
  .home-account__login {
    width: 48%;
  }
  a.home-account__login__link {
    display: flex;
    justify-content: center;
    position: relative;
    height: 36px;
    padding: 6px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    background-color: #000;
    border-radius: 50px;
    white-space: nowrap;
  }
  .home-account__login__icon {
    display: block;
    position: relative;
    top: 3px;
    margin-right: 8px;
  }
  /* ログアウト */
  .home-account__logout {
    margin-left: 15px;
    height: 20px;
    color: #666;
    font-size: 12px;
  }
  /* 会員情報 */
  .home-account__info {
    display: none;
    padding: 0 15px 15px;
  }
  .home-account__info__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .home-account__info__item {
    width: calc((100% - 12px) / 2);
    margin-top: 15px;
    text-align: center;
    line-height: 1.2;
  }
  .home-account__info__cont {
    height: 100%;
    padding: 8px 0;
    background-color: #fff;
    border-radius: 10px;
  }
  .home-account__info__link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 42px;
    padding: 8px 0;
    background-color: #fff;
    border-radius: 10px;
  }
  .home-account__info__icon {
    margin-right: 10px;
  }
  .home-account__info__title {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .home-account__info__text {
    font-size: 14px;
    font-weight: bold;
  }
  /*キャッシュバック*/
  .home-account__info__cashback {
    line-height: 1.2;
    background-color: #fff;
    border-radius: 50px;
  }
  .home-account__info__lead {
    font-size: 14px;
  }
  .home-account__info__balance {
    margin-left: 20px;
    font-weight: bold;
    font-size: 19px;
  }
  /*FMV プレミアムサービス 未加入*/
  .home-account__info__premium_regist .home-account__info__text {
    color: #666;
  }
  /*ご登録情報の確認*/
  .home-account__info__confirmation {
    font-size: 14px;
  }

  /* ======================================================
   * Assist
  ====================================================== */
  /* ------------------------------------------------------
   * menu-service
  ------------------------------------------------------ */
  .menu-service {
    overflow: hidden;
    padding: 25px 15px;
  }
  .menu-service__title {
    display: block;
    position: relative;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #999;
    font-weight: bold;
  }
  .menu-service__subtitle {
    display: block;
    position: relative;
    padding-bottom: 5px;
    font-weight: bold;
  }
  .menu-service__section {
    margin-top: 15px;
  }
  .menu-service__item:not(:first-of-type) {
    margin-top: 15px;
  }
  .menu-service__link {
    display: flex;
    align-items: center;
  }
  .menu-service__image {
    flex-shrink: 0;
    margin-right: 10px;
  }
  .menu-service__name {
    flex-grow: 1;
  }

  /* ------------------------------------------------------
   * menu-setting
  ------------------------------------------------------ */
  .menu-setting__title {
    padding: 7px 15px 5px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    background-color: #000;
  }
  .menu-setting__body {
    display: flex;
    background-color: #f2f2f2;
    overflow: hidden;
  }
  .menu-setting__column {
    width: 100%;
    padding: 25px 15px 35px;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .menu-setting.is-open .menu-setting__column {
    margin-left: -100%;
  }
  .menu-setting__child {
    position: relative;
    width: 100%;
    padding: 25px 15px 35px;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .menu-setting__cont:first-child {
    margin-bottom: 30px;
  }
  .menu-setting__subtitle {
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
  }
  .menu-setting__subtitle span {
    display: block;
    position: absolute;
    top: -4px;
    right: calc(50% - 3.5em);
  }
  .menu-setting__table {
    width: 100%;
    min-height: 362px;
    border: 1px solid #999;
    line-height: 1.1;
  }
  .menu-setting__table tr:not(:last-child),
  .menu-setting__area__table tr:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .menu-setting__table th,
  .menu-setting__area__table th {
    width: 85px;
    padding: 2px 5px;
    border-right: 1px solid #ccc;
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    vertical-align: middle;
    background-color: #666;
  }
  .menu-setting__table td,
  .menu-setting__area__table td {
    width: calc(100% - 85px);
    padding: 2px 5px;
    font-size: 0;
    vertical-align: middle;
    background-color: #fff;
  }
  .menu-setting__table p,
  .menu-setting__area__table p {
    display: inline-block;
    margin: 2px 8px;
    font-size: 13px;
  }
  .menu-setting__list {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #999;
    background-color: #fff;
  }
  .menu-setting__item {
    width: 50%;
  }
  .menu-setting__item:nth-child(4n+1),
  .menu-setting__item:nth-child(4n+4) {
    background-color: #f2f2f2;
  }
  .menu-setting__link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
  }
  .menu-setting__image {
    margin-right: 6px;
  }
  .menu-setting__text {
    width: 5em;
    font-size: 14px;
    text-align: center;
  }
  .menu-setting__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .menu-setting__head__text {
    font-size: 13px;
  }
  .menu-setting__head__text span {
    display: inline-block;
    position: relative;
  }
  .menu-setting__head__text span:not(:first-child)::before {
    position: relative;
    content: "＞";
    top: 50%;
    left: 0;
    padding-left: 4px;
    transform: translateY(-50%);
  }
  .menu-setting__head__back a:link {
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    font-size: 13px;
    background-color: #666;
    border-radius: 50px;
  }
  .menu-setting__head__back a:visited {
    color: #fff;
  }
  .menu-setting__area {
    max-height: 362px;
    overflow-y: scroll;
    border: 1px solid #ccc;
  }
  .menu-setting__area__table {
    width: 100%;
    line-height: 1.1;
  }
  .menu-setting__area__table th {
    width: 95px;
  }
  .menu-setting__area__table td {
    width: calc(100% - 95px);
  }

  /* ------------------------------------------------------
   * ad-area
  ------------------------------------------------------ */
  .ad-area {
    padding: 0 15px;
    text-align: center;
  }
  .ad-area.margin-wide {
    margin: 30px 0;
  }
  .ad-area.margin-middle {
    margin: 15px 0;
  }

  /* ------------------------------------------------------
   * colorbox
  ------------------------------------------------------ */
  #cboxWrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
  #cboxContent {
    margin-top: 20px;
    padding-top: 40px;
    background: none;
  }
  #cboxClose {
    width: 29px;
    height: 29px;
  }

  /*------------------------------------------------------
  * css sprite
  ------------------------------------------------------*/
  .sprite {
    background-image: url("../images/css_sprite_sp.png");
    background-repeat: no-repeat;
  }
  /*********************企業・サイトロゴ*********************/
  .sprite.fmv-icon {
    width: 52px;
    height: 15px;
    background-position: 0 0;
  }
  /*********************ヘッダーメニュー*********************/
  .sprite.gnav-icon {
    width: 22px;
    height: 20px;
    background-position: -149px 0px;
  }
  .header-gnav__menu.is-open .sprite.gnav-icon {
    background-position: -172px 0px;
  }
  /*別タブ遷移*/
  .sprite.blank-icon {
    width: 14px;
    height: 12px;
    background-position: -471px -283px;
  }
  /*********************検索エリア*********************/
  /*検索ボタン*/
  .sprite.search-icon {
    width: 18px;
    height: 18px;
    background-position: -97px 0;
  }
  /*キャッシュバック*/
  .sprite.cashback-nav-icon {
    width: 28px;
    height: 26px;
    background-position: -257px 0;
  }
  /*suggest*/
  .sprite.suggest-icon {
    width: 23px;
    height: 29px;
    background-position: -451px 4px;
  }
  /*********************ニュースエリア*********************/
  /*newアイコン*/
  .sprite.new-icon {
    width: 36px;
    height: 17px;
    background-position: -476px 0;
  }
  /*newアイコン ver2*/
  .sprite.new-v2-icon {
    width: 55px;
    height: 20px;
    background-position: 0 -97px;
  }
  /*prアイコン*/
  .sprite.pr-icon {
    width: 36px;
    height: 17px;
    background-position: -476px -19px;
  }
  /*ビジネスアイコン*/
  .sprite.business-icon {
    width: 55px;
    height: 20px;
    background-position: -57px -97px;
  }
  /*ランキング1位*/
  .sprite.ranking-icon {
    width: 36px;
    height: 32px;
    background-position: -299px 0;
  }
  /*ランキング2位*/
  .home-news-ranking__item:nth-child(2) .sprite.ranking-icon {
    width: 36px;
    height: 32px;
    background-position: -335px 0;
  }
  /*ランキング3位*/
  .home-news-ranking__item:nth-child(3) .sprite.ranking-icon {
    width: 36px;
    height: 32px;
    background-position: -372px 0;
  }
  /*********************ログインエリア*********************/
  /*人アイコン*/
  .sprite.account-icon {
    width: 12px;
    height: 16px;
    background-position: -53px 0;
  }
  /*鍵アイコン*/
  .sprite.login-icon {
    width: 16px;
    height: 17px;
    background-position: -396px 0;
  }
  /*メルマガ*/
  .sprite.mailmag-icon {
    width: 30px;
    height: 21px;
    background-position: -66px 0;
  }
  /*******************ホームアイコン********************/
  /*サポート*/
  .sprite.support-icon {
    width: 33px;
    height: 33px;
    background-position: -67px -61px;
  }
  /*サービス*/
  .sprite.service-icon {
    width: 33px;
    height: 33px;
    background-position: -34px -61px;
  }
  /*地図*/
  .sprite.map-icon {
    width: 33px;
    height: 33px;
    background-position: -136px -61px;
  }
  /*ゲーム*/
  .sprite.game-icon {
    width: 33px;
    height: 33px;
    background-position: 0 -61px;
  }
  /*ビンゴ*/
  .sprite.bingo-icon {
    width: 33px;
    height: 33px;
    background-position: -101px -61px;
  }
   /*設定*/
   .sprite.setting-icon {
    width: 30px;
    height: 30px;
    background-position: -117px 0;
  }
  /*********************モールエリア*********************/
  /*cashback*/
  .sprite.cashback-icon {
    width: 16px;
    height: 15px;
    background-position: -514px 0px;
  }
  /*********************サポートアイコン*********************/
  /*FMV サポート*/
  .sprite.supportInfo-icon {
    width: 80px;
    height: 80px;
    background-position: -410px -201px;
  }
  /*ウイルス・セキュリティ情報*/
  .sprite.virusInfo-icon {
    width: 80px;
    height: 80px;
    background-position: -492px -201px;
  }
  /*********************サービスアイコン*********************/
  /*電話サポート使い放題*/
  .sprite.premium-icon {
    width: 80px;
    height: 80px;
    background-position: -328px -119px;
  }
  /*ソフト使い放題*/
  .sprite.sofutoku-icon {
    width: 80px;
    height: 80px;
    background-position: -246px -119px;
  }
  /*FMV カード*/
  .sprite.fmvcard-icon {
    width: 80px;
    height: 80px;
    background-position: -164px -201px;
  }
  /*セキュリティソフト*/
  .sprite.mcafee-icon {
    width: 80px;
    height: 80px;
    background-position: -164px -119px;
  }
  /*月額セキュリティソフト*/
  .sprite.security-icon {
    width: 80px;
    height: 80px;
    background-position: -82px -119px;
  }
  /*ネット詐欺対策ソフト*/
  .sprite.sagiwall-icon {
    width: 80px;
    height: 80px;
    background-position: 0 -201px;
  }
  /*FMVデータクラウド*/
  .sprite.fmvdatacloud-icon {
    width: 80px;
    height: 80px;
    background-position: -82px -201px;
  }
  /*訪問サポート*/
  .sprite.visit-support-icon {
    width: 80px;
    height: 80px;
    background-position: -246px -201px;
  }
  /*オンライン学習*/
  .sprite.manabi-icon {
    width: 80px;
    height: 80px;
    background-position: 0 -119px;
  }
  /*訪問レッスン*/
  .sprite.visit-lesson-icon {
    width: 80px;
    height: 80px;
    background-position: -1066px -119px;
  }
  /*FMVキッズ*/
  .sprite.kids-icon {
    width: 80px;
    height: 80px;
    background-position: -984px -119px;
  }
  /*パソコン・スマホ活用術*/
  .sprite.pck-blog-icon {
    width: 80px;
    height: 80px;
    background-position: -410px -119px;
  }
  /*エクセル関数の便利帳*/
  .sprite.excel-icon {
    width: 80px;
    height: 80px;
    background-position: -574px -119px;
  }
  /*ショートカットキー一覧*/
  .sprite.shortcutkeys-icon {
    width: 80px;
    height: 80px;
    background-position: -492px -119px;
  }
  /*電話レッスンかけ放題*/
  .sprite.tel-lesson-icon {
    width: 80px;
    height: 80px;
    background-position: -328px -201px;
  }
  /*デスクトップ壁紙*/
  .sprite.wallpaper-icon {
    width: 80px;
    height: 80px;
    background-position: -903px -119px;
  }
  /*パソコン書籍*/
  .sprite.book-icon {
    width: 80px;
    height: 80px;
    background-position: -820px -119px;
  }
  /*写真デジタル変換*/
  .sprite.photo-icon {
    width: 80px;
    height: 80px;
    background-position: -738px -119px;
  }
  /*ビデオDVD変換*/
  .sprite.dubbing-icon {
    width: 80px;
    height: 80px;
    background-position: -656px -119px;
  }
  /*********************天気・星座設定アイコン*********************/
  .sprite.weather-set-icon {
    width: 33px;
    height: 33px;
    background-position: -403px -283px;
  }
  .sprite.uranai-set-icon {
    width: 33px;
    height: 33px;
    background-position: -437px -283px;
  }
  /*********************星座*********************/
  /*牡羊座*/
  .sprite.aries-icon {
    width: 30px;
    height: 30px;
    background-position: -341px -283px;
  }
  /*おうし座*/
  .sprite.taurus-icon {
    width: 30px;
    height: 30px;
    background-position: -310px -283px;
  }
  /*ふたご座*/
  .sprite.gemini-icon {
    width: 30px;
    height: 30px;
    background-position: -279px -283px;
  }
  /*かに座*/
  .sprite.cancer-icon {
    width: 30px;
    height: 30px;
    background-position: -248px -283px;
  }
  /*しし座*/
  .sprite.leo-icon {
    width: 30px;
    height: 30px;
    background-position: -217px -283px;
  }
  /*おとめ座*/
  .sprite.virgo-icon {
    width: 30px;
    height: 30px;
    background-position: -186px -283px;
  }
  /*てんびん座*/
  .sprite.libra-icon {
    width: 30px;
    height: 30px;
    background-position: -155px -283px;
  }
  /*さそり座*/
  .sprite.scorpio-icon {
    width: 30px;
    height: 30px;
    background-position: -123px -283px;
  }
  /*いて座*/
  .sprite.sagittarius-icon {
    width: 30px;
    height: 30px;
    background-position: -93px -283px;
  }
  /*やぎ座*/
  .sprite.capricorn-icon {
    width: 30px;
    height: 30px;
    background-position: -62px -283px;
  }
  /*みずがめ座*/
  .sprite.aquarius-icon {
    width: 30px;
    height: 30px;
    background-position: -31px -283px;
  }
  /*うお座*/
  .sprite.pisces-icon {
    width: 30px;
    height: 30px;
    background-position: 0 -283px;
  }
}