@charset "UTF-8";
/* ======================================================
 * fmworld.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 769px)
 * Print
====================================================== */
/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 769px) {
  .spOnly {
    display: none;
  }
  .wrap {
    position: relative;
  }
  img[height="1"][width="1"] {
    position: absolute;
  }

  /*======================================================
  * css sprite
  ======================================================*/
  .sprite {
    background-image: url("../images/common_sprite_pc.png");
    background-repeat: no-repeat;
  }
  /*********************企業・サイトロゴ*********************/
  .sprite.fmv-icon {
    width: 82px;
    height: 24px;
    background-position: 0 0;
  }
  /*********************ログインエリア*********************/
  /*人アイコン*/
  .sprite.account-icon {
    width: 12px;
    height: 16px;
    background-position: -84px 0;
  }
  /*鍵アイコン*/
  .sprite.login-icon {
    width: 22px;
    height: 23px;
    background-position: -97px 0;
  }
  /*？アイコン*/
  .sprite.help-icon {
    width: 15px;
    height: 15px;
    background-position: -121px 0;
  }
  /*メルマガ*/
  .sprite.mailmag-icon {
    width: 30px;
    height: 22px;
    background-position: -137px 0;
  }

  /* ======================================================
   * 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);
  }

  /* ======================================================
   * 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;
  }

  /* ======================================================
   * main
  ====================================================== */
  .main {
    background-color: #f7f7f7;
  }
  .main a,
  .main a:visited {
    color: #2f368e;
    text-decoration: underline;
    transition: none;
  }
  .main a:hover {
    text-decoration: underline;
  }

  /* ======================================================
   * ad
  ====================================================== */
  .ad-area {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
  }

  /* ======================================================
   * breadcrumbs
  ====================================================== */
  .breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #6a7684;
    font-size: 0;
  }
  .breadcrumbs-list {
    padding: 0 0 30px;
  }
  .breadcrumbs.type-ad .breadcrumbs-list {
    padding-top: 5px;
  }
  .breadcrumbs-item {
    position: relative;
    display: inline;
    padding-left: 18px;
    font-size: 13px;
  }
  .breadcrumbs-item:first-child {
    padding-left: 0;
  }
  .breadcrumbs-item::before {
    content: "＞";
    display: block;
    position: absolute;
    top: 0;
    left: 4px;
    height: 20px;
  }
  .breadcrumbs-item:first-child::before {
    content: none;
  }
  .main .breadcrumbs-item a,
  .main .breadcrumbs-item a:visited {
    color: #206ac5;
    text-decoration: underline;
  }
  .main .breadcrumbs-item a:hover {
    text-decoration: none;
  }

  /* ======================================================
   * pagetop
  ====================================================== */
  .pagetop {
    position: fixed;
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    width: 55px;
    height: 55px;
    bottom: 50px;
    right: 10px;
    overflow: hidden;
    z-index: 1;
  }
  .pagetop a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    background-color: #dce0e3;
    border-radius: 5px;
  }
  .pagetop a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -4px 0 0 -6px;
    border-top: 2px solid #5f6b78;
    border-right: 2px solid #5f6b78;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
/* ======================================================
 * Print
====================================================== */
