@charset "utf-8";

@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
.sp { display: none !important; }

/* base pc
============================== */
body {
    color: #1a1a1a;
    font-family: Helvetica,"Hiragino Sans","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",'Noto Sans Japanese', "メイリオ", Meiryo,"Noto Sans SC", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
}
#wrap { padding: 87px 0 150px; background: #f5f5f5;}
#container { width: 800px; margin: 0 auto; }
a, a > * ,input, label {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
input, label, select { cursor: pointer; }
input:focus, select:focus { outline: none; }
img { max-width: 100%; }

/* btn pc
============================== */
.btn { text-align: center; margin: 0 auto; }
.btn a,
.btn input,
.btn button {
    display: inline-block;
    width: auto;
    min-width: 400px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid #ff7c60;
    border-radius: 4px;
    line-height: 1.5;
    padding: 15px;
    margin: 15px auto;
}
.btn a .attentionTxt{
    display: block;
    font-size: 11px;
    line-height: 1.2;
}
.btn a:hover,
.btn input:hover,
.btn button:hover { box-shadow: 0 3px 15px 0 rgba(0,0,0,.25); }
.btn .main        { background: #ff7c60; color: #fff; margin-top: 20px; }
.btn .main:hover{ background: #fa4d28; }
.btn .sub        { background: transparent; color: #ff7c60; }
.btn .sub:hover    { background: #fff; color: #fa4d28; }
.btn .cancel    { background: transparent; color: #777; border-color: transparent; }
.btn .cancel:hover { background: #fff; color: #fa4d28; }
.btn a:not([class]):hover { background: #fff; }
.btn .disabled { background: #ddd !important; cursor: auto; border-color: #ddd !important; }
.btn .disabled-opacity { opacity: 0.3; pointer-events: none; }
.btn .disabled:hover { box-shadow: none; }
.btn + .btn .cancel { margin-top: -10px; }
.txt_btn.btn .sub{
    line-height: 1.7;
    border: none;}
/* header pc
============================== */

body::after {
    content: '';
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.menuOpen::after {
    background: rgba(0, 0, 0, 0.2);
}

header { height: 86px; min-width: 1100px; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.15);z-index: 99;}
header h1 {
    width: 164px;
    float: left;
    padding: 0 50px 0 110px;
    height: 100%;
}
header h1 a {
    height: 100%;
    background: url(/images/common/logo_header_pc.svg) no-repeat center;
    background-size: contain;
}
/* gnav */
header #gnav {
/*
    position: absolute;
    right: 20px;
    bottom: 0;
*/
}
#navBtn {
    width: 34px;
    height: 87px;
    position: fixed;
    left: 40px;
    top: 0;
    z-index: 9999;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
#navBtn .bar {
    display: block;
    position: absolute;
    left: 0;
    width: 34px;
    height: 2px;
    background: #1a1a1a;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#navBtn .top {
    top: 29px;
}
#navBtn .mid {
    top: 41px;
}
#navBtn .btm {
    top: 53px;
}
.menuOpen #navBtn {
    position: fixed;
    left: 26%;
}
.menuOpen #navBtn span {
    background: #000;
}
.menuOpen #navBtn .top {
    top: 41px;
    -webkit-transform: rotate(45deg);
}
.menuOpen #navBtn .mid {
    opacity: 0;
}
.menuOpen #navBtn .btm {
    top: 41px;
    -webkit-transform: rotate(-45deg);
}
header .mainNav li { display: inline-block; }
header .mainNav li.mypage,
header .mainNav li.faq,
header .mainNav li.login,
header .mainNav li.logout { display: none; }
header .mainNav a {
    display: inline-block;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 18px;
    position: relative;
    height: 100%;
    line-height: 86px;
}
header .mainNav a::after {
    content: '';
    display: block;
    width: 90%;
    height: 0;
    background: #ff7c60;
    position: absolute;
    left: 5%;
    bottom: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
header .mainNav a:hover,
#home header .mainNav li.home a { color: #ff7c60; }
header .mainNav a:hover::after,
#home header .mainNav li.home a::after { height: 3px; }




#gnav {
    width: 25%;
    height: 100%;
    background: #202020;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px 40px;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 999;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    color: #808080;
    font-weight: bold;
}
#gnav::-webkit-scrollbar {
  width: .5em;
  background: #f00;
}

#gnav::-webkit-scrollbar-track {
  background: #202020;
}

#gnav::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, .2);
  border-radius: 100px;
}

.menuOpen #gnav {
    left: 0;
    top: 0;
}
#gnav .inner {
    position: relative;
    min-height: 100%;
    padding-bottom: 60px;
    box-sizing: border-box;
    margin:0;
}
#gnav .inner>ul:not(:last-of-type) {
    border-bottom: 1px solid #444;
    padding: 0 0 10px;
    margin: 0 0 10px;
}
#gnav .inner>ul:not(:last-of-type) {
    border-bottom: 1px solid #444;
    padding: 0 0 10px;
    margin: 0 0 10px;
}
#gnav li {
    position: relative;
    padding-left: 43px;
}
#gnav li a {
    font-weight: bold;
}
#gnav a {
    display: block;
    color: #f5f5f5;
    text-decoration: none;
    line-height: 36px;
    font-weight: 500;
}
#gnav li.sub a {
    font-size: 13px;
    font-weight: 300;
}



#gnav li>a::before, #gnav #langtype-link::before {
    content: '';
    width: 28px;
    height: 28px;
    display: inline-block;
    background: no-repeat center;
    background-size: 66%;
    vertical-align: middle;
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 5px;
}
#gnav li.home a::before {
    background-color: #ff7c60;
    background-image: url(/images/sp/common/icon_tixplus_.png);
    background-size: 110% auto;
    border-radius: 100px;
}
#gnav li.login a::before {
    background-image: url(/images/sp/common/icon_gnav_login.svg);
}
#gnav li.guideTrade a::before {
    background-color: #ff7c60;
    background-image: url(/images/sp/common/icon_trade.png);
    background-size: 110% auto;
    border-radius: 100px;
}
#gnav li.introduction a::before {
    background-image: url(/images/sp/common/icon_gnav_guide.svg);
    background-size: 55% auto;
}
#gnav li.faq a::before {
    background-image: url(/images/sp/common/icon_gnav_help.svg);
}
#gnav li.aboutTrade a::before {
    background-image: url(/images/sp/common/icon_gnav_trade2.svg);
}
#gnav li.aboutDticket a::before {
    background-image: url(/images/sp/common/icon_gnav_ticket.svg);
}
#gnav li.mytrade a::before {
    background-image: url(/images/sp/common/icon_gnav_my.svg);
}
#gnav li.logout a::before {
    background-image: url(/images/sp/common/icon_gnav_logout.svg);
}
#gnav li.aboutTrade a::before {
    background-image: url(/images/sp/common/icon_gnav_trade.svg);
}
#gnav li.guideService a::before {
    background-color: #ff7c60;
    background-image: url(/images/sp/common/icon_service.svg);
    background-size: 110% auto;
    border-radius: 100px;
}
#gnav li.guideCorp a::before {
    background-color: #ff7c60;
    background-image: url(/images/sp/common/icon_corp.svg);
    background-size: 110% auto;
    border-radius: 100px;
}
#gnav li.guideApp a::before {
    background-color: #ff7c60;
    background-image: url(/images/sp/common/icon_tixplus_.png);
    background-size: 110% auto;
    border-radius: 100px;
}
#gnav li.twitter a::before {
    background-image: url(/images/sp/common/icon_gnav_twitter.svg);
    background-size: 100%;
}
#gnav li.premium a::before {
    background-image: url(/images/sp/icon_gnav_premium.svg);
}
#gnav .gnavBanner {
    padding: 0 20px 0 0;
    margin: 0 0 10px;
    border-bottom: 1px solid #444;
}

#gnav .accordion-btn::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 8%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -5px;
    pointer-events: none;
    transition: .3s all ease;
}

#gnav .accordion {
    display: none;
}
#gnav .accordion-btn.ac-open::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}






/* loginNav */
header #loginNav {
    position: absolute;
    right: 30px;
    top: 30px;
}
header #loginNav li { display: inline-block;}
header #loginNav li:not(:last-child) {margin-right: 30px;}
header #loginNav a,
header #loginNav input {
    display: inline-block;
    color: #1a1a1a;
    font-size: 15px;
    text-decoration: none;
    line-height: 20px;
    cursor: pointer;
    font-weight: 500;
}
header #loginNav input {
    background: none;
    border: none;
}
header #loginNav svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0 10px 0 0;
    top: -1px;
    position: relative;
}
header #loginNav svg > * {
    fill: #1a1a1a;
       -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
header #loginNav a:hover { color: #ff7c60; }
header #loginNav a:hover svg > * { fill: #ff7c60; }

#langtype-link {
    display: none;
    background: #ff7c60;
    position: fixed;
    right: 20px;
    top: 75px;
    z-index: 100;
}
#langtype-link::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #ff7c60;
    margin-left: -10px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#langtype-link a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 40px;
    padding: 0 30px;
    position: relative;
}
#langtype-link .current a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left: 7px solid #fff;
    position: absolute;
    left: 15px;
    top: 15px;
}

#langtype-link a:hover { background: #fa4d28; }
.languageOpen #langtype-link::before { top: -20px; }
.languageOpen header #loginNav .language a { color: #ff7c60; }
.languageOpen header #loginNav .language path { fill: #ff7c60; }

/* footer pc
============================== */
footer #supportNav { padding: 15px 0; }
footer #supportNav a:hover { color: #ff7c60; }
footer #supportNav li a { border-right: 1px solid #aaa; }
footer #supportNav li:last-child a { border: none; }
.footer_twitter{
    position: absolute;
    left: 8%;
    top: 0;
    bottom: 0;
    margin: auto;
}
.twitter_icon::before{
    content: "";
    background-image: url(/images/sp/common/icon_gnav_twitter.svg);
    width: 38px;
    height: 38px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
/* home pc
============================== */
#home #wrap { padding-bottom:126px; }
#home #container { width: auto; }
#home .section {
    width: 84%;
    padding: 50px 0;
    margin: 0 auto;
}
#home .section + .section {padding-bottom: 0;}
#home .section.topArea {
    background: #fff;
    width: 100%;
    padding: 20px 8%;
    box-sizing: border-box;
    margin: 0 0 20px;
}
#home .infoList a {
    display: block;
    color: inherit;
    font-size: 18px;
    transition: none;
    text-decoration: none;
}
#home .infoList a > * {
    float:left;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#home .infoList a:hover .date,
#home .infoList a:hover .tit {color: #ff7c60;}
#home .infoList .infoTit { font-weiht: 500; margin-right: 15px;}
#home .infoList .tit {
    font-size: 15px;
    position: relative;
    top: 2px;
    overflow: hidden;
    float: none;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
#home .infoList .date { margin-right: 30px; color: #9b9b9b;}
#home .section.ticketList .more .fa {
    font-size: 24px;
    margin: 0 0 0 5px;
    position: relative;
    top: 2px;
}

#home .resaleissue {
    width: 800px;
    text-align: center;
    padding: 70px 0 0;
    margin: 0 auto;
    letter-spacing: -0.5em;

}
#home .resaleissue div{
    width: 240px;
    display: inline-block;
    margin-right: 20px;
}
#home .resaleissue .bnr_haru{
    width: 163px;
}

#home .resaleissue a{
    display: block;
    line-height: 0;
    letter-spacing: 0;
}
#home .resaleissue div:last-child{ margin-right: 0;}


/* appDl */
#home .appDl {
    width: 100%;
    background: #fff;
    position: relative;
}
#home .appDl .ph {
    width: 100%;
    height: 100%;
    background: url(/images/common/ph_home_ticketapp.png) no-repeat fixed;
    background-position : left 25% bottom -300px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
#home .appDl.visible .ph {
    background-position : left 25% bottom 150px;
    opacity: 1;
}
#home .appDl p {
    width: 540px;
    font-size: 20px;
    padding: 0 0 0 460px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
#home .appDl .lead { padding-top: 100px; margin-bottom: 20px; }
#home .appDl .appBtn { padding-bottom: 60px; }
#home .appDl .appBtn a:hover { opacity: 0.8; }


