@charset "UTF-8";
/* ======================================================
 * top_common.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 769px)
 * Print
====================================================== */
/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 769px) {
  /* 線 */
  .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.65em;
    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: 20px;
  }
  .ic-arrow-tr__right::before,
  .ic-arrow-tr__left::before,
  .ic-arrow-tr__bottom::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .ic-arrow-tr__right::before {
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent #b3b3b3;
  }
  .ic-arrow-tr__bottom::before {
    border-width: 11px 7px 0 7px;
    border-color: #b3b3b3 transparent transparent transparent;
  }
  .ic-arrow-tr__left::before {
    border-width: 7px 11px 7px 0;
    border-color: transparent #b3b3b3 transparent transparent;
  }

  /* ======================================================
   * Header
  ====================================================== */
  .Header {
    background-color: #000;
  }
  .Header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 1200px;
    height: 64px;
    background-color: #000;
  }
  .Header__head {
    flex-shrink: 0;
  }
  .Header__body {
    margin-left: 15px;
  }
  .Header__foot {
    flex-shrink: 0;
    margin-left: 50px;
  }

  .header-logo > a {
    display: flex;
    align-items: center;
  }
  .header-logo > a:hover {
    opacity: 0.7;
  }
  .header-logo__icon {
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
  }
  .header-logo__text {
    height: 30px;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid #ccc;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
  }

  .header-gnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 64px;
  }
  .header-gnav__item {
    position: relative;
    flex-shrink: 0;
    height: 100%;
    margin-left: 45px;
  }
  a.header-gnav__link,
  .header-gnav__btn {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
  }
  a.header-gnav__link:visited,
  a.header-gnav-more__item a:visited {
    color: #fff;
  }
  .header-gnav__link:hover,
  .header-gnav__btn:hover,
  .header-gnav-more__link:hover {
    color: #fff;
    text-decoration: none;
  }
  .header-gnav-more {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 180px;
    background-color: #000;
    z-index: 100;
    transform: translateX(-50%);
  }
  .header-gnav-more__item {
    position: relative;
  }
  .header-gnav-more__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 160px;
    height: 1px;
    background-color: #4d4d4d;
    transform: translateX(-50%);
  }
  .header-gnav-more__item:first-of-type::before {
    content: none;
  }
  a.header-gnav-more__link {
    display: block;
    width: 100%;
    padding: 10px;
    color: #ccc;
    font-size: 13px;
    text-align: center;
  }
  .header-gnav__trigger {
    position: relative;
    padding-left: 17px;
  }
  .header-gnav__trigger::before,
  .header-gnav__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 1px;
    margin: -1px 0 0 0;
    background-color: #fff;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .header-gnav__trigger::before {
    transform: rotate(90deg);
  }
  .header-gnav__trigger.is-active::before {
    transform: rotate(0deg);
  }

  .header-login {
    position: relative;
  }
  .header-login__btn {
    display: flex;
    align-items: center;
    height: 64px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
  }
  .header-login__icon {
    flex-shrink: 0;
    margin-right: 15px;
  }
  .header-login-more {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }

  /* ------------------------------------------------------
   * header-account
  ------------------------------------------------------ */
  .header-account {
    max-width: 200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  /* ユーザー名 */
  .header-account__name__label {
    display: inline-block;
    max-width: 80px;
    line-height: 1.2;
  }
  /* ログイン */
  a.header-account__login__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    color: #fff;
    background-color: #ac2330;
    border-radius: 50px;
  }
  a.header-account__login__link:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  .header-account__login__icon {
    flex-shrink: 0;
    margin-right: 8px;
  }
  /* 新規登録 */
  .header-account__register {
    margin-top: 15px;
    padding: 10px;
    background-color: #f2f2f2;
    border-radius: 10px;
  }
  .header-account__register__title {
    color: #ac2330;
    text-align: center;
    font-weight: bold;
  }
  .header-account__register__text {
    margin-top: 8px;
    font-size: 12px;
    text-align: center;
  }
  .header-account__register__regist > a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: 5px;
    color: #fff;
    background-color: #666;
    border-radius: 50px;
  }
  .header-account__register__regist > a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  /* キャッシュバックとは */
  .header-account__help {
    margin-top: 12px;
    font-size: 12px;
  }
  .header-account__help__link {
    display: flex;
    align-items: center;
    width: fit-content;
  }
  .header-account__help__icon {
    flex-shrink: 0;
    margin-right: 3px;
  }
  /* 会員情報 */
  .header-account__info__item {
    text-align: center;
  }
  .header-account__info__item:not(:first-child) {
    margin-top: 20px;
  }
  .header-account__info__item > dt {
    padding-bottom: 5px;
    border-bottom: 1px solid #b3b3b3;
    font-size: 15px;
    line-height: 1.4;
  }
  .header-account__info__item > dd {
    margin-top: 10px;
    font-weight: bold;
    font-size: 25px;
    line-height: 1.2;
  }
  dd.header-account__info__premium {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 15px;
  }
  .header-account__info__premium_regist {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-weight: normal;
    font-size: 14px;
  }
  .header-account__info__link {
    display: inline-block;
    height: 30px;
    margin-left: 10px;
    padding: 6px 20px;
    background-color: #f2f2f2;
    border-radius: 50px;
  }
  .header-account__info__link:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  /* メルマガ登録 */
  .header-account__mailmag {
    margin-top: 20px;
    font-weight: bold;
    font-size: 15px;
  }
  .header-account__mailmag__link {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
  }
  .header-account__mailmag__icon {
    flex-shrink: 0;
    margin-right: 15px;
  }
  /* 登録情報の確認 */
  .header-account__confirmation {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
  }
  .header-account__confirmation__link {
    display: inline-block;
    position: relative;
    height: 30px;
    padding: 2px 25px;
    border: 1px solid #000;
    border-radius: 50px;
  }
  .header-account__confirmation__link:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  /* ログアウト */
  .header-account__logout {
    margin-top: 15px;
    font-size: 15px;
    text-align: center;
  }
  .header-account__logout a {
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  .header-account__logout a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 0;
    height: 0;
    border-width: 5px 0 5px 9px;
    border-style: solid;
    border-color: transparent transparent transparent #b3b3b3;
  }

  /* ------------------------------------------------------
   * Header__important
  ------------------------------------------------------ */
  .Header__important {
    display: none;
    background-color: #ffeef0;
  }
  .Header__important__inner {
    display: flex;
    margin: 0 auto;
    width: 1200px;
    background-color: #ffeef0;
  }
  .Header__important__head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 140px;
    padding: 15px 10px;
    background-color: #ffd9dd;
  }
  .Header__important__title {
    color: #ac2330;
    font-weight: bold;
    font-size: 14px;
  }
  .Header__important__body {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 8px 30px;
  }
  .Header__important__list {
    display: flex;
    flex-flow: row wrap;
  }
  .Header__important__item {
    margin-right: 25px;
    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.65em;
    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 {
    margin: 0 auto;
    padding: 0 20px;
    width: 1200px;
  }
  .Footer__body .Footer__inner {
    padding: 35px 20px;
    background-color: #000;
  }
  .Footer__guide {
    display: none;
  }
  .footer-snav__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 20px 0;
  }
  .footer-snav__item {
    padding: 0 16px;
    line-height: 1.4;
  }
  .footer-snav__item > a {
    font-size: 12px;
  }
  .footer-snav__item:not(:first-child) {
    border-left: 1px solid #232b35;
  }

  .footer-mnav {
    display: flex;
    justify-content: space-between;
  }
  .footer-mnav__category {
    width: calc(100% - (20px * 4) / 5);
  }
  .footer-mnav__category:not(:first-child) {
    margin-left: 25px;
  }
  .footer-mnav__title {
    padding-bottom: 5px;
    border-bottom: 1px solid #b3b3b3;
    color: #b3b3b3;
    font-weight: bold;
  }
  .footer-mnav__title:not(:first-of-type) {
    margin-top: 20px;
  }
  .footer-mnav__list {
    margin-top: 10px;
    font-size: 12px;
  }
  .footer-mnav__item:not(:first-child) {
    margin-top: 5px;
  }
  .footer-mnav__title a,
  .footer-mnav__title a:visited,
  .footer-mnav__item a,
  .footer-mnav__item a:visited {
    color: #b3b3b3;
  }

  .footer-copyright {
    margin-top: 70px;
    color: #b3b3b3;
    font-size: 10px;
    text-align: center;
  }

  /* ======================================================
   * Assist
  ====================================================== */
  /* ------------------------------------------------------
   * menu-service
  ------------------------------------------------------ */
  .menu-service {
    padding: 80px;
  }
  .menu-service__title {
    padding-bottom: 5px;
    border-bottom: 1px solid #5f6b78;
    font-weight: bold;
  }
  .menu-service__subtitle {
    padding-bottom: 8px;
    border-bottom: 1px solid #d2dce6;
    font-size: 14px;
    font-weight: bold;
  }
  .menu-service__column {
    display: flex;
    flex-flow: row wrap;
  }
  .menu-service__section {
    width: calc((100% - 20px) / 2);
    margin-top: 35px;
    margin-left: 20px;
  }
  .menu-service__section:nth-of-type(2n + 1) {
    margin-left: 0;
  }
  .menu-service__item {
    border-bottom: 1px solid #d2dce6;
  }
  .menu-service__link {
    display: flex;
    align-items: center;
  }
  .menu-service__image {
    flex-shrink: 0;
    margin-right: 14px;
  }
  .menu-service__name {
    flex-grow: 1;
  }
  /* ------------------------------------------------------
   * menu-setting
  ------------------------------------------------------ */
  .menu-setting__title {
    padding: 7px 20px 4px;
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    background-color: #000;
  }
  .menu-setting__body {
    display: flex;
    background-color: #f2f2f2;
    overflow: hidden;
  }
  .menu-setting__column {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 40px 45px;
    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: 15px 40px 45px;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .menu-setting__cont {
    width: calc((100% - 30px) / 2);
  }
  .menu-setting__subtitle {
    position: relative;
    margin-bottom: 5px;
    font-size: 28px;
    text-align: center;
  }
  .menu-setting__subtitle span {
    display: block;
    position: absolute;
    top: 4px;
    right: calc(50% - 3em);
  }
  .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: 90px;
    padding: 5px;
    border-right: 1px solid #ccc;
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    vertical-align: middle;
    background-color: #666;
  }
  .menu-setting__table td,
  .menu-setting__area__table td {
    width: calc(100% - 90px);
    padding: 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: 14px;
  }
  .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;
    align-items: center;
    padding: 10px 15px;
  }
  .menu-setting__text {
    width: calc(100% - 40px);
    font-size: 18px;
    text-align: center;
  }
  .menu-setting__detail {
    position: relative;
    display: none;
  }
  .menu-setting__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .menu-setting__head__text {
    font-size: 14px;
  }
  .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 {
    display: inline-block;
    padding: 5px 20px 3px;
    color: #fff;
    font-size: 14px;
    background-color: #666;
    border-radius: 50px;
  }
  .menu-setting__head__back a:visited {
    color: #fff;
  }
  .menu-setting__head__back a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  .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: 130px;
  }
  .menu-setting__area__table td {
    width: calc(100% - 130px);
  }

  /* ------------------------------------------------------
   * ad-area
  ------------------------------------------------------ */
  .ad-area {
    text-align: center;
  }
  .ad-area.margin-wide {
    margin: 30px 0;
  }
  .ad-area.margin-middle {
    margin: 15px 0;
  }
  .ad-area div {
    margin: 0 auto;
  }

  /* ------------------------------------------------------
   * colorbox
  ------------------------------------------------------ */
  #cboxContent {
    margin-top: 20px;
    padding-top: 55px;
    background: none;
  }
  /*------------------------------------------------------
  * css sprite
  ------------------------------------------------------*/
  .sprite {
    background-image: url("../images/css_sprite_pc.png");
    background-repeat: no-repeat;
  }
  /*********************企業・サイトロゴ*********************/
  .sprite.fmv-icon {
    width: 82px;
    height: 24px;
    background-position: 0 0;
  }
  /*********************検索エリア*********************/
  /*google*/
  .sprite.google-icon {
    width: 60px;
    height: 30px;
    background-position: -448px 0;
  }
  /*suggest*/
  .sprite.suggest-icon {
    width: 23px;
    height: 29px;
    background-position: -509px 0;
  }
  /*検索ボタン*/
  .sprite.search-icon {
    width: 19px;
    height: 19px;
    background-position: -125px 0;
  }
  /*検索タブ*/
  .sprite.type-web-icon {
    width: 14px;
    height: 14px;
    background-position: -614px 0;
  }
  .sprite.type-img-icon {
    width: 14px;
    height: 14px;
    background-position: -629px 0;
  }
  .sprite.type-movie-icon {
    width: 14px;
    height: 14px;
    background-position: -645px 0;
  }
  .sprite.type-amazon-icon {
    width: 14px;
    height: 14px;
    background-position: -662px 0;
  }
  /*設定*/
  .sprite.setting-icon {
    width: 30px;
    height: 30px;
    background-position: -146px 0;
  }
  /*キャッシュバック*/
  .sprite.cashback-nav-icon {
    width: 32px;
    height: 30px;
    background-position: -241px 0;
  }
  /*********************ニュースエリア*********************/
  /*newアイコン*/
  .sprite.new-icon {
    width: 36px;
    height: 17px;
    background-position: -534px -19px;
  }
  /*newアイコン ver2*/
  .sprite.new-v2-icon {
    width: 55px;
    height: 20px;
    background-position: 0 -96px;
  }
  /*prアイコン*/
  .sprite.pr-icon {
    width: 36px;
    height: 17px;
    background-position: -534px 0;
  }
  /*ビジネスアイコン*/
  .sprite.business-icon {
    width: 55px;
    height: 20px;
    background-position: -57px -96px;
  }
  /*ランキング1位*/
  .sprite.ranking-icon {
    width: 30px;
    height: 25px;
    background-position: -311px 0;
  }
  /*ランキング2位*/
  .home-news-ranking__item:nth-child(2) .sprite.ranking-icon {
    width: 30px;
    height: 25px;
    background-position: -343px 0;
  }
  /*ランキング3位*/
  .home-news-ranking__item:nth-child(3) .sprite.ranking-icon {
    width: 30px;
    height: 25px;
    background-position: -375px 0;
  }
  /*********************ログインエリア*********************/
  /*人アイコン*/
  .sprite.account-icon {
    width: 12px;
    height: 16px;
    background-position: -83px 0;
  }
  /*鍵アイコン*/
  .sprite.login-icon {
    width: 22px;
    height: 23px;
    background-position: -424px 0;
  }
  /*？アイコン*/
  .sprite.help-icon {
    width: 15px;
    height: 15px;
    background-position: -407px 0;
  }
  /*メルマガ*/
  .sprite.mailmag-icon {
    width: 30px;
    height: 22px;
    background-position: -95px 0;
  }
  /*********************ホームページ設定*********************/
  .sprite.homepage-icon {
    width: 22px;
    height: 19px;
    background-position: -869px -16px;
  }
  /*********************モールエリア*********************/
  /*cashback*/
  .sprite.cashback-icon {
    width: 16px;
    height: 16px;
    background-position: -678px 0;
  }
  /*********************サポート*********************/
  /*FMVサポート*/
  .sprite.support-icon {
    width: 32px;
    height: 32px;
    background-position: -170px -62px;
  }
  /*ウイルス・セキュリティ情報*/
  .sprite.virusInfo-icon {
    width: 32px;
    height: 32px;
    background-position: -136px -62px;
  }
  /*別タブ遷移*/
  .sprite.blank-icon {
    width: 11px;
    height: 10px;
    background-position: -601px 0;
  }
  /*********************サービス*********************/
  /*ニュース*/
  .sprite.news-icon {
    width: 32px;
    height: 32px;
    background-position: -68px -62px;
  }
  /*天気*/
  .sprite.weather-icon {
    width: 32px;
    height: 32px;
    background-position: -34px -62px;
  }
  /*占い*/
  .sprite.uranai-icon {
    width: 32px;
    height: 32px;
    background-position: 0 -62px;
  }
  /*地図*/
  .sprite.map-icon {
    width: 32px;
    height: 32px;
    background-position: -272px -62px;
  }
  /*ゲーム*/
  .sprite.game-icon {
    width: 32px;
    height: 32px;
    background-position: -238px -62px;
  }
  /*ビンゴ*/
  .sprite.bingo-icon {
    width: 32px;
    height: 32px;
    background-position: -204px -62px;
  }
  /*FMV プレミアム*/
  .sprite.fmvpremium-icon {
    width: 32px;
    height: 32px;
    background-position: -306px -62px;
  }
  /*キャッシュバックモール*/
  .sprite.mall-icon {
    width: 32px;
    height: 32px;
    background-position: -340px -62px;
  }
  /*インターネット・回線速度測定*/
  .sprite.speed-icon {
    width: 32px;
    height: 32px;
    background-position: -102px -62px;
  }
  /*FMVまいにち雑学クイズ*/
  .sprite.quiz-icon {
    width: 32px;
    height: 32px;
    background-position: -374px -62px;
  }
  /*エクセル関数の便利帳*/
  .sprite.excel-list-icon {
    width: 32px;
    height: 32px;
    background-position: -408px -62px;
  }
  /*ショートカットキー一覧*/
  .sprite.shortcutkeys-list-icon {
    width: 32px;
    height: 32px;
    background-position: -442px -62px;
  }
  /*パソコン自習室*/
  .sprite.pcstudy-icon {
    width: 32px;
    height: 32px;
    background-position: -476px -62px;
  }
  /*FMVスポーツ*/
  .sprite.fmvsports-icon {
    width: 32px;
    height: 32px;
    background-position: -510px -62px;
  }
  /*マネ活Navi*/
  .sprite.manekatsu-icon {
    width: 32px;
    height: 32px;
    background-position: -544px -62px;

  }
  /*きらめく*/
  .sprite.kirameku-icon {
    width: 32px;
    height: 32px;
    background-position: -578px -62px;
  }
  /*********************サービスアイコン*********************/
  /*電話サポート使い放題*/
  .sprite.premium-icon {
    width: 100px;
    height: 100px;
    background-position: -408px -118px;
  }
  /*ソフト使い放題*/
  .sprite.sofutoku-icon {
    width: 100px;
    height: 100px;
    background-position: -306px -118px;
  }
  /*FMV カード*/
  .sprite.fmvcard-icon {
    width: 100px;
    height: 100px;
    background-position: -510px -220px;
  }
  /*セキュリティソフト*/
  .sprite.mcafee-icon {
    width: 100px;
    height: 100px;
    background-position: -204px -118px;
  }
  /*月額セキュリティソフト*/
  .sprite.security-icon {
    width: 100px;
    height: 100px;
    background-position: -102px -118px;
  }
  /*ネット詐欺対策ソフト*/
  .sprite.sagiwall-icon {
    width: 100px;
    height: 100px;
    background-position: -306px -220px;
  }
  /*FMVデータクラウド*/
  .sprite.fmvdatacloud-icon {
    width: 100px;
    height: 100px;
    background-position: -408px -220px;
  }
  /*訪問サポート*/
  .sprite.visit-support-icon {
    width: 100px;
    height: 100px;
    background-position: -612px -220px;
  }
  /*オンライン学習*/
  .sprite.manabi-icon {
    width: 100px;
    height: 100px;
    background-position: 0 -118px;
  }
  /*訪問レッスン*/
  .sprite.visit-lesson-icon {
    width: 100px;
    height: 100px;
    background-position: -204px -220px;
  }
  /*FMVキッズ*/
  .sprite.kids-icon {
    width: 100px;
    height: 100px;
    background-position: -102px -220px;
  }
  /*パソコン・スマホ活用術*/
  .sprite.pck-blog-icon {
    width: 100px;
    height: 100px;
    background-position: -510px -118px;
  }
  /*エクセル関数の便利帳*/
  .sprite.excel-icon {
    width: 100px;
    height: 100px;
    background-position: -714px -118px;
  }
  /*ショートカットキー一覧*/
  .sprite.shortcutkeys-icon {
    width: 100px;
    height: 100px;
    background-position: -612px -118px;
  }
  /*電話レッスンかけ放題*/
  .sprite.tel-lesson-icon {
    width: 100px;
    height: 100px;
    background-position: -714px -220px;
  }
  /*デスクトップ壁紙*/
  .sprite.wallpaper-icon {
    width: 100px;
    height: 100px;
    background-position: 0 -220px;
  }
  /*パソコン書籍*/
  .sprite.book-icon {
    width: 100px;
    height: 100px;
    background-position: -1020px -118px;
  }
  /*写真デジタル変換*/
  .sprite.photo-icon {
    width: 100px;
    height: 100px;
    background-position: -918px -118px;
  }
  /*ビデオDVD変換*/
  .sprite.dubbing-icon {
    width: 100px;
    height: 100px;
    background-position: -816px -118px;
  }
  /*********************カルーセルアイコン*********************/
  .sprite.prev-icon {
    width: 40px;
    height: 40px;
    background-position: 0 -322px;
  }
  .sprite.next-icon {
    width: 40px;
    height: 40px;
    background-position: -42px -322px;
  }
  /*********************天気・星座設定アイコン*********************/
  .sprite.weather-set-icon {
    width: 40px;
    height: 40px;
    background-position: -546px -364px;
  }
  .sprite.uranai-set-icon {
    width: 40px;
    height: 40px;
    background-position: -504px -364px;
  }
  /*********************星座*********************/
  /*牡羊座*/
  .sprite.aries-icon {
    width: 40px;
    height: 40px;
    background-position: -378px -364px;
  }
  /*おうし座*/
  .sprite.taurus-icon {
    width: 40px;
    height: 40px;
    background-position: -336px -364px;
  }
  /*ふたご座*/
  .sprite.gemini-icon {
    width: 40px;
    height: 40px;
    background-position: -294px -364px;
  }
  /*かに座*/
  .sprite.cancer-icon {
    width: 40px;
    height: 40px;
    background-position: -252px -364px;
  }
  /*しし座*/
  .sprite.leo-icon {
    width: 40px;
    height: 40px;
    background-position: -210px -364px;
  }
  /*おとめ座*/
  .sprite.virgo-icon {
    width: 40px;
    height: 40px;
    background-position: -168px -364px;
  }
  /*てんびん座*/
  .sprite.libra-icon {
    width: 40px;
    height: 40px;
    background-position: -126px -364px;
  }
  /*さそり座*/
  .sprite.scorpio-icon {
    width: 40px;
    height: 40px;
    background-position: -83px -364px;
  }
  /*いて座*/
  .sprite.sagittarius-icon {
    width: 40px;
    height: 40px;
    background-position: -42px -364px;
  }
  /*やぎ座*/
  .sprite.capricorn-icon {
    width: 40px;
    height: 40px;
    background-position: -462px -364px;
  }
  /*みずがめ座*/
  .sprite.aquarius-icon {
    width: 40px;
    height: 40px;
    background-position: 0 -364px;
  }
  /*うお座*/
  .sprite.pisces-icon {
    width: 40px;
    height: 40px;
    background-position: -420px -364px;
  }
}