@charset "UTF-8";
/* ======================================================
 * fmworld.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 769px)
 * Print
====================================================== */

/* ------------------------------------------------------
 * Fonts
------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 769px) {
  .spOnly {
    display: none;
  }
  .wrap {
    position: relative;
  }
  img[height="1"][width="1"] {
    position: absolute;
  }

  /*======================================================
  * css fmvSprite
  ======================================================*/
  .fmvSprite {
    background-image: url("../img/common_sprite_pc.png");
    background-repeat: no-repeat;
  }
  /*********************企業・サイトロゴ*********************/
  .fmvSprite.fmv-icon {
    width: 82px;
    height: 24px;
    background-position: 0 0;
  }
  /*********************検索エリア*********************/
  /*google*/
  .fmvSprite.google-icon {
    width: 60px;
    height: 30px;
    background-position: -188px 0;
  }
  /*検索ボタン*/
  .fmvSprite.search-icon {
    width: 19px;
    height: 19px;
    background-position: -166px 0;
  }
  /*********************ログインエリア*********************/
  /*人アイコン*/
  .fmvSprite.account-icon {
    width: 12px;
    height: 16px;
    background-position: -84px 0;
  }
  /*鍵アイコン*/
  .fmvSprite.login-icon {
    width: 22px;
    height: 23px;
    background-position: -97px 0;
  }
  /*？アイコン*/
  .fmvSprite.help-icon {
    width: 15px;
    height: 15px;
    background-position: -121px 0;
  }
  /*メルマガ*/
  .fmvSprite.mailmag-icon {
    width: 30px;
    height: 22px;
    background-position: -137px 0;
  }

  /* ======================================================
   * Header
  ====================================================== */
  .Header {
    padding: 0 10px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    background-color: #000;
  }
  .Header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    height: 64px;
    margin: 0 auto;
    background-color: #000;
  }
  .Header__head {
    padding: 10px 0;
    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 {
    display: flex;
    align-items: center;
    height: 30px;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid #ccc;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
  }

  .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;
    margin: 0 -10px;
    background-color: #ffeef0;
  }
  .Header__important__inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    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 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .Footer__head,
  .Footer__head .Footer__inner {
    background-color: #fff;
  }
  .Footer__body,
  .Footer__body .Footer__inner {
    background-color: #000;
  }
  .Footer__foot,
  .Footer__foot .Footer__inner {
    background-color: #000;
  }
  .Footer__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .Footer__foot .Footer__inner {
    max-width: 1320px;
  }
  .Footer__guide {
    display: none;
  }
  /* サブメニュー */
  .footer-snav__list {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    padding: 20px 0;
    font-size: 12px;
    line-height: 1.4;
  }
  .footer-snav__item {
    padding: 0 16px;
  }
  .footer-snav__item:not(:first-child) {
    border-left: 1px solid #232b35;
  }
  /* メインメニュー */
  .footer-mnav {
    display: flex;
    justify-content: space-between;
    padding: 35px 0;
  }
  .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-gnav__list {
    display: flex;
    flex-flow: row wrap;
    padding: 16px 0;
    font-size: 14px;
    line-height: 1.4;
  }
  .footer-gnav__item:not(:first-child) {
    margin-left: 25px;
  }
  .footer-gnav__item a,
  .footer-gnav__item a:visited {
    color: #b3b3b3;
  }
  /* コピーライト */
  .footer-copyright {
    padding: 8px 20px 18px;
    color: #b3b3b3;
    font-size: 14px;
    text-align: center;
  }

  /* ======================================================
   * serviceHeader
  ====================================================== */
  .serviceHeader {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }
  .serviceHeader-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
  }
  .serviceHeader-head {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-height: 50px;
  }
  .serviceHeader-body {
    flex-grow: 1;
    margin-left: 20px;
  }
  .serviceHeader-foot {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    margin-left: 20px;
  }
  .serviceHeader-logo img {
    width: auto;
    height: 50px;
  }
  .serviceHeader-main {
    color: #000;
    font-weight: bold;
    font-size: 16px;
  }
  .serviceHeader-main a,
  .serviceHeader-main a:visited {
    color: #000;
  }
  .serviceHeader-main a:hover {
    text-decoration: none;
  }
  /* ヘッダー検索窓 */
  .serviceHeaderSearch {
    width: 100%;
    max-width: 595px;
  }
  .serviceHeaderSearch.pattern-inside {
    padding: 10px 8px;
    border: 1px solid #f2f2f2;
  }
  .serviceHeaderSearch-fieldset {
    display: flex;
    border: 1px solid #666;
    border-radius: 50px;
  }
  .pattern-inside .serviceHeaderSearch-fieldset {
    border-color: #5f6b78;
    border-radius: 3px;
  }
  .serviceHeaderSearch-input {
    display: flex;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 3px;
  }
  .serviceHeaderSearch-input::placeholder {
    color: #b1b1b1;
    font-size: 14px;
  }
  .serviceHeaderSearch-auxiliary {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 10px;
    background-color: #fff;
  }
  .serviceHeaderSearch-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    width: 80px;
    height: 32px;
    margin: 4px;
    border: none;
    outline: none;
    color: #fff;
    background-color: #666;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .pattern-inside .serviceHeaderSearch-submit {
    width: 40px;
    height: 40px;
    margin: 0;
    background-color: #5f6b78;
    border-radius: 0 1px 1px 0;
  }
  .serviceHeaderSearch-submit:hover {
    opacity: 0.7;
  }
  .serviceHeaderSearch-icon {
    display: block;
  }
  /* 検索切り替え */
  .serviceHeaderSearch-tab {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 40px;
  }
  .serviceHeaderSearch-tab::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #666;
  }
  .serviceHeaderSearch-wrapper {
    position: relative;
    height: 100%;
    user-select: none;
  }
  .serviceHeaderSearch-wrapper select {
    display: none;
  }
  .serviceHeaderSearch-select {
    height: 100%;
    border: none;
    font-size: 0;
    background-color: #fff;
    border-radius: 50px;
    appearance: none;
    -webkit-appearance: none;
  }
  .serviceHeaderSearch-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 15px;
    color: #666;
    font-size: 14px;
    line-height: 40px;
    background-color: #fff;
    border-radius: 50px 0 0 50px;
    cursor: pointer;
  }
  .serviceHeaderSearch-trigger::after {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    right: 15px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    width: 8px;
    height: 8px;
    transform: rotate(135deg);
    z-index: 1;
    pointer-events: none;
  }
  .serviceHeaderSearch-list {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    min-width: 100%;
    margin-top: 8px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 9px rgba(0,0,0,.2);
    transition: all .4s ease-in-out;
    z-index: 1;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
  }
  .serviceHeaderSearch-select.opened .serviceHeaderSearch-list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
  .serviceHeaderSearch-item {
    display: block;
    position: relative;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: all .3s ease-in-out;
  }
  .serviceHeaderSearch-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 1px;
    background-color: #ccc;
    transform: translateX(-50%);
  }
  .serviceHeaderSearch-item:first-of-type::before {
    content: none;
  }
  .serviceHeaderSearch-label {
    display: inline-block;
    width: 80px;
    height: 26px;
    line-height: 26px;
    border-radius: 20px;
  }
  .serviceHeaderSearch-item .type-amazon-icon {
    left: 17px;
  }
  .serviceHeaderSearch-item:hover .serviceHeaderSearch-label {
    background-color: #f7e2e4;
  }
  /* ユーザー情報 */
  .serviceHeaderInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    padding: 7px 20px;
    font-size: 14px;
    line-height: 1.2;
    background-color: #f2f2f2;
  }
  .serviceHeaderInfo-user {
    display: flex;
    justify-content: space-between;
  }
  .serviceHeaderInfo-userIcon {
    display: none;
  }
  .serviceHeaderInfo-name {
    display: flex;
    align-items: center;
    font-size: 16px;
    pointer-events: none;
  }
  .serviceHeaderInfo-name .type-em {
    margin-right: 5px;
    font-weight: bold;
    font-size: 18px;
  }
  .serviceHeaderInfo-name span:not(.type-em) {
    white-space: nowrap;
  }
  .serviceHeaderInfo-confirm {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-width: 43px;
    min-height: 50px;
    margin-left: 20px;
  }
  .serviceHeaderInfo-wrap {
    display: block;
    flex-shrink: 0;
    margin-left: 20px;
  }
  .serviceHeaderInfo-column {
    display: flex;
    padding: 3px 0 5px;
    background-color: #fff;
  }
  .pattern-notLogin .serviceHeaderInfo-column {
    padding: 0;
    background-color: transparent;
  }
  .serviceHeaderInfo-box {
    padding: 3px 15px 0;
  }
  .serviceHeaderInfo-box:not(:first-child) {
    border-left: 1px solid #f2f5f8;
  }
  .serviceHeaderInfo-ttl {
    color: #666;
    font-size: 12px;
  }
  .serviceHeaderInfo-cashback {
    display: none;
  }
  .serviceHeaderInfo-detail {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 5px;
  }
  .serviceHeaderInfo-txt span {
    font-weight: bold;
  }
  .serviceHeaderInfo-transition {
    margin-left: 20px;
  }
  a.serviceHeaderInfo-link {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    color: #666;
  }
  a.serviceHeaderInfo-link:visited {
    color: #666;
  }
  a.serviceHeaderInfo-link::before {
    content: "";
    position: absolute;
    display: block;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    transform: rotate(45deg);
  }
  .serviceHeaderInfo-message {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  a.serviceHeaderInfo-btn {
    display: flex;
    align-items: center;
    height: 36px;
    margin-left: 15px;
    padding: 0 22px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    background-color: #666;
    border-radius: 5px;
  }
  a.serviceHeaderInfo-btn:visited {
    color: #fff;
  }
  a.serviceHeaderInfo-btn:hover {
    opacity: 0.7;
  }
  a.serviceHeaderInfo-btn.pattern-login {
    background-color: #000;
  }
  .serviceHeaderInfo-loginIcon {
    flex-shrink: 0;
    margin-right: 8px;
  }
  /* サービス要素 */
  .serviceHeaderElement-period {
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    line-height: 1.4;
  }
  .serviceHeaderElement-period .type-em {
    font-size: 20px;
  }
  .serviceHeaderElement-period .type-highlight {
    color: #c4141c;
  }

  /* ======================================================
   * 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 {
    color: #6a7684;
    font-size: 0;
    background-color: #fff;
  }
  .breadcrumbs-list {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 15px 0;
    white-space: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumbs-list::-webkit-scrollbar {
    display: none;
  }
  .js-breadcrumbsFade .breadcrumbs-list::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 1;
  }
  .breadcrumbs-item {
    position: relative;
    display: inline;
    padding-left: 20px;
    font-size: 13px;
  }
  .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: #6a7684;
    text-decoration: none;
  }
  .main .breadcrumbs-item a:hover {
    text-decoration: underline;
  }

  /* ======================================================
   * 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
====================================================== */
@media print, screen and (max-width: 1024px) {
  .header-gnav__item {
    margin-left: 20px;
  }
}
@media print, screen and (max-width: 860px) {
  .header-gnav__list {
    flex-wrap: wrap;
    height: 100%;
  }
}