/* section pc
============================== */
.section { padding: 50px 0; }
.section .sectionTit,
.section .sectionTit {
    color: #888;
    font-size: 26px;
    margin: 0 0 20px;
}
.sectionTit .subTxt {
    display: block;
    font-size: 14px;
    margin: 10px 0 0;
}
.section .sectionTit img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    border-radius: 25px;
    margin-right: 10px;
    position: relative;
    top: -3px;
}
.section .sectionTit a { color: #1a1a1a; text-decoration: none; }
.section .sectionTit a:hover { color: #ff7c60; }
.tradeList .sectionTit img { background:none; }
.ticketList .sectionTit img,
#ticket .sectionTit img { background: #ff7c60; }
.past .sectionTit { font-size: 20px; }

.forgotpassword { 
width: 500px;
}

.areaTit {
    font-size: 20px;
    border-left: 4px solid #e9537d;
    padding: 3px 0 3px 10px;
    margin: 0 0 30px;
}
#entry .areaTit,
#regist .areaTit,
#mypage .areaTit,
#payment .areaTit {
    color: #fff;
    background: #413d3c;
    font-size: 18px;
    border: none;
    border-radius: 3px 3px 0 0;
    padding: 10px 20px;
    margin: 0;
    position: relative;
}
.lead { font-size: 15px; margin: 0 0 30px; }
.txt { margin: 0 0 30px; }
.subTxt { font-size: 0.8em; }
.red { color: #f00; }
.pink { color: #e95384; }
.500 { font-weight: 500; }
.center { text-align: center; }
.hide { display: none; }
.boxTxt {
    background: #fff;
    font-size: 16px;
    border: 2px solid #ccc;
    padding: 10px 20px;
    margin: 0 0 30px;
}
.boxTxt dt {
    width: 20%;
    clear: left;
    float: left;
    text-align: center;
}
.boxTxt dd {
    padding: 0 0 0 20%;
}
.ticketList .more,
.tradeList .more {
    text-align: right;
    margin-top: 10px;
}
.ticketList .more a,
.tradeList .more a {
    text-decoration: none;
    font-size: 15px;
    color: #808080;
    font-weight: 500;
}
.ticketList .more a:hover,
.tradeList .more a:hover {color: #ff7c60;}
.ticketList .more a .fa,
.tradeList .more a .fa{
    margin: 0 0 0 10px;
    position: relative;
    top: 2px;
    transition: none;
    font-size: 1.65em;
}
.tradeList .btnLink a {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    border: 1px solid;
    border-radius: 100px;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 50px;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}
.tradeList .btnLink a:hover{ color: #ff7c60; }


/* tradeList / ticketList pc
============================== */
.tradeList,
.ticketList { position: relative; }
.tradeList ul,
.ticketList ul {
    display: flex;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.tradeList li,
.ticketList li {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 7px rgba(0,0,0,0.2);
    margin: 0 10px 10px 0;
    overflow: hidden;
    position: relative;
}
/* tradeList 3列 */
.tradeList .col3 li { width: 32%; margin: 0 2% 40px 0; margin-bottom: 2vw; }
.tradeList .col3 li:nth-child(3n) {margin-right: 0;}
.tradeList .col3 li .ph { height: 160px; height: 16vw; }
.tradeList .col3 li .ph .goto{
    position: absolute;
    right: 0;
    top: 0;
    line-height: 0;
    width: 100px;
}
.tradeList .col3 li .ph .goto img{
    width: 100%;
}


/* tradeList 4列 */
.tradeList .col4 li,
.ticketList li {width: 23.5%; margin: 0 2% 13px 0; margin-bottom: 2vw; }
.tradeList .col4 li:nth-child(4n),
.ticketList li:nth-child(4n) {margin-right: 0;}
.tradeList .col4 .ph,
.ticketList li .ph { height: 130px; height: 13vw; }
.ticketList li .ph .goto{
    position: absolute;
    right: 0;
    top: 0;
    line-height: 0;
    width: 100px;
}
.ticketList li .ph .goto img{
    width: 100%;
}
/* */
.tradeList li,
.ticketList li {
    position: relative;
}
.tradeList li a,
.ticketList li a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0 0 35px;
}
.tradeList li .ph,
.ticketList li .ph  {
    background: no-repeat center bottom;
    background-size: contain;
    position: relative;
}
.tradeList li .artist,
.ticketList li .artist {
    font-size: 18px;
    line-height: 1.4;
    padding: 15px 5% 5px;
}
.tradeList li .tit,
.ticketList li .tit {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 5%;
    font-weight: 300;
}
.tradeList li .date,
.ticketList li .date {
    display: block;
    font-size: 14px;
    padding: 5px 0 0;
    opacity: 0.5;
    font-weight: 300;
}
.tradeList li .date { padding-left: 5%; }
.tradeList li .statusArea,
.ticketList li .statusArea {
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 10px;
}
.tradeList li .status,
.ticketList li .status,
.tradeList li .fc {
    display: inline-block;
    float: right;
    min-width: 58px;
    height: 18px;
    background: #ff7c60;
    color: #fff;
    font-size: 9px;
    line-height: 18px;
    text-align: center;
    border-radius: 3px;
    padding: 0 3px;
    margin: 5px 10px 0 0;
    font-weight: 500;
}
.tradeList li .status.before { background: #aaa; color: #fff; }
.tradeList li .status.after { background: #aaa; color: #fff; }
.tradeList li .fc,
.ticketList li .status {
    background: #fff;
    color: #ff7c60;
    line-height: 17px;
    border: 1px solid;
    box-sizing: border-box;
    margin: 5px 10px 0 0;
}
.ticketList li .cat {
    float: right;
    font-size: 9px;
    line-height: 17px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid;
    padding: 0 5px;
    margin: 5px 5% 0 0;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 500;
}
.ticketList li .cat.music    { color: #ff7c60; }
.ticketList li .cat.event    { color: #bc8abb; }
.ticketList li .cat.museum    { color: #f7b353; }
.ticketList li .cat.amusement{ color: #83c269; }

.ticketList li .cat + br,
.ticketList li .date + br,
.ticketList li .statusArea br { display: none; }

/* hover */
.tradeList li a:hover .tit,
.ticketList li a:hover .tit,
.tradeList li a:hover .artist,
.ticketList li a:hover .artist { color: #ff7c60; }
.tradeList li a:hover .ph,
.ticketList li a:hover .ph { opacity: 0.8; }


#home .section.ticketList.past { padding-top: 25px; padding-bottom: 55px;}
/*
#home .section.ticketList.past a:hover { cursor: auto; }
#home .section.ticketList.past a:hover .ph { opacity: 1; }
*/
#home .section.ticketList.past a:not(:hover) .artist,
#home .section.ticketList.past a:not(:hover) .tit { color: #888; }
#home .section.ticketList.past a:not(:hover) .cat,
#home .section.ticketList.past a:not(:hover) .status { color: #ccc; }

.ticketList li.nodata { width: auto; background: none; box-shadow: none; padding: 30px 0; opacity: 0.5; }

/* buy pc
============================== */
#ticket #container { width: 84%; padding: 20px 0; }
#ticket .ticketList li { }
#ticket .ticketList li .tit { padding-bottom: 25px; }

/* infoList pc
============================== */
#information .infoList li {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
    padding: 30px;
    margin: 0 0 20px;
}

#information .facephoto .infoList li {
      background:none;
      box-shadow:none;
      padding:0;
      margin:0 0 20px;
}

.facephoto .discription{
      margin-bottom:4em;
}

.facephoto .discription a {
      transition:.3s;
      text-decoration:none;
      position:relative;
      padding-right:9px;
}

.facephoto .discription a:after{
      content:'';
      width:6px;
      height:6px;
      border-top:solid 1px;
      border-right:solid 1px;
      transform:rotate(45deg);
      display:inline-block;
      position:absolute;
      top:5px;
      right:0;
}

.facephoto .discription a:hover{
      opacity:0.7;
}


.facephoto .infoList li a:hover{
      opacity:0.8;
}

.facephoto .infoList li div:nth-child(1) a {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(0,0,0,0.3);
  padding: 40px 30px;
  font-size: 1.2em;
      display:block;
      text-decoration:none;
      position:relative;
}

.facephoto .infoList li div:nth-child(1) a:after{
      content:'';
      width:8px;
      height:8px;
      border-top:solid 1px;
      border-right:solid 1px;
      position:absolute;
      transform:rotate(45deg) translate(0, -50%);
      top:50%;
      right:30px;
      transition:.3s;
}

.facephoto .infoList li div:nth-child(1) a:hover:after{
      right:25px;
}

#information .infoList .tit { font-size: 16px; margin: 0 0 10px;}
#information .infoList .date { color: #888; font-size: 12px; margin: 0 0 10px; }
#information .infoList .txt { font-size: 12px; }
.facephoto .infoList .txt { padding:0.5em 0; }

.facephoto .infoList .txt a {
      display:block;
      text-align:right;
      text-decoration:none;
      position:relative;
  font-size: 14px;
  padding-right:9px;
  margin-top: 5px;
}

.facephoto .infoList .txt a:after{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    right: 2px;
      top: 6.75px;
    transform: rotate(45deg);
}

#information .loader {
    position: relative;
    margin: 20px auto;
    width: 30px;
    height: 30px;
    border: 3px solid #ccc;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s infinite linear;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* form pc
============================== */
.formArea { margin: 0 0 50px; }
.formList { margin: 0 0 20px; }
.formList dt {
    color: #888;
    font-size: 12px;
    margin: 0 0 5px;
}
.formList dt .subTxt {
    color: #999;
    font-size: 12px;
}
.formList dt .must { color: #f00; margin: 0 3px; }
.formList > dd,
.formList #newCardInput > dd {
    margin: 0 0 15px;
}
.formList input[type="text"],
.formList input[type="tel"],
.formList input[type="password"],
.formList input[type="email"] {
    -webkit-appearance: none;
    display: inline-block;
    width: 100%;
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 10px;
}
.formList input::-webkit-input-placeholder { color: #bbb; }
.formList input[type="text"][disabled],
.formList input[type="tel"][disabled],
.formList input[type="password"][disabled],
.formList input[type="email"][disabled],
.formList select[disabled] {
    background: #e0e0e0;
    color: #808080;
}
.formList select {
    display: inline-block;
    height: 45px;
    background: #fff;
    font-size: 16px;
    line-height: 45px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 0 0 10px;
    position: relative;
}
.formList dd label {
    display: inline-block;
    font-size: 16px;
    padding: 0 30px 0 0;
}
.formList label:hover { color: #fa4d28; }
.formList input[type="radio"]:checked + label,
.formList input[type="checkbox"]:checked + label { color: #ff7c60; }
.formList textarea {
    width: 100%;
    min-height: 100px;
    box-sizing: border-box;
    padding: 10px;
}
.formList .name .firstname,
.formList .name .familyname { width: 50%; float: left; }
.formList .name input { display: inline-block; width: 49%; }

.formList .error input,
.formList .error select { background: #fff387; border: 1px solid #f00; }
.formList .error label { color: #f00; }

.formList dd .confirm { display: inline-block; font-size: 16px; padding: 0; }
.formList.confirm dd { font-size: 16px; padding: 0; }
.formList.confirm dd .groupList li{ margin-bottom: 10px; font-size: 14px;}
.formList.confirm dd .time{ margin: 20px 0 0; font-size: 11px; color: #999;}
.formList.confirm {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 1px #ccc;
    padding: 20px;
}
.formList dd .subTxt { margin: 5px 0; }
.formArea .btn { margin-bottom: 10px; }

/* mailmag */
.formList.mailmagForm { border-bottom: 1px solid #ddd; }
.formList.mailmagForm dd { border-top: 1px solid #ddd; padding-top: 15px; }
.formList.mailmagForm .tit { font-size: 16px; font-weight: 500; }
.formList.mailmagForm .subTxt { padding-left: 18px; }
.formList .childList { /*padding: 10px 0 0 0;*/ margin: 0 0 0 15px; }
.formList .childList dd { border: none; padding: 0; }
.formList .childList li { }
.formList .childList label { font-size: 14px;}
.formList .childList input[type="checkbox"] + label { color: #999; }
.formList .childList input[type="checkbox"]:disabled + label { color: #ddd; }
.formList .childList input[type="checkbox"]:checked + label { color: #1a1a1a; }

/* linkList */
.linkList { margin: 20px 0 0; }
.linkList a {
    color: #374a9d;
    text-decoration: none;
}
.linkList a:hover { color: #ff7c60; }
.linkList a:before {
    content: "\f105";
    color: #bbb;
    font-family: FontAwesome;
    font-size: 18px;
    font-weight: 400;
    line-height: 0;
    margin: 0 5px 0 0;
}
/* alertList */
.errorList {
    background: #ffeded;
    color: #f00;
    font-size: 13px;
    border: 1px solid #f00;
    padding: 10px;
    margin: 50px 0 -10px;
}
.completeList {
    background: #dbfadf;
    color: #379d57;
    font-size: 13px;
    border: 1px solid #97d5b2;
    padding: 10px;
    margin: 50px 0 -10px;
}
/* attentnionList */
.attentionList { margin: 0 0 30px; }
.attentionList li {
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 8px 13px;
    position: relative;
}
.attentionList li::before {
    content:"\f00c";
    font-family: FontAwesome;
    font-size: 0.8em;
    color: #f90;
    position: absolute;
    left: -13px;
    top: -0.1em;
}

/* checkList */    /* ticketDetail */
.checkList li { font-size: 1.2em; }
.checkList .fa { font-size: 1.4em; margin: 0 0.2em 0 0; }
.checkList input[type="checkbox"] { width: 0; height: 0; opacity: 0; }
.checkList label { display: block; position: relative; cursor: pointer;}
.checkList label:hover,
.checkList label.checked { background: #fffbd6; }
.checkList label::before {
content: '';
display: inline-block;
width: 26px;
height: 26px;
border-radius: 50%;
border: 1px solid #ccc;
margin: -14px 0 0;
position: absolute;
right: 5%;
top: 2em;
-webkit-transition: all .3s ease;
transition: all .3s ease;
}
.checkList label::after {
content: '';
display: inline-block;
width: 13px;
height: 7px;
border: 2px solid #fff;
border-right: none;
border-top: none;
position: absolute;
right: 5%;
top: 2em;
margin: -0.4em 6px 0 0;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
opacity: 0;
-webkit-transition: all .2s ease;
transition: all .2s ease;
}
.checkList label.checked::before { background: #e85383; border-color: #e85383; }
.checkList label.checked::after { opacity: 1; }
.checkList label p { margin-top: 10px; }

/* ticketDetail */
.ticketDetail {
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    border-radius: 3px;
    padding: 20px 20px 20px;
    margin: 40px 0;
}
#mypage .ticketDetail .areaTit,
#entry .ticketDetail .areaTit  {
    color: #fff;
    background: #413d3c;
    font-size: 18px;
    border: none;
    padding: 10px 20px;
    margin: -20px -20px 20px;
}
.ticketDetail .formList { margin-bottom: 0; }
.ticketDetail > .tourTit { font-size: 18px; font-weight: 500; margin: 0 0 5px; }
.ticketDetail > .date { font-size: 13px; margin: 0 0 5px; }
.ticketDetail > .date em { font-size: 18px; }
.ticketDetail > .telList {  }
.ticketDetail > .tit { font-weight: 500; margin-top: 10px; }
.ticketDetail > .txt { margin: 0 0 20px; }
.ticketDetail > .btn a { margin-bottom: 0; }
.ticketDetail ul.telList li,
.ticketDetail dl.telList dt {
    position: relative;
    color: #999;
    font-size: 11px;
    border-top: 1px solid #ddd;
    padding: 20px 0 0;
    margin: 20px 0 10px;
}
.ticketDetail dl.telList dd { font-size: 16px; }
.ticketDetail dl.telList .num { float: right; }
.ticketDetail ul.telList .listTit {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
}
.ticketAttention, .shareDetailLink{
    margin-top:1rem;
}
.ticketAttention dt{
        font-weight: bold;
}


/* member_rank_popup */
.popup_share_wrap {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.popup_share_wrap .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.popup_share_wrap .popup_flex {
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 8%;
  box-sizing: border-box;
}
.popup_share_wrap .popup_inner {
  display: none;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  padding: 30px 30px;
  border-radius: 6px;
  margin: 50px 0;
    max-width: 470px;
    margin: auto;
}
.popup_share_wrap .close {
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  right: -40px;
  z-index: 10000;
  cursor: pointer;
}
.popup_share_wrap .close::before,
.popup_share_wrap .close::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
}
.popup_share_wrap .close::before {
  transform: rotate(45deg);
}
.popup_share_wrap .close::after {
  transform: rotate(-45deg);
}
.popup_share_wrap .text_center{
    text-align: center;
    margin-top: 20px;
}
.popup_lead{
    margin-bottom: 1rem;
}

/*
============================== */
/*#login #gnav,
#regist #gnav,
#mypage #gnav,
#payment #gnav,
#addfriend #gnav,*/
#login footer .facebook,
#regist footer .facebook,
#mypage footer .facebook,
#payment footer .facebook { display: none; }




/* login
============================== */
#login .linkList { text-align: center; margin: 20px 0 30px; }
#login .linkList li { display: inline-block; }

#login .linkList a { color: #ff7c60; font-size: 13px; padding: 0 10px; }
#login .linkList a:hover { color: #fa4d28; }
#login .linkList a::before { content: none; }

#login #container { width: 400px; }
#login .formArea { background: transparent; box-shadow: none; padding: 0;}
#login .loginForm dd { border: none; padding: 0; margin: 0; }
#login .loginForm input[type="text"] { border-radius: 3px 3px 0 0; }
#login .loginForm input[type="password"] { border-radius: 0 0 3px 3px; border-top: none; }

#login.forgot #container { width: 500px;}
#login.forgot #container .section{ width: 400px; margin: 0 auto; padding: 50px 0 0;}
#login.forgot .formArea{ margin: 0; }

#login.forgot .linkList { margin: 0 0 20px;}
#login.forgot .linkList li { display: block; margin: 0 0 10px; }
#login.forgot .linkList li:last-child { margin: 0; }


#login.forgot .forgotlink{

}
#login.forgot .forgotlink li{
    margin: 0 0 20px;
    border-bottom: 1px dashed #aaa;
    padding: 0 0 20px;
}
#login.forgot .forgotlink li:last-child{
    margin: 0;
    border: none;
    padding: 0;
}
#login.forgot .forgotlink li a{
    text-decoration: none;
    font-size: 16px;
}

#login.forgot .popup {
	display:none;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#login.forgot .popup.popActive {
	display:block;
}
#login.forgot .popup .shade{
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}
#login.forgot .popup .popInBox{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    box-sizing: border-box;
    background: #FFF;
    padding: 40px;
    transform: translate(-50%,-50%);
}
#login.forgot .popup .popTit{
    text-align: center;
    font-size: 30px;
    line-height: 1em;
    margin: 0 0 60px;
    color: #000;
    letter-spacing: 0.1em;
}
#login.forgot .popup .close {
	width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
}
#login.forgot .popup .close:hover{
    transform: rotate(135deg);
}
#login.forgot .popup .close::before,
#login.forgot .popup .close::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
#login.forgot .popup .close::before {
	transform: translate(-50%,-50%);
}
#login.forgot .popup .close::after {
    transform: translate(-50%,-50%) rotate(90deg);
}


/* regist
============================== */
#regist #container { width: 600px; }
#regist .section.border { border-top: 1px solid #ddd; }
#regist .formList dd { border: none; padding: 0; }
#regist .formList.mailmagForm dd { padding-bottom: 20px; }
#regist .freeArea { margin: 0 0 30px; }
#regist .linkList  { text-align: center; margin: 20px 0 30px; }
#regist .linkList li { display: inline-block; }
#regist .linkList a { color: #ff7c60; font-size: 13px; padding: 0 10px; }
#regist .linkList a:hover { color: #fa4d28; }
#regist .linkList a::before  { content: none; }

/* idlink */
#regist .idlinkForm,
#regist .idlinkForm .formList { margin: 0; }
#regist .idlinkForm .formList.confirm { border-radius: 0 0 3px 3px; padding: 20px 20px 10px; margin: 0 0 10px; }
#regist .idlinkForm .formList.confirm dd { font-size: 14px; }
#regist .idlinkForm .formList.confirm dd .btn .sub { margin: 0; }
#regist .idlinkForm .areaTit { padding: 0; position: relative; }
#regist .idlinkForm .areaTit label {
    display: block;
    color: #fff;
    background: #413d3c;
    font-size: 18px;
    border: none;
    border-radius: 3px 3px 0 0;
    padding: 10px 20px;
    margin: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#regist .idlinkForm .areaTit label.checked { background: #ff7c60; }
#regist .idlinkForm .areaTit label input { margin: 0 5px 0 0; }
#regist .idlinkForm .areaTit .btn {
    position: absolute;
    right: 10px;
    top: 10px;
}
#regist .idlinkForm .areaTit .btn a {
    min-width: 0;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    border-color: #fff;
    margin: 0;
}
#regist .idlinkForm .areaTit .btn a:hover { color: #ff7c60; }

#passget .linkList  { text-align: center; margin: 20px 0 30px; }
#passget .linkList li { display: inline-block; }
#passget .linkList a { color: #ff7c60; font-size: 13px; padding: 0 10px;text-decoration: none; }
#passget .linkList a:hover { color: #fa4d28; }
#passget .linkList a::before  {
    content: none;
    color: #ff7c60;
    font-family: FontAwesome;
    font-size: 18px;
    font-weight: 400;
    line-height: 0;
    margin: 0 5px 0 0;
}

/* 年会費決済
============================== */
#payment #container { width: 600px; }
#payment .paymentStepList {
    background: #fff;
    font-size: 13px;
    box-shadow: 0 0 1px #ccc;
    padding: 0 5%;
    margin: 0 0 30px;
}
#payment .paymentStepList > li {
    border-bottom: 1px solid #ddd;
    padding: 30px 0 40px;
}
#payment .paymentStepList > li:last-child { border-bottom: none; }
#payment .paymentStepList .listTit { font-size: 18px; margin: 0 0 10px; }
#payment .paymentStepList .listTit .step {
    display: inline-block;
    color: #ff7c60;
    font-family: Helvetica, Arial, sans-seif;
    font-size: 20px;
    font-weight: 500;
    margin: 0 5px 0 0;
}
/* priceList */
#payment .priceList { font-size: 16px; }
#payment .priceList dt {
    width: 30%;
    float: left;
    background: #eee;
    text-align: center;
    border: 1px solid #666;
    border-right: none;
    padding: 5px 10px;
}
#payment .priceList dd {
    width: 60%;
    float: left;
    background: #fff;
    border: 1px solid #666;
    border-left: none;
    padding: 5px 10px;
    margin: 0 10px 0 0;
}

#payment .paymentStepList .priceList dt { width: 100px; }
#payment .paymentStepList .priceList dd { width: 110px; }
/* boxList 1 */
#payment .boxList > li {
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    padding: 20px;
    margin: 0 0 20px;
}
#payment .boxList > li.disabled { color: #ccc; }
#payment .boxList .tit {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
}
#payment .boxList .subTxt { font-size: inherit; }
/* boxList 2 */
#payment .paymentStepList .boxList { display: flex; }
#payment .paymentStepList .boxList li {
    width: 225px;
    float: left;
    background: #f7f7f7;
    border-radius: 3px;
    padding: 15px 20px 60px;
    margin: 0 10px 0 0;
    position: relative;
}
#payment .paymentStepList .boxList li:last-child { margin: 0; }
#payment .paymentStepList .boxList .priceList { font-size: 13px; margin-top: 10px; }
#payment .paymentStepList .boxList .priceList dt { width: 100px; }
#payment .paymentStepList .boxList .priceList dd { width: 83px; margin: 0; }
#payment .paymentStepList .boxList .btn {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px 15px;
    position: absolute;
    left: 0;
    bottom: 0;
}
#payment .paymentStepList .boxList .btn .sub {
    min-width: 100%;
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}
/* 決済フォーム */
#payment .formList {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 1px #ccc;
    padding: 20px;
}
#payment .formList > dd:last-child { padding-bottom: 0; margin-bottom: 0; }
#payment .formList .card { width: 40px; }
#payment .formList dd > .btn .main { margin-bottom: 0; }
#payment .btn .main { }
/* 顔写真アップロード */
.imgUploadList {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 1px #ccc;
    padding: 20px;
    margin: 0 0 20px;
}
.imgUploadList .ph {    .imgUploadList.ok .ph { width: 200px; float: left; line-height: 0; }
line-height: 0;
border: 1px solid #ccc;
margin: 0 0 10px;
position: relative;
}
.imgUploadList.ok .ph { width: 200px; float: left; line-height: 0; }
.imgUploadList.ok .ph::before {    .imgUploadList.ok .txt { padding-left: 220px; margin-bottom: 10px; }
content: '';
display: inline-block;
width: 30px;
height: 30px;
border-radius: 50%;
border: 4px solid #66d484;
position: absolute;
left: -10px;
top: -10px;
}
.imgUploadList.ok .txt { padding-left: 220px; margin-bottom: 10px; }
.imgUploadList.ok .attentionList { padding-left: 220px; }
.imgUploadList .ngList { display: flex; flex-wrap: wrap; }
.imgUploadList .ngList li {
    width: 160px;
    float: left;
    font-size: 12px;
    text-align: center;
    padding: 0 13px 15px;
}
.imgUploadList.ng .ph::before {
content: '×';
color: #ff6060;
font-size: 60px;
line-height: 1;
position: absolute;
left: -0.2em;
top: -0.4em;
}
#imgUploadForm .file { display: block; width: 0; height: 0; }
#imgUploadForm .file input[type="file"] { width: 0; height: 0; }
#imgUploadForm .dropArea {
    background: #fafafa no-repeat center center;
    background-size: contain;
    height: 240px;
    color: #999;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    border: 1px dashed #ccc;
    padding-top: 100px;
    margin: 0 auto 20px;
    cursor: pointer;
}
#imgUploadForm .dropArea.imgSet { max-height: 400px; min-height: 200px; border: 1px solid #ccc; padding: 0; }
#imgUploadForm .dropArea.imgSet img { max-height: 100%; }
#imgUploadForm .dropArea .subTxt { display: block; margin-top: 10px; }

