.cmp-header {
  width: 100%;
  height: 125px;
  margin-bottom: 30px;
}

.cmp-header .header-top {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 20;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  background-color: #fff;
}

.cmp-header .header-top .money-wisdom-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 13px 20px 0px;
  z-index: 10;
  position: relative;
}

.cmp-header .header-top .money-wisdom-header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1000px;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.cmp-header .header-top .money-wisdom-header .header-content .logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  font-size: 10px;
  color: #fff;
  font-weight: 400;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto 0;
}

.cmp-header .header-top .money-wisdom-header .header-content .logo-container a {
  text-decoration: none;
}

.cmp-header .header-top .money-wisdom-header .header-content .logo-container a .logo {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin: auto 0;
  width: 200px;
}

.cmp-header .header-top .money-wisdom-header .header-content .logo-container .logo_img {
  margin-bottom: 0px;
}

.cmp-header .header-top .money-wisdom-header .header-content .logo-container .tagline {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 170px;
  margin: 0;
  color: #b60081;
}

.cmp-header .header-top .money-wisdom-header .header-content .header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.cmp-header .header-top .money-wisdom-header .header-content .header-actions button {
  font: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
}

.cmp-header .header-top .money-wisdom-header .header-content .header-actions .menu-container {
  display: flex;
  align-items: center;
}

.cmp-header .header-top .money-wisdom-header .header-content .header-actions .menu-container .menu-icon {
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 24px;
  -ms-flex-item-align: center;
  align-self: center;
}

.cmp-header .header-top .navi-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  font: 400 12px/1 Meiryo, sans-serif;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}

.cmp-header .header-top .navi-wrapper .navi-wrap {
  position: relative;
  width:1000px;
  margin: 0 auto;
}

.navi-wrap::before,
.navi-wrap::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: max(0px, calc((100vw - 1000px) / 2));
  height: 4px;
  background-color: #efefef;
}

.navi-wrap::before {
  right: 100%;
}

.navi-wrap::after {
  left: 100%;
}

.navi-inner {
  overflow-x: auto;
  scrollbar-width: none;     /* Firefox用 */
  -ms-overflow-style: none;  /* Edge用 */
}

.navi-inner::-webkit-scrollbar {
  display: none;             /* Chrome/Safari用 */
}

.cmp-header .header-top .main-navigation .navigation-items {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  margin: 0;
  min-width: 100%;
  transition: transform 0.3s ease;
  transform: translateX(0);
  border-bottom: 4px solid #efefef;
  position: relative;
  width: max-content;
}

.navigation-items li {
  flex-shrink: 0;
  margin-bottom: 0;
  min-width: 50px;
}

.navigation-items li a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 15px 0;
  color: #1a1a1a;
  font-size: 16px;
}

.navigation-items li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: #de0098;
}

.navigation-items li a.current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: #de0098;
}

.arrow {
  position: absolute;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
}

.arrow.left {
  border-right: 1px solid #e6e6e6;
  left: 0;
}

.arrow.right {
  border-left: 1px solid #e6e6e6;
  right: 0;
}

.Hide {
  display: none;
}

.navi-wrapper button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  appearance: none;
}

.navigation-divider {
  min-height: 2px;
  width: 100%;
  border: 2px solid #efefef;
}

.cmp-header .header-top.hide {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.cmp-header .sub-navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  font: 400 13px Meiryo, sans-serif;
  max-width: 100%;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
  z-index: 10;
}

.cmp-header .sub-navigation-container .sub-navigation-bar {
  background-color: #d72b8f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0;
  max-width: 100%;
}

.cmp-header .sub-navigation-container .sub-navigation-bar .sub-navigation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 0;
}

.cmp-header .sub-navigation-container .sub-navigation-bar .sub-navigation-list .sub-navigation-item {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin: auto 0;
}

.cmp-header .sub-navigation-container .sub-navigation-bar .sub-navigation-list .sub-navigation-item a {
  color: #fff;
  text-decoration: none;
}

.cmp-header .sub-navigation-container .sub-navigation-bar .sub-navigation-list .sub-navigation-divider {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 0;
  height: 13px;
  margin: auto 0;
  border: 1px solid #d3d3d3;
}

.cmp-header .sub-navigation-container.hide {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.cmp-header .sub-navigation-container.no-transition {
  -webkit-transition: none;
  transition: none;
}

.cmp-header #mask {
  display: block;
  visibility: hidden;
  opacity: 0;
  background-color: black;
  position: absolute;
  overflow: hidden;
}

.cmp-header #mask .hambuger-menu.featured-content {
  position: absolute;
  opacity: 0;
  width: 30%;
  right: -30%;
  top: 0;
  background-color: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 0 30px;
  -webkit-transition: opacity 0.7s, right 0.7s;
  transition: opacity 0.7s, right 0.7s;
}

.cmp-header #mask .hambuger-menu.featured-content .close-button {
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 10px;
  color: #b70081;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  width: 35px;
  float: right;
  margin: 10px 10px 0 0;
}

