@charset "utf-8";


/** ***************************************************************************
 * タイトル
 * ************************************************************************* */
header {
 height: 165px;
}


/* :::::::: ブレイクポイント :::::::: */
@media print,
screen and (max-width: 1280px) {
 header {
  height: 155px;
 }
}

@media print,
screen and (max-width: 900px) {
 header {
  height: 150px;
 }
}

/* :::::::: ブレイクポイント :::::::: */
@media print,
screen and (max-width: 768px) {
 header {
  height: 70px;
 }
}

/** ***************************************************************************
 * リニューアルヘッダー
 * ************************************************************************* */
#renewal-header .f-link {
 width: 100%;
 height: 100%;
 display: block;
 transition: 0.3s;
}

#renewal-header .f-link:hover {
 transition: 0.3s;
 opacity: 0.7;
}

#renewal-header a:link,
#renewal-header a:visited,
#renewal-header a:hover,
#renewal-header a:active {
 color: inherit;
 /* 親要素から色を引き継ぐ */
 /* または希望する色を指定する */
}

/* 画像
----------------------- */
#renewal-header .f-img {
 width: 100%;
 display: block;
}

.renewal-header__wrapper {
 display: flex;
 flex-direction: column;
 z-index: 999;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 margin: 0 auto;
 /* min-width: 960px; */
}

.renewal-header__common {
 border-bottom: 5px solid #002f81;
 background: rgba(255, 255, 255, .9);
 position: fixed;
 width: 100%;
 top: 0;
 left: 0;
}

@media screen and (max-width: 767px) {
 .renewal-header__wrapper {
  min-width: 320px;
  width: 100%;
  position: fixed;
  height: 70px;
  overflow-y: scroll;
  overflow-x: hidden;
 }

 .renewal-header__wrapper.is-open {
  background: #e5f2ff;
 }

 .renewal-header__common {
  width: 100%;
  position: absolute;
  top: 0;
  background: #fff;
 }
}

.renewal-header__common-inner {
 width: 95%;
 margin: 0 auto;
 display: grid;
 grid-template-columns: auto auto;
 grid-template-rows: auto auto;
 place-items: end;
 justify-content: space-between;
 position: relative;
}

.renewal-header__logo {
 grid-column: 1/2;
 grid-row: 1/3;
 height: 100%;
 display: grid;
 place-content: center;
 place-items: center;
}

@media screen and (max-width: 1280px) {
 .renewal-header__logo {
  width: 160px;
 }
}

@media screen and (max-width: 767px) {
 .renewal-header__common-inner {
  display: flex;
  align-items: center;
  width: 100%;
 }

 .renewal-header__logo {
  width: 100px;
  height: 70px;
  margin-left: 5%;
 }
}

@media screen and (max-width: 370px) {
 .renewal-header__logo {
  width: 80px;
  height: 70px;
  margin-left: 5%;
 }
}

.renewal-header__top {
 grid-column: 2/3;
 grid-row: 1/2;
}

@media screen and (max-width: 767px) {
 .renewal-header__top {
  position: absolute;
  top: 70px;
  width: 100%;
 }
}

.renewal-header__top .top-wrapper {
 display: flex;
 align-items: center;
 margin: 7px 0;
}

.renewal-header__top .top-wrapper .top-list {
 display: flex;
 column-gap: 60px;
 align-items: center;
 font-size: 16px;
 color: #002f81 !important;
}

.renewal-header__top .top-wrapper .top-list li.icon {
 font-size: 1.8em;
}

.renewal-header__top .top-wrapper .top-list li.icon--youtube {
 color: #cc0000 !important;
}

.renewal-header__top .top-wrapper .lang {
 color: #002f81;
 display: flex;
 margin-left: 60px;
 border: 2px solid #002f81;
}

.renewal-header__top .top-wrapper .lang li.item {
 width: 60px;
 text-align: center;
}

.renewal-header__top .top-wrapper .lang li.item--active {
 background: #002f81;
}

.renewal-header__top .top-wrapper .lang li.item--active a:link {
 color: #fff !important;
 pointer-events: none;
 cursor: default;
}

.renewal-header__top .top-wrapper .sp-lang {
 display: none;
}

@media screen and (max-width: 900px) {
 .renewal-header__top .top-wrapper .top-list {
  column-gap: 30px;
  font-size: 14px;
  ;
 }
}