#imgEditForm .editArea {
    width: 360px;
    background: #444 no-repeat center center;
    line-height: 0;
    margin: 0 auto;
}
#imgEditForm svg { width: 100%; }
#imgEditForm svg .stroke { fill:none; stroke:#fff; stroke-width:1; opacity:0.8;}
#imgEditForm svg .guide { fill-rule:evenodd; clip-rule:evenodd; fill:none; stroke:#00e2ff; stroke-width:2; stroke-linejoin:round; stroke-miterlimit:10; }
#imgEditForm .btn input[type="button"] { border-color: #333; }

/* Tixplusカード決済 */
#payment .payList.emtgcard label.disabled { color: #ccc; cursor: auto; }
#payment .payList.emtgcard label {
    display: flex;
    align-items: center;
    line-height: 1.5;
    padding: 10px 5% 10px 60px;
}
#payment .payList.emtgcard .ph { width: 60px; line-height: 0; text-align: center; margin: 0 10px 0 0; }
#payment .payList.emtgcard .ph img { width: 60px; height: 60px; background: no-repeat center center; background-size: contain; }
#payment .payList.emtgcard .txt { -webkit-flex: 1; flex: 1; margin: 0; }
/* menuList */
#payment .menuList {
    background: #fff;
    padding: 0 0 0 30px;
    box-shadow: 0 0 1px #ccc;
    margin: 0 0 30px;
}
#payment .menuList li {
    font-size: 15px;
    line-height: 45px;
    border-bottom: 0.5px solid #ddd;
    position: relative;
}
#payment .menuList li:last-child { border: none; }
#payment .menuList li::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 2px solid #ccc;
    border-top: none;
    border-left: none;
    position: absolute;
    right: 20px;
    top: 50%;
    margin: -4px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#payment .menuList a,
#payment .menuList input {
    -webkit-appearance: none;
    display: block;
    background: transparent;
    color: #1a1a1a;
    font-style: 400;
    text-decoration: none;
    line-height: 45px;
    border: none;
    padding-right: 7%;
}
#payment .menuList a:hover,
#payment .menuList input:hover { color: #ff7c60; }
#payment .menuList .subTxt {
    display: block;
    line-height: 1.8;
    padding: 0 0 1em;
}
#payment ol.formList > li {
list-style: decimal;
margin: 0 0 0 1em;
}

