@charset "UTF-8";
/* contents
==========================*/
#yjContentsBody{ color: #333; /* link text */ }
#yjContentsBody a { text-decoration: none; }
#yjContentsBody a:link { color: #09a; }
#yjContentsBody a:visited { color: #639; }
#yjContentsBody a:hover { color: #CC3434; text-decoration: underline; }
#yjContentsBody a:active { color: #CC3434; }

/* main
==========================*/
.main { font-size: 14px; text-align: left;}
.pc .main a {
  color: #0000eb;
  text-decoration: underline;
}
.pc .main a {
  color: #1a75ff;
  text-decoration: underline;
}

/* common oocss
==========================*/
.gray{ color: #666;}
.hide{ display: none;}
.emphasis { color: #0098a9;}
.emphasis_high { color: #df0539;}
.ycolor{ color:#FFF100; }
.hcolor { color: #FFF; }
.bunderline {
    color: #df0539;
    font-weight: bold;
    padding-bottom: 1px;
}
.msg_alert{
   border: 2px solid #c00;
   padding: 5px;
   background: #ffe;
   color: #000;
   margin: 0 10px 15px;
   font-size:13px;
}
.pc .msg_alert{
   font-size:14px;
}
.pc span.block{
  display: block;
}
.msg_alert a:link,
.msg_alert a:visited,
.msg_alert a:hover,
.msg_alert a:active{
  color: #0000eb;
}
@media screen and (max-width: 450px){
.msg_alert {
    text-align: left;
}
}

.alertBox{
  background: #fbf9e9;
  border: 1px solid #f7eb85;
  font-size: 12px;
  width: 280px;
  margin: 10px auto;
  padding: 10px;
}
.pc .alertBox{ width: 950px; }

.alertBox2rap{
  margin: 15px 10px 10px;
  background: #fbf9e9;
  border: 1px solid #f7eb85;
  font-size: 13px;
  padding: 10px;
}
.pc .alertBox2{
  width: 920px;
  margin: 0 auto 20px;
}
.alertBox2rap .alettitle{
  font-weight: bold;
}
.alertBox2pre{
  width: 920px;
  font-size: 13px;
  margin: 0 auto 20px;
  padding: 10px;
  background: #fbf9e9;
  border: 1px solid #f7eb85;
}
.alertBox2 .alettitle{
  font-weight: bold;
}

/* ついてくるボタンjs用のCSS
==========================*/
#fixedArea{
  width: 100%;
  background: rgba(255,255,255,0.7);
  filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#77ffffff,EndColorStr=#77ffffff);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#77ffffff,EndColorStr=#77ffffff)";
  position: static;
  z-index:1000;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#fixedArea.fixed{
  position: fixed;
  top: auto;
  bottom: 0;
  left: 0;
  height: 17vw;
  box-sizing: border-box;
}
.applyBtnWrap #fixedArea.fixed{
  height: 19vw;
}

.pc #fixedArea.fixed{
  height: 110px;
}
#applyform{
  height: 90px;
}
.sp #applyform{
  height: 60px;
}
.close{
  visibility: hidden;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* top_bnr
==========================*/
.sp .top_bnr {
    max-width: 600px;
    margin: 10px auto 0;
}
.sp .top_bnr img{
    width: 90%;
    padding: 0 10px 5px;
    box-sizing: border-box;
}
.pc .top_bnr {
    width: 950px;
    margin: 10px auto 40px;
    text-align: center;
}
.pc .top_bnr img{
    width: 640px;
}

/* share
==========================*/
.share{
  padding-top:6px;
  text-align:center;
  float: right;
  line-height:1;
}
.sp .share {
    text-align: right;
}
.pc .share{
  float: right;
  margin-top:8px;
}

.share:after{
  content: "";
  display: table;
  clear: both;
}
.share li{
  display: inline-block;
  vertical-align:middle;
}
.pc .share li{
  float: left;
}
.sp .share li.tw{
  margin-top: 5px;
  height: 21px;
  margin-right: 8px;
}
.pc .share li.tw{
    overflow: hidden;
    padding-right: 10px;
}
.pc .share li.ylink{
  margin-left: 10px;
  font-size: 87.5%;
}
.pc .share li.ylink a:link,
.pc .share li.ylink a:visited{
  color: #fff !important;
  text-decoration: underline !important;
}
.sp .share .fb {
    margin: 0 5px 0 0;
}
.sp .fb_iframe_widget iframe{
  z-index:15;
}
.sp .fb_iframe_widget > span {
  vertical-align: bottom !important;
  padding-top: 4px;
}
.snsarea {
    text-align: center;
    margin-bottom: 10px;
}
.pc .snsarea li {
    display: inline-block;
}
.pc .snsarea li:not(:first-child) {
    margin-left: 16px;
}
.pc .share li.ylink a:link, .pc .share li.ylink a:visited {
    color: inherit !important;
}
.sp .share li.ylink a:link, .sp .share li.ylink a:visited {
    margin-right: 10px;
    display: block;
    background-image: url(https://s.yimg.jp/c/icon/s/bsc/2.0/y56.png);
    -ms-background-size: 28px 28px;
    background-size: 28px 28px;
    background-repeat: no-repeat;
    font-size: 0 !important;
    height: 30px;
    width: 40px;
    background-position-x: right;
}
.sp .snsarea:after {
    display: block;
    content: "";
    clear: both;
}
.sp .snsarea li {
    float: left;
}
.sp .snsarea li:nth-of-type(2) {
    margin-left: 10px;
}
.sp .snsarea {
    margin: 20px auto;
    width: 195px;
    height: 20px;
}
.sp .fb_iframe_widget > span {
    padding-top: 0 !important;
    display: block;
}

/* mainVisual
==========================*/
.mainVisualHead{
    text-align: center;
}
.sp .mainVisualHead img{
   width: 100%;
   max-width:600px;
}
.mainVisualBody{
  height: auto;
  overflow: hidden;
  position: relative;
}
.sp .mainVisualBody{ max-width: 610px;  margin: 0 auto 1px; }
.pc .mainVisualBody{
    width: 950px;
    margin: 0 auto;
}
.mainVisualBottom .body{ margin: 0 auto; }

.mainVisual{
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: bottom;
  margin: 0 auto;
  line-height: 0;
}
.mainVisual.mainnoborder{
  border: none;
}
.mainVisual.broadmodel{
  width: 100%;
  background: #e7141e;
}
.mainVisualBody img {
    width: 100%;
    background: #fff;
}
.mainVisualBottom{
  margin: 0 auto;
  color: #666;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.sp .mainVisualBottom{
  width: 300px;
  padding: 0 10px;
  margin-bottom:10px;
}
.pc .mainVisualBottom{
  width: 950px;
  padding: 10px 0 30px;
  font-size :114%;
}
.mainVisualBottom .small{
  font-size: 75%;
  margin: 0 0 15px 20px;
  color: #949494;
}

/* mainVisualFooter 2000ptLP
==========================*/
.mainVisualFooter {
    max-width: 640px;
    margin: -2px auto 0;
    text-align: center;
    background: #fff;
}
.pc .mainVisualFooter {
    max-width: 950px;
    width: 950px;
    margin-top: 20px;
}
.mainVisualFooter img {
    max-width: 403px;
    width: 70%;
    padding: 0 10px;
    box-sizing: border-box;
}
.pc .mainVisualFooter img {
    width: 385px;
}

/* caution
==========================*/
.caution{
  margin: 0 auto 10px;
  font-size: 12px;
  color: #333;
  max-width:610px;
  padding:0 10px;
  line-height: 1.3em;
}
.pc .caution{
  margin: 10px auto 15px;
  max-width: 950px;
  font-size: 14px;
}
.pc.softbank .caution {
    margin: 10px auto 10px;
}

.sp .caution>p:first-child {
    margin-top: 5px;
}
.pc .caution>p:first-child {
    margin-top: 10px;
}
.caution .note{
    color: #b00;
    font-weight: bold;
}
.caution_box{
    padding: 2px;
    box-sizing: border-box;
    color: #333;
    margin-top: 8px;
    text-align: center;
}
.sp .caution_box{
    max-width: 610px;
}
.pc .caution_box{
    max-width: none;
    padding: 3px 10px;
    margin: 5px auto;
}
.caution_msgbox{
    margin: 0 auto;
    text-align: center;
}
.sp .caution_msgbox{
    max-width: 610px;
}
.caution_msg{
    color: #000;
    background: #eee;
    padding: 4px 5px 4px;
    margin: 10px 0;
    border-radius: 2px;
}
.pc .caution_msg{
    font-size: 14px;
    padding: 4px 10px 2px;
    margin: 10px auto;
    border-radius: 4px;
    display: inline-block;
}
.sp .caution_msgbox .declaration {
    text-align:left;
    margin-top: 15px;
}
.pc .caution_msgbox .declaration {
    margin: 0 auto 30px;
}

/* endmessage
==========================*/
.endmessage{
    margin:10px auto;
    padding:10px;
    border:#ff0000 1px solid;
    color:#ff0000;
    font-weight:bold;
    text-align:center;
    max-width:600px;
}
.pc .endmessage{
    max-width:928px;
}

/* btnTop
==========================*/
.btnTop {
    text-align: center;
    font-size: 14px;
    padding: 0 0 15px;
    font-weight: bold;
    box-sizing: border-box;
}
.pc .btnTop{
  width: 950px;
  margin: 0 auto 15px;
  color:#E0002A;
}
.formWrap{
    position: relative;
    position: relative;
    background: rgba(255,255,255,0.7);
    height: 18vw;
    max-height: 7%;
    display: block;
}
.pc .formWrap{
    height: 7.5em;
    max-height: none;
}
.pc .btnTop_attention {
    margin-top: 20px;
}
.sp .btnTop_attention {
    text-align: left;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
}
.applyBtn:before {
    content: "";
    background: #982f2f;
    position: relative;
    width: 76%;
    top: 1.5vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 5px 5px black;
    border-radius: 6px;
    padding-bottom: 13vw;
    position: absolute;
}

.applyBtnWrap .applyBtn:before {
    width: 90%;
    border-radius: 8px;
    background: #97051f;
    padding-bottom: 15.5vw;
}

.pc .applyBtn:before {
    width: 720px;
    top: 10px;
    box-shadow: 0 4px 2px black;
    padding-bottom: 76px;
}
.applyBtn input{
  width: 300px;
  height:65px;
  display:block;
  margin: 0 auto;
  text-indent: -9999px;
  overflow: hidden;
  background: url(https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.0.0/segment/btn_apply_softbank.png) no-repeat center 100%;
  background-size: 300px auto;
  cursor:pointer;
  border: 0;
  z-index: 500;
}
.applyBtn input.softbank{
  background: url(https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.0.0/segment/btn_apply_softbank.png) no-repeat 0 0;
}
.pc .applyBtn input{
  width:732px;
  height:90px;
  margin: 5px auto 10px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(https://s.yimg.jp/images/yjcard/campaign/pc/img/register/2.0.0/segment/btn_apply_softbank.png) no-repeat 0 0;
  cursor:pointer;
  border: 0;
}

.applyBtn input[type="submit"]{
  display: block;
  margin: 0 auto;
  width: 100%;
  background: #e0002a;
  background-size: 300px auto;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 5px 5px #97051f;
  background-image: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e0002a), to(#e0002a));
  background-image: -webkit-linear-gradient(left, #e0002a, #e0002a);
  cursor: pointer;
  color: #fff;
  font-size: 6.5vw;
  font-weight: bold;
  overflow: hidden;
  text-indent:0;
  text-shadow: 0px 0px 0px #fff, 0px 0px 0px #fff;
  z-index: 100;
  height: 12vw;
  position: relative;
  top: 1.5vw;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-appearance: none;
  outline: none;
}
.pc .applyBtn input {
  width: 720px;
  height: 70px;
  font-size: 42px;
  text-shadow: -1px 1px 0px #fff, -1px 1px 0px #fff;
  top: 10px;
  letter-spacing: 4px;
}
.pc .applyBtn input.softbank{
  background: url(https://s.yimg.jp/images/yjcard/campaign/pc/img/register/2.0.0/segment/btn_apply_softbank.png) no-repeat 0 0;
}
.applyBtn input:hover{
  opacity: 0.8;
}

.sp .applyBtn img {
    width: 100%;
    height: auto;
    max-width: 450px;
}

.applyBtn_region {
    position: relative;
    width: 76%;
    margin: 0 auto;
    display: block;
}

.applyBtnWrap .applyBtn_region {
    width: 90%;
}
.pc .applyBtn_region,
.pc .applyBtnWrap .applyBtn_region {
    width: 720px;
}
.applyBtnWrap.nonepress .decoration:after,
.applyBtn_region .decoration:after {
    content: "";
    position: absolute;
    right: 4.8vw;
    top: 6.7vw;
    width: 2.3%;
    height: 16%;
    border-top: 3px solid #db0325;
    border-right: 3px solid #db0325;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 300;
}
.applyBtnWrap .decoration:after {
    right: 5.3vw;
    top: 7.1vw;
    width: 2%;
    height: 12%;
}
.applyBtnWrap.nonepress .decoration:before,
.applyBtn_region .decoration:before {
    content: "";
    position: absolute;
    width: 7.4%;
    height: 47%;
    background: #fff;
    right: 3vw;
    top: 5.2vw;
    border-radius: 50%;
    z-index: 200;
}

.pc .applyBtn_region .decoration:before {
    width: 6.5%;
}

.pc.notlogged .applyBtn_region .decoration:before{
    top: 23px;
}

.applyBtnWrap .decoration:before {
    width: 6.6%;
    height: 43%;
    top: 5.4vw;
    right: 3.4vw;
}
.pc .applyBtnWrap .decoration:before {
    top: 30.5px;
}
.pc .applyBtn_region .decoration:after {
    right: 32px;
    top: 38.5px;
    width: 9px;
    height: 9px;
    border-top: 4px solid #db0325;
    border-right: 4px solid #db0325;
}
.pc .applyBtnWrap .decoration:after {
    top: 39px;
}
.pc.notlogged .applyBtnWrap .decoration:after {
    top: 30px;
}
.pc .applyBtn_region .decoration:before {
    width: 27px;
    height: 27px;
    right: 23px;
    top: 32px;
}
.applyBtnWrap.nonepress .decoration:before{
    right: 4.5vw;
    top: 32px;
    width: 6.6%;
    height: 43%;
}
@media screen and (min-width:600px) {

.sp .applyBtn_region{
    width: 600px;
}

.sp .applyBtn input{
    max-width: 600px;
    max-height: 66px;
    font-size: 36px;
}

.sp .applyBtn:before{
    max-width: 600px;
    padding-bottom: 6px;
}

.sp .applyBtn_region .decoration:before{
    width: 26px;
    height: 26px;
    right: 25px;
    top: 48.2%;
}

.sp.softbank .applyBtn_region .decoration:before {
    top: 25px;
}

.sp.softbank .applyBtnWrap .decoration:after{
    top: 54%;
}

.sp .applyBtn_region .decoration:after{
    right: 34px;
    top: 59%;
    width: 8px;
    height: 8px;
}

.sp .formWrap{
    height: 90px;
}
}

#yjContentsBody .applyBtn a:link {
    color: #fff;
}

#yjContentsBody .applyBtn a:visited {
    color: #fff;
}

/* softbank_btn */
.applyBtnWrap {
    position: relative;
    height: 20vw;
}
.pc .applyBtnWrap {
    height: 100px;
}
.wait_process {
    background: #e0002a;
    display: block;
    height: 14.5vw;
    border-radius: 8px;
    font-size: 7.5vw;
    color: #fff;
    text-decoration: none;
    line-height: 1.9em;
    position: relative;
    top: 1vw;
    text-shadow: 0px 0px 0px #fff, 0px 0px 0px #fff;
    letter-spacing: 1px;
}
.pc .wait_process {
    height: 70px;
    font-size: 40px;
    letter-spacing: 0px;
    line-height: 1.7em;
}
.pc .applyBtnWrap .wait_process {
    top: 10px;
}
.applyBtnWrap.nonepress .decoration {
    width: 90%;
    height: 14.5vw;
    max-width: 540px;
    font-size: 7vw;
    text-shadow: 0px 0px 0px #fff, 0px 1px 1px #fff;
    letter-spacing: 2px;
    top: 0px;
    color: #fff;
    line-height: 2.1em;
    background: #b7b6b7;
    border-radius: 6px;
    box-shadow: 0 5px 5px #a9a9a9;
    display: block;
    margin: 0 auto;
    position: relative;
}
.pc .applyBtnWrap.nonepress .decoration{
    font-size: 42px;
    letter-spacing: 4px;
    line-height: 1.8em;
    height: 70px;
    width: 720px;
    max-width: 720px;
}
.applyBtnWrap.nonepress .decoration:before{
    top: 30%;
}
.pc .applyBtnWrap.nonepress .decoration:before{
    top: 25px;
    right: 30px;
    width: 25px;
    height: 25px;
}
.applyBtnWrap.nonepress .decoration:after{
    top: 6vw;
    right: 6.5vw;
    border-top: 3px solid #b7b6b7;
    border-right: 3px solid #b7b6b7;
}
.pc .applyBtnWrap.nonepress .decoration:after{
    top: 32px;
    right: 38px;
    width: 9px;
    height: 9px;
}

.applyBtnWrap.nonepress .applyBtn:before{
    background: #9f9f9f;
    box-shadow: 0 2px 2px #888;
    width: 90%;
    padding-bottom: 15vw;
}
.pc .applyBtnWrap.nonepress .applyBtn:before{
    width: 720px;
    max-width: none;
    top: 0;
    padding-bottom: 76px;
}
@media screen and (min-width: 420px){
.sp .applyBtnWrap.nonepress .decoration{
  font-size: 30px;
  height: 60px;
}
.sp .applyBtnWrap.nonepress .applyBtn:before{
      padding-bottom: 60px;
      top: 8px;
}
.sp .applyBtnWrap.nonepress .decoration:before{
      width: 26px;
      height: 26px;
      right: 15px;
      top: 32%;
}
.sp .applyBtnWrap.nonepress .decoration:after{
      top: 43%;
      right: 24px;
      width: 10px;
      height: 10px;
}
}

@media screen and (min-width: 600px){
.sp .applyBtnWrap.nonepress .applyBtn_region {
    width: 100%;
}
.sp .applyBtnWrap .applyBtn_region,
.sp .applyBtnWrap .applyBtn:before{
    width: 540px;
}

.sp .applyBtnWrap .applyBtn:before{
    padding-bottom: 65px;
}
.sp .wait_process{
    height: 60px;
    font-size: 32px;
}

.sp .applyBtnWrap .decoration:after{
    top: 56%;
}
.sp .applyBtnWrap {
    height: 100px;
}
.sp .applyBtnWrap #fixedArea.fixed {
    height: 90px;
}
.sp #fixedArea.fixed{
    height: 100px;
}
}

/* ymobile_btnTop */
/* disabled */

.ymobile_btnArea .applyBtnWrap {
    height: 16vw;
}
.pc .ymobile_btnArea .applyBtnWrap {
    height: 95px;
}
.ymobile_btnArea{
  text-align: center;
  margin: 10px;
  padding-bottom: 0px;
  border: 2px solid #c00;
}
.pc .ymobile_btnArea{
    margin: 10px auto;
    width: 950px;
}
.ymobile_btnArea p{
  padding: 5px; 
  width: auto;
  box-sizing: border-box;
}
.ymobile_exp div {
    padding-bottom: 3px;
    border-bottom: 1px dashed #aaa;
}
.ymobile_btnArea .ymobile_exp p {
    background: #ffc;
}
.ymobile_btnArea .ymobile_exp span{
  display: block;
  font-size: 13px;
  padding: 16px 0 8px;
}
.ymobile_btnArea a.idsetting {
    font-size: 18px;
}
.pc .ymobile_btnArea a.idsetting {
    font-size: 18px;
    margin-top: 8px;
    display: block;
}
.ymobile_btnArea .btnTop{
  padding-bottom: 0px;
}
.pc .ymobile_btnArea .btnTop{
  margin: 0 auto;
}

.ymobile_btnArea .ymobile_exp span.close{
  display: none;
}

.ymobile_btnArea .ymobile_exp span.open{
  display: block;
}

.ymobile_btnArea .ymobile_exp span.open a{
  font-size: 14px;
}

.ymobile_btnArea .applyBtn input[type="submit"]{
  top: 0;
  background: #b7b6b7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b7b6b7), to(#b7b6b7));
  background-image: -webkit-linear-gradient(left, #b7b6b7, #b7b6b7);
  box-shadow:0 5px 5px #a9a9a9;
}
.pc .ymobile_btnArea .applyBtn.disabled input {
    top: 5px;
}
.ymobile_btnArea .applyBtn.disabled:before{
  width: 87%;
  max-width: 540px;
  background: #9f9f9f;
  box-shadow: 0 2px 2px #888;
  padding-bottom: 14vw;
}
.pc .ymobile_btnArea .applyBtn.disabled:before {
    padding-bottom: 76px;
    width: 720px;
    max-width: none;
    top: 10px;
}
.ymobile_btnArea .applyBtn_region .decoration:after{
  border-top: 3px solid #b7b6b7;
  border-right: 3px solid #b7b6b7;
}
.applyBtn.disabled input:hover{
  opacity: inherit;
  cursor: default;
}

.ymobile_btnArea .applyBtnWrap .decoration:before{
  top: 3.9vw;
}
.pc .ymobile_btnArea .applyBtnWrap .decoration:before{
  top: 28px;
}
.ymobile_btnArea .applyBtnWrap .decoration:after{
  top: 5.3vw;
}
.pc .ymobile_btnArea .applyBtnWrap .decoration:after{
    top: 36px;
}


@media screen and (min-width: 450px){
.sp .ymobile_btnArea .applyBtnWrap {
    height: 90px;
    top: 10px;
}
.ymobile_btnArea .applyBtn.disabled:before{
    padding-bottom: 73px;
    top: 5px;
}
.ymobile_btnArea .applyBtnWrap {
    height: 85px;
}
.sp .ymobile_btnArea .applyBtnWrap .decoration:before{
    top: 22px;
}
.sp .ymobile_btnArea .applyBtnWrap .decoration:after{
    top: 29px;
}
}
/* loginMod__loginmodule */
.loginMod{
  margin: 0 10px 15px;
  border: 3px solid #ddd;
  text-align: center;
  font-size:14px;
}
.loginMod.registered{
  background: #FCFCFC;
}
.loginMod.registered .comment_header{
  margin-bottom: 10px;
}
.pc .loginMod.registered .comment_header{
  margin-bottom: 15px;
}
.pc .loginMod{
  width: 950px;
  margin: 0 auto 30px;
}
.loginMod .formText{
  border: 2px solid #333;
  border-radius: 5px;
  font-size:25px;
  font-weight: bold;
  padding: 10px;
  margin: 15px 10px 10px;
  word-break: break-all;
  word-wrap: break-word;
  height: auto;
  line-height: 1em;
  font-size: 150%;
}
.pc .loginMod .formText{
  width: 350px;
  padding: 10px;
  margin: 15px auto 10px;
}

/* loginbotton__commonbtn*/
.loginidbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1% auto 6%;
    box-sizing: border-box;
}
.pc .loginidbox {
    width: 950px;
    margin: 8px auto 34px;
}
.login_cpbutton,
.getid_cpbutton {
    width: 41.5%;
    max-width: 278px;
}
.pc .login_cpbutton,
.pc .getid_cpbutton {
    max-width: 260px;
}
.login_cpbutton {
    margin: 0 5% 0 6%;
}
.pc .login_cpbutton {
    margin: 0 30px 0 6%;
}
.getid_cpbutton {
    margin: 0 6% 0 0;
}
.login_cpbutton .loginlabel,
.getid_cpbutton .registrationlabel {
  background: #304fa7;
  background: -moz-linear-gradient(top, #5383ff, #304fa7);
  background: -webkit-linear-gradient(top, #5383ff, #304fa7);
  background: linear-gradient(to bottom, #5383ff, #304fa7);
  border-radius: 6px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 1);
  box-shadow: 0 3px 6px black;
  display: block;
    position: relative;
}
.pc .login_cpbutton .loginlabel,
.pc .getid_cpbutton .registrationlabel {
  border-radius: 10px;
  box-shadow: 0 5px 5px black;
}
.login_cpbutton .loginlabel{
  color: #fff;
  font-size: 3.4vw;
  text-shadow: 0px 0px 0px #fff, 0px 0px 0px #fff;
  font-weight: bold;
  line-height: 1.25em;
  padding: 5% 6px 0;
  height: 114%;
    z-index: 9999;
}
#yjContentsBody a.loginlabel:visited,
#yjContentsBody a.loginlabel:link{
    color: #fff;
}
.getid_cpbutton .registrationlabel {
  color: #5383ff;
  font-size: 3.4vw;
  font-weight: bold;
  text-shadow: 0px 0px 0px #5383ff, 0px 0px 0px #5383ff;
  line-height: 1.25em;
  padding: 5% 6px 0;
  height: 110%;
  z-index: 9999;
}
#yjContentsBody a.registrationlabel:visited,
#yjContentsBody a.registrationlabel:link {
  color: #5383ff;
}
.login_cpbutton .loginlabel:before,
.getid_cpbutton .registrationlabel:before{
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 91%;
  border-radius: 6px;
  z-index: -1000;
}
.pc .login_cpbutton .loginlabel:before,
.pc .getid_cpbutton .registrationlabel:before{
  border-radius: 10px;
  height: 88%;
}
.login_cpbutton .loginlabel:before{
  background: -webkit-linear-gradient(top, #5383ff, #4270ff);
  background: linear-gradient(to bottom, #5383ff, #4270ff);
}
.getid_cpbutton .registrationlabel:before{
    background: #fff;
    border: solid 2px;
    box-sizing: border-box;
}
.pc .getid_cpbutton .registrationlabel:before{
    border: solid 3.5px;
}


.pc .login_cpbutton .loginlabel,
.pc .getid_cpbutton .registrationlabel{
  font-size: 26px;
  padding: 4% 6px 0;
}
.pc .getid_cpbutton .registrationlabel{
  letter-spacing: -0.5px;
}
.pc .login_cpbutton .loginlabel{
  letter-spacing: 1px;
}
.pc .login_cpbutton .loginlabel .text,
.pc .getid_cpbutton .registrationlabel .text{
  font-size: 23px;
  letter-spacing: 1px;
}
@media screen and (min-width:720px) {
.login_cpbutton .loginlabel,
.getid_cpbutton .registrationlabel{
  font-size: 2em;
}
}
/* ログイン_ID取得_commonbtn
==========================*/
fieldset{
  margin:0;
  padding:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  line-height: 0;
}
.sp fieldset {
    margin: 20px 10px 20px;
    padding: 15px 0;
    border-width: 1px;
    border-style: solid;
    border-color: #333;
    text-align: center;
    line-height: 0;
}
.pc fieldset {
  width: 950px;
  margin: 30px auto 20px;
  padding: 20px 0;
  text-align: center;
  border: 1px solid #333;
  box-sizing: border-box;
    height: 155px;
}
fieldset a {
    text-decoration: none;
}
.sp fieldset img {
    width: 45%;
    max-width: 300px;
}
.pc .btnTop_read{
  font-size: 20px;
  text-indent: 0.8em;
}
/*Chromeのみに対応*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
.pc .btnTop_read{
   padding: 1px 0;
}
}
.applyBtn_login input:hover,
.applyBtn_id input:hover{
  opacity: 0.8;
}
/*firefoxのみに対応*/
@-moz-document url-prefix() {
legend {
position: relative;
  width: 940px;
}
legend::before,
legend::after {
  position: absolute;
  top: 35%;
  left: 0;
  width: calc((100% - 23em) / 2);
  content: ' ';
  border-top: 1px solid #333;
  margin-right: -6px;
}
legend::after {
  right: 0;
  left: auto;
}
.btnTop_read{
  margin-top: 0px;
}
.pc fieldset{ 
border-top: none; 
}
}

@media all and (-ms-high-contrast: none) {
legend {
position: relative;
  width: 940px;
}
legend::before,
legend::after {
  position: absolute;
  top: 35%;
  left: 0;
  width: calc((100% - 23em) / 2);
  content: ' ';
  border-top: 1px solid #333;
}
legend::after {
  right: 0;
  left: auto;
}
.btnTop_read{
  margin-top: 0px;
  text-align:center;
}
}
#fixedArea a:hover,#fixedEnd a:hover {
  text-decoration: none;
}
sp .btnTop_read {
    font-size: 14px;
    text-align: center;
}
@media screen and (max-width: 370px){
.btnTop_read {
    font-size: 12px;
    text-align: center;
}
}

/* islimitedBenefits_loginmodule */
.benefits_guide{
  border: 2px solid #4397a7;
  border-radius: 5px;
  font-size: 19px;
  font-weight: bold;
  color: #4397a7;
  margin: 15px 10px 10px;
  word-break: break-all;
  word-wrap: break-word;
  height: auto;
  line-height: 1em;
  font-size: 150%;
  background: #fff;
  font-weight: normal;
}
.benefits_guide a {
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  color: #4396a7;
}
.benefits_guide span{
  position: relative;
  display: inline;
}
.benefits_guide span:after {
    content: "";
    display: inline-block;
    position: relative;
    right: -8px;
    top: 0px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #4396a7 transparent transparent transparent;
}
.pc .benefits_guide span:after {
    right: -18px;
    border-width: 16px 12px 0 12px;
    border-color: #4396a7 transparent transparent transparent;
}
.pc .middle_btn_width{
  width: 350px;
  margin: 0 auto;
}
.sp .comment {
  padding-top: 10px;
}
.pc .comment {
  padding: 15px 15px 0;
  font-size: 16px;
}
.comment.commentbenefits {
  padding: 0;
}
.commentbenefits .comment_header {
  padding: 15px 0;
  background: #fff;
}
.sp .comment_header {
    margin: 0 10px;
}
.pc .commentbenefits .comment_header {
  padding: 15px;
}
.sp .comment.commentbenefits .comment_header p:nth-child(1) {
    padding: 0 10px;
}
.pc .comment p:nth-child(2){
  font-weight: bold;
}
.comment_body {
    margin-bottom: 8px;
}
.pc .comment_body {
    width: 374px;
    margin: 15px auto 25px;
}
.sp .comment_body {
    padding-top: 5px;
}
.comment_body .paypay_id_cooperation {
    display: -webkit-box;
    display: flex;
    box-sizing: border-box;
    margin-bottom: 10px;
    background: #fff;
}
.sp .comment_body .paypay_id_cooperation {
    padding: 0 10px;
}
.paypay_id_cooperation dt, .paypay_id_cooperation dd {
    width: 50%;
    padding: 5px 0;
}
.paypay_id_cooperation .cooperation{
    margin-left: 10px;
}
.paypay_id_cooperation .cooperation img {
    width: 22px;
    vertical-align: middle;
}
.paypay_id_cooperation .cooperation span {
    padding: 0 10px 0 5px;
}
.paypay_id_cooperation .paypay_id_status {
    background: #fcf3e6;
    margin-right: 10px;
}
.paypay_id_cooperation .paypay_id_status span {
    vertical-align: middle;
}
.paypayjoin_btn {
    border: #1b74fe 2px solid;
    border-radius: 5px;
    color: #1b74fe;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0px 3px 1px #ccc;
}
.sp .paypayjoin_btn{
    margin: 0 20px;
}
.paypayjoin_btn a {
    width: 100%;
    padding: 10px 0;
    display: block;
    text-decoration: none;
}
/* SP用 */
.paypayjoin_btn a,
.paypayjoin_btn a:link,
.paypayjoin_btn a:visited,
.paypayjoin_btn a:hover{
    color: #1b74fe;
}
/* PC用 */
#yjContentsBody .paypayjoin_btn a,
#yjContentsBody .paypayjoin_btn a:link,
#yjContentsBody .paypayjoin_btn a:visited,
#yjContentsBody .paypayjoin_btn a:hover{
    text-decoration: none;
    color: #1b74fe;
}
.commentbenefits .comment_footer {
  background: #f0eeef;
  border-top: 3px solid #ddd;
  padding: 10px 0;
}
.pc .commentbenefits .comment_footer{
  padding: 30px 0 20px;
}
.comment_footer .comment_footertext{
  margin-bottom: 10px;
}
.sp .comment_footer .comment_footertext {
    padding: 0 10px;
}
/* privilegeNotice
==========================*/
.privilegeNotice{
    width: 100%;
    margin: 10px auto 30px;
    padding: 0 10px;
    font-size: 87.5%;
    max-width: 610px;
    box-sizing: border-box;
    line-height: 1.5;
}
.pc .privilegeNotice{
  max-width: 950px;
  margin: 0 auto 30px;
  border: 3px solid #ddd;
  background: #FCFCFC;
  font-size: 14px;
  line-height: 1.6;
}
.privilegeNotice dt{
  font-weight: bold;
}
.sp .privilegeNotice dt{
    text-align: left;
}
.pc .privilegeNotice dt{
  padding: 5px 0;
  margin: 0 20px 20px;
  text-align: center;
  border-bottom: 2px solid #ddd;
  font-size:16px;
}
.privilegeNotice dd{
  text-align: left;
}
.pc .privilegeNotice dd{
  font-size: 87.5%;
  text-align: left;
  padding: 0 20px 20px;
}
.privLink{
  width: 290px;
  margin: 0 auto 20px;
  text-align: right;
  font-size: 14px;
}
.pc .privLink{
  width: 950px;
  margin: 0 auto 10px;
}

/* explainBox
==========================*/
.explainBox{
  width: 250px;
  padding: 20px;
  margin: 0 auto 30px;
  border: 5px solid #ddd;
  text-align: left;
}
.pc .explainBox{
  width: 890px;
  padding: 35px 25px 30px;
  position: relative;
}
.explainBox:after{
  content: "";
  display: table;
  clear: both;
}
.sp .explainBox .title{
  background: url(https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.0.0/segment/sprite_explain.png) no-repeat -5px top;
  background-size: 250px auto;
  width: 250px;
  height: 70px;
  text-indent: -9999px;
  overflow: hidden;
}
.sp .explainBox.cardDesign{
  position: relative;
}
.sp .explainBox.cardDesign .title{
  background-position: 0 -44px;
}
.explainBox .tCard .title{
  background-position: 0px -125px;
  height: 40px;
}
.pc .explainBox .tCard .title{
  background: url(https://s.yimg.jp/images/yjcard/campaign/pc/img/register/2.0.0/segment/sprite_explain.png) no-repeat 0 -200px;
  text-indent: -9999px;
  overflow: hidden;
  width: 420px;
  height: 57px;
  margin-bottom: 10px;
}

.sp .explainBox .tCard .text p{
  margin-bottom: 10px;
}

.explainBox .tCard_m .title{
  background-position: 0px -181px;
  height: 65px;
}

.explainBox .tCard_m .text:before {
    background: url(https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.0.0/segment/tcard_m.png) no-repeat center 0px;
    background-size: 250px auto;
    padding-top: 225px;
    margin-top: 15px;
    content: "";
    display: block;
    position: relative;
}

.pc .explainBox .tCard_m .text:before {
    background: url(https://s.yimg.jp/images/yjcard/campaign/pc/img/register/2.0.0/segment/tcard_m.png) no-repeat center 0px;
    position: absolute;
    width: 380px;
    content: "";
    top: 5px;
    z-index: 20;
    display: block;
    left: -10px;
}
.pc .explainBox .tCard_m .title{
  background: url(https://s.yimg.jp/images/yjcard/campaign/pc/img/register/2.0.0/segment/sprite_explain.png) no-repeat 0 -345px;
  text-indent: -9999px;
  overflow: hidden;
  width: 480px;
  height: 57px;
  margin-bottom: 10px;
}
.explainBox .tCard .title{
  background-position: 0px -125px;
  height: 40px;
}
.sp .explainBox .tCard .text p{
  margin-bottom: 10px;
}
.explainBox .tcube{
  background: url("https://s.yimg.jp/images/yjcard/campaign/pc/img/20171002/sprite_explain_1002.png") no-repeat;
}
.pc .explainBox .text{
  letter-spacing: 1px;
  width: 450px;
  line-height:1.9;
}
.sp .explainBox .tCard_m .title{
  background-position: 0px -181px;
  height: 65px;
}

/* tCard */
.pc .explainBox .tCard{
  z-index:1;
  padding: 0px 0px 25px 410px;
  position: relative;
}
.sp .explainBox .tCard_m{
  margin-top: 25px;
  position: relative;
}
.pc .explainBox .tCard_m{
  z-index:1;
  padding: 10px 0px 10px 410px;
  position: relative;
  height: 200px;
}
.explainBox .tCard p{
  margin-bottom: 10px;
}
.explainBox .tCard .tcube{
  position: absolute;
  z-index:3;
  left: -79px;
  bottom: -96px;
  display: block;
  width: 175px;
  height: 170px;
  background-position: 0 -1500px;
}

.sp .explainBox .tCard .text:before {
    background: url(https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.0.0/segment/tcard.png) no-repeat center 0px;
    background-size: 250px auto;
    padding-top: 171px;
    content: "";
    display: block;
    margin-top: 5px;
}
.pc .explainBox .tCard .text:before {
    background: url(https://s.yimg.jp/images/yjcard/campaign/pc/img/register/2.0.0/segment/tcard.png) no-repeat center 0px;
    position: absolute;
    width: 380px;
    height: 260px;
    content: "";
    top: -5px;
    z-index: 20;
    left: -10px;
}

/* privilege02 */
#yjContentsBody .change_id a,
#yjContentsBody .privilegeNotice a:link,
#yjContentsBody .campaignInfo a:link,
#yjContentsBody .explainBox a:link{
  color: #1a75ff;
  text-decoration: underline;
}
/* pc */
#yjContentsBody #benefits_guide a:link,
#yjContentsBody #benefits_guide a:visited,
#yjContentsBody #benefits_guide a:hover{
  color: #4396a7;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 10px 0;
}
/* sp */
#benefits_guide a:link,
#benefits_guide a:visited,
#benefits_guide a:hover{
  color: #4396a7;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 10px 0;
}
#yjContentsBody .loginMod .detailBtn a:link{
  text-decoration: none;
}

/* other_benefits
==========================*/
.other_benefits{
  margin:0 auto 25px;
}
.sp .other_benefits{
    max-width:400px;
}
.pc .other_benefits{
  width: 950px;
}
.sp .other_benefits img{
    width:100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.pc .other_benefits img{
    width: 950px;
}

/* applyFlow
==========================*/
.applyFlow{
  margin:0 auto 25px; 
}
.sp .applyFlow{
    max-width:400px;
}
.pc .applyFlow{
    width:950px;
}
.sp .applyFlow img{
    width:100%;
}
.pc .applyFlow img{
    width: 950px;
}

/* campaignInfo
==========================*/
.campaignInfo{
  max-width: 610px;
  padding: 0 10px;
  margin: 0 auto;
  background: #fff;
  text-align: left;   
}
.pc .campaignInfo {
  max-width:950px;
  padding:20px 0;
  font-size:13px;
}
.campaignInfo_primary{
  border: solid 1px #ddd;
  padding: 8px;
  margin-bottom: 20px;
}
.sp .campaignInfo_primary{
  line-height: 1.5;
}
.pc .campaignInfo_primary{
  margin-bottom: 30px;
}
.pc .campaignInfo .cf:after{
  content: "";
  display: table;
  clear: both;
}
.pc .campaignInfo .fleft{
  float: left;
}
.pc .campaignInfo .fright{
  float: right;
}
.campaignInfo .InfoTitle{
  background: #ec141f;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  font-size: 18px;
  text-align: center;
}
.campaignInfo .InfoSemiTitle{
  background: #333;
  color: #fff;
  font-weight: bold;
  padding: 8px 10px;
  font-size: 18px;
  text-align: center;
}
.pc .campaignInfo .InfoSemiTitle{
  padding: 1px;
}
.sp .campaignInfo .InfoTitle{
    margin-bottom: 10px;
}
.sp .campaignInfo .InfoTitle:not( :first-child ) {
  margin-top:30px;
}
.pc .campaignInfo .InfoTitle {
  height:30px;
  line-height:30px;
  padding:0 10px;
}
.sp .campaignInfo dl {
    border-bottom: 1px dotted #cccccc;
}
.campaignInfo dl:last-child {
    border: none;
}
.pc .campaignInfo dl {
  padding:20px;
  border-bottom:1px dotted #ccc;
}
.pc .campaignInfo dl:last-child {
    border: none;
}
.campaignInfo dl.noBorder{
  border-bottom: none;
}
.campaignInfo dl dt {
  font-weight:bold;
  line-height:1em;
}
.pc .campaignInfo dl dt {
  width:285px;
}
.sp .campaignInfo dt{
  padding: 6px 0 5px;
}
.sp .campaignInfo dd{
  padding: 5px 0 6px;
  font-size: 14px;
}
.pc .campaignInfo dd {
  width:605px;
  font-size:13px;
}
.pc .campaignInfo dd.wide {
    width: auto;
}
.campaignInfo dl dd strong {
  font-weight:bold;
  margin:0 0 3px 0;
}
.campaignInfo dl dd p {
  margin:0 0 10px 0;
}
.campaignInfo dl dd p.ind {
  padding-left: 1em;
  text-indent: -1em;
  margin: 0 auto;
}
.pointnotice{font-size:95%;font-weight:bold;color:#F00;padding:10px 0 0 20px;text-align:center;}
.bdr{border-top: 1px dotted #cccccc;padding-top:10px;}
.mgT10{ margin-top:10px; }

/*
通常campaignInfo
 */
.sp .normal_cpInfo,
.sp .campaignNotes.normal_cpNotes{
  max-width: 610px;
  padding: 0 10px;
  margin: 0 auto;
}
.normal_cpInfo .wallet_info,
.sp .campaignNotes.normal_cpNotes .privilegeNotice {
  border: 3px solid #ddd;
  padding: 5px 20px 0;
  margin-bottom: 40px;
}
.pc .normal_cpInfo .wallet_info{
  padding-top: 0;
}
.normal_cpInfo .InfoSemiTitle {
  background: #fff;
  color: #333;
  border-bottom: 2px solid #ddd;
  font-size: 16px;
}
.sp .normal_cpNotes .privilegeNotice dt {
  background: #fff;
  color: #333;
  border-bottom: 2px solid #ddd;
  font-size: 16px;
  text-align: center;
  padding: 5px;
}
.sp .normal_cpNotes .privilegeNotice dd {
  padding: 5px 0 20px;
}
.sp .normal_cpInfo dd {
  font-size: 13px;
}
.pc .normal_cpInfo .InfoSemiTitle,
.pc .normal_cpNotes dt{
  font-size: 24px;
  padding: 5px 0;
}
.pc .normal_cpInfo dd
.pc .normal_cpNotes dd{
  font-size: 14px;
}

/* ページ上部に戻るボタン
==========================*/
.pc .page-up-move{
  width: 950px;
  margin: 0 auto;
  padding-bottom: 15px;
  text-align: right;
  font-size: small;
}
.sp .page-up-move{
    text-align: center;
    font-size: small;
    padding: 15px;
    border-top: 3px solid #d4d7db;
}
.page-up-move a:link,.page-up-move a:visited{
    color: #09a;
}
.page-up-move .page-up{
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
  vertical-align: middle;
  text-decoration: none;
}
.page-up-move .page-up::after,.page-up-move .page-up:before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle
}
.page-up-move .page-up-lnk::before{
    width: 16px;
    height: 16px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #09a;
}
.page-up-move .page-up-lnk::after{
    left: 5px;
    top: 2px;
    width: 4px;
    height: 4px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pc .cmpsubtitle {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.sp .cmpsubtitle {
  text-align: center;
  margin-bottom: 15px;
}

.pc .cmpsubtitle--txt {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.05em;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 40%, #fff362 40%, #fff362 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 40%,#fff362 40%,#fff362 100%);
  background: linear-gradient(to bottom, #ffffff 0%,#ffffff 40%,#fff362 40%,#fff362 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fff362',GradientType=0 );
}
.sp .cmpsubtitle--txt {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.02em;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 60%, #fff362 60%, #fff362 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 60%,#fff362 60%,#fff362 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#ffffff 60%,#fff362 60%,#fff362 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fff362',GradientType=0 );
}

.mono_content_wrap{
  padding: 0 10px 20px;
}
.pc .mono_content_wrap{
  padding-left: 25px;
  padding-right: 25px;
}
.sp .mono_content_wrap{
  font-size: 12px;
}


/* ログインボタン下テキスト
==========================*/
.mainVisualBody_paypay{
  margin-bottom: 20px;
}

.btnBottomMsg,
.btnBottomMsg_sb,
.btnBottomMsg_wrap
{
  text-align: center;
}

.btnBottomMsg_sb{
  margin-top: 10px;
  padding: 0 10px;
}

.sp .btnBottomMsg{
  margin-top: 10px;
}

.btnBottomMsg_wrap{
  margin-bottom: 20px;
}

.msgCpBtnBottom {
  color: #333;
  font-weight: normal;
}

.sp .msgCpBtnBottom {
  font-size: 12px;
  margin: 0 8px;
}

.sp .btnTop .msgCpBtnBottom {
    font-size: 12px;
    margin: 0 10px;
}

.msgCpBtnBottom .msgCpBtnHeading{
  font-weight: bold;
}

.btnBottomMsg_individual{
  margin-top: 20px;
}

.btnBottomMsgWarning {
  font-size:16px;
  font-weight: bold;
  color: #E0002A;
}
.sp .btnBottomMsgWarning {
  padding: 0 12px;
}

.msgCpOver {
  line-height: 1;
  padding: 0 12px;
  color: #333;
  font-weight: normal;
}
.ymobile_btnArea .msgCpOver{
      margin-bottom: 10px;
}
.msgCpOver--archive {
  padding-bottom: 15px;
}

.pc .msgCpOver--archive {
  padding-bottom: 30px;
}

/* キャッシュレス
==========================*/
.pc .cashless_wrap {
  width: 950px;
  margin: 50px auto 50px;
}
.sp .cashless_wrap {
  max-width: 400px;
  margin: 30px auto 40px;
}
.sp .cashless_wrap img{
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.pc .cashless_wrap .caution{
  color: #333333;
  width: 480px;
  margin: 15px auto 0;
  text-indent: -1em;
  padding-left: 1em;
}
.sp .cashless_wrap .caution p{
  width: 100%;
  margin: 15px 0 0;
  padding: 0 10px;
  box-sizing: border-box;
}
.sp .cashless_wrap .caution p{
  color: #333333;
  text-indent: -1em;
  padding-left: 1em;
  box-sizing: border-box;
}
.pc .disp_none{
    display: none;
}

/* egg用 */
@supports (-ms-ime-align: auto) {
 .pc .btnTop_read{
    margin-left:240px;
  }
 .pc .snsarea{
    width:240px;
    margin:0 auto 20px;
  }
 .pc .tw{
    float:left!important;
    width:110px!important;
  }

}

/* 会員申し込み済み時の表示 */
.redirect_guidewrap {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 60px;
}
.redirect_guide {
    text-align: center;
    margin-bottom: 30px;
}
.redirect_guide a:visited {
    color: #00e;
}
.redirectTitle {
    margin: 0 auto;
    font-size: 18px;
}
.redirectNotice {
    margin: 20px 10px 0;
}
.redirectPayPayNotice {
    margin: 0 auto;
    border: 1px solid #666;
    padding: 10px;
    text-align: left;
    max-width: 640px;
    box-sizing: border-box;
}
.recommend_heading {
    font-size: 16px;
    font-weight: bold;
    color: #edb631;
    margin: 40px 0 20px;
}
.recommend_heading span {
    position: relative;
}
.recommend_figure {
    padding: 0 10px;
}
.recommend_figure img {
    width: 100%;
    max-width: 640px;
}
.recommend_heading span::before, .recommend_heading span::after {
    position: absolute;
    width: 0;
    height: 22px;
    content: '';
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    border-width: 0 0 0 2px;
    border-style: solid;
    border-color: #edb631;
}
.recommend_heading span::before {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    left: -10px;
    bottom: -2px;
}
.recommend_heading span::after {
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
    right: -7px;
    bottom: -2px;
}
.aside_footer.contfooter-yjlnc {
    text-align: center;
}
@media screen and (min-width: 950px) {
.aside_footer.contfooter-yjlnc {
    margin-bottom: 80px;
}
}
@media screen and (max-width: 320px) {
.aside_footer.contfooter-yjlnc {
    margin-bottom: 32px;
}
}

/* 2000LP事前告知 */
.txt_border_dotted {
        border-bottom: dotted 2px #333;
}
.txt_cancel {
        text-decoration: line-through; 
}
.is-inline-block {
        display: inline-block;
}
.pc .cp_2000_notification {
        font-size: 16px;
}

.sp .cp_2000_notification {
        font-size: 14px;
}

/* 通常LP */
.benefits_area{
    background: #ffffff;
    margin-bottom: 30px;
}
.pc .benefits_area{
    margin-bottom: 100px;
}

.benefits_area .benefits_inner{
    max-width: 600px;
    margin: 0 auto;
}
.pc .benefits_area .benefits_inner{
    max-width: none;
    width: 950px;
    text-align: center;
}
.benefits_area .benefits_inner img {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.pc .benefits_area .benefits_inner img {
    width: auto;
    padding: 0 5px;
    box-sizing: border-box;
}
.pc .benefits_area .benefits_inner img {
    width: auto;
}
.benefits_area .ttl_ico{
    text-align: center;
    margin: 50px auto 20px;
}
.pc .benefits_area .ttl_ico{
    margin: 84px auto 35px;
}

.benefits_area .ttl_ico img{
    width: 70px;
}
.pc .benefits_area .ttl_ico img{
    width: 100px;
}
.benefits_area .ttl_benefits_img{
    text-align: center;
    margin-bottom: 15px;
}
.pc .benefits_area .ttl_benefits_img{
    margin-bottom: 35px;
}
.benefits_area .benefits_text_img{
    text-align: center;
}
.benefits_area .benefits_h4_img{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 32px;
}
.pc .benefits_area .benefits_h4_img{
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
}
.pc .benefits_2col{
    width: 820px;
    margin: 0 auto;
    overflow:hidden;
}
.benefits_area .benefits_text{
    padding: 0 20px 20px;
    font-size: 12px;
}
.pc .benefits_area .benefits_text{
    padding: 20px 0 0 0 ;
    font-size: 18px;
    display: block;
    width: 360px;
    box-sizing: border-box;
    float: left;
    text-align: left;
}
.pc .tcard_presentation .benefits_text {
    padding-top: 40px;
}
.pc .benefits_2col_img{
    display: block;
    width: 450px;
    text-align: right;
    float: right;
}
.benefits_area .benefits_h5_img{
    margin: 25px 0 15px;
}
.pc .benefits_area .benefits_h5_img{
    margin: 48px 0 34px;
}
.benefits_area .list_txt,.benefits_area .list_txt02{
    font-size: 11px;
    display: block;
    margin: 30px 20px 40px;
}
.pc .benefits_area .list_txt,.pc .benefits_area .list_txt02{
    font-size: 14px;
    margin: 40px 0 80px;
}
.benefits_area .list_txt li{
    text-indent: -24px;
    padding-left: 24px;
}
.benefits_area .list_txt02 li{
    text-indent: -12px;
    padding-left: 12px;
}
.benefits_area .shop_box_list li{
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}
.pc .benefits_area .shop_box_list li{
    display: inline-block;
    font-size: 0;
}
.benefits_area .shop_box_list li:after{
    content: "";
    width: 19px;
    height: 19px;
    background: url("https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.1.2/segment/ico_pulus.png") no-repeat;
    background-size: 19px auto;
    position: absolute;
    top: -14px;
    left: 50%;
    margin-left: -8px;
    z-index: 10;
}
.pc .benefits_area .shop_box_list li:after{
    width: 38px;
    height: 38px;
    background-size: 38px auto;
    top: 50%;
    margin-top: -19px;
    left: -22px;
    margin-left: 0;
}
.benefits_area .shop_box_list li:last-child{
    margin: 5px 0 20px 0;
}
.pc .benefits_area .shop_box_list li:last-child{
    margin: 35px 0 20px 0;
}

.benefits_area .shop_box_list li:last-child:after,.benefits_area .shop_box_list li:first-child:after{
    content: none;
}

.benefits_area .shop_box{
    background: #f5f5f5;
    margin: 10px 10px;
    padding: 13px 5px 5px;
}
.pc .benefits_area .shop_box{
    margin: 0;
    padding: 30px;
}
.benefits_inner.benefits_shopping,
.card_area .benefits_inner{
    margin-top: 30px;
    border-top: #eeeeee solid 5px;
    border-bottom: none;
}
.pc .card_area .benefits_inner{
    margin-top: 100px;
}
.pc .step_card{
    margin-top: 65px;
}
.step_card li{
    position: relative;
    margin-bottom: 18px;
}
.pc .step_card li{
    margin-bottom: 33px;
}
.step_card li::after{
    position: absolute;
    content: "";
    width: 20px;
    height: 10px;
    background: url("https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.2.0/segment/ico_arw.png") no-repeat;
    background-size: 20px auto;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
}
.pc .step_card li::after{
    width: 38px;
    height: 18px;
    background-size: 38px auto;
    bottom: -20px;
}
.step_card li:last-child::after{
    content: none;
}
.card_description_area{
    max-width: 600px;
    background: #f5f5f5;
    padding: 40px 20px 20px;
    margin: 0 auto 20px;
    box-sizing: border-box;
}
.pc .card_description_area{
    max-width: none;
    padding: 0;
    margin-bottom: 100px;
}
.pc .card_dsp_pc_inner{
    width: 960px;
    margin: 0 auto;
    padding: 95px 0;
    overflow: hidden;
}
.card_dsp_inner{
    background: #ffffff;
    padding: 35px 25px;
    margin-bottom: 20px;
}
.pc .card_dsp_inner{
    width: 454px;
    display: block;
    float: left;
    margin: 0 13px;
    box-sizing: border-box;
    border: #eeeeee solid 2px;
    height: 700px;
    padding: 77px 66px;
    margin-bottom: 0;
    position: relative;
}
.card_dsp_inner h5{
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}
.pc .card_dsp_inner h5{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
.card_dsp_inner .card_dsp_img{
    text-align: center;
    margin: 30px 0 30px;
}
.pc .card_dsp_inner .card_dsp_img{
    position: absolute;
    top: 200px;
    left: 90px;
}
.card_dsp_inner .card_dsp_img img{
    width: 130px;
}
.pc .card_dsp_inner .card_dsp_img img{
    width: 260px;
}
.card_dsp_txt{
    font-size: 12px;
}
.pc .card_dsp_txt{
    position: absolute;
    top: 540px;
    font-size: 18px;
    line-height: 24px;
    width: 333px;
    display: block;
}
.pc .card_dsp_inner .card_dsp_txt:nth-child(3){
    top: 415px;
}
.pc .card_dsp_inner:nth-child(2)  .card_dsp_txt{
    top: 415px;
}
.card_dsp_link{
    display: block;
    margin-top: 5px;
}
.card_dsp_txt a{
    color: #1a75ff;
    text-decoration: none;
}
.note_box{
    border: #eeeeee solid 2px;
    padding: 20px 10px;
    margin: 0 auto 40px;
    box-sizing: border-box;
    width: 95%;
    max-width: 600px;
    background: #ffffff;
}
.pc .note_box{
    background: #ffffff;
    border: #eeeeee solid 2px!important;
    padding: 10px 10px;
}
.note_box dt{
    font-size: 17px;
    text-align: center!important;
    display: block;
    padding-bottom: 10px;
    border-bottom: #eeeeee solid 2px;
    box-sizing: border-box;
}
.pc .note_box dt{
    font-size: 24px;
    text-align: center!important;
    display: block;
    padding-bottom: 10px;
    border-bottom: #eeeeee solid 2px;
    box-sizing: border-box;
}
.note_box dd{
    padding: 10px 5px 0;
    box-sizing: border-box;
    font-size: 11px;
}
.pc .note_box dd{
    font-size: 14px;
}
.about_box {
    border: #eeeeee solid 2px;
    padding: 20px 10px 0;
    margin: 0 auto 40px;
    box-sizing: border-box;
    width: 95%;
    max-width: 600px;
}
.pc .about_box {
    padding: 15px 30px 0!important;
    margin: 80px auto 100px;
    width: 950px;
    max-width: none;
}
.about_box .InfoSemiTitle{
    background: #ffffff;
    padding: 0;
    color: #333333;
    font-size: 17px;
    padding-bottom: 10px;
    border-bottom: #eeeeee solid 2px;
}
.pc .about_box .InfoSemiTitle{
    font-size: 24px;
    padding-bottom: 10px!important;
    border-bottom: #eeeeee solid 2px;
}
.about_box .noBorder{
    font-size: 11px;
    padding: 10px 5px 0;
}
.pc .about_box .noBorder{
    font-size: 14px;
    padding: 20px 0 20px;
}
.about_box p{
    font-size: 11px;
}
.about_box a{
    text-decoration: none!important;
}
.pc .about_box p{
    font-size: 14px;
}
.txt_red{
    color: #f71f47;
}
.mb_m{
    margin-bottom: 30px;
}

.deals_paypay {
    max-width: 600px;
    padding: 10px 10px 0;
    margin: 0 auto 40px;
}
.pc .deals_paypay {
    width: 950px;
    max-width: 950px;
    padding: 0;
    margin: 0 auto 100px;
}
.deals_paypay img {
    width: 100%;
}
.deals_paypayfooter{
    padding-top: 10px;
}
.sp .normal_cpNotes .privilegeNotice{
   font-size: 13px;
}
.normal_cpInfo .wallet_info .InfoSemiText {
    padding: 20px 0;
}
.sp .normal_cpInfo .wallet_info .InfoSemiText{
    padding: 5px 0 20px;
    font-size: 13px;
}
.normal_cpNotes dd p,
.normal_cpInfo .wallet_info .InfoSemiText li{
    padding-left: 1em;
    text-indent: -1em;
}
.pc .normal_cpNotes .privilegeNotice dd{
    font-size: 14px;
}
.pc .normal_cpInfo .wallet_info {
    border: 3px solid #ddd;
    padding: 5px 30px 0;
    margin-bottom: 40px;
    font-size: 14px;
}

/* 友達紹介LPからの遷移 */
.mainVisualHead {
    line-height: 17px;
    margin: 0 auto;
    padding-top: 10px;
}
.pc .mainVisualHead {
    width: 960px;
    line-height: 15px;
    margin: 0 auto;
}
.mainVisualHead .text {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px;
}
.sp .mainVisualHead .text {
    padding: 10px;
    margin: 0 10px 5px;
}

/* 2000pt_mainVisual */
.broadmodel .mainVisualBody {
    width: 100%;
    max-width: 640px;
    background: url('https://s.yimg.jp/images/yjcard/campaign/sp/img/register/2.2.0/segment/mv_decoration.png') no-repeat center;
    background-size: cover;
}
.pc .broadmodel .mainVisualBody {
    background: url('https://s.yimg.jp/images/yjcard/campaign/pc/img/register/2.2.0/segment/mv_decoration.png') no-repeat center;
    width: 950px;
    max-width: 950px;
}
.broadmodel .mainVisualBody img {
    background: none;
}
.pc .broadmodel .mainVisualBody img {
    width: auto;
}
.mv_header {
    margin: 0.95% auto 3.9%;
    position: relative;
}
.pc .mv_header {
    width: 724px;
    margin: 9px auto 27px;
}
.pc .mv_header img {
    max-width: 100%;
}
.mv_header .mv_firstmessage {
    min-width: 227px;
    max-width: 454px;
    width: 71%;
    margin-left: 0.4%;
}
.pc .mv_header .mv_firstmessage {
    margin-left: 0;
}
.mv_header .mv_secondmessage {
    min-width: 223.5px;
    max-width: 447px;
    width: 69.65%;
    position: absolute;
    top: 69%;
    left: 12.4%;
    height: 66.2%;
}
.pc .mv_header .mv_secondmessage {
    top: 66px;
    left: 116px;
    height: auto;
}
.sp .mv_header .mv_logo {
    width: 12%;
    bottom: -440%;
    left: 4.5%;
    position: absolute;
}
.pc .mv_header .mv_logo {
    width: 80px;
    height: 80px;
    top: 40px;
    right: 17px;
    position: absolute;
}
.mv_body {
    width: 100%;
    margin: 0 auto 1%;
}
.pc .mv_body {
    margin: 0 auto 5px;
    width: 760px;
}
.mv_bodyinner {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    margin-bottom: 0.4%;
}
.sp .mv_bodymain {
    width: 82%;
}
.sp .mv_bodysub {
    width: 18%;
    padding: 11.3% 6% 0 1%;
    box-sizing: border-box;
}
.pc .mv_bodysub {
    margin: 16px 0 0 5px;
}
.mv_bodymain .mv_facevalue {
    min-width: 222.5px;
    padding-left: 15.3%;
    box-sizing: border-box;
    margin-bottom: -3px;
}
.pc .mv_bodymain .mv_facevalue {
    padding-left: 142px;
}
.sp .mv_bodysub .mv_facevalue_text {
    width: 176px;
    margin-bottom: 5px;
}
.mv_bodysub .mv_facevalue_subtext {
    width: 100%;
}
.pc .mv_bodysub .mv_facevalue_subtext {
    padding: 4px 0 0 2px;
}
.mv_bodybottom {
    width: 74.5%;
    margin: 0 auto;
    display: flex;
}
.mv_bodybottom .mv_facevalue_text {
    box-sizing: border-box;
    width: 65%;
    height: 65%;
}
.mv_bodybottom .mv_facevalue_nexttext{
    width: 27%;
    height: 27%;
}
.mv_footer {
    position: relative;
    padding-top: 8.6%;
}
.pc .mv_footer {
    padding-top: 17px;
}
.mv_footer_visual {
    position: absolute;
    top: 0.5%;
    left: 1%;
    bottom: 0;
    right: 0;
    width: 43.2%;
    margin: auto;
    overflow: hidden;
}
.pc .mv_footer_visual {
    width: 278px;
    top: -1px;
    left: 0;
    bottom: 0;
    right: 0;
}
.mv_footer .mv_blackface,
.mv_footer .mv_redface{
    width: 46.9%;
    box-sizing: border-box;
    height: auto;
}
.mv_footer .mv_blackface {
    padding-right: 1.7%;
}
.mv_footer .mv_redface{
    padding-right: 1.7%;
    float: right;
}
.pc .mv_footer .mv_redface{
    padding-right: 0.6%;
}

.deals_paypayfooter .pp {
  text-align: center;
  background: #f5f5f5;
}

.deals_paypayfooter .pp .title {
  font-weight: bold;
  padding: 10px 10px 5px 10px;
  color: #e70014;
  font-size: 18px;
}

.deals_paypayfooter .pp .text {
  padding: 0px 10px 10px 10px;
}