/* ======= マイページ ======= */
.MyPageLink a {
    display: block;
    text-align: center;
    padding: 6px 5px 8px 6px;
    width: 96px;
    border-radius: 0px 0px 16px 16px;
    color: #fff;
    background-color: #56a520;
    font-size: 1.4rem;
    line-height: 1.4;
}
.MyPageLink a span {
    position: relative;
    display: inline-block;
    padding: 0 17px 0 20px;
    text-align: left;
}
.MyPageLink a span::before,
.MyPageLink a span::after {
    content: "";
    display: inline-block;
    position: absolute;
}
.MyPageLink a span::before {
    top: 18px;
    transform: translateY(-50%);
    left: 0;
    width: 15px;
    height: 18px;
    background: url(/assets/common/img/icon-mypage01.svg) no-repeat center /
        contain;
}
.MyPageLink a span::after {
    top: 20px;
    transform: translateY(-50%);
    right: 0;
    width: 14px;
    height: 14px;
    background: url(/assets/common/img/icon-mypage02.svg) no-repeat center /
        contain;
}
.MyPageLink a:hover {
    padding-top: 14px;
    background-color: #448319;
}

/* ======= スタッフブログ ======= */
.StaffLink a {
    padding: 7px 8px 7px 11px;
    width: 96px;
    border-radius: 0px 0px 16px 16px;
    line-height: 1.4;
    font-size: 1.4rem;
    color: #fff;
    background-color: #6E7D93;
}
.StaffLink a span {
    position: relative;
    display: inline-block;
}
.StaffLink a span::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 14px;
    right: -19px;
    background: url(/assets/common/img/icon-mypage02.svg) no-repeat center /
        contain;
    width: 14px;
    height: 14px;
}
.StaffLink a:hover {
    padding-top: 16px;
    background-color: #627488;
}

/* ======= サポート ======= */
.SupportLink a {
    padding: 27px 6px 27px 8px;
    width: 96px;
    border-radius: 0px 0px 16px 16px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #fff;
    background-color: #4179af;
    position: relative;
}
.SupportLink a span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 24px;
}
.SupportLink a span::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 5px;
    background: url(/assets/common/img/icon-support.svg) no-repeat center /
        contain;
    width: 20px;
    height: 18px;
}
.SupportLink a:hover {
    padding-top: 35px;
    background-color: #256D9F;
}

/* ======= X ======= */
.XLink a {
    display: block;
    text-align: center;
    padding: 17px 10px 16px 12px;
    width: 96px;
    border-radius: 0px 0px 16px 16px;
    color: #fff;
    background-color: #000;
    font-size: 1.4rem;
    line-height: 1.4;
}
.XLink a span {
    position: relative;
    display: inline-block;
    padding: 0 30px;
    text-align: center;
}
.XLink a span::before,
.XLink a span::after {
    content: "";
    display: inline-block;
    position: absolute;
}
.XLink a span::before {
    top: 18px;
    transform: translateY(-100%);
    left: 0;
    width: 15px;
    height: 18px;
    background: url(/assets/common/img/icon-X.svg) no-repeat center /
        contain;
}
.XLink a span::after {
    top: 20px;
    transform: translateY(-120%);
    right: 0;
    width: 14px;
    height: 14px;
    background: url(/assets/common/img/icon-mypage02.svg) no-repeat center /
        contain;
}
.XLink a:hover {
    padding-top: 26px;
    background-color: #333;
}

/* ======= Hover transition ======= */
.MyPageLink a,
.StaffLink a ,
.SupportLink a,
.XLink a {
    transition: all .15s;
}

/* ======= page style ======= */
.list-OtherLink--top{
    position: fixed;
	top: 0;
	right: 4%;
    display: flex;
    gap: 16px;
    z-index: 40;
}
.navOtherBtn {
    display: flex;
    gap: 8px;
    padding-right: 8px;
}


/* =======
style Header 上ナビゲーション
======= */
.navTop {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    height: 68px;
}
.navTop > li:nth-of-type(1) {
	width: 15%;
}
.navTop > li:nth-of-type(2) {
    width: 40%;
}
/* navLogo */
.navLogo a {
    padding: 8px 0;
    margin-left: 10%;
    height: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.navLogo a:hover {
    opacity: 0.7;
}
/* navMainBtn */
.navMainBtn {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.navMainBtn li {
    width: 32.47%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #eaeaea;
}
.page_sis .navMainBtn li.sisBtn {
	background-color: #56a520;
}
.page_hikari .navMainBtn li.hikariBtn {
	background-color: #f89829;
}
.page_docomo .navMainBtn li.docomoBtn {
	background-color: #cc0033;
}
.navMainBtn a {
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
}
.navMainBtn a:hover {
    color: #fff;
}
.navMainBtn li.sisBtn:hover a {
    background-color: #56a520;
}
.navMainBtn li.hikariBtn:hover a {
    background-color: #f89829;
}
.navMainBtn li.docomoBtn:hover a {
    background-color: #cc0033;
}

/* ブレイクポイント */
@media screen and (max-width: 1200px) {
    .navMainBtn li {
        font-size: 1.6rem;
    }
}

/* =======
style navSubBtn
======= */
.navSubBtn {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 8px;
	font-size: 1.3rem;
	font-weight: bold;
    gap: 16px;
	transition: all 0.15s;
}
.navSubBtn li:nth-child(2) a {
	position: relative;
	padding-left: 17px;
}
.navSubBtn li:nth-child(2) a::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	left: 0;
	width: 15px;
	height: 14px;
	background: url(../../common/img/Logo-support.svg) no-repeat center / contain;
}
.navSubBtn a{
    padding: 4px 16px;
}
.navSubBtn a:hover {
	opacity: 0.7;
}
/* ブレイクポイント */
@media screen and (max-width: 1240px) {
    .navSubBtn a{
        padding: 4px;
    }
}
@media screen and (max-width: 1200px) {
    .navSubBtn {
        gap: 8px;
    }
}

.sp_only {
    display: none !important;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
        sec_news(お知らせ)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.newsTop.newsInner{
    border: solid 4px #c70e2d;
    border-radius: 36px;
    background-color: #fff;
    max-width: 720px;
    margin: 0 auto;
    padding: 8px 0;
}
.newsItem {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 8px 70px 8px 24px;
    transition: all 0.2s;
}
.newsItem::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: 35px;
  background: url(../img/img-newsArrow.svg) center no-repeat;
  background-size: contain;
  width: 9px;
  height: 14px;
  transition: right 0.2s;
}
.newsItem:hover::before {
  right: 28px;
}
.newsText {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.date {
  position: relative;
  padding-right: 10px;
  padding-left: 28px;
  margin-right: 10px;
  border-right: 4px double #666666;
}
.date::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  background: url(../img/icon-att.svg) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.service {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 4px double #666666;
}

.newsItem:hover {
  opacity: 0.8;
}

.footerList > li.coListItem--btab > a {
    display: inline-block;
}
.footerList > li.coListItem--btab > a::after {
    content: "";
    display: inline;
    margin-left: 5px;
    background: url(../img/icon-Tab.svg) no-repeat center / contain;
    padding-right: 12px;
}
.footerHead {
    font-weight: 700;
    margin-bottom: 5px;
}
.footerDesc {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.667;
    padding-bottom: 15px;
}