/* mypage
============================== */
/* status */
/* #mypage #wrap { background: #fff !important; } */
#mypage #container { width: 640px; }
#mypage .userStatus {
    background: #fff;
    border-radius: 3px;
    padding: 20px;
    margin: 30px 0 30px;
    position: relative;
    font-size: 13px;
    color: #808080;
}
#mypage .userStatus .userPhoto {
    width: 140px;
    height: 140px;
    float: left;
    background: #eee url(/images/mypage/ph_user_noimage.png) no-repeat center center;
    border-radius: 70px;
    overflow: hidden;
    position: relative;
}
#mypage .userStatus .userPhoto .now {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    line-height: 140px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
#mypage .userStatus .userPhoto img { width: 100%; height: auto; }
#mypage .userStatus .flexbox { display: flex; align-items: flex-start; justify-content: space-between;}
#mypage .userStatus .userTxt{
    width: calc(100% - 75px );
}
#mypage .userStatus .nickname { font-size: 14px; line-height: 1.4; margin:0 0 10px 0; }
#mypage .userStatus .nickname em { font-size: 20px; }
#mypage .userStatus .emtgid { margin: 0; }
#mypage .userStatus .status { margin: 0; }
#mypage .userStatus .photo a {
    display: block;
    width: 140px;
    height: 140px;
    color: #fff;
    background: rgba(0,0,0,0.3);
    font-size: 18px;
    line-height: 140px;
    text-decoration: none;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 20px !important;
    border-raidus: 50%;
}
#mypage .userStatus .photo a:hover {  background: rgba(0,0,0,0.5); }
#mypage .userStatus .email {color: #808080; font-size: 13px; margin-bottom: 5px;}
#mypage .userStatus .email .fa {
    display: inline-block;
    width: 20px;
    color: #bbb;
    text-align: center;
}
#mypage .userStatus .email .fa-desktop { font-size: 0.9em; }
#mypage .userStatus .email .fa-mobile { font-size: 1.4em; line-height: 0.5; position: relative; top: 2px; }
/* siteStatus */
#mypage .siteStatus {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 1px #ccc;
    padding: 20px;
    margin: 30px 0 30px;
}
#mypage .siteStatus .formList { margin: 0; }
#mypage .siteStatus .formList .label { font-size: 13px; line-height: inherit; }
#mypage .siteStatus .formList .subTxt { margin: 5px 0 0; }
#mypage .siteStatus .formList dt { margin: 0 0 14px; }
#mypage .siteStatus .formList dd { font-size: 13px; border-top: 1px solid #ddd; padding: 15px 0; margin: 0; }
#mypage .siteStatus .formList dd:last-child { padding-bottom: 0; }
#mypage .siteStatus .formList dd .500 { font-size: 16px; }

/* premium_badge */
.premium_badge{
    background-color: #fff;
    border: 1px solid rgb(235,235,235);
    border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium_badge img{
    display: block;
}
.premium_upgrade{
    font-size: 9px;
    border: 1px solid #808080;
    border-radius: 3px;
    text-decoration: none;
    color: #808080;
    padding: 1px 5px;
    margin-left: 10px;
}
.premium_upgrade:after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5.6px;
    border-color: transparent transparent transparent #808080;
    display: inline-block;
    margin-left: 5px;
    letter-spacing: -0.2px;
}
/* present_icon */
.present_icon{
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.present_icon a{
    background-image:url(/images/mypage/present_b.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px;
    margin-top: 10px;
  padding-left: 30px;
    width: 100%;
    display: block;
    text-decoration: none;
    color: #808080;
}
.present_icon a.present_b{
    background-image:url(/images/mypage/present_b.svg);
}
.present_icon a.present_s{
    background-image:url(/images/mypage/present_s.svg);
}
.present_icon a.present_g{
    background-image:url(/images/mypage/present_g.svg);
}
/* menuList */
#mypage .menuList {
    background: #fff;
    padding: 0 0 0 15px;
    margin: 0 0 30px;
}
#mypage .menuListTitle{
    margin-bottom: 10px;
    color: rgb(128,128,128);
}
#mypage .menuArea .menuList {
    margin: 0 0 30px;
}
#mypage .menuList li {
    font-size: 15px;
    border-bottom: 0.5px solid #ddd;
}
#mypage .menuList li:last-child { border: none; }
#mypage .menuList a,
#mypage .menuList i {
    display: block;
    color: #1a1a1a;
    font-style: 400;
    text-decoration: none;
    padding-right: 7%;
    position: relative;
    padding: 20px 0;
    font-style: normal;
}
#mypage .menuList a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 2px solid #ccc;
    border-top: none;
    border-left: none;
    position: absolute;
    right: 20px;
    top: 50%;
    margin: -4px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#mypage .menuList a:hover { color: #ff7c60; }
#mypage .menuList a:hover::after { border-color: #ff7c60; }
#mypage .menuList .subTxt { display: inline-block; font-size: 12px; color: #999; }
#mypage .menuList .label { float: right; color: #374a9d; font-size:12px; padding-right: 40px}
#mypage .menuList .alert { color: #f00; }
#mypage .menuList.ticket a { line-height: 1.6; padding-top: 15px; padding-bottom: 15px; }
#mypage .menuList.ticket .artist { color: #999; font-size: 12px; }
#mypage .menuList.memorial a { line-height: 1.6; }
#mypage .menuList.memorial .date { color: #999; font-size: 12px; padding: 15px 0 0; }
#mypage .menuList.memorial .tit { font-size: 14px; padding: 0 0 15px; }

#mypage .accordionList .menuListTitle {
    margin: 0 0 30px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor:pointer;
}
#mypage .accordionList .menuListTitle:before,#mypage .accordionList .menuListTitle:after{
    content: "";
    width: 15px;
    height: 2px;
    background: #ccc;
    position: absolute;
    display: block;
    top: 50%;
    right: 15px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#mypage .accordionList .menuListTitle:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
#mypage .accordionList .menuList { display: none; margin-top: -20px;}
#mypage .accordionList .menuListTitle:hover { color: #e95384;}
#mypage .accordionList .menuListTitle:hover:before,#mypage .accordionList .menuListTitle:hover:after {
    background: #e95384;
}
/* #mypage .accordionList .menuListTitle:hover:before {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
#mypage .accordionList .menuListTitle:hover:after {
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
} */
#mypage .accordionList .menuListTitle.open:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#mypage .accordionList .menuListTitle.open:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


#mypage .menuList.proof{
    background: #fff;
    padding: 0;
    margin: 0 0 30px;
}
#mypage .menuList.proof li {
    position: relative;
}
#mypage .menuList.proof a{
	background: #fff;
    color: #FF7C60;
    padding: 25px 20px;
    box-sizing: border-box;
}
#mypage .menuList.proof a::after {
    border: 2px solid #FF7C60;
    border-top: none;
    border-left: none;
}
#mypage .menuList.proof a .icon{
    display: inline-block;
    width: 20px;
    line-height: 0;
    position: relative;
    top: 4px;
    margin: 0 7px 0 0;
}
#mypage .menuList.proof a:hover{
    opacity: 0.7;
}

#mypage .menuList.proof .iconAttention{
    display: block;
    width: 50px;
    position: absolute;
    top: 29px;
    right: 59%;

    z-index: 10;
}
#mypage .menuList.proof .iconAttention a{
background: transparent;
    padding: 0;
}
#mypage .menuList.proof .iconAttention a::after{
    display: none;
}

#mypage .menuList.proof .iconAttention a img{
    width: 40%;
    margin: auto;
    position: relative;
    left: 25%;
}

#mypage .menuList.proof li.off a {
    background: transparent;
    color: #FF7C60;
}
#mypage .menuList.proof li.off a .iconEntry{
    background: #fff;
    position: relative;
    top: 14px;
    right: -8px;
color: #6EC015;
    border: 1px solid #6EC015;
    font-size: 11px;
    width: 25%;
    display: block;
    text-align: center;
    line-height: 1;
    padding: 5px;
    border-radius: 999px;
    float: right;
}
#mypage .menuList.proof li.off .iconAttention {
    right: 64%;
}
#mypage .menuList.proof li.off a::after{
    display:none;
}


/*=================================
    ポップアップ
===================================*/
#mypage .proof.popup {
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .2s ease-in-out;
    background: rgba(0,0,0,0.5);
}
#mypage .proof.popActive{
    opacity: 1;
}
#mypage .proof.popup .popInBox{
    width: 80%;
    padding: 20px;
    margin: 30px auto;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10001;
     max-width: 600px;
}
#mypage .proof.popup .close {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 45px;
    top: 30px;
    cursor: pointer;
    display: none;
}

#mypage .proof.popup .close::before,
#mypage .proof.popup .close::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    transform-origin: center;
    top: 50%;
    left: 50%;
}
#mypage .proof.popup .closeArea{
    display: block;
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100vh;
}
#mypage .proof.popup .close::before {
    transform: translate(-50%,-50%) rotate(-45deg);
}

#mypage .proof.popup .close::after {
    transform: translate(-50%,-50%) rotate(45deg);
}

#mypage .proof.popup .popInBox .iconImg{
    width: 100px;
    display: block;
    margin: 0 auto 10px;
    position: relative;
    left: 10px;
}
#mypage .proof.popup .popInBox .ph{
    margin: 0 auto 20px;
    border: 1px solid #ddd;
    width: 80%;
}
#mypage .proof.popup .popInBox img{
    width: 100%;
}
#mypage .proof.popup .popInBox .lead{
    text-align: center;
    font-weight: 500;
    margin: 0 0 20px 0;
    font-size: 15px;
}
#mypage .proof.popup .popInBox .tit{
    font-size: 15px;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: bold;
}
#mypage .proof.popup .popInBox .txt{
    text-align: center;
    font-size: 13px;
}

#mypage .proof.popup .popInBox .btnList{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#mypage .proof.popup .popInBox .btnList li{

}
#mypage .proof.popup .popInBox .btnList li:nth-child(1){
    width: 35%;
}
#mypage .proof.popup .popInBox .btnList li:nth-child(2){
    width: 60%;
}

#mypage .proof.popup .popInBox .btnList li:nth-child(1) .back a{
display: block;
    width: 100%;
    font-size: 14px;
    border: 1px solid #000;
    text-align: center;
    margin: 0 auto 0;
    text-decoration: none;
    padding: 10px;
    border-radius: 999px;
    color: #000;
    box-sizing: border-box;
}

#mypage .proof.popup .popInBox .btnList li:nth-child(2) .btn.main a{
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
    display: block;
    padding: 10px;
    width: 100%;
    border-radius: 999px;
    background: #ff7c60;
    color: #fff;
    border: 1px solid #ff7c60;
     min-width: auto;
}

#mypage .proof.popup#act2 .popInBox{
    position: relative;
    top: 10%;
    left: auto;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    width: 90%;
    max-width: 800px;
    padding: 40px;
}
#mypage .proof.popup#act2 .close {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 35px;
    top: 30px;
    cursor: pointer;
    display: block;
    z-index: 100000;
}


#mypage .proof.popup.error .popInBox .ph{
    border: none;
}
#mypage .proof.popup.error .popInBox .btn a{
    background: #ff7c60;
    color: #fff;
    font-size: 15px;
    border-radius: 999px;
}
#mypage .proof.popup.error .popInBox .link{
    text-align: center;
    display: block;
    font-size: 15px;
    transition: 0.4s;
}
#mypage .proof.popup.error .popInBox .link:hover{
    text-decoration: none;
    opacity: 0.7;
}