.cmp-header #mask .hambuger-menu.featured-content .close-button .close-icon {
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1;
  padding: 0 30px;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .section-title {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 600;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 30px;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper h2:first-of-type {
  margin-top: 10px;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px 0 0;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list .feature-item {
  margin-bottom: 0;
  width: calc(100% / 3);
  text-align: center;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list .feature-item:nth-of-type(n+4) {
  margin-top: 16px;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list .feature-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list .feature-item a .feature-icon {
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list .feature-item a .feature-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 12px;
  color: #b70081;
  line-height: 1.4;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list .feature-item a .arrow-icon {
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 12px;
}

.cmp-header #mask .hambuger-menu.featured-content .content-wrapper .feature-list .feature-item:first-child {
  margin-top: 0;
}

.cmp-header #mask .hambuger-menu.featured-content .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 8px;
  font-size: 16px;
  color: #1f1f1f;
  font-weight: 400;
  text-align: center;
  margin: 20px 20px 0 20px;
}

.cmp-header #mask .hambuger-menu.featured-content .button-group:nth-of-type(n+3) {
  margin-top: 8px;
}

.cmp-header #mask .hambuger-menu.featured-content .button-group a {
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cmp-header #mask .hambuger-menu.featured-content .button-group a .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  width: 100%;
  cursor: pointer;
}

.cmp-header #mask .hambuger-menu.featured-content .button-group a .button .button-text {
  background-color: #fff;
  padding: 1.2rem 1.4rem;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  width: 100%;
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.cmp-header #mask .hambuger-menu.featured-content .button-group a .button .button-text::before {
  border-right: 1px solid #666;
  border-top: 1px solid #666;
  content: "";
  height: 8px;
  right: 18px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
}

.cmp-header #mask .hambuger-menu.featured-content .divider {
  margin: 24px 22px 0;
  height: 1px;
  border: 1px solid #e6e6e6;
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section {
  margin-top: 30px;
  margin-left: 20px;
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section .section-title {
  font-size: 16px;
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section a {
  text-decoration: none;
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section a .cta-button {
  border-radius: 4px;
  position: relative;
  background-color: #de0098;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-weight: 700;
  text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 93%;
  height: 55px;
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section a .cta-button::after {
  content: url(/content/dam/abk/column/common/header/icons/blank_01.png);
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section a .cta-icon-left {
  aspect-ratio: 0.58;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 7px;
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section a .cta-text {
  border-radius: 4px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.cmp-header #mask .hambuger-menu.featured-content .cta-section a .cta-icon-right {
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 9px;
}

.cmp-header .disclaimer {
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 10px;
  font-size: 13px;
  color: #000;
  font-weight: 400;
  line-height: 1;
  margin-left: 20px;
}

.cmp-header .open#mask {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 100;
  visibility: visible;
  opacity: 1;
}

.cmp-header .open#mask .hambuger-menu.featured-content {
  right: 0%;
  opacity: 1;
  z-index: 30;
  overflow: auto;
  height: 100%;
}

.cmp-header .open#mask .hambuger-menu.featured-content.close {
  right: -30%;
  -webkit-transition: opacity 0.7s, right 0.7s;
  transition: opacity 0.7s, right 0.7s;
}

/* 中身1000px + 左右padding30pxづつの幅以下の時 */
@media (max-width: 1059px) {
  .cmp-header .header-top .navi-wrapper .navi-wrap {
    width: 100vw;
    padding-right: 30px;
    padding-left: 30px;
  }

  .navi-wrap::before,
  .navi-wrap::after {
    width: 30px;
  }

  .navi-wrap::before {
    left: 0px;
  }

  .navi-wrap::after {
    left: calc(100vw - 31px);
  }
}

@media (max-width: 767px) {

  .cmp-header #mask.open .hambuger-menu.featured-content {
    width: 95%;
  }

  .cmp-header #mask.open .hambuger-menu.featured-content.close {
    right: -85%;
  }

  .cmp-header .header-top .money-wisdom-header {
    max-width: 100%;
    padding: 0 10px;
  }

  .cmp-header .header-top .money-wisdom-header .header-content {
    max-width: 100%;
    margin: 8px 0;
  }

  .cmp-header .header-top .money-wisdom-header .header-content .logo-container {
    white-space: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 50%;
    display: inline;
  }

  .cmp-header .header-top .money-wisdom-header .header-content .logo-container a .logo {
    width: 170px;
  }

  .cmp-header .header-top .money-wisdom-header .header-content .logo-container .tagline {
    margin: 0;
    padding-top: 4px;
  }

  .cmp-header .header-top .money-wisdom-header .header-content .header-actions {
    white-space: initial;
    margin-top: 15px;
  }

  .cmp-header .header-top .money-wisdom-header .header-content .header-actions .search-container {
    white-space: initial;
  }

  .cmp-header .header-top .money-wisdom-header .header-content .header-actions .search-container .search-bar {
    white-space: initial;
  }

  .navi-wrapper {
    width: auto;
  }

  .cmp-header .header-top .main-navigation {
    white-space: initial;
  }

  .cmp-header .header-top .main-navigation .navigation-items {
    white-space: initial;
    gap: 24px;
  }

  .cmp-header .header-top .main-navigation .navigation-items li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .cmp-header .header-top .main-navigation .navigation-items li .navigation-item {
    margin: 0;
  }

  .cmp-header .header-top .navigation-divider {
    max-width: 100%;
  }

  .cmp-header .sub-navigation-container .sub-navigation-bar .sub-navigation-list {
    gap: 0px 20px;
  }
}

html.aem-AuthorLayer-Edit .cmp-header .header-top {
  position: relative;
  z-index: 20;
}

@media (max-width: 340px) {
  .cmp-header .header-top .main-navigation .navigation-items li .navigation-item {
    padding: 4px 6px;
  }
}