@charset "utf-8";
.common-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
.common-header__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 96px;
  margin: 0 auto;
}
.common-header_logo__image{
  width: 317px;
  height: auto;
}
.common-header-sp{
  display: none;
}
.common-header-nav{
  display: flex;
  gap: 40px;
  margin-left: 40px;
}
.common-header-nav__list{
  display: flex;
  align-items: center;
  gap: 38px;
}
.common-header-nav__link{
  position: relative;
  font-size: 16px;
  font-weight: 700;
}
.common-header-nav__link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 25px;
  height: 5px;
  margin: auto;
  visibility: hidden;
  content: "";
  opacity: 0;
  background-color: #172A88;
  transition: all 0.5s ease;
}
@media (hover: hover) {
  .common-header-nav__link:hover {
    color: #172A88;
  }
  .common-header-nav__link:hover::before {
    bottom: -90px;
    opacity: 1;
    visibility: visible;
  }
}
.common-header-nav-cta{
  display: flex;
  gap: 10px;
}
.common_cta__link{
  position: relative;
  display: grid;
  align-items: center;
  height: 41px;
  padding: 13px 15px;
  border-radius: 5px;
}

@media (hover: hover) {
  .common_cta__link.common_cta__link--blue:hover{
    color: #172A88;
    background: #fff;
    border: 1px solid #172A88;
  }
  .common_cta__link.common_cta__link--blue:hover .common_cta__icon::before{
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0s, opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    opacity: 0;
    transform: translateX(101%);
  }
  .common_cta__link.common_cta__link--blue:hover .common_cta__icon::after {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transform: translateX(0);
    opacity: 1;
  }
}
.common-header-nav-cta .common_cta__link.common_cta__link--gray{
  height: auto;
  padding: 20px 80px 20px 20px;
  width: 190px;
  padding: 13px 15px;
  font-size: 12px;
  font-weight: 700;
  background: #fafafa;
  border: 1px solid #d2d2d2;
}
.common-header-nav-cta .common_cta__link.common_cta__link--gray .common_cta__icon{
  content: "";
  position: absolute;
  top: 60%;
  right: 10px;
  width: 30px;
  height: 15px;
  transform: translateY(-50%);
  overflow: hidden;
}
.common-header-nav-cta .common_cta__link.common_cta__link--gray .common_cta__icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: url(/bridge/lp/ma01/asset/image/icon_arrow.svg) left center no-repeat;
  background-size: 100%;
}
.common-header-nav-cta .common_cta__link.common_cta__link--gray .common_cta__icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: url(/bridge/lp/ma01/asset/image/icon_arrow.svg) left center no-repeat;
  background-size: 100%;
  transform: translateX(-100px);
  opacity: 0;
}
.common-header-nav-cta .common_cta__link.common_cta__link--download{
  width: 150px;
  height: 41px;
  padding: 13px 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: #172A88;
  border: none;
  transition: .3s;
}
.common-header-nav-cta .common-header-nav-cta .common_cta__link.common_cta__link--download{
  padding-left: 15px;
}
.common-header-nav-cta .common_cta__link.common_cta__link--download::after{
  content: "";
  display: block;
  width: 14px;
  height: 5px;
  top: 20px;
  right: 15px;
  background-image: url(/bridge/lp/ma01/asset/image/icon_download-saucer-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: .3s;
}
.common-header-nav-cta .common_cta__link.common_cta__link--download .common_cta__icon::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 17.5px;
  width: 9px;
  height: 9px;
  background: url(/bridge/lp/ma01/asset/image/icon_download-arrow-white.svg) left center no-repeat;
  background-size: 100%;
}
.common-header-nav-cta .common_cta__link.common_cta__link--download .common_cta__icon::after {
  top: 11px;
  right: 17.5px;
  width: 9px;
  height: 9px;
  background: url(/bridge/lp/ma01/asset/image/icon_download-arrow-blue.svg) left center no-repeat;
  background-size: 100%;
}
@media (hover: hover) {
  .common_cta__link.common_cta__link--gray:hover {
    color: #828282;
  }
  .common_cta__link.common_cta__link--gray:hover .common_cta__icon::before{
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0s, opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    opacity: 0;
    transform: translateX(101%);
  }
  .common_cta__link.common_cta__link--gray:hover .common_cta__icon::after {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transform: translateX(0);
    opacity: 1;
  }
  .common_cta__link.common_cta__link--download:hover{
    color: #172A88;
    background: #fff;
    border: 1px solid #172A88;
  }
  .common_cta__link.common_cta__link--download:hover::after{
    background-image: url(/bridge/lp/ma01/asset/image/icon_download-saucer.svg);
  }
  .common_cta__link.common_cta__link--download:hover .common_cta__icon::before{
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0s, opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    opacity: 0;
    transform: translateY(101%);
  }
  .common_cta__link.common_cta__link--download:hover .common_cta__icon::after {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    transform: translateY(0);
  }
}
.common-header_navi_lower__item.common-header_navi_lower__item--sp{
  display: none;
}