/* member_rank_popup */
.popup_memberrank_wrap{
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.popup_memberrank_wrap .overlay{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.popup_memberrank_wrap .popup_flex{
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 8%;
  box-sizing: border-box;
}
.popup_memberrank_wrap .popup_inner{
  display: none;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  padding: 20px 30px;
  border-radius: 6px;
  margin: 50px 0;
    max-width: 400px;
    margin: auto;
}
.popup_memberrank_wrap .close{
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  right: -40px;
  z-index: 10000;
  cursor: pointer;
}
.popup_memberrank_wrap .close::before,
.popup_memberrank_wrap .close::after{
  content: '';
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
}
.popup_memberrank_wrap .close::before{
  transform: rotate(45deg);
}
.popup_memberrank_wrap .close::after{
  transform: rotate(-45deg);
}
.popup_memberrank_wrap .text_center{
    text-align: center;
    margin-top: 20px;
}
.popup_memberrank_wrap .close_btn{
    border: 1px solid rgb(192,192,192);
    padding: 0.2rem 1rem;
    font-weight: bold;
    display: inline-block;
    border-radius: 2rem;
}
.popup_ttl{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}
.popup_ttl_sub{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.popup_lead{
    font-size: 15px;
}
.popup_attention{
    font-size: 12px;
    color: #808080;
}
.rank_description{
    display: flex;
    align-items: flex-start;
    text-align: center;
    margin: 20px 0;
}
.rank_description div{
    width: calc(100% / 3 );
    font-weight: bold;
    font-size: 15px;
}
.bronze_time, .silver_time, .gold_time{
    color: #fff;
    margin: 10px 0;
    padding: 3px 0;
    width: calc(100% - 10px);
    position: relative;
    font-weight: normal;
}
.bronze_time{
    background-color: rgb(186, 122, 82);
}
.silver_time{
    background-color: rgb(190, 189, 189);
}
.gold_time{
    background-color: rgb(221, 186, 78);
}
.bronze_time:after, .silver_time:after, .gold_time:after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.1rem 0 1.1rem 10px;
    border-color: transparent transparent transparent #808080;
    display: inline-block;
    margin-left: 5px;
    letter-spacing: -0.2px;
    position: absolute;
    top: 0;
    right: -10px;
}
.bronze_time:after {
  border-color: transparent transparent transparent rgb(186, 122, 82);
}
.silver_time:after {
  border-color: transparent transparent transparent rgb(190, 189, 189);
}
.gold_time:after {
  border-color: transparent transparent transparent rgb(221, 186, 78);
}

/* bank_disabled_popup */
.popup_disabled_bank_wrap{
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.popup_disabled_bank_wrap .overlay{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.popup_disabled_bank_wrap .popup_flex{
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 8%;
  box-sizing: border-box;
}
.popup_disabled_bank_wrap .popup_inner{
  display: none;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  padding: 20px 30px;
  border-radius: 6px;
  margin: 50px 0;
  width: 400px;
  height: auto;
  margin: auto;
}
.popup_disabled_bank_wrap .close{
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  right: -40px;
  z-index: 10000;
  cursor: pointer;
}
.popup_disabled_bank_wrap .close::before,
.popup_disabled_bank_wrap .close::after{
  content: '';
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
}
.popup_disabled_bank_wrap .close::before{
  transform: rotate(45deg);
}
.popup_disabled_bank_wrap .close::after{
  transform: rotate(-45deg);
}
.popup_disabled_bank_wrap .text_center{
    text-align: center;
    margin-top: 20px;
}
.popup_disabled_bank_wrap .close_btn{
    border: 1px solid rgb(192,192,192);
    padding: 0.2rem 1rem;
    display: inline-block;
    border-radius: 2rem;
    max-width: 300px;
    width: 80%;
}
.popup_disabled_bank_wrap .confirm_btn{
    border: 1px solid rgb(192,192,192);
    padding: 0.2rem 1rem;
    display: inline-block;
    border-radius: 2rem;
    max-width: 300px;
    width: 80%;
    background :#ff7c60;
    color: #ffffff;
}
.popup_disabled_bank_wrap .popup_ttl{
    font-size: 15px;
    color: red;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}
.popup_disabled_bank_wrap .list-btn li {
    padding: 0 10%;
    font-size: 15px;
}


/* noticeList */
#mypage .noticeList li{
    background: #fff;
    font-size: 13px;
    border-radius: 3px;
    padding: 15px 30px;
    margin: 40px 0 0;
}
#mypage .noticeList li+li,
#mypage .noticeList+.noticeList li{ margin-top: 10px; }
#mypage .noticeList a { margin: 0 15px 0 0; }
#mypage .noticeList a::after {
    display: inline-block;
    font: normal normal normal 18px/1 FontAwesome;
    content: "\f105";
    position: relative;
    right: -5px;
    top: 1px;
}
/* formList */
#mypage .listTit {
    color: #999;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px;
}
#mypage .telList .edit,
#mypage .listTit .edit {
    display: inline-block;
    float: right;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    border: 0.5px solid;
    border-radius: 2px;
    padding: 3px 20px 3px 15px;
}
#mypage .telList .edit::before,
#mypage .listTit .edit::before {
    content: "\f040";
    font: normal normal normal 14px/1 FontAwesome;
    margin: 0 5px 0 0;
}
#mypage .telList .edit:hover,
#mypage .listTit .edit:hover {
    color: #fff;
    background: #fa4d28;
    border-color: #fa4d28;
}
#mypage .formList.confirm {
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
    padding: 20px 0 30px;
    margin: 0 0 40px;
}
#mypage .formList .label {
    float: right;
    font-size:12px;
    line-height: 2.2em;
    text-decoration: none;
}
#mypage .formList .copybtn { color: #E95386; padding: 0; cursor: pointer; margin: 0 10px; }
#mypage .formList .copybtn:hover { color: #fa4d28; }
#mypage .formList .copybtn button { display: none; }

#mypage .formList .toggleBtn { display: block; padding: 0; }
#mypage .formList .toggleBtn span {
    display: inline-block;
    float: right;
    width: 50px;
    height: 28px;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 0;
    position: relative;
    top: -2px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#mypage .formList .toggleBtn span::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid #ccc;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
    position: absolute;
    left: -1px;
    top: -1px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#mypage .formList .toggleBtn.checked span { background: #e95383; border-color: #e95383; }
#mypage .formList .toggleBtn.checked span::before { left: 21px; }
#mypage .formList .toggleBtn input { opacity: 0; }
#mypage .formList .num { float: right; }

/* ownedList */
#mypage .ownedList li {
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    border-radius: 4px;
    padding: 15px 20px 0;
    margin: 0 -10px 10px;
}
#mypage .ownedList .artist { margin-bottom: 10px; font-size: 12px; }
/*
#mypage .ownedList .tourTit { font-size: 20px; line-height: 1.5; margin: 0 0 10px; }
#mypage .ownedList .venue { font-size: 16px;}
#mypage .ownedList .date { font-size: 16px;}
#mypage .ownedList .date .time { font-size: 12px; }
#mypage .ownedList .detail { font-size: 12px; margin-bottom: 10px; }
#mypage .ownedList .orderNum { color: #999; font-size: 11px; margin: 3px 0 0; }
*/
#mypage .ownedList .tourTit { font-size: 20px;line-height: 1.5; margin: 0 0 10px; }
#mypage .ownedList .venue { font-size: 16px;}
#mypage .ownedList .date { font-size: 16px;}
#mypage .ownedList .date .time { padding-left: 10px; font-size: 12px; }
#mypage .ownedList .detail { margin-bottom: 10px; font-size: 12px; }
#mypage .ownedList .orderNum { color: #999; font-size: 11px; margin: 3px 0 0; padding: 0 0 20px; }
#mypage .ownedList .memberList dt {
    color: #999;
    font-size: 11px;
    background: #eee;
    padding: 10px 20px;
    margin: 0px -20px 0px;
}
#mypage .ownedList .memberList dd {
    margin: 0 -20px;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}
#mypage .ownedList .memberList dd:last-child{ border: none}
#mypage .ownedList .memberList dd .status{ padding: 6px 0 5px 10px;color: #ff7c60; font-size: 10px;}
#mypage .ownedList .memberList dd .status:before{
    margin: 0 5px 0 0;
    content: "\f0ab";
    font: normal normal normal 14px/1 FontAwesome;
    vertical-align: -2px;
}
#mypage .ownedList .memberList dd.not{ color: #ccc;}
#mypage .ownedList .memberList .cancel{
    margin: -10px 0 0;
    padding: 2px 3px 0px;
    font-size: 11px;
    text-decoration: none;
    border: 1px solid;
    border-radius: 3px;
    position: absolute;
    right: 20px;
    top: 50%;
}
#mypage .ownedList .memberList .cancel:hover{ background: #fa4d28;color: #fff;}
#mypage .ownedList li .btn { margin: 15px auto 0; border-top: 1px dashed #ddd; }
#mypage .ownedList li .btn a { margin-bottom: 5px; }

/* ownedList qrcord */
#mypage .btn.print { margin: -20px 0 20px;}
#mypage .ownedList.qrcord .areaTit{ margin: -15px -20px 20px;}
#mypage .ownedList.qrcord .qrArea{
    margin: 0 0 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 30px 40px;
    display: flex;
    align-items: center;
}
#mypage .ownedList.qrcord .qrArea .qr{ float: left; border: 1px solid #ccc; line-height: 0;}
#mypage .ownedList.qrcord .qrArea .formList{ padding: 0 0 0 40px}
#mypage .ownedList.qrcord .qrArea .formList dd{ font-size: 20px;}
#mypage .ownedList.qrcord .orderNum{ margin: 0 0 20px; border-bottom: 1px solid #ccc;}
#mypage .ownedList.qrcord .500{ margin: 0 0 10px;}
#mypage .ownedList.qrcord .attentionList{ padding: 0 0 10px 1em}
#mypage .ownedList.qrcord .attentionList li{
    box-shadow: none;
    margin: 0;
    padding: 0 0 8px 0;
}


/* ownedList qrcord */
#mypage .btn.print { margin: -20px 0 20px;}
#mypage .ownedList.qrcord .areaTit{ margin: -15px -20px 20px;}
#mypage .ownedList.qrcord .qrArea{
    margin: 0 0 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 30px 40px;
    display: flex;
    align-items: center;
}
#mypage .ownedList.qrcord { text-align: left}
#mypage .ownedList.qrcord li{
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    border-radius: 4px;
    padding: 15px 20px 0;
    margin: 0 -10px 10px;
}
#mypage .ownedList.qrcord .qrArea .qr{ float: left; border: 1px solid #ccc; line-height: 0;}
#mypage .ownedList.qrcord .qrArea .formList{ padding: 0 0 0 40px}
#mypage .ownedList.qrcord .qrArea .formList dd{ font-size: 20px;}
#mypage .ownedList.qrcord .orderNum{ margin: 0 0 20px; padding: 0 0 20px; border-bottom: 1px solid #ccc;}
#mypage .ownedList.qrcord .500{ margin: 0 0 10px;}
#mypage .ownedList.qrcord .attentionList{ padding: 0 0 10px 1em}
#mypage .ownedList.qrcord .attentionList li{
    box-shadow: none;
    margin: 0;
    padding: 0 0 8px 0;
}

/* receive information */
#mypage .ownedList.receiveInfo .tourTit { font-size: 13px; margin: 0 0 5px; }
#mypage .ownedList.receiveInfo .venue { font-size: 16px; margin: 0 0 10px; }
#mypage .ownedList.receiveInfo .number,
#mypage .ownedList.receiveInfo .password { font-size: 20px; }
#mypage .ownedList.receiveInfo .btn .sub { border: none; margin: 5px auto; }
#mypage .ownedList.receiveInfo .btn .sub:hover { box-shadow: none; }


/* ticket */
#mypage .ticketDetail { padding-top: 0; }
#mypage .ticketDetail .ticketDetailList li:first-child { border-top: none; }
#mypage .ticketDetail .ticketDetailList li:last-child { margin-bottom: 0; }
#mypage .ticketDetail .ticketDetailList .center { margin-top: 10px; }
#mypage .ticketDetail .ticketDetailList + .btn .main { margin-top: 0; }
#mypage .tooltip{ display: inline-block;}
#mypage .tooltip:hover{ cursor: pointer}
#mypage .tooltip:hover .fa{ color:#ff7c60;}
#mypage .tooltip .fa{
    font-size: 1.3em;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#mypage .tooltipTxt{
    display: none;
    position: absolute;
    bottom:36px;
    left:0;
    width: 400px;
    padding: 10px;
    font-size: 12px;
    line-height: 1.4em;
    color: #fff;
    background: #333;
    border-radius: 3px;
    z-index: 2;
}
#mypage .tooltipTxt:before{
    content: "";
    position: absolute;
    top: 95%;
    left: 24%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #333;
}
#mypage .tooltipTxt .fa{
    display: none;
}
/* point */
#mypage .boxTxt .point { font-size: 20px; font-weight: 500; padding: 0 10px; }
#mypage .pointList {
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    border-radius: 3px;
    margin: 0 0 20px;
}
#mypage .pointList li {
    border-bottom: 1px solid #ddd;
    padding: 10px 220px 10px 20px;
    position: relative;
}
#mypage .pointList li:last-child { border: none; }
#mypage .pointList li.nodata { color: #999; padding: 20px; }
#mypage .pointList .tit {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
#mypage .pointList .count {
    width: 180px;
    font-size: 13px;
    text-align: right;
    line-height: 24px;
    border-left: 1px solid #ddd;
    margin-top: -14px;
    position: absolute;
    right: 20px;
    top: 50%;
}
#mypage .pointList .count em { font-size: 30px; }

/* pager */
#mypage .pager { text-align: center; margin: 20px 0; }
#mypage .pager li { display: inline-block; }
#mypage .pager li a {
    display: inline-block;
    color: #999;
    text-decoration: none;
    position: relative;
    padding: 0 15px;
}
#mypage .pager li a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 2px solid #ccc;
    position: absolute;
    top: 50%;
    margin: -6px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#mypage .pager li.prev a::after { border-bottom: none; border-right: none; left: 0; }
#mypage .pager li.next a::after { border-top: none; border-left: none; right: 0; }
#mypage .pager li a:hover { color: #fa4d28; }
#mypage .pager li a:hover::after { border-color: #fa4d28; }

/* uploadimage */
#mypage .uploadImage { text-align: center; }
#mypage .uploadImage.now .ph,
#mypage .uploadImage.ok .ph { width: 300px; background: #444; line-height: 0; margin: 0 auto 20px; }
#mypage .uploadImage.now .ph img { width: 100%; opacity: 0.5; },
#mypage .uploadImage.ok .ph img { width: 100%; opacity: 0.5; }