@media screen and (max-width: 767px) {
 .renewal-header__top .top-wrapper .top-list {
  display: none;
 }

 .renewal-header__top .top-wrapper .lang {
  display: none;
 }

 .renewal-header__top .top-wrapper .sp-lang {
  display: block;
  position: absolute;
  width: 100vw;
  height: 40px;
  background: #000;
  color: #fff;
  top: 0;
  text-align: center;
  font-size: 16px;
 }

 .renewal-header__top .top-wrapper .sp-lang span {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  height: 100%;
 }

 .renewal-header__top .top-wrapper .sp-lang i {
  font-size: 21px;
 }
}

.renewal-header__bottom {
 grid-column: 2/3;
 grid-row: 2/3;
}

.renewal-header__bottom .btm-wrapper {
 display: flex;
}

.renewal-header__bottom .btm-wrapper ul.tab-area {
 display: flex;
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 column-gap: 20px;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li {
 width: 230px;
 height: 60px;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link {
 background: #d0e8ff;
 height: 100%;
 width: 100%;
 display: grid;
 place-content: center;
 transition: 0.3s;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link:hover {
 opacity: 0.6;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link span {
 font-size: 18px;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link {
 color: #414141 !important;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link--active {
 background: #002f81 !important;
 color: #fff !important;
 cursor: default;
 pointer-events: none;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link--active:hover {
 opacity: 1;
}

.renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link--active span {
 border-bottom: 2px solid #ffe100;
}

@media screen and (max-width: 1280px) {

 .renewal-header__bottom .btm-wrapper ul.tab-area li {
  width: 200px;
  height: 50px;
 }

 .renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link span {
  font-size: 15px;
 }
}

@media screen and (max-width: 1025px) {
 .renewal-header__bottom .btm-wrapper ul.tab-area li br.sp_block {
  display: none;
 }
}

@media screen and (max-width: 900px) {
 .renewal-header__bottom .btm-wrapper ul.tab-area li {
  width: 140px;
  height: 50px;
 }
}

@media screen and (max-width: 767px) {
 .renewal-header__bottom .btm-wrapper ul.tab-area li br.sp_block {
  display: block;
 }

 .renewal-header__bottom {
  position: absolute;
  width: 100%;
  top: 110px;
  height: 100%;
 }

 .renewal-header__bottom .btm-wrapper ul.tab-area {
  display: flex;
  position: absolute;
  column-gap: 0;
  align-items: center;
  top: -110px;
  right: calc(10% + 40px);
  left: auto;
  bottom: auto;
  transform: none;
 }

 .renewal-header__bottom .btm-wrapper ul.tab-area li {
  width: 100px;
  height: 70px;
 }

 .renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link span {
  line-height: 1.2;
  font-size: 14px;
  text-align: center;
  padding-bottom: 3px;
 }
}

@media screen and (max-width: 420px) {
 .renewal-header__bottom .btm-wrapper ul.tab-area li {
  width: 70px;
  height: 70px;
 }

 .renewal-header__bottom .btm-wrapper ul.tab-area li a.tab-link span {
  font-size: 3vw;
 }
}

.renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn {
 height: 55px;
 width: 300px;
 margin: 0 0 10px 0;
}

.renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn .ainet-link {
 height: 100%;
 width: 100%;
 display: grid;
 place-content: center;
 border: 1px solid #ffcf00;
 border-radius: 50px;
 box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
 background: linear-gradient(to top, #ffcf00 0%, #ffcf00 45%, #ffe100 55%, #ffe100 100%);
 transition: 0.3s;
 font-size: 16px;
 cursor: pointer;
}

.renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn .ainet-link:hover {
 box-shadow: none;
 transition: 0.3s;
 opacity: 0.7;
}

.renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn span.inner {
 display: flex;
 align-items: center;
 color: #002f81;
 font-weight: bold;
 font-size: 18px;
}

.renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn span.inner .logo {
 width: 138px;
 height: 31px;
 margin-right: 5px;
}

.renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn span.inner .logo img {
 object-fit: contain;
}

.renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn span.inner .arrow {
 padding-bottom: 10px;
 margin-left: 8px;
}

@media screen and (max-width: 1280px) {
 .renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn {
  width: 220px;
  height: 50px;
  margin: 0 0 5px 0;
 }

 .renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn .ainet-link {
  font-size: 14px;
 }

 .renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn span.inner {
  font-size: 16px;
 }

 .renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn span.inner .logo {
  width: 100px;
  height: 22px;
  margin-right: 5px;
 }

}

@media screen and (max-width: 900px) {
 .renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn {
  height: 45px;
  width: 200px;
 }
}

@media screen and (max-width: 767px) {
 .renewal-header__bottom .btm-wrapper .ainet-area {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
  margin: 0 auto;
 }

 .renewal-header__bottom .btm-wrapper .ainet-area .ainet-btn {
  height: 50px;
  width: 80%;
  margin: 0 auto;
 }
}


.sp-mobile_login {
 display: none;
 width: 90%;
 margin: 0 auto;
 height: 60px;
}

.sp-mobile_login a.app-link {
 background: #00478d;
 color: #fff !important;
 display: block;
 border-radius: 10px;
 box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.sp-mobile_login a.app-link .inner {
 display: flex;
 width: 90%;
 margin: 0 auto;
 height: 100%;
 align-items: center;
 justify-content: space-between;
 column-gap: 10px;
 font-size: 16px;
 font-weight: bold;
}

.sp-mobile_login a.app-link .pic {
 width: 27px;
 height: 36px;
 display: block
}

.sp-mobile_login a.app-link .txt-wrapper {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 line-height: 1.3;
}

.sp-mobile_login a.app-link .top {
 font-size: .8em
}

@media screen and (max-width: 1280px) {
 .renewal-header__login-contents {
  top: 103px;
 }

 .renewal-header__login-contents .login-wrapper {
  padding: 30px 40px 0;
  /* min-width: 800px; */
 }

 .renewal-header__login-contents .login-block {
  width: 380px;
 }

 .renewal-header__login-contents .login-block ul.ainet-list li {
  padding: 0 5px;
  border-right: 1px solid #002f81;
 }

 .renewal-header__login-contents ul.btn-list {
  width: 380px;
 }

 .renewal-header__login-contents ul.btn-list a.btn-link {
  font-size: 14px;
  padding: 6px 8px;
 }

 .renewal-header__login-contents .btn-list a.btn-link i {
  padding-left: 6px;
 }
}

@media screen and (max-width: 960px) {
 .renewal-header__login-contents {
  top: 98px;
 }

 .renewal-header__login-contents .login-block ul.ainet-list {
  font-size: 1.4vw;
  line-height: 1.2;
  white-space: nowrap;
 }

 .renewal-header__login-contents .login-btnarea {
  column-gap: 10px;
  margin: 0 40px 30px;
 }

 .renewal-header__login-contents .btn-list {
  display: flex;
  justify-content: flex-start !important;
  column-gap: 10px;
  width: calc(50% - 5px) !important;
 }

 .renewal-header__login-contents .btn-list li {
  width: 100%;
 }

 .renewal-header__login-contents ul.btn-list a.btn-link {
  font-size: 1.5vw;
  padding: 7px 7px;
  line-height: 1.2;
  display: block;
  white-space: nowrap;
 }
}

@media screen and (max-width: 767px) {
 .sp-mobile_login {
  display: block;
 }

 .renewal-header__login-contents {
  border-radius: 0;
  box-shadow: none;
  position: relative;
  top: 110px;
  left: 0;
  transform: none;
  padding: 20px 0 30px 0;
  transition: .2s;
  opacity: 1;
  pointer-events: visible;
 }

 .renewal-header__login-contents::after {
  display: none;
 }

 .renewal-header__login-contents .login-wrapper {
  padding: 0;
  width: 100%;
  min-width: 320px;
  flex-direction: column-reverse;
  column-gap: none;
 }

 .renewal-header__login-contents .login-block .btn {
  display: none;
 }

 .renewal-header__login-contents .login-block {
  width: 100%;
 }

 .renewal-header__login-contents .login-block .sp-btn {
  display: block;
  width: 90%;
  margin: 14px auto 20px;
  height: 40px;
  position: relative;
 }

 .renewal-header__login-contents .login-block .sp-btn::after {
  position: absolute;
  content: "\f0da";
  font-family: "fontawesome";
  font-weight: 900;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #002f81 !important;
 }

 .renewal-header__login-contents .login-block .sp-btn a.sp-login-link {
  background: #e6e6e6;
  border: 1px solid #002f81;
  border-radius: 7px;
  color: #002f81 !important;
  font-weight: bold;
  display: grid;
  place-content: center;
 }

 .renewal-header__login-contents .login-btnarea {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  column-gap: 0;
  row-gap: 0;
  margin: 0 auto;
  width: 90%;
 }

 .renewal-header__login-contents .login-btnarea ul.btn-list {
  width: 100% !important;
  display: flex;
  justify-content: center !important;
  row-gap: 0;
  column-gap: 0 !important;
 }

 .renewal-header__login-contents .login-btnarea li {
  width: 50%;
  height: 40px;
  display: block;
 }

 .renewal-header__login-contents .login-btnarea li a.btn-link {
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: left;
  position: relative;
  padding: 0 0 0 0;
  border: 1px solid #bbb !important;
 }

 .renewal-header__login-contents .login-btnarea li a.btn-link span {
  padding: 0 0 0 7px;
  font-size: 12px;
 }

 .renewal-header__login-contents .login-btnarea li a.btn-link i {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  font-size: 12px;
 }

 .renewal-header__login-contents .login-block .ainet-list {
  display: none !important;
 }

 .renewal-header__login-contents .login-block .title {
  display: none;
 }

 .renewal-header__login-contents .login-block .logo {
  display: none;
 }

 .renewal-header__login-contents .login-block .m-logo {
  display: none;
 }

 .renewal-header__login-contents .login-block .download-area {
  display: none;
 }

}

.renewal-nav__hamburger {
 display: none;
 position: relative;
 width: 40px;
 height: 70px;
 cursor: pointer;
 z-index: 100;
 margin-right: 5%;
}

@media screen and (max-width: 767px) {
 .renewal-nav__hamburger {
  display: block;
 }
}

.renewal-nav__hamburger-span {
 position: absolute;
 display: block;
 width: 40px;
 height: 3px;
 background-color: #00478d;
 left: 0;
 right: 0;
 margin: auto;
 transition: all 0.3s ease;
}

.renewal-nav__hamburger-span:nth-child(1) {
 top: 25px;
}

.renewal-nav__hamburger-span:nth-child(2) {
 top: 0;
 bottom: 0;
}

.renewal-nav__hamburger-span:nth-child(3) {
 bottom: 24px;
}

.renewal-nav__hamburger.is-open .renewal-nav__hamburger-span:nth-child(1) {
 top: 37px;
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}

.renewal-nav__hamburger.is-open .renewal-nav__hamburger-span:nth-child(2) {
 opacity: 0;
}

.renewal-nav__hamburger.is-open .renewal-nav__hamburger-span:nth-child(3) {
 bottom: 30px;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}

.renewal-header__user {
 background: rgba(255, 255, 255, 1);
 width: 100%;
 font-weight: bold;
 position: fixed;
 top: 113px;
 left: 0;
}

.renewal-header__user--shinki {
 box-shadow: 2px 2px 20px rgba(28, 24, 85, 0.2);
}

.renewal-header__user--top {
 display: none;
}

.renewal-header__user .sp-top-list {
 display: none;
}

.renewal-header__user--kizon.fixed {
 box-shadow: 6px 6px 12px rgba(197, 192, 214, 0.3);
}

.renewal-header__user ul.user-list {
 display: flex;
 position: relative;
 height: 55px;
}

.renewal-header__user ul.user-list--top {
 display: none;
}

.renewal-header__user ul.user-list--shinki {
 column-gap: 120px;
 justify-content: center;
}

.renewal-header__user ul.user-list--kizon {
 justify-content: center;
 margin: 0 auto;
 width: 100%;
}

.renewal-header__user ul.user-list li.sp-block {
 display: none;
}

.renewal-header__user ul.user-list--kizon li.user-item {
 width: calc(12.5% - 20px);
 display: block;
}

.renewal-header__user ul.user-list li a.user-title {
 display: grid;
 place-content: center;
 position: relative;
}

.renewal-header__user ul.user-list a.user-title.is-show {
 background: #002f81;
 color: #fff !important;
}

.renewal-header__user ul.user-list a.user-title:hover {
 opacity: 1 !important;
 transition: 0 !important;
}

.renewal-header__user ul.user-list--shinki li a.user-title {
 padding: 0 10px 0 20px;
 color: #414141 !important;
}

.renewal-header__user ul.user-list--shinki span.inner {
 font-size: 18px;
}

.renewal-header__user ul.user-list--kizon li a.user-title {
 line-height: 1.2;
 text-align: center;
 color: #002f81 !important;
}

.renewal-header__user ul.user-list--kizon a.user-title span.inner {
 width: 100%;
 height: 30px;
 display: grid;
 place-content: center;
 border-right: 1px solid #bbb;
}

.renewal-header__user ul.user-list--kizon span.inner {
 font-size: 16px;
}

.renewal-header__user ul.user-list--kizon ul.user-sublist span.inner {
 font-size: 18px;
}

.renewal-header__user ul.user-list--kizon a.user-title span.inner--none {
 border-right: none !important;
}

.renewal-header__user ul.user-list a span.icon {
 position: relative;
}

.renewal-header__user--shinki ul.user-list a span.icon::after {
 position: absolute;
 content: "\f107";
 font-family: "fontawesome";
 font-weight: 900;
 right: -25px;
 font-size: 16px;
 top: 0px;
 color: #000;
}

.renewal-header__user ul.user-list i {
 font-size: 30px;
 color: #002f81;
 padding-right: 10px;
}

.renewal-header__user ul.user-list a.user-title.is-show span.icon::after {
 color: #fff !important;
}

.renewal-header__user ul.user-list a.user-title.is-show i {
 color: #fff;
}

.renewal-header__user ul.user-list li a.user-title--single:hover {
 opacity: .6 !important;
}

.renewal-header__user ul.user-list i {
 font-size: 30px;
 color: #002f81;
 padding-right: 10px;
}

.renewal-header__user div.user-subarea {
 position: absolute;
 background: rgba(0, 47, 129, 1);
 color: #fff;
 top: 55px;
 width: 100%;
 height: auto;
 left: 50%;
 transform: translateX(-50%);
 opacity: 0;
 pointer-events: none;
 box-sizing: border-box;
 padding: 20px;
 transition: .3s;
}

.renewal-header__user--shinki div.user-subarea {
 width: 100%;
}

.renewal-header__user ul.user-sublist {
 display: grid;
 grid-template-columns: auto auto auto;
 place-content: center;
 row-gap: 20px;
 column-gap: 10vw;
}

.renewal-header__user div.user-subarea.is-show {
 opacity: 1;
 pointer-events: visible;
 transition: .3s;
}

.renewal-header__user ul.user-sublist li a {
 display: grid;
 place-content: center;
}

.renewal-header__user ul.user-sublist span.inner {
 position: relative;
}

.renewal-header__user ul.user-sublist span.inner::before {
 position: absolute;
 content: "\f105";
 font-family: "fontawesome";
 font-weight: 900;
 left: -20px;
}

.renewal-header__user ul.sp-user-list-extra {
 display: none;
}

@media screen and (max-width: 1280px) {
 .renewal-header__user {
  top: 103px;
 }

 .renewal-header__user ul.user-list--shinki {
  column-gap: 70px;
 }

 .renewal-header__user ul.user-list--shinki i {
  font-size: 24px;
 }

 .renewal-header__user ul.user-sublist.is-show {
  opacity: 1 !important;
  pointer-events: visible !important;
 }

 .renewal-header__user ul.user-list--kizon li.user-item {
  width: 12.5%;
  display: block;
 }

 .renewal-header__user ul.user-list--kizon ul.user-sublist span.inner {
  font-size: 16px;
 }
}

@media screen and (max-width: 1023px) {
 .renewal-header__user {
  top: 98px;
 }

 .renewal-header__user ul.user-list--shinki {
  column-gap: 20px;
 }

 .renewal-header__user ul.user-list--shinki span.inner {
  font-size: 16px;
 }

 .renewal-header__user ul.user-list--kizon ul.user-sublist span.inner {
  font-size: 14px;
 }

 .renewal-header__user ul.user-sublist {
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  row-gap: 20px;
 }

 .renewal-header__user ul.user-list--kizon span.inner {
  font-size: 13px;
 }

 .renewal-header__user ul.user-list--kizon a.user-title span.inner {
  font-size: 1.4vw;
 }
}

@media screen and (max-width: 767px) {
 .renewal-header__user {
  width: 100%;
  position: absolute;
  top: 200px;
  background: #e5f2ff;
  padding-bottom: 90px;
  border-bottom: none;
 }

 .renewal-header__user ul.user-list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
 }

 .renewal-header__user ul.user-list li {
  background: #fff;
  border-bottom: 1px solid #cccccc;
  height: 100%;
 }

 .renewal-header__user ul.user-list--kizon li.user-item {
  width: 100%;
  display: block;
 }


 .renewal-header__user ul.user-list li.sp-block {
  display: block;
 }

 .renewal-header__user ul.user-list li a.user-title {
  color: #002f81 !important;
  display: grid;
  place-content: center;
  height: 50px !important;
  padding: 0 0 0 40px;
 }

 .renewal-header__user ul.user-list--kizon li a.user-title {
  text-align: left;
 }

 .renewal-header__user ul.user-list--kizon a.user-title span.inner {
  width: 100%;
  height: 30px;
  display: grid;
  place-content: center start;
  border-right: 1px solid #bbb;
  font-size: 16px;
 }

 .renewal-header__user ul.user-list li a {
  padding: 0 0 0 40px;
 }

 .renewal-header__user ul.user-list a.user-title.is-show {
  background: #fff;
  color: #002f81 !important;
 }

 .renewal-header__user ul.user-list a.user-title.is-show span.icon::after {
  color: #002f81 !important;
 }

 .renewal-header__user ul.user-list a.user-title.is-show i {
  color: #002f81 !important;
 }


 .renewal-header__user ul.user-list li a::before {
  position: absolute;
  content: "\f105";
  font-family: "fontawesome";
  font-weight: 900;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
 }

 .renewal-header__user ul.user-list a span.inner {
  display: block;
  width: calc(100% - 40px) !important;
  height: 100%;
  line-height: 50px;
 }

 .renewal-header__user ul.user-list a span.icon::after {
  position: absolute;
  content: "\2b";
  font-family: "fontawesome";
  font-weight: 900;
  right: 20px;
  font-size: 20px;
  color: #002f81;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
 }

 .renewal-header__user ul.user-list a.is-show span.icon::after {
  content: "\f068";
 }

 .renewal-header__user ul.user-sublist li a::before {
  display: none;
 }

 .renewal-header__user ul.user-list i {
  display: none;
 }

 .renewal-header__user div.user-subarea {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(0);
  height: 0;
  padding: 0 0px;
  background: #fff;
  transition: none;
 }

 .renewal-header__user div.user-subarea.is-show {
  height: 100%;
  position: relative;
  transition: none;
 }

 .renewal-header__user ul.user-sublist {
  display: grid;
  grid-template-columns: 1fr;
  place-content: start;
  row-gap: 0px;
  column-gap: 0px;
  width: 100%;
 }

 .renewal-header__user ul.user-sublist li {
  background: #f5f5f5 !important;
  height: 50px;
  display: block;
  line-height: 50px;
  width: 100%;
 }

 .renewal-header__user ul.user-sublist a {
  display: grid;
  place-content: center;

 }

 .renewal-header__user ul.user-sublist span.inner {
  font-size: 14px;
  color: #414141 !important;
 }

 .renewal-header__user ul.user-sublist span.inner::after {
  display: none;
 }

 .renewal-header__user ul.sp-top-list {
  display: block;
 }

 .renewal-header__user ul.sp-top-list li {
  background: #fff;
  border-bottom: 1px solid #cccccc;
  height: 50px;
 }

 .renewal-header__user ul.sp-top-list li a {
  position: relative;
  display: grid;
  place-content: center;
  padding-left: 40px;
 }

 .renewal-header__user ul.sp-top-list li a::before {
  position: absolute;
  content: "\f105";
  font-family: "fontawesome";
  font-weight: 900;
  left: 20px;
 }

 .renewal-header__user ul.sp-top-list li a i {
  font-size: 20px;
  width: 26px;
 }

 .renewal-header__user ul.sp-top-list li a i.fa-youtube {
  color: #cc0000;
 }

 .renewal-header__user ul.sp-top-list li a i.fa-facebook-square {
  color: #002f81;
 }

 .renewal-header__user ul.sp-user-list-extra {
  display: block;
 }

 .renewal-header__user ul.sp-user-list-extra li {
  background: #fff;
  border-bottom: 1px solid #cccccc;
  height: 50px;
 }

 .renewal-header__user ul.sp-user-list-extra li a {
  position: relative;
  font-size: 14px;
  font-weight: lighter;
  display: grid;
  place-content: center;
  padding-left: 40px;
 }

 .renewal-header__user ul.sp-user-list-extra li a::before {
  position: absolute;
  content: "\f105";
  font-family: "fontawesome";
  font-weight: 900;
  left: 20px;
 }
}

@media screen and (max-width: 767px) {
 .js-renewal-header__wrapper.is-open {
  height: 100%;
  position: fixed;
  top: 0;
 }

 .js-renewal-header__top,
 .js-ainet-area,
 .js-renewal-header__login-contents,
 .js-renewal-header__user {
  display: none;
 }

 .js-renewal-header__top.is-open,
 .js-renewal-header__login-contents.is-open,
 .js-ainet-area.is-open,
 .js-renewal-header__user.is-open {
  display: block;
 }
}