/*
common border
------------------------------------------------*/
@media screen and (min-width: 751px), print{
  .is-borderLeft{
    position: relative;
  }
  .is-borderLeft:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    background: #f6f6f6;
    z-index: 2;
  }
  .is-borderLeftBlack:before{
    background: #000;
  }
  .is-borderRight{
    position: relative;
  }
  .is-borderRight:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    background: #f6f6f6;
    z-index: 2;
  }
  .is-borderRightGreen{
    position: relative;
  }
  .is-borderRightGreen:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    background: #f1f9f8;
    z-index: 2;
  }
  .is-borderBottom:after{
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: #000;
    position: relative;
    z-index: 2;
  }
  .is-tablet .is-borderLeft:before{
    height: 101%;
  }
  .is-tablet .is-borderRight:after{
    top: -1px;
    height: 101%;
  }
}



/*
common btn
------------------------------------------------*/
.btn{
  max-width: 300px;
  width: 100%;
  height: 70px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px){
  .btn{
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 235px;
    height: 55px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.btn.is-red a{
  background: #d00f31;
  border-color: #d00f31;
}
.btn a , .btn .is-noLink{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  box-sizing: border-box;
  padding-left: 30px;
  position: relative;
  transition: all .3s ease;
  border: 2px solid #000;
  padding-right: 5em;
}
@media screen and (max-width: 750px){
  .btn a , .btn .is-noLink{
    padding-left: 20px;
  }
}
.btn a:before , .btn .is-noLink:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto 0;
  background: url("/contents/assets/images/common/btn_arrow_on.png") no-repeat right center;
  background-size: 33px auto;
  width: 33px;
  height: 6px;
  transition: all .3s ease;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
@media screen and (max-width: 750px){
  .btn a:before , .btn .is-noLink:before{
    right: 20px;
    background-size: 26px auto;
    width: 26px;
  }
}
.btn a:after , .btn .is-noLink:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto 0;
  background: url("/contents/assets/images/common/btn_arrow.png") no-repeat right center;
  background-size: 33px auto;
  width: 33px;
  height: 6px;
  transition: all .3s ease;
}
@media screen and (max-width: 750px){
  .btn a:after , .btn .is-noLink:after{
    right: 20px;
    background-size: 26px auto;
    width: 26px;
  }
}
.btn a:hover{
  background: #fff;
  color: #000;
}
.btn a:hover:after{
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
.btn a:hover:before{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
.btn .is-noLink{
  color: #a0a0a0;
}
.btn.is-noArrow a:before,.btn.is-noArrow a:after{
  display: none;
}
.btn.is-noMargin{
  margin-top: 0;
  margin-bottom: 0;
}
.btn.is-noMarginBottom{
  margin-bottom: 0;
}

.btn-list{
  margin-top: 50px;
  margin-bottom: 50px;
}
.btn-list-item{
  margin-bottom: 40px;
}
.btn-list-item .btn{
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 751px), print{
  .btn-list.is-2col{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    flex-wrap: wrap;
  }
  .btn-list.is-2col{
    margin-bottom: 0px;
  }
  .btn-list.is-2col .btn-list-item{
    width: 300px;
    margin: 0 25px 40px;
  }
  .btn-list.is-2col .btn-list-item_02{
    width: 300px;
    margin: 0 25px 10px;
  }
}
@media screen and (max-width: 750px){
  .btn-list{
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .btn-list-item{
    margin-bottom: 20px;
  }
}
.btn-list-item:last-child{
  margin-bottom: 0;
}



/*
topics
------------------------------------------------*/
.topics-item:last-child{
  border-bottom: none;
  padding-bottom: 50px;
}
.topics-item.is-attention{
  background: #fff9d2;
}
.topics-item:last-child .topics-item-inner{
  border-bottom: none;
}
.topics-item a:hover{
  text-decoration: underline;
}
.topics-item-inner{
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
  border-bottom: 1px dotted #dcdcdc;
}
@media screen and (max-width: 750px){
  .topics-item-inner{
    padding: 12px 5px 10px;
  }
}

.topics-info{
  margin-bottom: 14px;
  font-size: 0;
}
@media screen and (max-width: 750px){
  .topics-info{
    margin-bottom: 6px;
  }
}
.topics-info p{
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (min-width: 751px), print{
  .topics-info p:first-child{
    margin-right: 14px;
  }
}
.topics-info p:last-child{
  margin-right: 0;
}
.topics-date{
  font-size: 14px;
  font-size: 1.4rem;
  color: #898989;
}
@media screen and (max-width: 750px){
  .topics-date{
    font-size: 1.1rem;
  }
}
.topics-cat{
  padding: 0 15px;
  height: 18px;
  line-height: 17px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 750px){
  .topics-cat{
    font-size: 1rem;
    padding: 0 10px;
    height: 15px;
    line-height: 15px;
  }
}
.topics-cat.is-yellow{
  background: #ffb722;
}
.topics-cat.is-blue{
  background: #0075c1;
}
.topics-cat.is-orange{
  background: #ec6941;
}
.topics-cat.is-lightgreen{
  background: #00c7b7;
}
.topics-cat.is-lightblue{
  background: #00b8e6;
}
.topics-cat.is-pink{
  background: #ff6bb1;
}
.topics-cat.is-red{
  background: #ff6b7c;
}
.topics-cat.is-purple{
  background: #d474ca;
}
.topics-cat.is-green{
  background: #31a24c;
}
.topics-cat.msg_attr_1 {
  background: #ec6941;
}
.topics-cat.msg_attr_2 {
  background: #ff6b7c;
}
.topics-cat.msg_attr_3 {
  background: #0075c1;
}
.topics-cat.msg_attr_4 {
  background: #00c7b7;
}
.topics-cat.msg_attr_5 {
  background: #d474ca;
}
.topics-cat.msg_attr_6 {
  background: #d474ca;
}
.topics-cat.msg_attr_7 {
  background: #31a24c;
}
.topics-cat.msg_attr_8 {
  background: #ffb722;
}
.topics-cat.msg_attr_9 {
  background: #ff6bb1;
}
.topics-cat.msg_attr_10 {
  background: #00b8e6;
}
.topics-cat.is-new{
  font-weight: 700;
  color: #d00f31;
  border: 1px solid #d00f31;
}
@media screen and (max-width: 750px){
  .topics-title{
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
.ps__rail-x , .ps__rail-y{
  opacity: 1 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.ps__rail-y{
  margin: 4px 0;
}
.onlySp{
  display: none;
}
.sp{
  display: none;
}
.pad{
  display: none;
}
.onlyiphone5{
  display: none;
}
@media screen and (max-width: 1024px){
  .pad{
    display: block;
  }
}
@media screen and (max-width: 750px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}@media screen and (max-width: 667px){
  .onlyPc{
    display: none;
  }
  .onlySp{
    display: block;
  }
}
@media screen and (max-width: 350px){
  .iphone5{
    display: none;
  }
  .onlyiphone5{
    display: block;
  }
}



/*
body
------------------------------------------------*/
html{
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body{
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
/*  font-family: "NotoSansCJKjp-Regular";*/
}
@media screen and (min-width: 751px), print{
  body{
    min-width: 1200px;
  }
}
@media screen and (max-width: 750px){
  body{
    font-size: 11px;
    font-size: 1.1rem;
  }
  body.is-navOpen{
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

a{
  color: #333;
}

img{
  max-width: 100%;
  height: auto;
}

.main{
  display: block;
  position: relative;
}
@media screen and (max-width: 750px){
  .main{
    margin-top: 50px !important;
  }
}
.inner{
  max-width: 940px;
  margin: 0 auto;
  width: calc(100% - 40px);
}
.base-txt{
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.57;
  line-height: 1.5;
}
@media screen and (max-width: 750px){
  .base-txt{
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
.base-txt_02{
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.57;
}
@media screen and (max-width: 750px){
  .base-txt_02{
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
.is-underline{
  text-decoration: underline;
}
.is-underline:hover{
  text-decoration: none;
}
@media screen and (min-width: 751px), print{
  .is-imgScale:hover .is-imgScale-thumb:after{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .is-imgScale:hover .is-imgScale-thumb img{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.is-imgScale-thumb{
  position: relative;
  overflow: hidden;
}
.is-imgScale-thumb:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all .5s ease;
}
@media screen and (min-width: 751px), print{
  .is-imgScale-thumb img{
    transition: all .5s ease;
  }
}



/*
pagetop
------------------------------------------------*/
.pagetop{
  width: 60px;
  height: 60px;
  right: 30px;
  z-index: 99;
  display: none;
  position: absolute;
  top: -90px;
  bottom: auto;
}
@media screen and (max-width: 750px){
  .pagetop{
    width: 50px;
    height: 50px;
    right: 10px;
    top: -60px;
  }
}
.pagetop.is-fixed{
  top: auto;
  bottom: 30px;
  position: fixed;
}
@media screen and (max-width: 750px){
  .pagetop.is-fixed{
    bottom: 10px;
  }
}



.is-linkArrow::after{
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #d00f31;
  border-right: 2px solid #d00f31;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 10px;
  position: relative;
  top: -1px;
}



/*
utils
------------------------------------------------*/
.hide {
  visibility: hidden !important;
}

.show {
  visibility: visible !important;
}



/*
outlink
------------------------------------------------*/
.is-outlink::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_outlink.png") no-repeat right center;
  background-size: 11px auto;
  width: 11px;
  height: 11px;
  margin-left: 3px;
  margin-left: 10px;
  margin-right: 3px;
  position: relative;
  top: -2px;
}



/*================================================
　header
================================================*/
.header{
  position: relative;
  width: 100%;
  height: 78px;
  background: #f6f6f6;
  z-index: 999;
}
@media screen and (max-width: 750px){
  .header{
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color:#fff;
  }
}
.header-navBtn{
  position: absolute;
  width: 60px;
  height: 100%;
  border-right: 1px solid #eee;
  box-sizing: border-box;
}
@media screen and (min-width: 751px), print{
  .header-navBtn{
    display: none;
  }
}
@media screen and (max-width: 750px){
  .header-navBtn{
    height: 50px;
    width: 50px;
  }
}
.header-navBtn:hover{
  cursor: pointer;
}
.header-navBtn-line{
  position: absolute;
  width: 20px;
  height: 21px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: .5s ease;
}
@media screen and (max-width: 750px){
  .header-navBtn-line{
    height: 20px;
  }
}
.header-navBtn-line span{
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  left: 0;
  right: 0;
  margin: auto;
  transition: .25s ease;
}
@media screen and (max-width: 750px){
  .header-navBtn-line span{
    height: 2px;
  }
}
.header-navBtn-line span:nth-child(1){
  top: 0;
}
.header-navBtn-line span:nth-child(2){
  top: 9px;
  transition-duration: .1s;
}
.header-navBtn-line span:nth-child(3){
  bottom: 0;
}
@media screen and (max-width: 750px){
  .header-logo-5g{
    position: absolute;
    width: 126px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
    top: 0;
    line-height: 50px;
  }
}
@media screen and (min-width: 751px), print{
  .header-logo-5g{
    position: absolute;
    top: 50%;
    left: 30px;
    bottom: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 161px;
    height: 52px;
  }
  .header-logo-5g a{
    display: block;
    width: 100%;
    height: 100%;
  }
}
.header-logo-5g img{
  vertical-align: middle;
}
.header-logo-docomo{
  position: relative;
  width: 88px;
}
@media screen and (min-width: 751px), print{
  .header-logo-docomo{
    top: -2px;
  }
}
@media screen and (max-width: 750px){
  .header-logo-docomo{
    width: 73px;
    margin: 0 0 0 auto;
  }
}
.header-logo-docomo img{
  vertical-align: middle;
}
@media screen and (min-width: 751px){
  .header-subMenu{
    font-size: 0;
    text-align: right;
    padding-top:15px;
  }
}

@media screen and (max-width: 750px){
  .header-subMenu{
    font-size: 0;
    text-align: right;
  }
  .header-subMenu02{
    display:none;
  }
}
.header-subMenu02{
  font-size: 0;
  text-align: right;
  padding-top:5px;
}
.header-subMenu02-item{
  display: inline-block;
  vertical-align: middle;
  width: 130px;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-right: 30px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 750px){
  .en_header .header-subMenu02-item{
    width: 60px;
    margin-left: 10px;
  }
}
.header-subMenu02-item:first-child{
  width: 138px;
  vertical-align: bottom;
}
.header-subMenu02-item a{
  position: relative;
  display:block;
  text-align: center;
  line-height: 30px;
  color: #d00f31;
  background-color: #fff;
  border:1px solid #d00f31;
  transition: all .3s ease;
}
.non-member .header-subMenu02-item a.is_login{
  text-align: left;
  padding-left: 34px;
}
.header-subMenu02-item a:hover{
  color: #fff;
  background-color: #d00f31;
}
.non-member .header-subMenu02-item a.is_login::after{
  content: "";
  display: inline-block;
  background: url("/contents/assets/images/common/icon_login_red.svg") no-repeat right center;
  background-size: 22px auto;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 4px;
  right: 10px;
  transition: all .3s ease;
}
.non-member .header-subMenu02-item a:hover.is_login::after{
  background: url("/contents/assets/images/common/icon_login_w.svg") no-repeat right center;
}
.header-subMenu02-item a.is_mail{
  color: #fff;
  background-color: #d00f31;
}
.header-subMenu02-item a.is_mail:hover{
  color: #d00f31;
  background-color: #fff;
}
.header-subMenu02-item p{
  font-size: 1.1rem;
  padding-bottom: 3px;
  text-align: center;
}
.header-subMenu02-item p.is_login::before{
  content: "";
  display: inline-block;
  vertical-align: bottom;
  background: url("/contents/assets/images/common/icon_login_red.svg") no-repeat right center;
  background-size: 22px auto;
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
.en_header .header-subMenu-item {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-right: 30px;
}
.header-subMenu-item.is-current a {
  color: #d00f31;
}

@media screen and (max-width: 750px){
  .en_header .header-subMenu-item,
  .header-subMenu-item{
    line-height: 50px;
    margin-right: 15px;
    display: none;
  }
  .header-subMenu-item:last-child{
    display: block;
  }
}
.header-subMenu-item a:hover{
  text-decoration: underline;
}
.header-nav{
  position: absolute;
  width: 290px;
  border-top: 1px solid #eee;
  box-sizing: border-box;
  z-index: 99;
  display: none;
}
@media screen and (min-width: 751px), print{
  .header-nav{
    background: #fff;
    display: none !important;
  }
}
@media screen and (max-width: 750px){
  .header-nav{
    position: fixed;
    top: 50px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 750px){
  .header-nav-scroll{
    position: relative;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
  }
}
.header-nav-item{
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}
@media screen and (max-width: 750px){
  .header-nav-item{
    background: #fff;
  }
}
.header-nav-item.is-gray{
  background: #f8f8f8;
}
@media screen and (min-width: 751px), print{
  .header-nav-item.is-login .header-nav-inner{
    padding-right: 25px;
    padding-left: 25px;
  }
}
.header-nav-item:last-child{
  border-bottom: none;
}
@media screen and (min-width: 751px), print{
  .header-nav-item:hover .header-nav-subMenu{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
  }
}
.header-nav-item > a{
  display: block;
  width: 100%;
  height: 100%;
}
.header-nav-item > a:hover .header-nav-title{
  text-decoration: underline;
}
.header-nav-inner{
  position: relative;
  padding: 25px 30px;
}
@media screen and (max-width: 750px){
  .header-nav-inner{
    padding: 13px 20px;
  }
}
.header-nav-inner.is-link a{
  display: block;
  width: 100%;
  height: 100%;
}
.header-nav-inner.is-link:after{
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  bottom: 0;
  top: 0;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #a0a0a0;
  border-right: 2px solid #a0a0a0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-nav-login{
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 750px){
  .header-nav-login{
    font-size: 1.3rem;
  }
}
.header-nav-title{
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  position: relative;
  padding-left: 14px;
}
@media screen and (max-width: 750px){
  .header-nav-title{
    font-size: 1.3rem;
    padding-left: 10px;
  }
}
.header-nav-title:before{
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  bottom: 0;
  margin: auto 0;
  left: 0;
  width: 3px;
  height: 26px;
  background: #d00f31;
}
@media screen and (max-width: 750px){
  .header-nav-title:before{
    width: 2px;
    height: 18px;
  }
}
.header-nav-desc{
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85;
  margin-top: 12px;
  max-width: 270px;
}
@media screen and (max-width: 750px){
  .header-nav-desc{
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
  }
}
.header-nav-logout{
  padding: 30px 0 80px;
}
.header-nav-logout a{
  display: block;
  width: 105px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 1rem;
  background: #a0a0a0;
  color: #fff;
  margin: 0 auto;
  transition: all .3s ease;
}
.header-nav-logout a:hover{
  opacity: .7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.header-nav-info{
  background: #d00f31;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  transition: all .3s ease;
}
.header-nav-info:hover{
  opacity: .7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.header-nav-info p{
  display: inline-block;
  vertical-align: middle;
}
.header-nav-info-face{
  width: 24px;
  margin-right: 15px;
}
.header-nav-info-txt{
  font-size: 14px;
  font-size: 1.4rem;
}
.header-nav-subMenu{
  background: #000;
}
@media screen and (min-width: 751px), print{
  .header-nav-subMenu{
    position: absolute;
    width: 290px;
    left: 290px;
    top: 0;
    padding: 30px;
    border-left: 1px solid #d00f31;
    box-sizing: border-box;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    transition: all .3s ease;
    display: block !important;
  }
}
@media screen and (max-width: 750px){
  .header-nav-subMenu{
    display: none;
    border-top: 1px solid #d00f31;
    padding: 30px 20px 0;
    font-size: 0;
  }
}
.header-nav-subMenu-item{
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px){
  .header-nav-subMenu-item{
    font-size: 1.1rem;
    display: inline-block;
    vertical-align: middle;
    width: 47%;
    box-sizing: border-box;
    margin-bottom: 30px;
    margin-right: 5.8%;
    line-height: 1;
  }
}
@media screen and (max-width: 750px){
  .header-nav-subMenu-item:nth-child(2n){
    margin-right: 0;
  }
}
@media screen and (min-width: 751px), print{
  .header-nav-subMenu-item:last-child{
    margin-bottom: 0;
  }
}
.header-nav-subMenu-item a{
  color: #fff;
}
.header-nav-subMenu-item a:hover{
  text-decoration: underline;
}
@media screen and (min-width: 751px), print{
  .header-nav-sp{
    display: none;
  }
}
.header-nav-sp-title{
  background: #f6f6f6;
  font-size: 0;
}
.header-nav-sp-title a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 750px){
  .header-nav-list li:first-child .header-nav-sp-title_has{
    padding: 0;
  }
  .header-nav-list li:first-child .header-nav-sp-title_has a{
    padding: 13px 20px;
    display: block;
  }
}
.header-nav-sp-title_has{
  position: relative;
}
.header-nav-sp-title_has:before , .header-nav-sp-title_has:after{
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 20px;
  transition: all .3s ease;
}
.header-nav-sp-title_has:after{
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header-nav-sp-title_has.is-open:before{
  display: none;
}
.header-nav-sp-title_has.is-open:after{
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header-nav-sp-title_has.is-open .header-nav-sp-name,
.header-nav-sp-title.is-current .header-nav-sp-name{
  color: #d00f31;
}
.header-nav-sp-title_has.is-open .header-nav-sp-icon img,
.header-nav-sp-title.is-current .header-nav-sp-icon img{
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.header-nav-sp-icon{
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.header-nav-sp-icon:after{
  transition: all .3s ease;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
.header-nav-sp-icon.is-top{
  width: 27px;
}
.header-nav-sp-icon.is-top:after{
  background: url("/contents/assets/images/common/header_nav_icon_top_on_sp.png") no-repeat center top;
  background-size: 27px auto;
  width: 27px;
  height: 26px;
}
.header-nav-sp-icon.is-g5{
  width: 24px;
}
.header-nav-sp-icon.is-g5:after{
  background: url("/contents/assets/images/common/header_nav_icon_g5_on_sp.png") no-repeat center top;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}
.header-nav-sp-icon.is-partner{
  width: 26px;
}
.header-nav-sp-icon.is-partner:after{
  background: url("/contents/assets/images/common/header_nav_icon_partner_on_sp.png") no-repeat center top;
  background-size: 26px auto;
  width: 26px;
  height: 25px;
}
.header-nav-sp-icon.is-asset{
  width: 27px;
}
.header-nav-sp-icon.is-asset:after{
  background: url("/contents/assets/images/common/header_navBar_icon_asset_on.png") no-repeat center top;
  background-size: 27px auto;
  width: 27px;
  height: 27px;
}
.header-nav-sp-icon.is-event{
  width: 24px;
}
.header-nav-sp-icon.is-activity_history{
  width: 28px;
}
.header-nav-sp-icon img{
  transition: all .3s ease;
  background: #f6f6f6;
  position: relative;
  z-index: 1;
}
.header-nav-sp-name{
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  transition: all .3s ease;
}
.header-nav-sp-name.is-red{
  color: #d00f31;
}
.header-nav-sp-subMenu{
  background: #000;
  padding: 30px 20px 0;
  font-size: 0;
  display: none;
}
.header-nav-sp-subMenu-item{
  display: inline-block;
  vertical-align: middle;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  box-sizing: border-box;
  width: 47%;
  margin-bottom: 30px;
  margin-right: 5.8%;
}
.header-nav-sp-subMenu-item:nth-child(2n){
  margin-right: 0;
}
.header-nav-sp-subMenu-item a , .header-nav-sp-subMenu-item span{
  color: #fff;
  position: relative;
  padding: 0 0 10px;
  display: block;
  border-bottom: 1px solid #dcdcdc;
  transition: all .3s ease;
}
.header-nav-sp-subMenu-item a.header-nav-sp-subMenu-fontsmall{
  line-height: 1.1;
  padding-bottom: 0;
}
.header-nav-sp-subMenu-item a:after , .header-nav-sp-subMenu-item span:after{
  content: "";
  display: block;
  position: absolute;
  right: 2px;
  bottom: 10px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #d00f31;
  border-right: 2px solid #d00f31;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-nav-sp-subMenu-item span{
  color: #a0a0a0;
}
.header-nav-small{
  padding: 15px 0;
  background: #f6f6f6 !important;
}
.header-nav-small-title{
  font-size: 12px;
  font-size: 1.2rem;
}
.header-nav-small-title a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px 20px;
  box-sizing: border-box;
}
.header-overlay{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  z-index: 998;
  display: none;
}
@media screen and (min-width: 751px), print{
  .header-overlay{
    display: none !important;
  }
}
.header-navBar{
  position: relative;
  width: 100%;
  height: auto;
  background: #fff;
  border-bottom:2px solid #d00e31;
  min-width: 1200px;
  z-index: 99;
}

/*提供アセット　別窓アイコン追加*/
/*pc*/
div.header-navBar ul.header-navBar-list li ul.header-navBar-subMenu li.is_outlink{
  position: relative;
}
div.header-navBar ul.header-navBar-list li ul.header-navBar-subMenu li.is_outlink:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_outlink_w.png") no-repeat right center;
  background-size: 11px auto;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 23px;
  right: 13px;
}
/*sp*/
nav.header-nav ul.header-nav-list li ul.header-nav-sp-subMenu li.is_outlink{
  position: relative;
}
nav.header-nav ul.header-nav-list li ul.header-nav-sp-subMenu li.is_outlink:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_outlink_w.png") no-repeat right center;
  background-size: 9px auto;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 1px;
  right: 14px;
}
@media screen and (max-width: 364px){
  nav.header-nav ul.header-nav-list li ul.header-nav-sp-subMenu li.is_outlink:before{
    top: -17px;
    right: 3px;
  }
}
@media screen and (max-width: 750px){
  .header-navBar{
    display: none !important;
  }
}
.header-navBar.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header-navBar-list{
  font-size: 0;
  text-align: center;
  width: 940px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-navBar-item{
  margin-right: 0;
  height:52px;
  width:188px;
  box-sizing:border-box;
  position: relative;
}
.header-navBar-item::before{
  position: absolute;
  border-right: solid 1px #c3c3c3;
  content: "";
  height: 28px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-navBar-item:last-child:before {
  border: none;
}
.header-navBar-item:hover{
  border-bottom: solid 2px #d00f31;
}

.header-navBar-list li.is-current{
  border-bottom: solid 2px #d00f31;
}

#header-navBar>ul.header-navBar-list>li a,
#header-navBar>ul.header-navBar-list>li div.menu-nolink{
  overflow:hidden;
}

#header-navBar>ul.header-navBar-list>li div.menu-nolink {
  cursor: default;
}

#header-navBar>ul.header-navBar-list>li a p:first-child,
#header-navBar>ul.header-navBar-list>li div.menu-asset p:first-child{
  padding: 10px 10px 0 18px;
}

#header-navBar>ul.header-navBar-list>li a.menu-top p:first-child {
  padding-left:55px;
}
#header-navBar ul li a p,
#header-navBar ul li div.menu-nolink p{
  float:left;
  font-size: 1.5rem;
  padding-top: 18px;
}
#header-navBar>ul.header-navBar-list>li.header-navBar-item>a.menu-partner>p.header-navBar-name,
#header-navBar>ul.header-navBar-list>li.header-navBar-item>a.menu-history>p.header-navBar-name{
  padding-top: 11px;
}
.header-navBar-item:hover .header-navBar-icon img{
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.header-navBar-item:hover .header-navBar-name{
  color: #d00f31;
}

.header-navBar-item_has{
  position: relative;
}

.header-navBar-item_has .menu-partner .header-navBar-name:after,
.header-navBar-item_has .menu-about .header-navBar-name:after,
.header-navBar-item_has .menu-nolink .header-navBar-name:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  border-top: 9px solid #000;
  border-right: 6px solid #ffffff;
  border-left: 6px solid #ffffff;
  border-bottom:1px solid #ffffff;
  margin: 0;
  transition: all .3s ease;
  position:absolute;
  background:transparent;
}

.header-navBar-item_has .menu-partner .header-navBar-name:after,
.header-navBar-item_has .menu-asset .header-navBar-name:after,
.header-navBar-item_has .menu-about .header-navBar-name:after{
  top: 16px;
  right: 18px;
}

.header-navBar-item_has:hover .menu-partner .header-navBar-name:after,
.header-navBar-item_has:hover .menu-about .header-navBar-name:after,
.header-navBar-item_has:hover .menu-nolink .header-navBar-name:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  border-top: 9px solid #d00f31;
  margin: 4px 0 0 8px;
  transition: all .3s ease;
}


.header-navBar-item_has .header-navBar-name .icon-red{
  content: "";
  display: inline-block;
  vertical-align: top;
  border-top: 9px solid #d00f31;
  border-right: 6px solid #f6f6f6;
  border-left: 6px solid #f6f6f6;
  margin: 4px 0 0 8px;
  transition: all .3s ease;
}
.header-navBar-item_has:hover .header-navBar-subMenu{
  display: block;
}
.header-navBar-item a,
.header-navBar-item div.menu-nolink{
  display: block;
  width: 100%;
  height: 100%;
}
.header-navBar-icon{
  padding-top: 10px;
  height: 42px;
  position: relative;
}
.page__top .header-navBar-icon,
.is-loginmethod .header-navBar-icon {
  display: block;
}
.header-navBar-icon:after{
  transition: all .3s ease;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
.header-navBar-icon.is-top img{
  width: 34px;
}
.header-navBar-icon.is-top:after{
  background: url("/contents/assets/images/common/header_navBar_icon_top_on.png") no-repeat center bottom;
  background-size: 34px auto;
  width: 34px;
  height: 36px;
  bottom: 10px;
  left:45px;
}
.header-navBar-icon.is-g5 img{
  width: 34px;
}
.header-navBar-icon.is-g5:after{
  background: url("/contents/assets/images/common/header_navBar_icon_g5_on.png") no-repeat center bottom;
  background-size: 34px auto;
  width: 34px;
  height: 34px;
  bottom: 8px;
  left: 8px;
}
.header-navBar-icon.is-partner img{
  width: 34px;
}
.header-navBar-icon.is-partner:after{
  background: url("/contents/assets/images/common/header_navBar_icon_partner_on.png") no-repeat center bottom;
  background-size: 34px auto;
  width: 34px;
  height: 31px;
  bottom: 11px;
  left: 8px;
}
.header-navBar-icon.is-asset img{
  width: 36px;
}
.header-navBar-icon.is-asset:after{
  background: url("/contents/assets/images/common/header_navBar_icon_asset_on.png") no-repeat center bottom;
  background-size: 36px auto;
  width: 36px;
  height: 36px;
  bottom: 6px;
  left: 8px;
}
.header-navBar-icon.is-activity_history img{
  width: 34px;
}

.header-navBar-icon.is-activity_history:after{
  background: url("/contents/assets/images/common/header_navBar_icon_activity_history_on.png") no-repeat center bottom;
  background-size: 34px auto;
  width: 34px;
  height: 34px;
  top: 10px;
  left: 8px;
}
.header-navBar-icon img{
  transition: all .3s ease;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.header-navBar-name{
  line-height: 1;
  transition: all .3s ease;
}
.header-navBar-item.is-current .header-navBar-name{
  color: #d00f31;
}
.header-navBar-item.is-current .header-navBar-name::after{
  border-top-color: #d00f31;
}
.header-navBar-info{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 275px;
  height: 100%;
  overflow: hidden;
  display:none;
}
.header-navBar-info a , .header-navBar-info span{
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: #d00f31;
  transition: all .3s ease;
}
.header-navBar-info a:before , .header-navBar-info span:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  top: -2px;
  left: 0;
  left: -1px;
  border-top: 50px solid transparent;
  border-top: 52px solid transparent;
  border-bottom: 50px solid transparent;
  border-bottom: 52px solid transparent;
  border-left: 25px solid #f6f6f6;
  width: 25px;
  height: 100%;
  box-sizing: border-box;
  z-index: 0;
}
.header-navBar-info span{
  background: #a0a0a0;
}
.header-navBar-info a:hover .header-navBar-info-arrow{
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
.header-navBar-info-inner{
  position: relative;
}
.header-navBar-info-face{
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  width: 24px;
}
.header-navBar-info-txt{
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85;
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
}
.header-navBar-info-arrow{
  position: absolute;
  right: 0;
  bottom: 11px;
  transition: all .3s ease;
  width: 33px;
}
.header-navBar-info-arrow img{
  vertical-align: bottom;
}
.header-navBar-subMenu{
  position: absolute;
  padding: 10px 0px 30px 30px;
  background: #333;
  border-top: 1px solid #d00f31;
  box-sizing: border-box;
  z-index: 2;
  text-align: left;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 0;
  top: 54px;
  transition: all .3s ease;
  display: none;
}
.header-navBar-subMenu.is-g5{
  width: 620px;
}
.header-navBar-subMenu.is-partner,
.header-navBar-subMenu.is-asset{
  width: 425px;
}
.header-navBar-subMenu-item{
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
  box-sizing: border-box;
  margin-right: 25px;
  width: 170px;
}
.header-navBar-subMenu-item.is-onlyTablet{
  display: none;
}
.header-navBar-subMenu-item a , .header-navBar-subMenu-item span{
  color: #fff;
  position: relative;
  padding: 20px 0 10px;
  display: block;
  border-bottom: 1px solid #898989;
  transition: all .3s ease;
}
.header-navBar-subMenu-item a:after , .header-navBar-subMenu-item span:after{
  content: "";
  display: block;
  position: absolute;
  right: 2px;
  bottom: 15px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #d00f31;
  border-right: 2px solid #d00f31;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-navBar-subMenu-item a:hover{
  color: #d00f31;
  border-color: #d00f31;
}
.header-navBar-subMenu-item span{
  color: #a0a0a0;
}
.header-label{
  background: #d00f31;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display:none;
}

@media screen and (min-width: 751px), print{
  .header-label{
    display: none;
  }
}
.header-label.is-mypage{
  background: #a0a0a0;
  color: #fff;
}
.header-label a , .header-label p{
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.header-label span{
  font-size: 12px;
  font-size: 1.2rem;
}
.header-label span:before , .header-label span:after{
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.header-label span:before{
  background: url("/contents/assets/images/common/header_label_icon_face.png") no-repeat left center;
  background-size: 17px auto;
  width: 17px;
  height: 30px;
  margin-right: 15px;
  position: relative;
  top: -2px;
}
.header-label span:after{
  background: url("/contents/assets/images/common/header_label_arrow.png") no-repeat left center;
  background-size: 23px auto;
  width: 23px;
  height: 5px;
  margin-left: 15px;
}

.is-navOpen .header-navBtn-line span{
  height: 1px;
}
.is-navOpen .header-navBtn-line span:nth-child(1){
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.is-navOpen .header-navBtn-line span:nth-child(2){
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.is-navOpen .header-navBtn-line span:nth-child(3){
  bottom: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.is-tablet .header-navBar-subMenu-item.is-onlyTablet{
  display: inline-block;
}
.is-tablet .is-asset .header-navBar-subMenu-item.is-onlyTablet{
  display: none;
}
/*
div.is-top li a.menu-top {
  background-color:#ffe1e6;
}
div.is-5g li a.menu-about {
  background-color:#ffe1e6;
}
div.is-partner li a.menu-partner {
  background-color:#ffe1e6;
}
div.is-asset li div.menu-asset {
  background-color:#ffe1e6;
}
div.is-event li a.menu-event {
  background-color:#ffe1e6;
}
div.is-asset li a.menu-asset {
  background-color:#ffe1e6;
}
div.is-mypage li a.menu-history {
  background-color:#ffe1e6;
}
div.is-5g li a.menu-about .header-navBar-name::after{
  border-top-color: #d00f31;
  border-right: 6px solid #ffe1e6;
  border-left: 6px solid #ffe1e6;
  border-bottom:1px solid #ffe1e6;
}
div.is-partner li a.menu-partner .header-navBar-name::after {
  border-top-color: #d00f31;
  border-right: 6px solid #ffe1e6;
  border-left: 6px solid #ffe1e6;
  border-bottom:1px solid #ffe1e6;
}
div.is-asset li div.menu-asset .header-navBar-name::after {
  border-top-color: #d00f31;
  border-right: 6px solid #ffe1e6;
  border-left: 6px solid #ffe1e6;
  border-bottom:1px solid #ffe1e6;
}*/

div.is-top li a.menu-top {
  border-bottom: solid 2px #d00f31;
  box-sizing: border-box;
}
div.is-5g li a.menu-about{
  border-bottom: solid 2px #d00f31;
  box-sizing: border-box;
}
div.is-partner li a.menu-partner{
  border-bottom: solid 2px #d00f31;
  box-sizing: border-box;
}
div.is-asset li div.menu-asset {
  border-bottom: solid 2px #d00f31;
  box-sizing: border-box;
}
div.is-mypage li a.menu-history {
  border-bottom: solid 2px #d00f31;
  box-sizing: border-box;
}

div.is-5g li a.menu-about .header-navBar-name::after{
  border-top-color: #d00f31;
}

div.is-partner li a.menu-partner .header-navBar-name::after {
  border-top-color: #d00f31;
}

div.is-asset li div.menu-asset .header-navBar-name::after {
  border-top-color: #d00f31;
}

@media screen and (max-width: 750px) {
  .area-attention {
    position: absolute;
    z-index: 1000;
    width: 100%;
  }
}



/*-------------------------login_icon-------------------------*/
/*PC*/
.header-navBar-item .is_login{
  position: relative;
}
.header-navBar-item .is_login::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_login.svg") no-repeat right center;
  background-size: 26px auto;
  width: 26px;
  height: 23px;
  position: absolute;
  top: 16px;
  right: -36px;
}
.header-navBar-item:hover .is_login::before{
  background: url("/contents/assets/images/common/icon_login_red.svg") no-repeat right center;
}
.header-navBar-subMenu-item .is_login_w{
  position: relative;
}
.header-navBar-subMenu-item .is_login_w::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_login_w.svg") no-repeat right center;
  background-size: 22px auto;
  width: 22px;
  height: 19px;
  position: absolute;
  top: 19px;
  right: 16px;
  transition: all .3s ease;
}
.header-navBar-subMenu-item a:hover.is_login_w::before{
  background: url("/contents/assets/images/common/icon_login_red.svg") no-repeat right center;
}

/*SP*/
.header-nav-title.is_login,
.header-nav-small-title .is_login{
  position: relative;
}
.header-nav-title.is_login::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_login.svg") no-repeat right center;
  background-size: 26px auto;
  width: 26px;
  height: 23px;
  position: absolute;
  top: 0px;
  left: 150px;
}
.header-nav-small-title .is_login::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_login.svg") no-repeat right center;
  background-size: 26px auto;
  width: 26px;
  height: 23px;
  position: absolute;
  top: -5px;
  right: -40px
}
.header-nav-sp-subMenu-item.is_login_w{
  position: relative;
}
.header-nav-sp-subMenu-item.is_login_w::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_login_w.svg") no-repeat right center;
  background-size: 22px auto;
  width: 22px;
  height: 19px;
  position: absolute;
  top: -4px;
  right: 14px;
}
@media screen and (max-width: 364px){
  .header-nav-sp-subMenu-item.is_login_w::after{
    top: -22px;
    right: 10px;
  }
}
/*-------------------------//login_icon-------------------------*/

/*-------------------------balloon-------------------------*/
.balloon{
    position: relative;
    display: inline-block;
}
.balloon_text{
  display: none;
  position: absolute;
  padding: 12px;
  font-size: 12px;
  line-height: 1.6em;
  color: #fff;
  border-radius: 5px;
  background: #666;
  width: 168px;
  opacity: .95;
  text-align: left;
}
.balloon_text:before{
  content: "";
  position: absolute;
  top: -24px;
  right: 60%;
  border: 15px solid transparent;
  border-top: 15px solid #666;
  margin-left: -15px;
  transform: rotateZ(180deg);
}
.balloon:hover .balloon_text{
  display: inline-block;
  top: 56px;
  left: 26px;
}
.balloon_text a{
  display: block;
  color: #fff;
  margin-top: 2px;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  width: 110px;
  transition: 0.2s;
}
.balloon_text a::after{
  content: "";
  position: absolute;
  right: 80px;
  bottom: 22px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #d00f31;
  border-right: 2px solid #d00f31;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.balloon_text.balloon_text_layer:before{
  border-top: 15px solid #666;
}
.balloon:hover .balloon_text_layer{
  display: inline-block;
  top: 54px;
  left: 26px;
}
.balloon_text a.balloon_text_ulayer{
  padding-top: 0;
}
.balloon_text a.balloon_text_ulayer::after{
  right: 4px;
  bottom: 10px;
}
.balloon_text a:hover{
  color: #d00f31;
  border-bottom: 1px solid #d00f31;
}
/*-------------------------//balloon-------------------------*/



/*================================================
　footer
================================================*/
.footer{
  background: #000 url("/contents/assets/images/common/footer_bg.jpg") no-repeat center center;
  background-size: cover;
  padding: 40px 0 0;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 750px){
  .footer{
    padding: 30px 0 0;
    background-image: url("/contents/assets/images/common/footer_bg_sp.jpg");
  }
}
@media screen and (min-width: 751px), print{
  .footer-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 751px), print{
  .footer-nav-item{
    width: 150px;
  }
}
@media screen and (max-width: 750px){
  .footer-nav-item:first-child{
    border-top: 1px solid #898989;
  }
}
@media screen and (min-width: 751px), print{
  .footer-nav-item p{
    letter-spacing: -.05em;
    margin-bottom: 15px;
    padding-left:1em;
    text-indent:-1em;
  }
}
.footer-nav-item p:last-child{
  margin-bottom: 0;
}
.footer-nav-item a{
  color: #fff;
}
footer a.footer_nolink:hover {
  text-decoration:none;
}
@media screen and (max-width: 750px){
  .footer-nav-item a{
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
}
.footer-nav-item a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 750px){
  .footer-nav-item_2col .footer-nav-title_small{
    display: inline-block;
    vertical-align: middle;
    width: 49%;
  }
}
@media screen and (min-width: 751px), print{
  .footer-nav-subMenu{
    display: block !important;
  }
}
@media screen and (max-width: 750px){
  .footer-nav-subMenu{
    padding: 15px 0;
    border-bottom: 1px solid #898989;
    display: none;
    background: rgba(0, 0, 0, .4);
  }
}
.footer-nav-title_large{
    font-size: 16px;
    font-size: 1.6rem;
    border-bottom: 1px solid #898989;
}
@media screen and (min-width: 751px), print{
  .footer-nav-title_large{
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 750px){
  .footer-nav-title_large a{
    padding: 15px;
  }
}
@media screen and (min-width: 751px), print{
  .footer-nav-title_large.is-contact{
    margin-top: 30px;
  }
}
.footer-nav-title_small{
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 750px){
  .footer-nav-title_small{
    font-size: 1.1rem;
  }
  .footer-nav-title_small a , .footer-nav-title_small .is-noLink{
    padding: 15px 0 15px 15px;
  }
}
.footer-nav-title_small a:before , .footer-nav-title_small .is-noLink:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/footer_arrow_title.png") no-repeat left center;
  background-size: 7px auto;
  width: 7px;
  height: 8px;
  margin-right: 5px;
}
.footer-nav-title_small .is-noLink{
  color: #a0a0a0;
}
@media screen and (max-width: 750px){
  .footer-nav-title_has{
    position: relative;
  }
  .footer-nav-title_has:before , .footer-nav-title_has:after{
    content: "";
    display: inline-block;
    width: 15px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transition: all .3s ease;
  }
  .footer-nav-title_has:after{
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footer-nav-title_has.is-open:before{
    display: none;
  }
  .footer-nav-title_has.is-open:after{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.footer-copyright{
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 20px 0;
  line-height: 1;
  margin-top: 40px;
}
@media screen and (max-width: 750px){
  .footer-copyright{
    margin-top: 45px;
    font-size: 1.1rem;
    padding: 15px 0;
  }
}

/*trade_mark*/
.trade_outer.text_left .trade_mark{
  text-align: left;
}
.trade_mark.trade_wide,
.trade_outer.trade_wide .trade_mark{
  margin-bottom: 0;
  padding-bottom: 3em;
}
.trade_mark.trade_wide_foot,
.trade_outer.trade_wide_foot .trade_mark{
  margin-bottom: 0;
  padding-bottom: 5em;
}
.trade_mark.trade_line,
.trade_outer.trade_line .trade_mark{
  border-top: 1px solid #999999;
}
@media only screen and (max-width: 750px) {
  .trade_mark.trade_wide.trade_topbtn,
  .trade_outer.trade_wide.trade_topbtn .trade_mark{
    padding-bottom: 6em;
  }
  .trade_mark.trade_topbtn,
  .trade_outer.trade_topbtn .trade_mark{
    padding-bottom: 2em;
  }
}

.footer .notes{
  padding-top: 20px;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-end;
}
.footer .notes p:not(:last-child){
  margin-right: 20px;
}
.footer .notes p.is_login::before{
  content: "";
  display: inline-block;
  background: url("/contents/assets/images/common/icon_login_red.svg") no-repeat right center;
  background-size: 22px auto;
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
.footer .notes p.is-outlink::after{
  display: none;
}
.footer .notes p.is-outlink::before{
  content: "";
  display: inline-block;
  background: url(/contents/assets/images/common/icon_outlink.png) no-repeat right center;
  background-size: 12px auto;
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
@media only screen and (max-width: 750px){
  .footer .notes{
    display: block;
    margin-left: 20px;
  }
  .footer .notes p:not(:last-child){
    margin-right: 0;
    margin-bottom: 10px;
  }
}



/*================================================
　nologin_footer.php
================================================*/
.footer.non-member .inner{
  max-width: 1040px;
}
@media screen and (min-width: 751px), print{
  .footer.non-member .footer-nav-item{
    width: 170px;
  }
}
/*-------------------------login-------------------------*/
/*PC*/
.footer.non-member .footer-nav-item .footer-nav-title_small:not(.no_login){
  padding-right: 2.4rem;
}
.footer.non-member .footer-nav-item .footer-nav-title_large .is_login,
.footer.non-member .footer-nav-item .footer-nav-title_small .is_login{
  position: relative;
}
.footer.non-member .footer-nav-item .footer-nav-title_large .is_login::after,
.footer.non-member .footer-nav-item .footer-nav-title_small .is_login::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_login_w.svg") no-repeat right center;
  background-size: 22px auto;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0px;
  right: -26px;
}
@media screen and (min-width: 751px){
  .footer.non-member .footer-nav-item a:hover.is_login::after{
    background: url("/contents/assets/images/common/icon_login_red.svg") no-repeat right center;
  }
}
.footer.non-member .footer-nav-item .footer-nav-title_small .is_login.line02::after{
  top: 18px;
}
/*SP*/
@media screen and (max-width: 750px){
  .footer.non-member .footer-nav-item .footer-nav-title_large .is_login::after,
  .footer.non-member .footer-nav-item .footer-nav-title_small .is_login::after{
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url("/contents/assets/images/common/icon_login_w.svg") no-repeat right center;
    background-size: 22px auto;
    width: 22px;
    height: 22px;
    position: relative;
    top: -1px;
    right: -10px;
  }
  .footer.non-member .footer-nav-item .footer-nav-title_small .is_login.line02::after{
    top: -1px;
  }
}
/*-------------------------//login-------------------------*/



/*================================================
　slim_header.php
================================================*/
/*sp*/
.non-member .header-nav-logout {
  padding: 0 0 30px 0;
}
/*---ログインエリア---*/
.header.non-member .header-nav_login_area{
  padding: 30px 30px 20px;
  font-size: 1.1rem;
}
.header.non-member .header-nav_login_area .is_login{
  position: relative;
  padding-left: 4rem;
}
.header.non-member .header-nav_login_area .is_login::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/contents/assets/images/common/icon_login.svg") no-repeat right center;
  background-size: 26px auto;
  width: 26px;
  height: 23px;
  position: absolute;
  top: -6px;
  left: 10px;
}
.header.non-member .header-nav_login_entry{
  display: block;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid;
  width: 110px;
}
.header.non-member .header-nav_login_entry a:after{
  content: "";
  display: block;
  position: absolute;
  left: 126px;
  top: 65px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #d00f31;
  border-right: 2px solid #d00f31;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.non-member .header-nav-small{
  padding: 15px 0 50px;
}
/*---//ログインエリア---*/
/*//sp*/