/* addFriend
============================== */
#addfriend .section{
    position: relative;
}
#addfriend .section .sectionTit i{
    width: 50px;
    height:50px;
    margin: 0 10px 0 0;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    background: #ff7c60;
}
.friendList {
    background: #fff;
/*    box-shadow: 0 0 1px #ccc;*/
    margin: 0 0 30px;
}
#addfriend .menuArea .menuList {
    margin: 0 0 30px;
    border-radius: 3px;
}
.modalWrap .friendList.fellow {
    height: 320px;
    margin: 0 -19px 10px;
    border-top: 0.5px solid #ddd;
    border-bottom: 0.5px solid #ddd;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}
#entry .ticketDetail + .btn span.complete{
    display: inline-block;
    width: auto;
    min-width: 400px;
    font-size: 18px;
    line-height: 45px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid #ff7c60;
    color: #ff7c60;
    border-radius: 4px;
    padding: 0 10px;
    margin: 15px auto;
}
#addfriend .add{ text-align: right}
#addfriend .sectionTit + .add{
    position: relative;
    top: 0;
    right: 0;
    height: 0;
}
#addfriend .add a{ text-decoration: none}
#addfriend .add span{
    display: inline-block;
    color: #ccc;
}
.friendList li {
    font-size: 15px;
    border-bottom: 0.5px solid #ddd;
}
.friendList.fellow li{
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.friendList li:last-child { border: none; }
.friendList a{
    display: block;
    color: #1a1a1a;
    font-style: 400;
    text-decoration: none;
    padding: 18px 7% 18px 25px;
    position: relative;
}
.friendList .more{
    position: absolute;
    right: 25px;
    top: 50%;
    width:24px;
    height:24px;
    fill: #999;
    margin-top: -12px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    /*border: 1px solid #ddd;
    border-radius: 50%;*/
}
.friendList.fellow a span{color:#1a1a1a; }
.friendList .more path{-webkit-transition:none;transition:none;}

.friendList .time {
    position: absolute;
    right: 9%;
    top: 50%;
    color: #999;
    font-size:11px;
    margin-top: -8px;
}
.friendDetail .name,
.friendList .name{    font-weight: 500; font-size: 16px;}
.friendDetail .name span,
.friendList .name span{ margin-left: 5px; font-size: 0.85em;}
.friendList .emtgid,
.friendList .tel{
    position: absolute;
    top: 50%;
    margin-top: -0.7em;
    font-size: 13px;
}
.friendList .tel{
    left: 61%;
}
.friendList .emtgid{
    left: 75%;
}
.friendList .none .emtgid{
    left: 57%;
}
.modalWrap .friendList .emtgid{ left: 70%;font-size: 12px}
.friendList .none{ color:#ccc;}
.friendList .error { color: #c00;}
.friendList .tel.error:after{
    content: '\f06a';
    font-family: FontAwesome;
    margin-left: 2px;
}
.friendList.fellow li { border: none}
.friendList.fellow li label:hover{ background: #fffbd6;color: #e85383}
.friendList.fellow li:hover,
.friendList a:hover{ background-color: #fffbd6;}
.friendList.fellow li.none:hover,
.friendList.fellow li. label:hover{ background: #fff;color:#ccc;}
.friendList.fellow li.added label,
.friendList.fellow li:hover p,
.friendList.fellow li:hover span{color:#ff7c60; }
.friendList.fellow li.none:hover p,
.friendList.fellow li.none:hover span{color:#ccc; }
.friendList.fellow li input+p{ width: 65%;}
.friendList a:hover .more { fill: #ff7c60;/*border-color: #ff7c60;*/}
.friendList.fellow li.notAdd label:hover,
.friendList.fellow li.notAdd:hover,
.friendList.fellow li.added label:hover,
.friendList.fellow li.added:hover{ background: #fff;cursor: default;}
.friendList.fellow li.notAdd:hover span,
.friendList.fellow li.notAdd:hover .name,
.friendList.fellow li.notAdd label:hover{ color: #1a1a1a;}

.friendList.fellow li > label {
    display: block;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding: 10px 5% 10px 45px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.friendList.fellow li:last-child > label{ border:none;}
.friendList.fellow li > label::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: -14px 0 0;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.friendList.fellow li > label::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 7px;
    border: 2px solid #fff;
    border-right: none;
    border-top: none;
    position: absolute;
    left: 16px;
    top: 50%;
    margin: 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.friendList.fellow li > label.checked{ background: #fffbd6;}
.friendList.fellow li > label.checked::before { background: #e85383; border-color: #e85383; }
.friendList.fellow li.added > label::before{ border: none;}
.friendList.fellow li.notAdd > label::before{ display: none;}
.friendList.fellow li.added > label::after,
.friendList.fellow li > label.checked::after { opacity: 1; margin: -6px 0; }
.friendList.fellow li.added > label::after{ border-color: #e85383;}
.friendList.fellow li > label input[type="radio"] ,
.friendList.fellow li > label input[type="checkbox"] { display: none; }


.serchResult,
.addInput,
.modalWrap{
    display: none;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    padding: 30px 20px 20px;
    background: #fff;
    border-radius: 3px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.addInput.error_msg{ padding-bottom:30px;}
.serchResult .name,
.addInput .name{ font-size: 20px}
.serchResult .name span,
.addInput .name span{ font-size: 14px}
.serchResult .emtgid,
.addInput .emtgid{ font-size: 16px}
.modalWrap .sub{ border: none; margin: 0;}
.modalBg{
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba( 0,0,0,0.8);
}
.serchResult .text{ margin-bottom: 10px;}

/* 友だち詳細 */
#mypage .sectionTit+.error{ margin: -30px 0 40px;}
#mypage .friendDetail{
    background: #fff;
    margin: 30px 0 20px;
    padding: 30px 30px 10px;
    border-radius: 10px;
    box-shadow: 0 0 1px #ccc;
}
#mypage .friendDetail .time{
    float: right;
    font-size: 11px;
    font-weight: 400;
    color: #999;
    line-height: 2;
}
#mypage .friendDetail .name{ margin-bottom: 20px; font-size:20px;}
#mypage .friendDetail .name span{ font-size: 14px;}
#mypage .friendDetail .emtgid{ margin-bottom: 15px}
#mypage .friendDetail .emtgid,
#mypage .friendDetail .tel{ font-size: 16px;vertical-align: middle}
#mypage .friendDetail .tel .fa-exclamation-circle{ margin-left: 5px; font-size: 16px; color:#f00; }
#mypage .friendDetail .tel span{ display: block;}
#mypage .friendDetail .btn .telEdit{ width: 50%;font-size: 16px}
#mypage .friendDetail .subTxt { line-height: 1.4}
#mypage .friendDetail .tit{
    font-size: 12px;
    margin: 0 -0 5px;
    padding: 15px 0 0;
    color: #999;
    font-weight: 500;
    /* background: #eee; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#mypage .friendDetail .group {
    margin: 30px 0 0;
}
#mypage .friendDetail .group .tit{

}
#mypage .friendDetail .group li:first-child{
    border-top: 0.5px solid #eee;
}
#mypage .friendDetail .group li{
    padding: 10px 0;
    line-height: 1.4em;
    font-size: 12px;
    border-bottom: 0.5px solid #eee;
}
#mypage .friendDetail .group li:last-child{margin-bottom: 0}
#mypage .friendDetail .group li span{
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 400
}
#mypage .friendDetail .check{ color: #999;font-size: 11px;}
#mypage .friendDetail .delete a{
    display: block;
    padding: 20px 0 15px;
    text-decoration: none;
    text-align: center;
}
#mypage .friendDetail .btn a,
#mypage .friendDetail .btn input,
#mypage .friendDetail .btn button{
    width: 92%;
    min-width: initial
}

/* 登録 */
#addfriend .addForm {
    width: 640px;
    margin: 0 auto;
}

/* entry
============================== */
#entry #wrap { padding: 70px 0 40px; }
/*#entry #gnav { display: none; }*/
#entry header h1 a { /*height: 30px; background-size: cover;*/ }
#entry #container { width: 640px; }
#entry footer #supportNav,
#entry footer .facebook { display: none; }
#entry .areaTit .hopeText { display: block; font-size: 0.7em; padding: 0 2em 0 0; }
#entry .areaTit .fa { font-size: 1.2em; line-height: 0; position: absolute; right: 1em; top: 50%; }
#entry .listTit { margin: 0.5em; }

/* stepList */
#entry .stepList { text-align: center; margin: 0 0 50px; }
#entry .stepList li {
    display: inline-block;
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    padding: 0 20px 0 0;
    position: relative;
    counter-increment: cnt;
}
#entry .stepList li::before {
    display: inline-block;
    content: counter(cnt);
    width: 30px;
    height: 30px;
    background: #b8b8b8;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    line-height: 30px;
    border-radius: 50%;
    margin: 0 10px;
}
#entry .stepList li.current { color: #777; }
#entry .stepList li.current::before { background: #e85383; }
#entry .stepList li::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 2px solid #ccc;
    border-top: none;
    border-left: none;
    position: absolute;
    right: 0;
    top: 50%;
    margin: -4px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#entry .stepList li:last-child { padding: 0;}
#entry .stepList li:last-child::after { content: none; }
/* formList */
#entry .formList .ticketTypeCelect { width: 60%; }
#entry .formList .ticketTypeCelect input[type="radio"] { display: none; }
#entry .formList .ticketTypeCelect label {
    width: 50%;
    float: left;
    text-align: center;
    line-height: 30px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 7px 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#entry .formList .ticketTypeCelect label.checked { background: #fffbd6; color: #e85383; }
#entry .formList .ticketTypeCelect label:first-child { border-radius: 3px 0 0 3px; border-right: none; }
#entry .formList .ticketTypeCelect label:last-child { border-radius: 0 3px 3px 0; }
#entry .formList .ticketTypeCelect img {
    width: 26px;
    line-height: 0;
    vertical-align: middle;
    margin: -2px 0 0 0;
}
#entry .formList .ticketTypeCelect label:last-child img { margin-right: 5px; }
#entry .formList .dticketTel,
#entry .telList .myTel { color: #e85383; }
#entry .telList .dticketTel,
#entry .telList .friendTel { color: #af6ca8; }

#entry .accordion .areaTit { border-radius: 3px; cursor: pointer; transition: all .3s ease; }
#entry .accordion .areaTit:hover { background: #e85383; }
#entry .accordion .areaTit.ui-accordion-header-active { border-radius: 3px 3px 0 0; }
#entry .checkList {
background: #fff;
box-shadow: 0 0 1px #ccc;
border-radius: 3px;
margin: 40px 0;
}
#entry .checkList label { padding: 20px; }
#entry .checkList label:hover { background: #fffbd6; }
#entry .formList .checkList { margin: 0; box-shadow: none; }
#entry .formList .checkList label { display: block; padding: 0; }
#entry .formList .checkList label:hover,
#entry .formList .checkList label.checked { background: transparent; }
#entry .formList .checkList label img { vertical-align: top; }
.formList .checkList label::before,
.formList .checkList label::after { right: 12px; }
#entry .accordion .ticketDetail { padding-top: 0px; padding-bottom: 0px; }
#entry .accordion .formList.ticketDetail { padding:20px; }
#entry .accordion .areaBody { padding-bottom: 20px; }

#entry .telList li{ position: relative}
#entry .telList .friendAdd a,
#entry .telList .add a{ text-decoration: none}
#entry .telList .friendRemove,
#entry .telList .friendAdd{
    position: absolute;
    top: 32px;
    right: 0;
}
#entry .telList .friendRemove a,
#entry .telList .friendAdd a{
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    border: 0.5px solid;
    border-radius: 2px;
    padding: 3px 15px;
}
#entry .telList .friendRemove a::before {
    content: "\f056";
    font: normal normal normal 14px/1 FontAwesome;
    margin: 0 5px 0 0;
    vertical-align: -1px;
}
#entry .telList .friendAdd a::before {
    content: "\f055";
    font: normal normal normal 14px/1 FontAwesome;
    margin: 0 5px 0 0;
    vertical-align: -1px;
}
#entry .telList .friendAdd a:hover,
#entry .telList .friendRemove a:hover{
    color: #fff;
    background: #fa4d28;
    border-color: #fa4d28;
}
#entry .telList .add { font-size: 14px;text-align: center;}
#entry .telList .add a{ display: inline-block;line-height: 45px}
#entry .telList .add a:hover{ color:#fa4d28;}
#entry .telList .add a::before {
    content: "\f234";
    font: normal normal normal 14px/1 FontAwesome;
    margin: 0 5px 0 0;
    vertical-align: middle;
}
#entry .telList .name,
#entry .telList .tel{ color: #1a1a1a;}
#entry .telList .name{ font-size: 16px;}
#entry .telList .name span{ font-size: 13px;}
#entry .telList .tel{ font-size: 14px;}
#entry .sectionTit + .btn a{ margin: -20px auto 50px;}
#entry .messageSend + .btn a { margin: 20px 0 0}

#entry .sharememberDetail .txt{
    float: left;
    width: 60%;
}
#entry .sharememberDetail .ph{
    float: right;
    width: 250px;
    margin-top: -30px;
}

/* ticketDetail */
.ticketDetail > .price { background: #f7f7f7; font-size: 12px; padding: 10px; margin: 10px 0; }
.ticketDetail .price dt { font-weight: 500; margin: 0 0 10px; }
.ticketDetail .price dd.total { font-weight: 500; border-top: 1px solid #ddd; padding: 10px 0 0; margin: 10px 0 0; }
.ticketDetail .price .num { float: right; }

.ticketDetail span.now { color: #f00; }
.ticketDetail span.hit { color: #6cc644; }
.ticketDetail span.fail { color: #999; }

.ticketDetailList li {
    border-top: 1px dashed #ddd;
    margin: 0 -20px;
    padding: 20px 20px 15px;
}
.ticketDetailList li .tit { font-weight: 500; }
.ticketDetailList li .num { float: right; }
.ticketDetailList li .price {
    background: transparent;
    border-top: 1px solid #ddd;
    padding: 15px 0 0;
    margin: 15px 0 0;
}
.ticketDetailList li .subtotal { font-size: 1.2em; font-weight: 500; }
.ticketDetailList li.totalPrice {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 0;
}
.ticketDetailList.confirm li.totalPrice {
    font-size: 16px;
    border-bottom: none;
    padding-bottom: 0;
    padding: 20px 0 0 0;
    margin: 0;
}

/* payList */
.payList { margin: 0 0 40px; }
.payList li {
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    border-radius: 3px;
    margin: 0 0 20px;
}
.payList li > label {
    display: block;
    font-size: 16px;
    line-height: 60px;
    padding: 0 5% 0 45px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.payList li > label.checked { background: #fffbd6; }
.payList li > label::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: -14px 0 0;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.payList li > label::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 7px;
    border: 2px solid #fff;
    border-right: none;
    border-top: none;
    position: absolute;
    left: 16px;
    top: 50%;
    margin: 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.payList li > label.checked::before { background: #e85383; border-color: #e85383; }
.payList li > label.checked::after { opacity: 1; margin: -6px 0; }
.payList li > label input[type="radio"] { display: none; }
#entry .payList .detail { padding: 20px 5%; }
#entry .payList .detail .formList { margin: 0; }
#entry .payList .detail .card { width: 40px }
#entry .payList .detail .formList .convinience label {
    line-height: 30px;
    border: 1px solid #ddd;
    margin: 5px 0;
    padding: 10px;
    border-radius: 3px;
    min-width: 320px;
}
#entry .payList .detail .formList .convinience label.checked { background: #fffbd6; color: #fa4d28;}
#entry .payList .detail .formList .convinience input {opacity: 0; position: absolute;}
#entry .payList .detail .formList .convinience img{
    width: 30px;
    vertical-align: bottom;
    margin: 0 6px 0 0 ;
}

/* チケット譲渡 追記 */
.ticketSelect dd{
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    border-radius: 0 0 3px 3px;
}
.ticketSelect li { font-size: 15px;}
.ticketSelect li .tit{
    margin: 0 0 5px;
    padding: 20px 20px 0;
    font-weight: 400;
    color: #888;
    font-size: 12px;
}
.ticketSelect li label:hover{ background: #fffbd6;color: #e85383}
.ticketSelect li > label {
    display: block;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding: 10px 5% 10px 45px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.ticketSelect li > label::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: -14px 0 0;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.ticketSelect li > label::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 7px;
    border: 2px solid #fff;
    border-right: none;
    border-top: none;
    position: absolute;
    left: 16px;
    top: 50%;
    margin: 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.ticketSelect li > label.checked{ background: #fffbd6;}
.ticketSelect li > label.checked::before { background: #e85383; border-color: #e85383; }
.ticketSelect li > label.checked::after { opacity: 1; margin: -6px 0; }
.ticketSelect li > label input[type="radio"] { display: none; }
.ticketSelect li .tit{
    color: #888;
    font-size: 11px;
    margin: 0;
    padding: 6px 20px 5px;
    background:#eee;
}
.ticketSelect li .name{ font-size: 16px; font-weight: 500; }
.ticketSelect li .count { font-size: 24px; font-weight: 500; padding: 10px 20px; }
.ticketSelect li .name span,
.ticketSelect li .count span { font-size: 14px}
.ticketSelect li.disabled label{ background: #fff;color: #ccc;}
.ticketSelect li.disabled .error{ font-size: 12px; color: #f00;}
.messageSend{
    background: #fff;
    box-shadow: 0 0 1px #ccc;
    border-radius: 3px;
    padding: 30px 20px;
}

/* question */
.question_block .formList dt{ font-size: 14px; color:#111;margin-bottom: 20px;}
.question_block .formList.ticketDetail dd{ margin-bottom:10px;}
.question_block .formList label{padding:0 0 0 5px;vertical-align:-2px;font-size:14px;}
.question_block .formList.checkList label{ padding: 0 0 0 35px!important;font-size:16px;}
.question_block .formList.checkList label:before,
.question_block .formList.checkList label:after{right:auto;left:0;top:13px;}
.question_block .formList.checkList label:after{left:6px;}
.question_block .formList.checkList label.checked,
.question_block .formList.checkList label:hover{background:none!important;}
.question_block .formList dd{ position:relative;}
.question_block .formList label.checked{ color: #ff7c60;}
.question_block .formList input{ vertical-align:-3px;}

/* idlink
============================== */
header.idlink { background: #333; }
header.idlink h1 {
    width: auto;
    line-height: 50px;
    padding: 18px 20px;
    height: auto;
}
header.idlink h1 a {
    display: flex;
    align-items: center;
    width: auto;
    height: 50px !important;
    float:left;
    background: none;
    text-indent: 0;
    margin: 0 20px 0 0;
}
header.idlink h1 table,
/*header.idlink h1 td { width: auto; height:50px; padding: 0!important; }*/
header.idlink h1 td { height:50px; padding: 0!important; }
header.idlink h1 img {
    max-width: 150px;
    max-height: 50px;
    width: auto;
    height: auto;
}
header.idlink #loginNav a,
header.idlink #loginNav input { color: #fff; }
header.idlink #loginNav a:hover,
header.idlink #loginNav input:hover { color: #ff7c60; }
header.idlink #loginNav a svg * { fill: #fff; }
header.idlink #loginNav a:hover svg * { fill: #ff7c60; }


/* 利用規約
============================== */
#terms h3 { font-size: 18px; line-height: 1.7; margin: 50px 0 20px; padding: 0; }
#terms ol { margin: 0 0 50px; }
#terms ol > li { list-style-type: decimal; margin: 5px 0 0 20px; }
#terms li li {
    list-style-type: none;
    list-style-position: inside;
    counter-increment: cnt;
    position: relative;
    margin: 5px 0 0;
    padding: 0 0 0 25px;
}
#terms li li:before {
    display: marker;
    content: "(" counter(cnt) ")";
    position: absolute;
    top: 0;
    left: 0;
}


/* プライバシーポリシー
============================== */
#privacy .areaTit{ margin: 30px 0 0; }
#privacy .txt { margin: 0 0 20px; }
#privacy .info { margin: 0 0 60px; text-align: right; font-size:12px; }
#privacy dl { margin: 0 0 60px; padding: 0!important; }
#privacy dt { font-size: 16px!important; line-height: 1.7!important; margin: 0 0 10px; padding: 0!important;}
#privacy dd { margin: 0 0 30px; padding: 0!important; }
#privacy  ol { padding: 0 0 0 20px; margin: 0 0 20px; }
#privacy  ol li{ list-style-type: decimal; margin: 0 0 5px;}
#privacy ol ol li { list-style-type: upper-roman; }

/* 特商法表記
============================== */
#scc table { width: 100%; margin-bottom: 35px; border-top:1px solid #ddd;}
#scc table th{ width: 33%; padding: 35px 0; border-bottom:1px solid #ddd;vertical-align: top;}
#scc table td{ width: 67%; padding: 35px 0; border-bottom:1px solid #ddd;}


/* pass_get
============================== */

#container .pass_get { width: 600px; margin: auto;}
.pass_get .status{    margin-bottom: 20px;}
.mb-10{    margin-bottom: 10px;}
.flow_list{    margin-top: 1rem;}



/* ***** premium ***** */
.bnr_premium{
    background: url(/images/common/banner_premium_bg.png) no-repeat center bottom;
  background-color: rgb(47,42,45);
  padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bnr_premium img{
    margin: 0 5px;
}
.bnr_premium.bnr_absolute{
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
        margin: -60px auto 30px;
}

/* ***** name ***** */
.bnr_name{
    background: #74D1BC;
    background-size: 100% 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bnr_name img{
    padding: 0 20px;
    box-sizing: border-box;
    width: 850px;
}



/* tour_select
============================== */

.orange {
    color: #FF7C60;
}

#entry #ticket_select .stepList li.current::before{
    background: #FF7C60;
}

#ticket_select .payList li > label.checked::before {
    background: #FF7C60;
    border-color: #FF7C60;
}


#entry #ticket_select .formList .dticketTel, #entry #ticket_select .telList .myTel {
    color: #FF7C60;
}


#entry #ticket_select .telList .dticketTel, #entry #ticket_select .telList .friendTel {
    color: #FF7C60;
}


/* tour_select
============================== */
#orderProfile #container{ width: 640px;}
#orderProfile #container .listTit {
    color: #999;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}
#orderProfile #container .menu {
    margin: 0 0 40px;
    background: #fff;
    padding: 0 0 0 15px;
    display: none;
}
#orderProfile #container .menu li{
    font-size: 15px;
    border-bottom: 0.5px solid #ddd;
}
#orderProfile #container .menu li.m_02 { padding: 20px 0; color: #ff7c60;}
#orderProfile #container .menu li:last-child { border-bottom: none;}
#orderProfile #container .menu li a {
    display: block;
    color: #1a1a1a;
    font-style: 400;
    text-decoration: none;
    padding-right: 7%;
    position: relative;
    padding: 20px 0;
    font-style: normal;
}
#orderProfile #container .menu li a:after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 2px solid #ccc;
    border-top: none;
    border-left: none;
    position: absolute;
    right: 20px;
    top: 50%;
    margin: -4px 0 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#orderProfile #container .menu li a:hover { color: #ff7c60;}
#orderProfile #container .menu li a:hover:after { border-color: #ff7c60;}
#orderProfile #container .menu li.m_02 { display: none;}
#orderProfile .notice_box_04 {
    padding: 20px;
    margin: 0 0 30px;
    background: #fff;
    background: #fff0ea;
    color: #f33;
    border: .5px solid #F32;
}
#orderProfile .notice_box_04 .notice_tit {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin: 0 0 1em;
    font-weight: bold;
}
#orderProfile .notice_box_04 li {
    font-size: 13px;
    text-indent: -0.5em;
    margin-bottom: .5em;
    padding-left: 0.5em;
}
#orderProfile .notice_box_04 li:before {
    content"";
    font-family: FontAwesome;
    display: inline-block;
    position: relative;
    top: 0.1em;
    content: '\f111';
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}
#orderProfile .notice_box_04 li:last-child { margin-bottom: 0;}
#orderProfile .alert_box_01 {
    color: #f33;
    margin: 0 0 30px;
}
#orderProfile .alert_box_01 li { font-weight: bold;}
#orderProfile .formList.confirm {
    background: none;
    border-radius: 0px;
    box-shadow: none;
    padding: 0;
    text-align: left;
    width: auto;

    border-bottom: none;
}


/* ワクチン接種証明
============================== */


.proofAdd#mypage #container {
	width: 100%;

}

#proofArea{
    background: #fff;
}
#proofArea section{

}
#proofArea .inner{
    width: 850px;
    margin: auto;
}
#proofArea section.mainArea{
    -webkit-filter: drop-shadow(2px 1px 5px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(2px 1px 5px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(2px 1px 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(2px 1px 5px rgba(0, 0, 0, 0.2));
    background: #F5F5F5;
    padding:150px 80px;
    margin: 0 0 80px 0;
}
#proofArea section.mainArea .mainTit{
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    margin: 0 0 30px 0;
}
#proofArea section .imgArea ul{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#proofArea section .imgArea ul li{

}
#proofArea section .imgArea ul li:nth-child(1){
    width: 60%;
    margin: auto;
}
#proofArea section .imgArea ul li:nth-child(2){
    width: 40%;
    margin: auto;
    position: relative;
}
#proofArea section .imgArea ul li p{
    text-align: center;
    font-size: 14px;
}
#proofArea section .imgArea ul li img{
    display: block;
    margin: 0 auto;
    width: 100%;
}
#proofArea section .imgArea ul li .mainLead{
font-size: 33px;
    text-align: left;
    font-weight: bold;
    font-family: "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin: 0 0 20px 0;
    line-height: 1.8;
}
#proofArea section .imgArea ul li .mainLead .bold{
    color: #ff7c60;
}
#proofArea section .imgArea ul li .lead{
text-align: left;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 30px 0;
}
#proofArea section .imgArea ul li .lead .line{
    background-color: #FFDC90;
}
#proofArea section .imgArea ul li .attentionTxt{
    text-align: left;
    text-indent: -1em;
    margin: 0 0 0 1em;
    font-size: 12px;
}
#proofArea section .imgArea{
    max-width: 900px;
    margin: 0 auto;
}
#proofArea section .imgArea ul li .ph{
    width: 37vw;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 450px;
}