/* responsive*/
@media screen and (max-width:1400px){
  .common-header-nav__link{
    font-size: 14px;
  }
  .common-header-nav__list{
    gap: 20px;
  }
}
@media screen and (max-width:1240px){
  .common-header_logo__image {
    width: 200px;
    height: 39px;
  }
  .common-header_navi_lower{
    gap: 28px;
  }
  .common-header_navi_lower__list{
    gap: 28px;
  }
}
@media screen and (max-width:1024px){
  .common-header {
    height: 59px;
    padding: 0;
    background-color: #fff;
  }
  .common-header__inner{
    height: 59px;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .common-header-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: initial;
    gap: 0;
  }
  .common-header-nav__item {
    position: relative;
    border-bottom: 1px solid #d2d2d2;
  }
  .common-header-nav__link::before {
    display: none;
  }
  .common-header-nav__item::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    background: url(/bridge/lp/ma01/asset/image/icon_arrow.svg) left center no-repeat;
    background-size: 100%;
  }
  .common-header-nav__link {
    height: 100%;
    display: block;
    padding: 20px;
    text-align: left;
    font-size: 16px;
  }
  .common-header_logo {
    padding-top: 0;
    padding-left: 15px;
  }
  .common-header-nav{
    display: none;
  }
  .common-header-nav.active{
    width: 100%;
    display: block;
    margin-top: 10px;
    margin-left: 0;
    background-color: #fafafa;
  }
  .common-header-sp{
    display: block;
    width: calc(100% - 215px);
    margin: 0 0 0 auto;
    padding-right: 15px;
  }
  .common-header-sp__hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 24px;
    margin: 0 0 0 auto;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
  }
  .common-header-sp__hamburger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 50px;
    background-color: #172A88;
    transition: all 0.5s ease;
  }
  .common-header-sp__hamburger::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 50px;
    background-color: #172A88;
    transition: all 0.5s ease;
  }
  .common-header-sp__hamburger>.common-header-sp__hamburger-text {
    display: inline-block;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .common-header-sp__hamburger>.common-header-sp__hamburger-text::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 50px;
    background-color: #172A88;
    transition: all 0.5s ease;
  }
  .common-header-sp__hamburger.active::before {
    top: 50%;
    left: auto;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .common-header-sp__hamburger.active::after {
    top: 50%;
    left: auto;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .common-header-sp__hamburger.active>.common-header-sp__hamburger-text::before {
    display: none;
  }
  .common-header_navi__menu-wrap.active {
    display: block;
    width: 100%;
  }
  .common-header_navi{
    width: 100%;
    padding-top: 10px;
  }
  .common-header_navi_upper{
    display: none;
  }
  .common-header_navi_lower{
    flex-direction: column;
    gap: 20px;
  }
  .common-header_navi_lower__list {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  .common-header_navi_lower__item{
    position: relative;
    border-bottom: 1px solid #d2d2d2;
  }
  .common-header_navi_lower__link{
    display: block;
    padding: 20px;
  }
  .common-header_navi_lower__item.common-header_navi_lower__item--sp{
    display: block;
  }
  .common-header_navi_lower__item::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    background: url(/bridge/lp/ma/asset/image/icon_arrow.svg) left center no-repeat;
    background-size: 100%;
  }
  .common-header_navi_lower__link::before{
    display: none;
  }
  .common-header_navi__overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 20;
  }
  .common-header_navi__overlay.active{
    display: block;
  }
  .common-header-nav-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 20px 0;
    padding: 0 20px;
  }
  .common_cta__link.common_cta__link--download{
    width: 335px;
    height: 47px;
    padding: 12px 0 0 93px;
    font-size: 16px;
  }
  .common_cta__link.common_cta__link--download .common_cta__icon::before{
    top: 16px;
    right: 52px;
  }
  .common_cta__link.common_cta__link--download .common_cta__icon::after {
    right: 52px;
  }
}