@charset "UTF-8";
/* FMWORLDナビゲーション
   ----------------------------------------------------------------- */
/*
 * 開くボタン
 */
.fmw-nav__open {
  margin: 10px 16px 0;
  padding-top: 3px;
  padding-bottom: 3px;
}

@media (min-width: 769px) {
  .fmw-nav__open {
    display: none;
  }
}
/*
 * 閉じるボタン
 */
.fmw-nav__close {
  position: absolute;
  z-index: 3000;
  top: 0;
  display: none;
  width: 16.7%;
  height: 16.7vw;
  text-indent: -9999px;
  pointer-events: none;
  background-image: url("/platform/pc/common/img2019/common/btn_close.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 40%;
}

.fmw-nav.is-open + p .fmw-nav__close {
  display: block;
}

/*
 * ナビ本体
 */
.fmw-nav li {
  padding-left: 0;
}
.fmw-nav li::before {
  display: none;
}

@media (min-width: 769px) {
  .fmw-nav {
    position: relative;
    max-width: 1280px;
    margin: 30px auto 20px;
  }
  .fmw-nav::before {
    position: absolute;
    z-index: -1;
    /*left: calc(640px - 50vw);*/
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    background: #000;
  }
}
@media (max-width: 768px) {
  .fmw-nav {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
  }

  .fmw-nav__bg {
    position: fixed;
    z-index: 3000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
  }
}
/*
 * 親メニュー
 */
.fmw-nav > ul {
  background: #000;
}
.fmw-nav > ul > li > a {
  text-decoration: none;
  color: #fff;
}

.fmw-nav__hook--sp.toggle-hook {
  position: relative;
  cursor: pointer;
}

.fmw-nav__hook--sp.toggle-hook::before {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  content: "";
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.is-open .fmw-nav__hook--sp.toggle-hook::before {
  transform: rotate(-45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

@media (min-width: 769px) {
  .fmw-nav > ul {
    display: flex;
    width: 100%;
  }
  .fmw-nav > ul > li {
    width: 20%;
  }
  .fmw-nav > ul > li.is-open > a, .fmw-nav > ul > li:hover > a {
    color: #000;
    background: #eee;
    font-weight: bold;
  }
  .fmw-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 40px;
    padding: 0 30px 0 0.5em;
    cursor: pointer;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .fmw-nav > ul {
    position: absolute;
    z-index: 3000;
    top: 0;
    right: 0;
    display: block;
    width: 83.3%;
    background: #000;
  }
  .fmw-nav > ul > li {
    width: 100%;
  }
  .fmw-nav > ul > li + li {
    border-top: 1px solid #fff;
  }
  .fmw-nav > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 10px 10px 40px;
  }

  .fmw-nav__hook--sp.toggle-hook::before {
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    margin-top: 0;
    transition: none;
    -webkit-transform: none;
    transform: none;
    border: none;
  }

  .is-open .fmw-nav__hook--sp.toggle-hook::before {
    transform: none;
    border: none;
  }

  .fmw-nav__hook--sp.toggle-hook::before, .fmw-nav__hook--sp::after, .fmw-nav__hook--sp::before {
    position: absolute;
    top: 20px;
    left: 10px;
    display: block;
    width: 20px;
    height: 2px;
    content: "";
    background: #fff;
  }
  .fmw-nav__hook--sp::after {
    left: 19px;
    width: 2px;
    height: 20px;
    margin-top: -9px;
  }
  .fmw-nav__hook--sp.is-open::after {
    display: none;
  }
}
/*
 * 子メニュー
 */
.fmw-nav__content {
  display: none;
  width: 100%;
  padding: 30px 45px;
  background: #eee;
}
.fmw-nav__content hr {
  display: block;
  height: 1px;
  margin: 2em 0;
  border: none;
  background: #969696;
}
.fmw-nav__content a {
  display: inline-block;
  padding-left: 21px;
  text-decoration: none;
}
.fmw-nav__content a::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: -5px 14px 0 -23px;
  content: "";
  transform: rotate(45deg);
  vertical-align: middle;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.fmw-nav__content a:hover {
  text-decoration: underline;
}

.fmw-nav__label {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.fmw-nav__label a {
  position: relative;
  padding-right: 30px;
}

.fmw-nav__label a::before {
  content: none;
}

.fmw-nav__label a::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

@media (min-width: 769px) {
  .fmw-nav__content {
    position: absolute;
    z-index: 1;
    left: 0;
  }

  .is-open .fmw-nav__content {
    z-index: 10;
  }
}
@media (max-width: 768px) {
  .fmw-nav__content {
    padding: 25px 30px;
  }
  .fmw-nav__content ul {
    padding-left: 20px;
  }
  .fmw-nav__content hr {
    margin: 25px 0;
  }
  .fmw-nav__content a {
    display: block;
  }

  .fmw-nav__label a {
    display: inline-block;
    padding-left: 0;
  }

  .fmw-nav__content__colspan > *:not(:first-child) {
    margin-top: 25px;
  }
}
/*
 * 小メニュー カラム連結
 */
@media (min-width: 769px) {
  .fmw-nav__content__inner--cols {
    display: flex;
    margin-right: -30px;
    margin-left: -30px;
  }
  .fmw-nav__content__inner--cols div:not(:first-child) {
    border-left: 1px solid #969696;
  }

  .fmw-nav__content__col1 {
    width: calc(100% / 3);
    padding: 0 30px;
  }

  .fmw-nav__content__colspan {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% / 3 * 2);
  }
  .fmw-nav__content__colspan .fmw-nav__content__col1 {
    width: 50%;
  }

  .fmw-nav__content__col1 + p {
    margin-top: 2em;
  }
}
@media (max-width: 768px) {
  .fmw-nav__content__inner--cols > div:not(:first-child) {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #969696;
  }

  .fmw-nav__content__inner--cols--indent {
    padding-left: 10px;
  }
}
/*
 * 子メニュー カテゴリタイトル
 */
.fmw-nav__catttl {
  display: block;
  font-weight: bold;
}

@media (min-width: 769px) {
  .fmw-nav__catttl {
    margin-bottom: 1.5em;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .fmw-nav__catttl {
    margin-bottom: 15px;
  }
}
/*
 * 余白区切り
 */
.fmv-nav__spacer {
  margin-top: calc(1.6em + 24px) !important;
}