#proofArea section.registerArea{
    padding: 0 20px;
}
#proofArea section.registerArea .mainTit{
text-align: center;
    color: #ff7c60;
    font-size: 23px;
    margin: 0 0 25px 0;
}
#proofArea section.registerArea .registerList{

}
#proofArea section.registerArea .registerList li{
position: relative;
    display: inline-block;
    padding: 30px;
    border: solid 1px #bfbfbf;
    box-sizing: border-box;
    width: 100%;
    border-radius: 10px;
    margin: 0 0 30px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
#proofArea section.registerArea .registerList li:before {
    content: "";
    position: absolute;
    bottom: -27.5px;
    left: 50%;
    margin-left: -18px;
    border: 15px solid transparent;
    border-top: 15px solid #FFF;
    z-index: 2;
}
#proofArea section.registerArea .registerList li:after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #bfbfbf;
  z-index: 1;
}

#proofArea section.registerArea .registerList li .fa {
    color: #ff7c60;
    font-size: 24px;
    margin: 0 8px;
    position: absolute;
    top: 36px;
    left: 30px;
}
#proofArea section.registerArea .registerList li .fa.fa-lg{
font-size: 29px;
}
#proofArea section.registerArea .registerList li .fa.fa-lg.fa-plus-circle,
#proofArea section.registerArea .registerList li .fa.fa-lg.fa-minus-circle{
    right: 30px;
    left: auto;
    color: #000;
    font-size: 24px;
    top: 36px;
}

#proofArea section.registerArea .registerList li.acdBox{
    padding: 0;
  -webkit-animation: anime01 1.5s ease-in-out 0.3s infinite alternate;
  animation: anime01 1.5s ease-in-out 0.3s infinite alternate;
}
#proofArea section.registerArea .registerList li.acdBox.open{
-webkit-animation: none;
    animation: none;
}

@keyframes anime01 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(0,-5px);
        transform: translate(0,-5px);
    }
}

#proofArea section.registerArea .registerList li.acdBox #acd .acdIn .inBox {
    padding: 0 30px;
}

#proofArea section.registerArea #acd .acdTit {
    width: 100%;
    letter-spacing: 0.6px;
    display: block;
    font-size: 18px;
    font-weight: 700;
    box-sizing: border-box;
    transition: 0.4s;
    text-align: center;
    cursor: pointer;
    cursor: hand;
    padding: 30px;
}
#proofArea section.registerArea #acd .acdTit.opne{

}
#proofArea section.registerArea #acd .acdTit:hover{

}

#proofArea section.registerArea #acd .acdTit.open .fa.fa-lg.fa-plus-circle{
opacity: 0;
}
#proofArea section.registerArea #acd .acdTit .fa.fa-lg.fa-minus-circle{
opacity: 0;
}
#proofArea section.registerArea #acd .acdTit.open .fa.fa-lg.fa-minus-circle{
opacity: 1;
}

#proofArea section.registerArea #acd .acdIn{
margin: 40px 0 0 0;
}

#proofArea section.registerArea #acd .acdIn .tit{
    padding: 0.25em 0.5em;
    background: transparent;
    border-left: solid 5px #000000;
    text-align: left;
    margin: 0 0 20px 0;
}


#proofArea section.registerArea #acd .acdIn .ph{
    margin: 0 auto 15px;
    width: 80%;
}
#proofArea section.registerArea #acd .acdIn .ph img{
    width: 100%;
}
#proofArea section.registerArea #acd .acdIn .txt {
    text-align: left;
    font-weight: normal;
    font-size: 14px;
}
#proofArea section.registerArea #acd .acdIn .txt .boldTxt{
    display: block;
    font-weight: bold;
    font-size: 16px;
}
#proofArea section.registerArea #acd .acdIn .txt .link{
    transition: 0.4s;
}
#proofArea section.registerArea #acd .acdIn .txt .link:hover{
    opacity: 0.7;
    text-decoration: underline;
}
#proofArea section.registerArea #acd .acdIn .sampleTit{
    display: block;
    background: #000;
    width: 200px;
    color: #fff;
    font-size: 16px;
    padding: 5px;
    box-sizing: border-box;
    margin: 0 auto 20px;
}

#proofArea section.registerArea #acd .acdIn .ph.sample{
    width: 70%;
    border: 1px solid #ddd;
}
#proofArea section.registerArea #acd .acdIn .attentionTxt{
    display: block;
    font-size: 12px;
    text-indent: -1em;
    margin: 0 0 0 1em;
}
#proofArea section.registerArea #acd .acdIn .inBox{
    margin: 0 0 50px 0;
}

#proofArea .btnList{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 20px 0 50px 0;
    width: 70%;
    margin: auto;
}
#proofArea .btnList li{

}
#proofArea .btnList li:nth-child(1){
    width: 35%;
}
#proofArea .btnList li:nth-child(2){
    width: 62%;
}

#proofArea .btnList li:nth-child(1) .back a {
    display: block;
    width: 100%;
    font-size: 14px;
    border: 1px solid #000;
    text-align: center;
    margin: 0 auto 0;
    text-decoration: none;
    padding: 20px;
    border-radius: 999px;
    color: #000;
    box-sizing: border-box;
    line-height: 1.5;
    min-width: auto;
}
#proofArea .btnList li:nth-child(2)  .btn.main a {
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
    display: block;
    padding: 20px;
    width: 100%;
    border-radius: 999px;
    background: #ff7c60;
    color: #fff;
    border: 1px solid #ff7c60;
    min-width: auto;
}

#proofArea #popupInfotop{
    display:block;
    position:fixed;
    top:0;
    left: 0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    z-index:10010;
}

#proofArea #popupInfotop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10010;
}
#proofArea .popupBox{
    display:none;
    position:fixed;
    top:0;
    left: 0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    z-index:10010;
    text-align: left;
overflow: scroll;
}
#proofArea .popupBox .closeBg{
    display:block;
    position:fixed;
    top:0;
    width:100%;
    height:100%;
    z-index:1001;
}

#proofArea .popupBox .block{top:55%;}

#proofArea .popupBox{
  overflow: scroll;
}
#proofArea .popupBox .block{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 800px;
    z-index: 1100;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#proofArea .popupBox .block .ph{
    width: 50%;
    margin: auto;
}
#proofArea .popupBox .block .txt{
    text-align: center;
    font-size: 13px;
}
#proofArea .popupBox .block .link{
    display: block;
    text-align: center;
    text-decoration: underline;
    transition: 0.4s;
}
#proofArea .popupBox .block .link:hover{
    opacity: 0.7;
}
#proofArea .popupBox .block .btn a{
    background: #ff7c60;
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    transition: 0.4s;
}

#proofArea .popupBox .close .top{
    position:absolute;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#proofArea .popupBox .close .bottom{
    position:absolute;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


#proofArea .popupBox .inner {
    background: #fff;
    padding: 30px 30px 35px;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
    width: 100%;
    box-sizing: border-box;
}
#proofArea .popupBox .close{
    position: absolute;
    width: 30px;
    height: 30px;
    top: -50px;
    left: 0;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    text-align: left;
  }
#proofArea .popupBox .close span{
      top:20px;
      width:30px;
      height:2px;
      position:absolute;
      background:#fff;
  }


#proofArea_privacy{
    padding: 80px 0;
}
#proofArea_privacy .section {
    padding: 0;
}

#proofArea_privacy section {
    margin: 0 0 50px 0;
}
#proofArea_privacy .mainTit{
    text-align: center;
    font-size: 20px;
    margin: 0 0 15px 0;
}
#proofArea_privacy a.link{
    transition: 0.4s;
}
#proofArea_privacy a.link:hover{
    text-decoration: underline;
    opacity: 0.7;
}

#proofArea_privacy .privacyBox{
    background: #fff;
    margin: 0 0 20px 0;
    padding:40px 20px;
}
#proofArea_privacy .privacyBox .sectionTit {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
    color: #000;
}
#proofArea_privacy .privacyBox .txt{
    font-size: 12px;
}
#proofArea_privacy .privacyBox ol li {
  font-size: 12px;
}
#proofArea_privacy .privacyBox .info {
    text-align: right;
    font-size: 0.8em;
    margin: 0 0 30px 0;
}
#proofArea_privacy .privacyBox dt {
    font-size: 13px!important;
}
#proofArea_privacy .privacyBox dd{
    font-size: 12px;
}
#proofArea_privacy form{
text-align: center;
}
#proofArea_privacy form label{
    text-align: center;
    font-size: 15px;
}
#proofArea_privacy form #agree1,
#proofArea_privacy form #agree{
    margin: 0 10px 0 0;
}
#proofArea_privacy .btn .main {
    color: #fff;
    margin-top: 30px;
    border-radius: 999px;
font-size: 15px;
    padding: 15px;
    line-height: 1.5;
    transition: 0.4s;
}


#proofArea_uplode{

}
#proofArea_uplode .sectionTit{
    font-size: 15px;
    text-align: center;
    font-weight: 600;
}
#proofArea_uplode .txt{
    text-align: center;
    font-size: 12px;
}
#proofArea_uplode .btn .sub {
    background: transparent;
    color: #ff7c60;
    border: 1px solid #ff7c60;
    border-radius: 999px;
    font-size: 13px;
    width: 70%;
}
#proofArea_uplode .btn .back{
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 999px;
    font-size: 13px;
    width: 70%;
     margin: 50px auto 0;
}

#proofArea_uplode .cropper-container{
     margin: 0 auto 20px;
    display: block;
}
#proofArea_uplode .dateBox{
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 400px;
    margin:0 auto 50px;
    padding: 10px 0;
}
#proofArea_uplode .dateBox .box{
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#proofArea_uplode .dateBox .box:last-of-type{
    border-bottom: none;
}
#proofArea_uplode .dateBox .box .inner {
    margin: 0;
    display: block;
    width: 50%;
}
#proofArea_uplode .dateBox .box:nth-child(2) .inner:nth-child(1){
border-right: 1px solid #ccc;
    margin: 0 10px 0 0;
    width: 45%;
}
#proofArea_uplode .dateBox .box .txt {
    margin: 0;
    display: block;
    text-align: left;
    font-weight: bold;
}
#proofArea_uplode .dateBox .box .txt.bold{
    font-size: 17px;
    font-weight: bold;
}


#proofArea_uplode .dateBox .box dl dt{
    color: #5e5e5e;
    font-size: 11px;
    margin: 0 0 3px 0;
}
#proofArea_uplode .btnList{
display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 400px;
    margin: auto;
}
#proofArea_uplode .btnList li{

}
#proofArea_uplode .btnList li:nth-child(1){
    width: 40%;
}
#proofArea_uplode .btnList li:nth-child(2){
    width: 57%;
}
#proofArea_uplode .btnList li .btn .main{
    min-width: auto;
    width: 100%;
    margin: 0 auto;
}
#proofArea_uplode .btnList li .btn .back{
    min-width: auto;
    width: 100%;
    margin: 0 auto;
}

#proofArea_uplode .popup {
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .2s ease-in-out;
    background: rgba(0,0,0,0.5);
    border-radius: 0;
}
#proofArea_uplode .popActive{
    opacity: 1;
}
#proofArea_uplode .popup .popInBox{
    width: 80%;
    max-width: 600px;
    padding: 80px 40px;
    margin: 30px auto;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10001;
}
#proofArea_uplode .popup .popInBox .mainTit{
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: #000;
}
#proofArea_uplode .popup .popInBox .tit{
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #666666;
}
#proofArea_uplode .popup .close {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 20px;
    top: 20px;
    right: 45px;
    top: 30px;
    cursor: pointer;
}
#proofArea_uplode .popup .popInBox .attentionList{
    margin: 30px 0;
}
#proofArea_uplode .popup .popInBox .attentionList li{

}
#proofArea_uplode .popup .popInBox .attentionList li::before{
    display: none;
}

#proofArea_uplode .popup .close::before,
#proofArea_uplode .popup .close::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transform-origin: center;
    top: 50%;
    left: 50%;
}
#proofArea_uplode .popup .closeArea{
    display: block;
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100vh;
}
#proofArea_uplode .popup .close::before {
    transform: translate(-50%,-50%) rotate(-45deg);
}

#proofArea_uplode .popup .close::after {
    transform: translate(-50%,-50%) rotate(45deg);
}

#proofArea_uplode .btn .sub_02{
    background: transparent;
    color: #ff7c60;
    border: 1px solid #ff7c60;
    border-radius: 999px;
    font-size: 13px;
    width: 100%;
}

#proofArea_uplode .sectionTit{
font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #000;
}
#proofArea_uplode .txt{
    text-align: center;
    font-size: 14px;
}
#proofArea_uplode .btn .sub {
    background: transparent;
    color: #ff7c60;
    border: 1px solid #ff7c60;
    border-radius: 999px;
    font-size: 15px;
    width: 300px;
    padding: 15px;
    line-height: 1.5;
    min-width: auto;
}
#proofArea_uplode .btn .back{
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 999px;
    font-size: 15px;
    width: 300px;
    padding: 15px;
    line-height: 1.5;
    min-width: auto;
     margin: 50px auto 0;
}


#proofArea_uplode .icon{
    width: 20%;
    display: block;
    margin: 0 auto 20px;
}
#proofArea_uplode .icon img{
    width: 100%;
}

#proofArea_uplode .btn .main {
    background: #ff7c60;
    color: #fff;
    margin-top: 20px;
    border-radius: 999px;
    line-height: 1.5;
    padding: 15px;
    font-size: 14px;
}
#proofArea_uplode .vaccinateDate .btn a{
    display: block;
    width: 400px;
    padding: 15px;
    line-height: 1.5;
    font-size: 16px;
}
#proofArea_uplode #imgUploadForm .dropArea.imgSet {
    padding: 20px;
}

#proofArea_uplode .btn #inputVaccinateDate{
    position: relative;
}
#proofArea_uplode .btn #inputVaccinateDate::after {
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 53%;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#proofArea_uplode .popup .popInBox select{
    width: 32%;
    border: 2px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
}

#proofArea_uplode .popup.dateBox{

}
#proofArea_uplode .popup.dateBox .close::before, #proofArea_uplode .popup .close::after{
    display: none;
}
#proofArea_uplode .popup.dateBox .close {
    width: 350px;
    height: auto;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    top: auto;
    cursor: pointer;
}
#proofArea_uplode .popup.dateBox .close.btn a{
    display: block;
    border: 1px solid #ff7c60;
    background: #ff7c60;
    color: #fff;
    transition: 0.4s;
    max-width: initial;
    width: 100%;
    min-width: auto;
    border-radius: 999px;
    font-size: 15px;
    margin: 30px auto 0;
}
#proofArea_uplode .popup.dateBox .close.btn a:hover{

}

#proofArea_uplode #vaccinateDate .btn a{
    background: #ff7c60;
    color: #fff;
    transition: 0.4s;
    border-radius: 999px;
    width: 300px;
    min-width: auto;
}

#proof_end{
padding: 20px;
}
#proof_end h2{
    color: #ff7c60;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 20px 0;
}
#proof_end h2 .icon{
    display: inline-block;
    width: 30px;
    position: relative;
    top: 5px;
}
#proof_end .inBox {
    padding: 15px;
    background: #fff;
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
    -moz-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
    -ms-filter:drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

#proof_end .inBox .status{
    border: 1px solid #6EC015;
    width: 150px;
    text-align: center;
    color: #6EC015;
    font-size: 15px;
    border-radius: 999px;
    margin: 0 0 20px 0;
    padding: 5px;
    box-sizing: border-box;
}

#proof_end .inBox .txt{
    font-size: 12px;
}

#proof_end .inBox .mainArea{
padding: 0 0 30px 0;
    border-bottom: 1px solid #ddd;
    margin: 0 0 30px 0;
}
#proof_end .inBox dl dt{
    font-size: 11px;
    color: #9b9b9b;
}
#proof_end .inBox dl dd{
    font-size: 13px;
    margin: 0 0 15px 0;
}
#proof_end .btnList{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding:50px 0;
}
#proof_end .btnList li{

}
#proof_end .btnList li:nth-child(1){
    width: 35%;
}
#proof_end .btnList li:nth-child(2){
    width: 62%;
}

#proof_end .btnList li:nth-child(1) .back a {
    display: block;
    width: 100%;
    font-size: 14px;
    border: 1px solid #000;
    text-align: center;
    margin: 0 auto 0;
    text-decoration: none;
    padding: 10px;
    border-radius: 999px;
    color: #000;
    box-sizing: border-box;
    line-height: 1.5;
min-width: auto;
}
#proof_end .btnList li:nth-child(2)  .btn.main a {
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
    display: block;
    padding: 10px;
    width: 100%;
    border-radius: 999px;
    background: #ff7c60;
    color: #fff;
    border: 1px solid #ff7c60;
min-width: auto;
}
#proof_end .btnList li:nth-child(2) .btn.main  a.disabled{
    pointer-events: none;
    background: #ddd;
    border: 1px solid #ddd;
}
