/*======================================

	Structure Module

=======================================*/

html {
    font-size: 62.5%;
    position: relative;
    min-height: 100%;
}
body {
    font-family: Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    min-width: 1100px;
    margin: 0;
    margin-bottom: 120px;
    padding: 0;
    color: #333;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /*background-size: cover;*/
    /*
	導入検討
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: always;
	text-rendering: optimizeLegibility;
	text-align: justify;
	*/
}
.top {
    background: url(../img/top/bg.png) no-repeat center top #ff2757;
}
.inner {
    position: relative;
    width: 1100px;
    margin: 0 auto;
}
.opening {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/top/bg_opening.png) no-repeat center center #fff;
}
.opening.off {
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
}
.opening1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: .5s ease-out .5s;
    transition: .5s ease-out .5s;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
}
.on .opening1 {
    -webkit-transform: translate(-50%, -50%) scale(0.75);
    -ms-transform: translate(-50%, -50%) scale(0.75);
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 1;
}
.step .opening1 {
    -webkit-transition: .5s ease-out 0s;
    transition: .5s ease-out 0s;
    /*-webkit-transform: translate(-50%,-50%) scale(0);
	    -ms-transform: translate(-50%,-50%) scale(0);
	        transform: translate(-50%,-50%) scale(0);*/
    opacity: 0;
}
.opening2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: .5s ease-out;
    transition: .5s ease-out;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
}
.step .opening2 {
	-webkit-transform: translate(-50%, -50%) scale(0.75);
    -ms-transform: translate(-50%, -50%) scale(0.75);
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 1;
}
.btn_opskip {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 150px 0 0 400px;
    cursor: pointer;
    -webkit-transition: .7s ease-out;
    transition: .7s ease-out;
}
.btn_opskip:hover {
    opacity: .7;
}

/*======================================

	common

=======================================*/

.cardlist li img {
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    border-radius: 8px;
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .2);
}
.cardlist li:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.cardlist li.on img {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: scale(1.1) translate(0, -40%) !important;
    -ms-transform: scale(1.1) translate(0, -40%) !important;
    transform: scale(1.1) translate(0, -40%) !important;
    opacity: 0;
}

/*======================================

	header

=======================================*/

.header {
    position: relative;
    z-index: 3;
    height: 92px;
    background-image: url(../img/cmn/bg_header_on.png), url(../img/cmn/bg_header.png);
    background-repeat: no-repeat, repeat-x;
    background-position: center top, left top;
}
.header .logo {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 16px;
    left: 30px;
}
.gnavi {
    overflow: hidden;
    padding: 20px 0 0 126px;
}
.gnavi li {
    font-size: 0;
    line-height: 0;
    float: left;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
.gnavi li:hover {
    opacity: .7;
}
.gnavi>li:nth-child(4):hover {
    opacity: 1;
}
.share {
    position: absolute;
    top: 37px;
    right: 110px;
}
.share ul {
    float: right;
}
.modal.share ul {
	float: none;
}
.share li {
    float: left;
    margin-left: 12px;
}
.share img {
    vertical-align: middle;
}
.kakusan {
    position: absolute;
    top: 13px;
    right: 32px;
}

/*======================================

	footer

=======================================*/

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 1100px;
    height: 76px;
    background: url(../img/cmn/bg_footer.png) repeat-x left top;
}
.copyright {
    font-size: 0;
    line-height: 0;
    padding-top: 31px;
}
.btn_policy {
    position: absolute;
    top: 33px;
    right: 20px;
}
.btn_policy a {
    font-size: 11px;
    text-decoration: none;
    letter-spacing: 1px;
    color: #fff;
}
.btn_policy a:before {
    content: ">";
}

/*======================================

	main

=======================================*/

.content {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    margin-top: -2px;
}
.top .bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 372px;
    -webkit-transition: .3s ease-out .5s;
    transition: .3s ease-out .5s;
    opacity: 0;
    background: url(../img/top/bg_topmain.png) no-repeat center top;
}
.top.start .bg {
    opacity: 1;
}
.top .inner {
    z-index: 3;
    -webkit-transition: .3s ease-out 1s;
    transition: .3s ease-out 1s;
    opacity: 0;
}
.top.start .inner {
    opacity: 1;
}

/*======================================

	top

=======================================*/

.top .title {
    position: relative;
    z-index: 2;
    padding-top: 32px;
    -webkit-transition: .4s cubic-bezier(.17, .67, .41, 1.19);
    transition: .4s cubic-bezier(.17, .67, .41, 1.19);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    text-align: center;
}
.top.start .title {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.top .content .inner {
    /*overflow: hidden;*/
    height: 810px;
    margin-top: -300px;
}
.menu {
    position: absolute;
    top: 343px;
    right: 21px;
}
.menu ul {
    width: 543px;
}
.menu li {
    float: left;
    margin: 0 0 25px 25px;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .4);
}
.menu li:nth-child(odd) {
    margin-left: 0;
}
.menu li a {
    position: relative;
    display: block;
    overflow: hidden;
}
.menu li a:after {
    position: absolute;
    top: -34px;
    left: -152px;
    display: block;
    width: 20px;
    height: 100px;
    content: "";
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .6s, .5s, .1s;
    transition-duration: .6s, .5s, .1s;
    -webkit-transition-property: left, top, opacity;
    transition-property: left, top, opacity;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    opacity: 0;
    background: rgba(255, 255, 255, .2);
    background: -webkit-linear-gradient( top, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .5) 40%, rgba(255, 255, 255, .8) 90%, rgba(255, 255, 255, .0) 100%);
    background: -webkit-gradient( linear, left top, right top, color-stop(0%, rgba(255, 255, 255, .2)), color-stop(40%, rgba(255, 255, 255, .5)), color-stop(90%, rgba(255, 255, 255, .8)), color-stop(100%, rgba(255, 255, 255, .0)));
    background: linear-gradient( top, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .5) 40%, rgba(255, 255, 255, .8) 90%, rgba(255, 255, 255, .0) 100%);
}
.menu li a:hover:after {
    top: -50px;
    left: 300px;
    opacity: 1;
}
.greeting {
    position: relative;
    float: left;
    width: 480px;
    height: 245px;
    margin-top: 308px;
    margin-left: 20px;
}
.greeting a {
    display: block;
    height: 245px;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
.greeting a:hover {
    height: 325px;
    -webkit-transform: translate3d(0, -80px, 0) scale(1.1);
    -ms-transform: translate(0, -80px) scale(1.1);
    transform: translate3d(0, -80px, 0) scale(1.1);
}
.greeting li {
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -79px;
    -webkit-transition: .3s ease-in .4s;
    transition: .3s ease-in .4s;
}
.greeting li:hover {
    cursor: pointer;
}
.start .greeting li:nth-child(1) {
    top: 19px;
    margin-left: -227px;
    -webkit-transition: .45s ease-out 1.4s;
    transition: .45s ease-out 1.4s;
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
.start .greeting li:nth-child(3) {
    top: 19px;
    margin-left: 74px;
    -webkit-transition: .45s ease-out 1.4s;
    transition: .45s ease-out 1.4s;
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
}
.top_cards {
    position: absolute;
    top: 585px;
    left: 20px;
}
.top_cards>div {
    /*float: left;*/
    width: 360px;
    position: absolute;
    top: 0;
    left: 0;
    /*transition: .5s ease-out;*/
}
.top_policy_cards {}
.top_hirei_cards {
    top: 50px !important;
    -webkit-transition: 1.5s ease-out;
    transition: 1.5s ease-out;
    -webkit-transition-delay: 2.08s !important;
    transition-delay: 2.08s !important;
}
.top_senkyoku_cards {
    top: 100px !important;
    -webkit-transition: 3s ease-out;
    transition: 3s ease-out;
    -webkit-transition-delay: 2.08s !important;
    transition-delay: 2.08s !important;
}
.start .top_hirei_cards {
    left: 380px;
}
.start .top_senkyoku_cards {
    left: 745px;
}
.top_cards h2 {
    position: relative;
    z-index: 15;
    float: left;
}
.top_cards ul {
    margin-top: 2px;
}
.top_cards li {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .5s ease-out;
    transition: .5s ease-out;
}
.top_cards li.card_head {
    top: -2px;
}
.top_cards li.card_head a {
    -webkit-transform: translate3d(0, 0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}
.top_cards li a {
    display: block;
    -webkit-transition: .4s ease-out;
    transition: .4s ease-out;
}
.top_cards li a:hover {
    height: 452px;
    -webkit-transform: translate3d(0, -175px, 0);
    -ms-transform: translate(0, -175px);
    transform: translate3d(0, -175px, 0);
}
.top_cards ul {
    position: relative;
}

/*.top_cards li {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: .5s ease-out;
	        transition: .5s ease-out;
}
.top_cards li:hover {
	cursor: pointer;
}
.top_cards li:nth-child(1) {
	z-index: 13;
	-webkit-transition-delay: 2.0s;
	        transition-delay: 2.0s;
}
.top_cards li:nth-child(2) {
	z-index: 12;
	-webkit-transition-delay: 2.02s;
	        transition-delay: 2.02s;
}
.top_cards li:nth-child(3) {
	z-index: 11;
	-webkit-transition-delay: 2.03s;
	        transition-delay: 2.03s;
}
.top_cards li:nth-child(4) {
	z-index: 10;
	-webkit-transition-delay: 2.04s;
	        transition-delay: 2.04s;
}
.top_cards li:nth-child(5) {
	z-index: 9;
	-webkit-transition-delay: 2.05s;
	        transition-delay: 2.05s;
}
.top_cards li:nth-child(6) {
	z-index: 8;
	-webkit-transition-delay: 2.06s;
	        transition-delay: 2.06s;
}
.top_cards li:nth-child(7) {
	z-index: 7;
	-webkit-transition-delay: 2.07s;
	        transition-delay: 2.07s;
}
.top_cards li:nth-child(8) {
	z-index: 6;
	-webkit-transition-delay: 2.08s;
	        transition-delay: 2.08s;
}
.top_cards li:nth-child(9) {
	z-index: 5;
	-webkit-transition-delay: 2.09s;
	        transition-delay: 2.09s;
}
.top_cards li:nth-child(10) {
	z-index: 4;
	-webkit-transition-delay: 2.1s;
	        transition-delay: 2.1s;
}
.top_cards li:nth-child(11) {
	z-index: 3;
	-webkit-transition-delay: 2.11s;
	        transition-delay: 2.11s;
}
.top_cards li:nth-child(12) {
	z-index: 2;
	-webkit-transition-delay: 2.12s;
	        transition-delay: 2.12s;
}
.top_cards li:nth-child(13) {
	z-index: 1;
	-webkit-transition-delay: 2.13s;
	        transition-delay: 2.13s;
}
.start .top_cards li:nth-child(1) {
	left: 0;
}
.start .top_hirei_cards li:nth-child(1) {
	left: 22.5px;
	-webkit-transition-delay: 2.2s;
	        transition-delay: 2.2s;
}
.start .top_senkyoku_cards li:nth-child(1) {
	-webkit-transition-delay: 2.4s;
	        transition-delay: 2.4s;
}
.start .top_cards li:nth-child(2) {
	left: 15px;
}
.start .top_hirei_cards li:nth-child(2) {
	left: 22.5px;
	-webkit-transition-delay: 2.22s;
	        transition-delay: 2.22s;
}
.start .top_senkyoku_cards li:nth-child(2) {
	-webkit-transition-delay: 2.42s;
	        transition-delay: 2.42s;
}
.start .top_cards li:nth-child(3) {
	left: 30px;
}
.start .top_hirei_cards li:nth-child(3) {
	left: 45px;
	-webkit-transition-delay: 2.23s;
	        transition-delay: 2.23s;
}
.start .top_senkyoku_cards li:nth-child(3) {
	-webkit-transition-delay: 2.43s;
	        transition-delay: 2.43s;
}
.start .top_cards li:nth-child(4) {
	left: 45px;
}
.start .top_hirei_cards li:nth-child(4) {
	left: 67.5px;
	-webkit-transition-delay: 2.24s;
	        transition-delay: 2.24s;
}
.start .top_senkyoku_cards li:nth-child(4) {
	-webkit-transition-delay: 2.44s;
	        transition-delay: 2.44s;
}

.start .top_cards li:nth-child(5) {
	left: 60px;
}
.start .top_hirei_cards li:nth-child(5) {
	left: 90px;
	-webkit-transition-delay: 2.25s;
	        transition-delay: 2.25s;
}
.start .top_senkyoku_cards li:nth-child(5) {
	-webkit-transition-delay: 2.45s;
	        transition-delay: 2.45s;
}

.start .top_cards li:nth-child(6) {
	left: 75px;
}
.start .top_hirei_cards li:nth-child(6) {
	left: 112.5px;
	-webkit-transition-delay: 2.26s;
	        transition-delay: 2.26s;
}
.start .top_senkyoku_cards li:nth-child(6) {
	-webkit-transition-delay: 2.46s;
	        transition-delay: 2.46s;
}

.start .top_cards li:nth-child(7) {
	left: 90px;
}
.start .top_hirei_cards li:nth-child(7) {
	left: 135px;
	-webkit-transition-delay: 2.27s;
	        transition-delay: 2.27s;
}
.start .top_senkyoku_cards li:nth-child(7) {
	-webkit-transition-delay: 2.47s;
	        transition-delay: 2.47s;
}

.start .top_cards li:nth-child(8) {
	left: 105px;
}
.start .top_hirei_cards li:nth-child(8) {
	left: 157.5px;
	-webkit-transition-delay: 2.28s;
	        transition-delay: 2.28s;
}
.start .top_senkyoku_cards li:nth-child(8) {
	-webkit-transition-delay: 2.48s;
	        transition-delay: 2.48s;
}

.start .top_cards li:nth-child(9) {
	left: 120px;
}
.start .top_hirei_cards li:nth-child(9) {
	left: 180px;
	-webkit-transition-delay: 2.29s;
	        transition-delay: 2.29s;
}
.start .top_senkyoku_cards li:nth-child(9) {
	-webkit-transition-delay: 2.49s;
	        transition-delay: 2.49s;
}

.start .top_cards li:nth-child(10) {
	left: 135px;
}
.start .top_senkyoku_cards li:nth-child(10) {
	-webkit-transition-delay: 2.5s;
	        transition-delay: 2.5s;
}

.start .top_cards li:nth-child(11) {
	left: 150px;
}
.start .top_senkyoku_cards li:nth-child(11) {
	-webkit-transition-delay: 2.51s;
	        transition-delay: 2.51s;
}

.start .top_cards li:nth-child(12) {
	left: 165px;
}
.start .top_senkyoku_cards li:nth-child(12) {
	-webkit-transition-delay: 2.52s;
	        transition-delay: 2.52s;
}

.start .top_cards li:nth-child(13) {
	left: 180px;
}
.start .top_senkyoku_cards li:nth-child(13) {
	-webkit-transition-delay: 2.53s;
	        transition-delay: 2.53s;
}*/

.top_cards li:nth-child(1) {
    z-index: 38;
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}
.top_cards li:nth-child(2) {
    z-index: 37;
    -webkit-transition-delay: 2.02s;
    transition-delay: 2.02s;
}
.top_cards li:nth-child(3) {
    z-index: 36;
    -webkit-transition-delay: 2.04s;
    transition-delay: 2.04s;
}
.top_cards li:nth-child(4) {
    z-index: 35;
    -webkit-transition-delay: 2.06s;
    transition-delay: 2.06s;
}
.top_cards li:nth-child(5) {
    z-index: 34;
    -webkit-transition-delay: 2.08s;
    transition-delay: 2.08s;
}
.top_cards li:nth-child(6) {
    z-index: 33;
    -webkit-transition-delay: 2.1s;
    transition-delay: 2.1s;
}
.top_cards li:nth-child(7) {
    z-index: 32;
    -webkit-transition-delay: 2.12s;
    transition-delay: 2.12s;
}
.top_cards li:nth-child(8) {
    z-index: 31;
    -webkit-transition-delay: 2.14s;
    transition-delay: 2.14s;
}
.top_cards li:nth-child(9) {
    z-index: 30;
    -webkit-transition-delay: 2.16s;
    transition-delay: 2.16s;
}
.top_cards li:nth-child(10) {
    z-index: 29;
    -webkit-transition-delay: 2.18s;
    transition-delay: 2.18s;
}
.top_cards li:nth-child(11) {
    z-index: 28;
    -webkit-transition-delay: 2.2s;
    transition-delay: 2.2s;
}
.top_cards li:nth-child(12) {
    z-index: 27;
    -webkit-transition-delay: 2.22s;
    transition-delay: 2.22s;
}
.top_cards li:nth-child(13) {
    z-index: 26;
    -webkit-transition-delay: 2.24s;
    transition-delay: 2.24s;
}
.top_cards li:nth-child(14) {
    z-index: 25;
    -webkit-transition-delay: 2.26s;
    transition-delay: 2.26s;
}
.top_cards li:nth-child(15) {
    z-index: 24;
    -webkit-transition-delay: 2.28s;
    transition-delay: 2.28s;
}
.top_cards li:nth-child(16) {
    z-index: 23;
    -webkit-transition-delay: 2.3s;
    transition-delay: 2.3s;
}
.top_cards li:nth-child(17) {
    z-index: 22;
    -webkit-transition-delay: 2.32s;
    transition-delay: 2.32s;
}
.top_cards li:nth-child(18) {
    z-index: 21;
    -webkit-transition-delay: 2.34s;
    transition-delay: 2.34s;
}
.top_cards li:nth-child(19) {
    z-index: 20;
    -webkit-transition-delay: 2.36s;
    transition-delay: 2.36s;
}
.top_cards li:nth-child(20) {
    z-index: 19;
    -webkit-transition-delay: 2.38s;
    transition-delay: 2.38s;
}
.top_cards li:nth-child(21) {
    z-index: 18;
    -webkit-transition-delay: 2.4s;
    transition-delay: 2.4s;
}
.top_cards li:nth-child(22) {
    z-index: 17;
    -webkit-transition-delay: 2.42s;
    transition-delay: 2.42s;
}
.top_cards li:nth-child(23) {
    z-index: 16;
    -webkit-transition-delay: 2.44s;
    transition-delay: 2.44s;
}
.top_cards li:nth-child(24) {
    z-index: 15;
    -webkit-transition-delay: 2.46s;
    transition-delay: 2.46s;
}
.top_cards li:nth-child(25) {
    z-index: 14;
    -webkit-transition-delay: 2.48s;
    transition-delay: 2.48s;
}
.top_cards li:nth-child(26) {
    z-index: 13;
    -webkit-transition-delay: 2.5s;
    transition-delay: 2.5s;
}
.top_cards li:nth-child(27) {
    z-index: 12;
    -webkit-transition-delay: 2.52s;
    transition-delay: 2.52s;
}
.top_cards li:nth-child(28) {
    z-index: 11;
    -webkit-transition-delay: 2.54s;
    transition-delay: 2.54s;
}
.top_cards li:nth-child(29) {
    z-index: 10;
    -webkit-transition-delay: 2.56s;
    transition-delay: 2.56s;
}
.top_cards li:nth-child(30) {
    z-index: 9;
    -webkit-transition-delay: 2.58s;
    transition-delay: 2.58s;
}
.top_cards li:nth-child(31) {
    z-index: 8;
    -webkit-transition-delay: 2.6s;
    transition-delay: 2.6s;
}
.top_cards li:nth-child(32) {
    z-index: 7;
    -webkit-transition-delay: 2.62s;
    transition-delay: 2.62s;
}
.top_cards li:nth-child(33) {
    z-index: 6;
    -webkit-transition-delay: 2.64s;
    transition-delay: 2.64s;
}
.top_cards li:nth-child(34) {
    z-index: 5;
    -webkit-transition-delay: 2.66s;
    transition-delay: 2.66s;
}
.top_cards li:nth-child(35) {
    z-index: 4;
    -webkit-transition-delay: 2.68s;
    transition-delay: 2.68s;
}
.top_cards li:nth-child(36) {
    z-index: 3;
    -webkit-transition-delay: 2.7s;
    transition-delay: 2.7s;
}
.top_cards li:nth-child(37) {
    z-index: 2;
    -webkit-transition-delay: 2.72s;
    transition-delay: 2.72s;
}
.top_cards li:nth-child(38) {
    z-index: 1;
    -webkit-transition-delay: 2.74s;
    transition-delay: 2.74s;
}
.start .top_cards li:nth-child(1) {
    left: 0px;
}
.start .top_cards li:nth-child(2) {
    left: 14px;
}
.start .top_cards li:nth-child(3) {
    left: 28px;
}
.start .top_cards li:nth-child(4) {
    left: 42px;
}
.start .top_cards li:nth-child(5) {
    left: 56px;
}
.start .top_cards li:nth-child(6) {
    left: 70px;
}
.start .top_cards li:nth-child(7) {
    left: 84px;
}
.start .top_cards li:nth-child(8) {
    left: 98px;
}
.start .top_cards li:nth-child(9) {
    left: 112px;
}
.start .top_cards li:nth-child(10) {
    left: 126px;
}
.start .top_cards li:nth-child(11) {
    left: 140px;
}
.start .top_cards li:nth-child(12) {
    left: 154px;
}
.start .top_cards li:nth-child(13) {
    left: 168px;
}
.start .top_cards li:nth-child(14) {
    left: 182px;
}
.start .top_cards li:nth-child(15) {
    left: 360px;
}
.start .top_cards li:nth-child(16) {
    left: 381px;
}
.start .top_cards li:nth-child(17) {
    left: 402px;
}
.start .top_cards li:nth-child(18) {
    left: 423px;
}
.start .top_cards li:nth-child(19) {
    left: 444px;
}
.start .top_cards li:nth-child(20) {
    left: 465px;
}
.start .top_cards li:nth-child(21) {
    left: 486px;
}
.start .top_cards li:nth-child(22) {
    left: 507px;
}
.start .top_cards li:nth-child(23) {
    left: 528px;
}
.start .top_cards li:nth-child(24) {
    left: 549px;
}
.start .top_cards li:nth-child(25) {
    left: 725px;
}
.start .top_cards li:nth-child(26) {
    left: 739px;
}
.start .top_cards li:nth-child(27) {
    left: 753px;
}
.start .top_cards li:nth-child(28) {
    left: 767px;
}
.start .top_cards li:nth-child(29) {
    left: 781px;
}
.start .top_cards li:nth-child(30) {
    left: 795px;
}
.start .top_cards li:nth-child(31) {
    left: 809px;
}
.start .top_cards li:nth-child(32) {
    left: 823px;
}
.start .top_cards li:nth-child(33) {
    left: 837px;
}
.start .top_cards li:nth-child(34) {
    left: 851px;
}
.start .top_cards li:nth-child(35) {
    left: 865px;
}
.start .top_cards li:nth-child(36) {
    left: 879px;
}
.start .top_cards li:nth-child(37) {
    left: 893px;
}
.start .top_cards li:nth-child(38) {
    left: 907px;
}

/*======================================

	howto

=======================================*/

.howto {
    background: url(../img/howto/bg.png) repeat 0 0;
}
.howto .content {
    padding-top: 55px;
}
.howto .content .title {
    margin-bottom: 65px;
    text-align: center;
}
.howto .detail {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 65px;
    background: #fff;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    width: 100%;
}
.howto .detail:first-of-type {
    margin-top: 0;
}
.howto .detail h2 {
    font-size: 0;
    line-height: 0;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
    width: 840px;
    /* margin: 0 auto; */
}
.card_sort {
    width: 840px;
    margin: 0 auto;
}
.card_sort h2+p {
    text-align: center;
}
.card_sort dl {
    overflow: hidden;
    width: 840px;
    margin: 0 auto;
}
.card_sort dt {
    font-weight: bold;
    float: left;
    clear: both;
    width: 9em;
    color: #dc396c;
}
.card_sort dd {
    padding-left: 9em;
}
.card_sort .card_name {
    display: inline-block;
    width: 6em;
    text-align: center;
}
.card_view {
    text-align: center;
}
.card_view_detail {
    overflow: hidden;
    width: 765px;
    margin: 50px auto 0;
}
.card_view_detail dl {
    float: right;
}
.card_view_detail dl dt {
    width: 190px;
    margin-bottom: 10px;
    margin-left: 135px;
}
.card_view_detail dl:first-of-type {
    float: left;
}
.card_view_detail dl:first-of-type dt {
    margin-left: 0;
}
.soul_badge {
    text-align: center;
}
.soul_badge ul {
    font-size: 0;
    width: 875px;
    margin: 45px auto -40px;
    margin-top: 45px;
}
.soul_badge li {
    font-size: 13px;
    display: inline-block;
    width: 165px;
    margin: 0 0 40px 0;
    vertical-align: top;
}
.soul_badge dt {
    margin-bottom: 15px;
}
.soul_badge dd {
    font-size: 12px;
}
.pogic {
    overflow: hidden;
    width: 825px;
    margin: 0 auto;
}
.pogic>p {
    margin-bottom: 65px;
    text-align: center;
}
.pogic_allwrap {
    width: 840px;
    margin: 0 auto;
}
.pogic_wrap {
    float: right;
}
.pogic_wrap:first-of-type {
    float: left;
}
.pogic_detail {
    margin-bottom: 23px;
}
.pogic_wrap:first-of-type .pogic_detail {
    margin-bottom: 20px;
}
.pogic h3 {
    margin-bottom: 10px;
}
.pogic dl {
    width: 388px;
    padding-left: 20px;
}
.pogic dt {
    line-height: 1;
    margin-bottom: 10px;
}
.pogic dd {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 13px;
    padding-left: 17px;
}
.sns_button {
    text-align: center;
}
.about_mydeck {
    text-align: center;
}
.about_mydeck strong {
    color: #dc396c;
}
.create_mycard {
    text-align: center;
}

/*======================================

	policycards

=======================================*/

.policycards {
    background: url(../img/policycards/bg.png) no-repeat center top #e6bff7;
}
.policycards .content {
    padding-top: 50px;
}
.policycards .content .inner {
    width: 100%;
    height: 860px;
    overflow: hidden;
}
.cardlist_title {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -480px;
    text-align: center;
}
.policycards .cardlist_title {
    overflow: hidden;
}
.policycards .cardlist_title h1 {
    float: left;
}
.policycards .main_copy {
    width: 460px;
    height: 53px;
    background: url(../img/policycards/copy.png) no-repeat 0 0;
    position: absolute;
    top: 30px;
    left: 50%;
    padding: 0;
    margin-left: -75px;
}
.cardlist_title p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: -1.5px;
}
.policycards .cardlist_title p {
    font-size: 24px;
    padding-top: 16px;
    padding-left: 400px;
    margin-top: 0;
    text-align: left;
}
.policycards .cardlist {
    margin-bottom: 30px;
    padding-top: 145px;
    height: 800px;
}
.policycards .cardlist li {
    /* float: left; */
    width: 170px;
    /* margin-bottom: 21px; */
    /* margin-left: 21.5px; */
    position: absolute;
    left: 50%;
    margin-left: -85px;
    top: 145px;
    height: 1225px;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: rotate(-22.5deg);
    -ms-transform: rotate(-22.5deg);
    transform: rotate(-22.5deg);
    /* background: rgba(0,0,0,.3); */
    box-shadow: none;
}
.cardlist li.on img {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: scale(1.1) translate(0, -40%) !important;
    -ms-transform: scale(1.1) translate(0, -40%) !important;
    transform: scale(1.1) translate(0, -40%) !important;
    opacity: 0;
}
.policycards .cardlist li.on img {
    -webkit-transform: scale(1) translate(0, -40%) !important;
    -ms-transform: scale(1) translate(0, -40%) !important;
    transform: scale(1) translate(0, -40%) !important;
    opacity: 0;
}
.policycards.start .cardlist li:nth-child(1) {
    -webkit-transform: rotate(-22.5deg);
    -ms-transform: rotate(-22.5deg);
    transform: rotate(-22.5deg);
    margin-left: -85px;
}
.policycards.start .cardlist li:nth-child(2) {
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
    margin-left: -85px;
}
.policycards.start .cardlist li:nth-child(3) {
    -webkit-transform: rotate(-7.5deg);
    -ms-transform: rotate(-7.5deg);
    transform: rotate(-7.5deg);
    margin-left: -85px;
}
.policycards.start .cardlist li:nth-child(4) {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    margin-left: -85px;
}
.policycards.start .cardlist li:nth-child(5) {
    -webkit-transform: rotate(7.5deg);
    -ms-transform: rotate(7.5deg);
    transform: rotate(7.5deg);
    margin-left: -85px;
}
.policycards.start .cardlist li:nth-child(6) {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    margin-left: -85px;
}
.policycards.start .cardlist li:nth-child(7) {
    -webkit-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
    margin-left: -85px;
}
.policycards.start .cardlist li:nth-child(1), .policycards.start .cardlist li:nth-child(2), .policycards.start .cardlist li:nth-child(3), .policycards.start .cardlist li:nth-child(4), .policycards.start .cardlist li:nth-child(5), .policycards.start .cardlist li:nth-child(6), .policycards.start .cardlist li:nth-child(7) {
    z-index: 1;
}
.policycards .cardlist li:nth-child(8), .policycards .cardlist li:nth-child(9), .policycards .cardlist li:nth-child(10), .policycards .cardlist li:nth-child(11), .policycards .cardlist li:nth-child(12), .policycards .cardlist li:nth-child(13) {
    z-index: 2;
    top: 438px;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.policycards.start .cardlist li:nth-child(8) {
    -webkit-transform: rotate(-22.5deg);
    -ms-transform: rotate(-22.5deg);
    transform: rotate(-22.5deg);
    margin-left: 37px;
    top: 431px;
}
.policycards.start .cardlist li:nth-child(9) {
    -webkit-transform: rotate(-13.5deg);
    -ms-transform: rotate(-13.5deg);
    transform: rotate(-13.5deg);
    margin-left: -11px;
    top: 447px;
}
.policycards.start .cardlist li:nth-child(10) {
    -webkit-transform: rotate(-4.5deg);
    -ms-transform: rotate(-4.5deg);
    transform: rotate(-4.5deg);
    margin-left: -60px;
    top: 455px;
}
.policycards.start .cardlist li:nth-child(11) {
    -webkit-transform: rotate(4.5deg);
    -ms-transform: rotate(4.5deg);
    transform: rotate(4.5deg);
    margin-left: -111px;
    top: 455px;
}
.policycards.start .cardlist li:nth-child(12) {
    -webkit-transform: rotate(13.5deg);
    -ms-transform: rotate(13.5deg);
    transform: rotate(13.5deg);
    margin-left: -163px;
    top: 447px;
}
.policycards.start .cardlist li:nth-child(13) {
    -webkit-transform: rotate(22.5deg);
    -ms-transform: rotate(22.5deg);
    transform: rotate(22.5deg);
    margin-left: -208px;
    top: 431px;
}
.policycards.start .cardlist li:nth-child(1):hover {
    -webkit-transform: rotate(-24.5deg);
    -ms-transform: rotate(-24.5deg);
    transform: rotate(-24.5deg);
}
.policycards.start .cardlist li:nth-child(2):hover {
    -webkit-transform: rotate(-17deg);
    -ms-transform: rotate(-17deg);
    transform: rotate(-17deg);
}
.policycards.start .cardlist li:nth-child(3):hover {
    -webkit-transform: rotate(-9.5deg);
    -ms-transform: rotate(-9.5deg);
    transform: rotate(-9.5deg);
}
.policycards.start .cardlist li:nth-child(4):hover {
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
}
.policycards.start .cardlist li:nth-child(5):hover {
    -webkit-transform: rotate(5.5deg);
    -ms-transform: rotate(5.5deg);
    transform: rotate(5.5deg);
}
.policycards.start .cardlist li:nth-child(6):hover {
    -webkit-transform: rotate(13deg);
    -ms-transform: rotate(13deg);
    transform: rotate(13deg);
}
.policycards.start .cardlist li:nth-child(8):hover {
    -webkit-transform: rotate(-24.5deg);
    -ms-transform: rotate(-24.5deg);
    transform: rotate(-24.5deg);
}
.policycards.start .cardlist li:nth-child(9):hover {
    -webkit-transform: rotate(-15.5deg);
    -ms-transform: rotate(-15.5deg);
    transform: rotate(-15.5deg);
}
.policycards.start .cardlist li:nth-child(10):hover {
    -webkit-transform: rotate(-6.5deg);
    -ms-transform: rotate(-6.5deg);
    transform: rotate(-6.5deg);
}
.policycards.start .cardlist li:nth-child(11):hover {
    -webkit-transform: rotate(2.5deg);
    -ms-transform: rotate(2.5deg);
    transform: rotate(2.5deg);
}
.policycards.start .cardlist li:nth-child(12):hover {
    -webkit-transform: rotate(11.5deg);
    -ms-transform: rotate(11.5deg);
    transform: rotate(11.5deg);
}
.policycards .cardlist li:hover {
    cursor: pointer;
    /*z-index: 3 !important;*/
}
.policycards .cardlist li img {
    width: 100%;
    height: auto;
}
.policycards .cardlist li:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.policycards .cardlist li:first-child {
    /* margin-left: 405px; */
}
.other_cards ul {
    font-size: 0;
    text-align: right;
}
.other_cards li {
    display: inline-block;
    width: 148px;
    height: 31px;
    margin-left: 25px;
}
.other_cards li a {
    display: block;
    width: 148px;
    height: 31px;
    -webkit-transition: .5s;
    transition: .5s;
}
.other_cards li a:hover {
    opacity: .7;
}

/*======================================

	member

=======================================*/

.member {
    background: url(../img/member/bg.png) no-repeat center top #ff4e60;
}
.member .content {
    padding-top: 41px;
}
.member h1 {
    margin-bottom: 35px;
    text-align: center;
}
.member .member_detail {
    width: 975px;
    margin: 0 auto;
}
.member .member_detail>section {
    margin-bottom: 33px;
}
.member .member_detail h2 {
    margin-bottom: 16px;
    margin-left: 11px;
}
.member .original h2 {
    width: 189px;
    height: 17px;
    background: url(../img/member/pct_ti_original.png) no-repeat center top;
}
.member .new {
    float: left;
    width: 189px;
    margin-right: 34px;
}
.member .new h2 {
    width: 88px;
    height: 16px;
    background: url(../img/member/pct_ti_new.png) no-repeat center top;
}
.member .second {
    float: left;
    width: 303px;
    margin-right: 33px;
}
.member .second h2 {
    width: 226px;
    height: 17px;
    background: url(../img/member/pct_ti_second.png) no-repeat center top;
}
.member .bonus {
    float: left;
    width: 415px;
    margin-bottom: 39px !important;
}
.member .bonus h2 {
    width: 94px;
    height: 16px;
    background: url(../img/member/pct_ti_bonus.png) no-repeat center top;
}
.member .evil {
    clear: both;
}
.member .evil h2 {
    width: 719px;
    height: 26px;
    margin-bottom: 26px;
    background: url(../img/member/pct_ti_evil.png) no-repeat center top;
}
.member .cards {
    position: relative;
    height: 259px;
    padding-left: 6px;
}
.member .cards ul {
    overflow: hidden;
}
.member .cards li {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    float: left;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    box-shadow: 3px 1px 3px rgba(0, 0, 0, .3);
    border-radius: 13px;
}
.member .cards li:nth-child(1) {
    z-index: 8;
    padding-left: 0 !important;
}
.member .cards li:nth-child(2) {
    z-index: 7;
}
.member .cards li:nth-child(3) {
    z-index: 6;
}
.member .cards li:nth-child(4) {
    z-index: 5;
}
.member .cards li:nth-child(5) {
    z-index: 4;
}
.member .cards li:nth-child(6) {
    z-index: 3;
}
.member .cards li:nth-child(7) {
    z-index: 2;
}
.member .cards li:nth-child(8) {
    z-index: 1;
}
.member.start .cards li:nth-child(2) {
    left: 113px;
}
.member.start .cards li:nth-child(3) {
    left: 226px;
}
.member.start .cards li:nth-child(4) {
    left: 339px;
}
.member.start .cards li:nth-child(5) {
    left: 452px;
}
.member.start .cards li:nth-child(6) {
    left: 565px;
}
.member.start .cards li:nth-child(7) {
    left: 678px;
}
.member.start .cards li:nth-child(8) {
    left: 791px;
}
.member .cards li:hover {
    padding-left: 60px;
    cursor: pointer;
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
}
.member_slide {
    width: 319px;
    padding-right: 7px;
    padding-left: 2px;
    height: 447px;
    position: absolute;
    top: 92px;
    left: 125px;
}
.member_slide li {
    width: 308px !important;
    height: 447px;
}
.member_slide.slideone .bx-pager {
    display: none !important;
}
.member_cat1 {
    background: url(../img/modal/bg_member1.png) no-repeat left top;
    background-size: 100% auto;
}
.member_cat2 {
    background: url(../img/modal/bg_member2.png) no-repeat left top;
    background-size: 100% auto;
}
.member_cat3 {
    background: url(../img/modal/bg_member3.png) no-repeat left top;
    background-size: 100% auto;
}
.member_cat4 {
    background: url(../img/modal/bg_member4.png) no-repeat left top;
    background-size: 100% auto;
}
.member_slide li img {
    width: 308px;
    height: auto;
}

/*======================================

	hirei

=======================================*/

.hirei {
    background: url(../img/hirei/bg.png) no-repeat center top #ffcb08;
}
.hirei .content {
    padding-top: 58px;
}
.hirei .content .inner {
    width: 960px;
}
.hirei .hirei_title {
    margin-bottom: 25px;
    text-align: center;
}
.hirei .cardlist {
    position: relative;
    margin-bottom: 43px;
    padding-top: 63px;
    padding-bottom: 50px;
    background: url(../img/hirei/frame.png) no-repeat center 63px;
}
.hirei .cardlist h2 {
    position: absolute;
    top: 0;
    left: 50%;
    width: 373px;
    height: 103px;
    margin-left: -173px;
}
.hirei .cardlist h2+p {
    margin-top: 51px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    padding-left: 22px;
    color: #1c42b1;
}
.hirei .cardlist ul {
    width: 885px;
    height: 618px;
    margin: 0 auto;
    padding-top: 13px;
}
.hirei .cardlist li {
    width: 161px;
}
.hirei .cardlist li:hover {
    cursor: pointer;
}
.hirei .cardlist li:nth-child(5n) {
    margin-right: 0;
}

/* hirei a */

.hirei_a li {
    position: absolute;
    -webkit-transition: .8s;
    transition: .8s;
}
.hirei .cardlist.hirei_a li:nth-child(1), .hirei .cardlist.hirei_a li:nth-child(2), .hirei .cardlist.hirei_a li:nth-child(3), .hirei .cardlist.hirei_a li:nth-child(4), .hirei .cardlist.hirei_a li:nth-child(5) {
    top: 137px;
    left: 37px;
}
.hirei .cardlist.hirei_a li:nth-child(6), .hirei .cardlist.hirei_a li:nth-child(7), .hirei .cardlist.hirei_a li:nth-child(8), .hirei .cardlist.hirei_a li:nth-child(9), .hirei .cardlist.hirei_a li:nth-child(10) {
    top: 385px;
    right: 37px;
}
.hirei .cardlist.hirei_a li:nth-child(2) {
    -webkit-transition-delay: .115s !important;
    transition-delay: .115s !important;
}
.hirei .cardlist.hirei_a li:nth-child(3) {
    -webkit-transition-delay: .11s !important;
    transition-delay: .11s !important;
}
.hirei .cardlist.hirei_a li:nth-child(4) {
    -webkit-transition-delay: .105s !important;
    transition-delay: .105s !important;
}
.hirei .cardlist.hirei_a li:nth-child(5) {
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
}
.hirei .cardlist.hirei_a li:nth-child(6) {
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
    z-index: 5;
}
.hirei .cardlist.hirei_a li:nth-child(7) {
    -webkit-transition-delay: .105s !important;
    transition-delay: .105s !important;
    z-index: 4;
}
.hirei .cardlist.hirei_a li:nth-child(8) {
    -webkit-transition-delay: .11s !important;
    transition-delay: .11s !important;
    z-index: 3;
}
.hirei .cardlist.hirei_a li:nth-child(9) {
    -webkit-transition-delay: .115s !important;
    transition-delay: .115s !important;
    z-index: 2;
}
.hirei .cardlist.hirei_a li:nth-child(10) {
    -webkit-transition-delay: .12s !important;
    transition-delay: .12s !important;
    z-index: 1;
}
.hirei.start .cardlist.hirei_a li:nth-child(1) {
    left: 37px;
}
.hirei.start .cardlist.hirei_a li:nth-child(2) {
    left: 218px;
}
.hirei.start .cardlist.hirei_a li:nth-child(3) {
    left: 399px;
}
.hirei.start .cardlist.hirei_a li:nth-child(4) {
    left: 580px;
}
.hirei.start .cardlist.hirei_a li:nth-child(5) {
    left: 761px;
}
.hirei.start .cardlist.hirei_a li:nth-child(6) {
    right: 761px;
}
.hirei.start .cardlist.hirei_a li:nth-child(7) {
    right: 580px;
}
.hirei.start .cardlist.hirei_a li:nth-child(8) {
    right: 399px;
}
.hirei.start .cardlist.hirei_a li:nth-child(9) {
    right: 218px;
}
.hirei.start .cardlist.hirei_a li:nth-child(10) {
    right: 37px;
}

/* hirei b */

.hirei_b li {
    float: left;
    margin-right: 20px;
    margin-bottom: 21px;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
}
.start .hirei_b li {
    opacity: 1;
}
.hirei .other_cards {
    position: relative;
}
.hirei .other_cards .back {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: .5s;
    transition: .5s;
}
.hirei .other_cards .back:hover {
    opacity: .7;
}
.modal_body_wrap {
    display: none;
}

/*======================================

	senkyoku

=======================================*/

.senkyoku {
    background: url(../img/senkyoku/bg.png) no-repeat center top #46dbf6;
}
.senkyoku .content {
    padding-top: 65px;
    padding-bottom: 60px;
}
.senkyoku .cardlist_title {
    z-index: 3;
}
.senkyoku .title {
    margin-bottom: 33px;
}
.senkyoku_group {
    font-size: 0;
    overflow: hidden;
    text-align: center;
}
.senkyoku_group li {
    position: relative;
    display: inline-block;
    margin: 0 4px;
}
.senkyoku_group li:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .3);
}
.senkyoku_group li.on:before {
    content: none;
}
.senkyoku_group li:hover {
    cursor: pointer;
}
.senkyoku_map h2 {
    position: absolute;
    z-index: 3;
    top: -45px;
    right: 75px;
}
.senkyoku_map .map {
    position: relative;
    margin-bottom: 140px;
    padding-top: 39px;
    padding-left: 138px;
}
.senkyoku_map .kohosya_list li {
    position: absolute;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    z-index: 2;
}
.start .senkyoku_map .kohosya_list li {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.kohosya_list li:hover {
    cursor: pointer;
}

/*.senkyoku_map .kohosya_list li:hover {
	transform: scale(1.1);
}*/

.senkyoku_map .kohosya_list li h3 {
    font-size: 14px;
    line-height: 20px;
    width: 92px;
    height: 20px;
    margin-bottom: 5px;
    padding-left: 5px;
    letter-spacing: 3px;
    color: #fff;
    background: url(../img/senkyoku/bg_area.png) no-repeat 0 0;
}
.senkyoku_map .kohosya_list li h3 img {
    border-radius: 0;
    box-shadow: none;
    vertical-align: top;
    padding-top: 3px;
}
.senkyoku_hokkaido {
    top: 40px;
    right: 245px;
}
.senkyoku_ibaraki {
    top: 328px;
    right: 361px;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
}
.senkyoku_chiba {
    top: 380px;
    right: 370px;
    -webkit-transition-delay: .15s !important;
    transition-delay: .15s !important;
}
.senkyoku_saitama {
    top: 358px;
    right: 415px;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
}
.senkyoku_tokyo {
    top: 381px;
    right: 418px;
    -webkit-transition-delay: .25s !important;
    transition-delay: .25s !important;
}
.senkyoku_kanagawa {
    top: 405px;
    right: 429px;
    -webkit-transition-delay: .3s !important;
    transition-delay: .3s !important;
}
.senkyoku_shizuoka {
    top: 416px;
    right: 476px;
    -webkit-transition-delay: .35s !important;
    transition-delay: .35s !important;
}
.senkyoku_aichi {
    top: 417px;
    right: 518px;
    -webkit-transition-delay: .4s !important;
    transition-delay: .4s !important;
}
.senkyoku_kyoto {
    top: 387px;
    right: 575px;
    -webkit-transition-delay: .45s !important;
    transition-delay: .45s !important;
}
.senkyoku_osaka {
    top: 418px;
    right: 596px;
    -webkit-transition-delay: .5s !important;
    transition-delay: .5s !important;
}
.senkyoku_hyogo {
    top: 393px;
    right: 615px;
    -webkit-transition-delay: .55s !important;
    transition-delay: .55s !important;
}
.senkyoku_hiroshima {
    top: 404px;
    right: 683px;
    -webkit-transition-delay: .6s !important;
    transition-delay: .6s !important;
}
.senkyoku_fukuoka {
    top: 425px;
    right: 782px;
    -webkit-transition-delay: .65s !important;
    transition-delay: .65s !important;
}
.start .senkyoku_hokkaido {
    top: 97px;
    right: 108px;
}
.start .senkyoku_ibaraki {
    top: 243px;
    right: 223px;
}
.start .senkyoku_chiba {
    top: 483px;
    right: 180px;
}
.start .senkyoku_saitama {
    top: 287px;
    right: 117px;
}
.start .senkyoku_tokyo {
    top: 540px;
    right: 290px;
}
.start .senkyoku_kanagawa {
    top: 584px;
    right: 407px;
}
.start .senkyoku_shizuoka {
    top: 612px;
    right: 509px;
}
.start .senkyoku_aichi {
    top: 637px;
    right: 636px;
}
.start .senkyoku_kyoto {
    top: 195px;
    right: 501px;
}
.start .senkyoku_osaka {
    top: 249px;
    right: 599px;
}
.start .senkyoku_hyogo {
    top: 233px;
    right: 698px;
}
.start .senkyoku_hiroshima {
    top: 266px;
    right: 841px;
}
.start .senkyoku_fukuoka {
    top: 468px;
    right: 905px;
}
.senkyoku_map .lines {}
.senkyoku_map .lines ul {}
.senkyoku_map .lines div {
    position: absolute;
    -webkit-transition: .5s;
    transition: .5s;
    width: 0;
    height: 1px;
    background: url(../img/senkyoku/img_line.png) repeat-x 0 0;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}
.senkyoku_map .lines div:nth-child(1) {
    -webkit-transform: rotate(19deg);
    -ms-transform: rotate(19deg);
    transform: rotate(19deg);
    top: 118px;
    left: 807px;
}
.senkyoku_map .lines div:nth-child(2) {
    -webkit-transform: rotate(-36deg);
    -ms-transform: rotate(-36deg);
    transform: rotate(-36deg);
    top: 407px;
    left: 692px;
    -webkit-transition-delay: .1s !important;
    transition-delay: .1s !important;
}
.senkyoku_map .lines div:nth-child(3) {
    -webkit-transform: rotate(-13deg);
    -ms-transform: rotate(-13deg);
    transform: rotate(-13deg);
    top: 435px;
    left: 636px;
    -webkit-transition-delay: .15s !important;
    transition-delay: .15s !important;
}
.senkyoku_map .lines div:nth-child(4) {
    -webkit-transform: rotate(19deg);
    -ms-transform: rotate(19deg);
    transform: rotate(19deg);
    top: 458px;
    left: 683px;
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
}
.senkyoku_map .lines div:nth-child(5) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 457px;
    left: 635px;
    -webkit-transition-delay: .25s !important;
    transition-delay: .25s !important;
}
.senkyoku_map .lines div:nth-child(6) {
    -webkit-transform: rotate(81deg);
    -ms-transform: rotate(81deg);
    transform: rotate(81deg);
    top: 478px;
    left: 624px;
    -webkit-transition-delay: .3s !important;
    transition-delay: .3s !important;
}
.senkyoku_map .lines div:nth-child(7) {
    -webkit-transform: rotate(101deg);
    -ms-transform: rotate(101deg);
    transform: rotate(101deg);
    top: 491px;
    left: 578px;
    -webkit-transition-delay: .35s !important;
    transition-delay: .35s !important;
}
.senkyoku_map .lines div:nth-child(8) {
    -webkit-transform: rotate(125deg);
    -ms-transform: rotate(125deg);
    transform: rotate(125deg);
    top: 498px;
    left: 535px;
    -webkit-transition-delay: .4s !important;
    transition-delay: .4s !important;
}
.senkyoku_map .lines div:nth-child(9) {
    -webkit-transform: rotate(291deg);
    -ms-transform: rotate(291deg);
    transform: rotate(291deg);
    top: 462px;
    left: 477px;
    -webkit-transition-delay: .45s !important;
    transition-delay: .45s !important;
}
.senkyoku_map .lines div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    top: 492px;
    left: 457px;
    -webkit-transition-delay: .5s !important;
    transition-delay: .5s !important;
}
.senkyoku_map .lines div:nth-child(11) {
    -webkit-transform: rotate(244deg);
    -ms-transform: rotate(244deg);
    transform: rotate(244deg);
    top: 470px;
    left: 438px;
    -webkit-transition-delay: .55s !important;
    transition-delay: .55s !important;
}
.senkyoku_map .lines div:nth-child(12) {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 480px;
    left: 369px;
    -webkit-transition-delay: .6s !important;
    transition-delay: .6s !important;
}
.senkyoku_map .lines div:nth-child(13) {
    -webkit-transform: rotate(167deg);
    -ms-transform: rotate(167deg);
    transform: rotate(167deg);
    top: 500px;
    left: 272px;
    -webkit-transition-delay: .65s !important;
    transition-delay: .65s !important;
}
.start .senkyoku_map .lines div:nth-child(1) {
    width: 155px;
}
.start .senkyoku_map .lines div:nth-child(2) {
    width: 160px;
}
.start .senkyoku_map .lines div:nth-child(3) {
    width: 310px;
}
.start .senkyoku_map .lines div:nth-child(4) {
    width: 200px;
}
.start .senkyoku_map .lines div:nth-child(5) {
    width: 220px;
}
.start .senkyoku_map .lines div:nth-child(6) {
    width: 200px;
}
.start .senkyoku_map .lines div:nth-child(7) {
    width: 155px;
}
.start .senkyoku_map .lines div:nth-child(8) {
    width: 170px;
}
.start .senkyoku_map .lines div:nth-child(9) {
    width: 205px;
}
.start .senkyoku_map .lines div:nth-child(10) {
    width: 170px;
}
.start .senkyoku_map .lines div:nth-child(11) {
    width: 122px;
}
.start .senkyoku_map .lines div:nth-child(12) {
    width: 230px;
}
.start .senkyoku_map .lines div:nth-child(13) {
    width: 130px;
}
.yato_map {
    display: none;
}
.yato_map h2 {
    position: absolute;
    z-index: 3;
    top: -44px;
    right: 84px;
}
.yato_map .map {
    position: relative;
    margin-bottom: 140px;
    padding-top: 39px;
    padding-left: 178px;
}
.yato_list>li {
    position: absolute;
}
.yato_list h3 {
    font-size: 15px;
    line-height: 1;
    margin-bottom: 11px;
    text-align: center;
    color: #fff;
}
.yato_list .chubu h3, .yato_list .shikoku h3 {
    color: #80d3dc;
}
.yato_list .tohoku {
    top: 197px;
    right: 78px;
    width: 234px;
}
.yato_list .kanto {
    top: 475px;
    right: 54px;
    width: 160px;
}
.yato_list .chubu {
    top: 527px;
    right: 244px;
    width: 313px;
}
.yato_list .kinki {
    top: 233px;
    right: 474px;
    width: 312px;
}
.yato_list .chugoku {
    top: 215px;
    left: 50px;
}
.yato_list .shikoku {
    top: 632px;
    left: 263px;
}
.yato_list .kyushu {
    top: 378px;
    left: 0;
    width: 234px;
}
.yato_list .okinawa {
    top: 679px;
    left: 119px;
}
.yato_list .kohosya_list {
    /* width: 234px; */
    overflow: hidden;
}
.yato_list .kohosya_list li {
    float: left;
    width: 75px;
    margin-right: 3px;
    margin-bottom: 11px;
    overflow: hidden;
}
.yato_list .kohosya_list li img {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: .5s;
    transition: .5s;
}
.yato_list .kohosya_list li:nth-child(2) img {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.yato_list .kohosya_list li:nth-child(3) img {
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
}
.yato_list .kohosya_list li:nth-child(4) img {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.yato_list .kohosya_list li:nth-child(5) img {
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
}
.yato_list .kohosya_list li:nth-child(6) img {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.yato_list .kohosya_list li:nth-child(7) img {
    -webkit-transition-delay: .35s;
    transition-delay: .35s;
}
.on .yato_list .kohosya_list li img {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*======================================

	mydeck

=======================================*/

.mydeck {
    background: url(../img/top/bg.png) no-repeat center top #ff2757;
}
.mydeck .btn_mydeck {
    display: none;
}
.mydeck .content .inner {
    width: 960px;
    padding-top: 65px;
}
.mydeck_wrap {
    position: relative;
}
.mydeck_wrap.stock0:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 627px;
    height: 138px;
    margin-top: -129px;
    margin-left: -312px;
    content: "";
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    background: url(../img/mydeck/txt_introduction.png) no-repeat 0 0;
}
.mydeck_wrap h1 {
    margin-bottom: 46px;
    text-align: center;
}
.mydeck_wrap .share {
    top: 46px;
    right: 52px;
}
.mydeck_wrap .share ul {
    font-size: 0;
    text-align: right;
}
.mydeck_wrap .share li {
    display: inline-block;
    float: none;
    vertical-align: middle;
}
.mydeck .abobe {
    margin-bottom: 22px;
    padding: 28px 20px 16px;
    border-radius: 20px;
    background: url(../img/mydeck/bar1.png) #000 no-repeat center 103px;
    height: 462px;
}
.mydeck .below {
    position: relative;
    padding: 20px 20px 66px;
    border-radius: 20px;
    height: 210px;
    background: url(../img/mydeck/bar2.png) #000 no-repeat center 148px;
}
.mydeck .below .to_mycard {
    position: absolute;
    top: 14px;
    right: 40px;
    width: 111px;
    height: 111px;
	z-index: 1;
}
.mydeck .below .to_mycard a {
    display: block;
    width: 111px;
    height: 111px;
    background: url(../img/mydeck/btn_mycard.png) no-repeat 0 0;
}
.mydeck .get_card_mhc {
    position: absolute;
    z-index: 1000;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
}
.mydeck .btn_reset {
    position: absolute;
    bottom: 14px;
    left: 50%;
    margin-left: -77px;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}
.bg_get_card {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    background: rgba(0, 0, 0, .5);
}
.on .bg_get_card {
    opacity: 1;
}
.mydeck .get_card_mhc.on {
    display: block;
}
.mydeck .get_card_mhc .mhc_wrap {
    position: relative;
    z-index: 2;
    display: table;
    width: 100%;
    height: 100%;
}
.mydeck .get_card_mhc .mhc_inner {
    display: table-cell;
    vertical-align: middle;
}
.mydeck .get_card_mhc .mhc_wrap p {
    display: none;
}
.mydeck .get_card_mhc.get1 .mhc_wrap .mhc1, .mydeck .get_card_mhc.get2 .mhc_wrap .mhc2, .mydeck .get_card_mhc.get3 .mhc_wrap .mhc3, .mydeck .get_card_mhc.get4 .mhc_wrap .mhc4, .mydeck .get_card_mhc.get5 .mhc_wrap .mhc5, .mydeck .get_card_mhc.get6 .mhc_wrap .mhc6, .mydeck .get_card_mhc.get7 .mhc_wrap .mhc7, .mydeck .get_card_mhc.get8 .mhc_wrap .mhc8 {
    display: block;
}
.mydeck .card_area {
    overflow: hidden;
    width: 920px;
	position: relative;
	z-index: 1;
}
.mydeck .card_area .on a {
    cursor: pointer;
}
.mydeck .card_area .off {
    background: none;
}
.mydeck .card_area>div {
    width: 925px;
}
.mydeck .card_area li {
    float: left;
    overflow: hidden;
    width: 72px;
    height: 102px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
    border-radius: 3px;
    background: #403d3c;
    pointer-events: none;
}
.mydeck .card_area li.off {
    background: none;
}
.mydeck .card_area li.on {
    pointer-events: all;
}
.mydeck .card_area li img {
    opacity: 0;
}
.mydeck .card_area li.on img {
    opacity: 1;
}
.mydeck .below .card_area {
    overflow: visible;
}
.mydeck .below .card_area li img {
    opacity: 1;
    visibility: hidden;
    border-radius: 4px;
}
.mydeck .below .card_area li {
    overflow: visible;
}
.mydeck .below .card_area li.on img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -ms-transform: translate(0, 0);
    visibility: visible;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    /* border-radius: 3px; */
}
.mydeck .below .card_area li.anim img {
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
    -ms-transform: translate(0, -50px);
    opacity: 0;
    -webkit-transition: 0s ease-out;
    transition: 0s ease-out;
}
.area_policy a, .area_hirei a, .area_senkyoku a {
    position: relative;
    display: block;
    overflow: hidden;
}
.area_policy a:after, .area_hirei a:after, .area_senkyoku a:after {
    content: "";
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.area_policy .f a:after, .area_hirei .f a:after, .area_senkyoku .f a:after {
    -webkit-animation: reflection 2s ease-in-out;
    animation: reflection 2s ease-in-out;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out;
    top: -50px;
    left: 300px;
    opacity: 1;
}
@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    21% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    21% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* complete */

.mydeck_wrap:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin-top: -44px;
    margin-left: -182.5px;
    z-index: 10;
    background: url(../img/mydeck/img_complete.png) no-repeat 0 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: .3s opacity .1s;
    transition: .3s opacity .1s;
    -webkit-transform: translate(0, -1000%);
    -ms-transform: translate(0, -1000%);
    transform: translate(0, -1000%);
    content: "";
}
.mydeck_wrap.complete:before {
    width: 365px;
    height: 88px;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.complete .abobe {
    background-image: url(../img/mydeck/bar1.png);
}
.complete .below {
    background-image: url(../img/mydeck/bar2.png);
}

/* allget */

.allget {
	overflow: hidden;
}
.allget .abobe {
    background-image: url(../img/mydeck/bar1.png), url(../img/mydeck/bg_complete.png);
    background-repeat: no-repeat, repeat-y;
    background-position: center 103px, center top;
    /*background-color: #000, #fff*/
}

/* kira */
.kira .abobe:before {
	left: 1300px;
	width: 60px;
	content: "";
	animation: 6s kirakira1;
	animation-iteration-count: infinite;
	/*animation-delay: .1s;*/
}
.kira .abobe:after {
	left: 1300px;
	width: 20px;
	animation: 6s kirakira2;
	animation-iteration-count: infinite;
	animation-delay: .1s;
}
.kira .below:before {
	left: 1300px;
	width: 60px;
	content: "";
	animation: 6s kirakira1;
	animation-iteration-count: infinite;
}
.kira .below:after {
	left: 1300px;
	width: 20px;
	animation: 6s kirakira2;
	animation-iteration-count: infinite;
	animation-delay: .1s;
}
.kira .abobe:before,
.kira .abobe:after{
	height: 462px;
}
.kira .below:before,
.kira .below:after{
	height: 210px;
}
.kira .abobe:before,
.kira .abobe:after,
.kira .below:before,
.kira .below:after {
	position: absolute;
	top: 0;
	display: block;
	left: -110px;
	content: "";
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .6s, .5s, .1s;
	transition-duration: .6s, .5s, .1s;
	-webkit-transition-property: left, top, opacity;
	transition-property: left, top, opacity;
	-webkit-transform: skew(-30deg);
	-ms-transform: skew(-30deg);
	transform: skew(-30deg);
	transform-origin: top left;
	background: rgba(255, 255, 255, .2);
	background: -webkit-linear-gradient( top, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .5) 40%, rgba(255, 255, 255, .8) 90%, rgba(255, 255, 255, .0) 100%);
	background: -webkit-gradient( linear, left top, right top, color-stop(0%, rgba(255, 255, 255, .2)), color-stop(40%, rgba(255, 255, 255, .5)), color-stop(90%, rgba(255, 255, 255, .8)), color-stop(100%, rgba(255, 255, 255, .0)));
	background: linear-gradient( top, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .5) 40%, rgba(255, 255, 255, .8) 90%, rgba(255, 255, 255, .0) 100%);
}
@keyframes kirakira1 {
	0%{
		left: 1300px;
		opacity: 1;
	}
	15%{
		left: -110px;
		opacity: 0;
	}
	100%{
		left: -110px;
	}
}
@keyframes kirakira2 {
	0%{
		left: 1300px;
		opacity: 1;
	}
	15%{
		left: -70px;
		opacity: 0;
	}
	100%{
		left: -70px;
		opacity: 0;
	}
}
.allget .below {
    background-image: url(../img/mydeck/bar2.png), url(../img/mydeck/bg_complete.png);
    background-repeat: no-repeat, repeat-y;
    background-position: center 148px, center top;
    background-color: #000, #fff;
}

/* message */

.mydeck_wrap:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin-top: -106.5px;
    margin-left: -340.5px;
    background: url(../img/mydeck/img_message.png) no-repeat 0 0;
    z-index: 10;
    -webkit-transition: .5s transform 0s, .5s opacity 0s;
    transition: .5s transform 0s, .5s opacity 0s;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    opacity: 0;
    content: "";
}
.mydeck_wrap.message:after {
    width: 640px;
    height: 174px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.message .abobe {
    position: relative;
    background-image: url(../img/mydeck/bar1.png), url(../img/mydeck/bg_complete.png);
    background-repeat: no-repeat, repeat-y;
    background-position: center 103px, center top;
}
.message .below {
    position: relative;
    background-image: url(../img/mydeck/bar2.png), url(../img/mydeck/bg_complete.png);
    background-repeat: no-repeat, repeat-y;
    background-position: center 148px, center top;
}
.message .abobe:before {
    /* 	content: "";
	width: 919px;
	height: 316px;
	position: absolute;
	top: 126px;
	left: 20px;
	background: rgba(230,230,230,.6);
	/* border-radius: 18px; */
    z-index: 1;
}
.mydeck .message .card_area li {
	background: #fff;
}
.mydeck .message .card_area li.off {
	background: none;
}
.mydeck .message .card_area li img{
	opacity: 0.4;
}

/* close */
.mydeck .note {
	font-size: 10px;
	color: #fff;
	text-align: right;
	padding-top: 3px;
}
.mydeck .below .to_mycard a {
	pointer-events: none;
}

/*======================================

	mycard

=======================================*/

.mycard {
    background: url(../img/top/bg.png) no-repeat center top #ff2757;
}
.mycard .content .inner {
    width: 960px;
    padding-top: 65px;
}
.mycard_wrap {
    position: relative;
}
.mycard_wrap h1 {
    margin-bottom: 46px;
    text-align: center;
}
.mycard .notice {
    width: 280px;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 60px;
    left: 20px;
}
.mycard_wrap .share {
    top: 46px;
    right: 52px;
}
.mycard_wrap .share ul {
    font-size: 0;
    text-align: right;
}
.mycard_wrap .share li {
    display: inline-block;
    float: none;
    vertical-align: middle;
}
.mycard .abobe {
    margin-bottom: 22px;
    padding: 28px 20px 16px;
    border-radius: 18px;
    background: url(../img/mydeck/bar1.png) #000 no-repeat center 103px;
}
.mycard_inner {
    position: relative;
    display: table;
    width: 100%;
    padding: 0 40px 0 85px;
}
.mycard_inner>div {
    display: table-cell;
    vertical-align: top;
}
.preview {
    position: relative;
    overflow: hidden;
    width: 340px;
    height: 480px;
    border-radius: 18px;
    color: #fff;
}
.preview.fontcolor2 {
    color: #000;
}
.preview_inner {
    position: relative;
    height: 480px;
}
.mycard_inner.finish {
    display: block;
    padding: 0;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}
.finish .preview {
    display: block;
    margin: 0 auto;
}
.mycard_inner.finish a {
    color: #fff;
    text-decoration: none;
}
.mycard_inner.finish a:hover {
    text-decoration: underline;
    ;
}
.finish .message {
    position: absolute;
    top: 10px;
    right: 0;
    width: 260px;
}
.finish .to_mydeck {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 260px;
}
.mycard_wrap .finish .share {
	position: static;
    margin-top: 15px;
    overflow: hidden;
}
.mycard_wrap .finish .share ul {
    float: none;
    text-align: left;
}
.mycard_wrap .finish .share ul li {
    margin: 0 12px 0 0;
}
#preview-area {
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 0;
    width: 339px;
}
#preview-area img {
    width: 100%;
    height: 100%;
}
.loading {
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 34px;
    height: 34px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -17px 0 0 -17px;
    background: url(../img/mycard/loading.gif) no-repeat 0 0;
}
.loadingbox {
    width: 100%;
    height: 340px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
}
.loadingbox.sending {
	height: 100%;
	border-radius: 18px;
}
.loadingbox.sending .loading:after {
    content: '作成中…';
    display: block;
    position:absolute;
    bottom: -30px;
    font-size: 12px;
    color: #fff;
    width: 100px;
    text-align: center;
    left: 50%;
    margin-left: -50px;
}
.preview .frame {
    width: 100%;
    height: 100%;
    background: no-repeat 0 0;
    position: relative;
}
.preview.color1 .frame {
    background-image: url(../img/mycard/bg_card1.png);
}
.preview.color2 .frame {
    background-image: url(../img/mycard/bg_card2.png);
}
.preview.color3 .frame {
    background-image: url(../img/mycard/bg_card3.png);
}
.preview.color4 .frame {
    background-image: url(../img/mycard/bg_card4.png);
}
.preview.color5 .frame {
    background-image: url(../img/mycard/bg_card5.png);
}
.preview.color6 .frame {
    background-image: url(../img/mycard/bg_card6.png);
}
.preview.color7 .frame {
    background-image: url(../img/mycard/bg_card7.png);
}
.preview.color8 .frame {
    background-image: url(../img/mycard/bg_card8.png);
}
.preview.color9 .frame {
    background-image: url(../img/mycard/bg_card9.png);
}
.preview .card_name {
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    bottom: 100px;
    /*-webkit-transform: rotate(6.5deg);
	    -ms-transform: rotate(6.5deg);
	        transform: rotate(6.5deg);*/
}
.preview .card_name.len6-8 {
    font-size: 32px;
}
.preview .card_name.len9 {
    font-size: 26px;
}
.preview .card_catch {
    font-size: 23px;
    font-weight: bold;
    position: absolute;
    top: 35px;
    width: 100%;
    -webkit-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    transform: rotate(-4deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    text-align: center;
}
.preview .card_pref {
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    left: 15px;
    bottom: 135px;
    -webkit-transform: rotate(6.5deg);
    -ms-transform: rotate(6.5deg);
    transform: rotate(6.5deg);
}
.preview .card_badge {
    position: absolute;
    right: 10px;
    bottom: 165px;
    width: 60px;
    height: 60px;
}
.preview .type_badge1 {
    background-image: url(../img/cmn/img_badge_fire.png);
    background-size: 100% auto;
}
.preview .type_badge2 {
    background-image: url(../img/cmn/img_badge_moon.png);
    background-size: 100% auto;
}
.preview .type_badge3 {
    background-image: url(../img/cmn/img_badge_cloud.png);
    background-size: 100% auto;
}
.preview .type_badge4 {
    background-image: url(../img/cmn/img_badge_mountain.png);
    background-size: 100% auto;
}
.preview .type_badge5 {
    background-image: url(../img/cmn/img_badge_sea.png);
    background-size: 100% auto;
}
.preview .type_badge6 {
    background-image: url(../img/cmn/img_badge_ground.png);
    background-size: 100% auto;
}
.preview .type_badge7 {
    background-image: url(../img/cmn/img_badge_shine.png);
    background-size: 100% auto;
}
.preview .type_badge8 {
    background-image: url(../img/cmn/img_badge_wind.png);
    background-size: 100% auto;
}
.preview .type_badge9 {
    background-image: url(../img/cmn/img_badge_flower.png);
    background-size: 100% auto;
}
.preview .card_pogic {
    position: absolute;
    bottom: 22px;
    left: 14px;
}
.preview .card_pogic>div {
    width: 150px;
    height: 14px;
    margin-bottom: 3px;
    background-repeat: no-repeat;
    /* background: no-repeat 0 0; */
    background-size: 150px auto;
}
.preview .select_num1 {
    background-image: url(../img/mycard/img_pogic1.png);
}
.preview .select_num2 {
    background-image: url(../img/mycard/img_pogic2.png);
}
.preview .select_num3 {
    background-image: url(../img/mycard/img_pogic3.png);
}
.preview .select_num4 {
    background-image: url(../img/mycard/img_pogic4.png);
}
.preview .select_num5 {
    background-image: url(../img/mycard/img_pogic5.png);
}
.preview .select_num6 {
    background-image: url(../img/mycard/img_pogic6.png);
}
.preview .select_num7 {
    background-image: url(../img/mycard/img_pogic7.png);
}
.preview .select_num8 {
    background-image: url(../img/mycard/img_pogic8.png);
}
.preview .select_num9 {
    background-image: url(../img/mycard/img_pogic9.png);
}
.preview .select_num10 {
    background-image: url(../img/mycard/img_pogic10.png);
}
.preview .select_num11 {
    background-image: url(../img/mycard/img_pogic11.png);
}
.preview .select_num12 {
    background-image: url(../img/mycard/img_pogic12.png);
}
.preview .select_num13 {
    background-image: url(../img/mycard/img_pogic13.png);
}
.preview .select_num14 {
    background-image: url(../img/mycard/img_pogic14.png);
}
.preview .select_num15 {
    background-image: url(../img/mycard/img_pogic15.png);
}
.preview .select_num16 {
    background-image: url(../img/mycard/img_pogic16.png);
}
.preview .select_num17 {
    background-image: url(../img/mycard/img_pogic17.png);
}
.preview .select_num18 {
    background-image: url(../img/mycard/img_pogic18.png);
}
.preview .select_num19 {
    background-image: url(../img/mycard/img_pogic19.png);
}
.preview .card_comment {
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 110px;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    color: #fff;
    word-break: break-all;
}
.input_item {
    color: #fff;
    padding: 0 0 64px 50px;
}
.input_item dt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.input_item dt span {
    font-size: 12px
}
.input_item dd {
    margin-bottom: 30px;
}
.input_item .cd {
    margin-bottom: 15px;
    position: relative;
}
.input_item dd select {
    font-size: 14px;
    width: 100%;
    padding: 5px 10px;
    border: none;
    border-radius: 0;
    outline: none;
    background: #fff;
    -webkit-appearance: none;
}
.input_item dd input[type=text] {
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    padding: 0 5px;
    outline: none;
}
.input_item dd textarea {
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
    padding: 5px;
    resize: none;
    outline: none;
}
.input_item .count {
    display: block;
    width: 100%;
    font-size: 10px;
    padding-top: 5px;
    text-align: right;
}
.input_item .count.over {
    color: #f00;
}
.input_item .input_profile .count {
    padding-top: 0;
}
.input_item .colors {
    overflow: hidden;
}
.input_item .fontcolors {
    overflow: hidden;
}
.input_item .colors li, .input_item .fontcolors li {
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
.input_item .colors li:hover, .input_item .fontcolors li:hover {
    cursor: pointer;
}
.input_item .color1 {
    background: #d43837;
    border: 2px solid #d43837;
}
.input_item .color2 {
    background: #e64d94;
    border: 2px solid #e64d94;
}
.input_item .color3 {
    background: #ee7918;
    border: 2px solid #ee7918;
}
.input_item .color4 {
    background: #eed322;
    border: 2px solid #eed322;
}
.input_item .color5 {
    background: #beea66;
    border: 2px solid #beea66;
}
.input_item .color6 {
    background: #22c140;
    border: 2px solid #22c140;
}
.input_item .color7 {
    background: #94d9e4;
    border: 2px solid #94d9e4;
}
.input_item .color8 {
    background: #229bd3;
    border: 2px solid #229bd3;
}
.input_item .color9 {
    background: #b25eb2;
    border: 2px solid #b25eb2;
}
.input_item .colors li.on {
    border-color: #f00 !important;
}
.input_item .colors li.color1.on {
    border-color: #fff !important;
}
.input_item .fontcolors .color1 {
    background: #fff;
    border: 2px solid #fff;
}
.input_item .fontcolors .color2 {
    background: #000;
    border: 2px solid #fff;
}
.input_item .fontcolors li.on {
    border-color: #f00 !important;
}
.mycard .badges {
    font-size: 0;
    text-align: center;
}
.mycard .badges li {
    display: inline-block;
    width: 44px;
    margin: 0 7px;
    margin-bottom: 7px;
    border: 3px solid transparent;
    border-radius: 9999px;
}
.mycard .badges li.on {
    border-color: red;
}
.mycard .badges li:hover {
    cursor: pointer;
}
.mycard .badges li img {
    width: 100%;
    height: auto;
}
.mycard .badge_description {
    position: absolute;
    top: 28px;
    right: -200px;
    display: table;
    display: none;
    box-sizing: border-box;
    width: 300px;
    padding: 10px;
    background: rgba(255, 255, 255, .9);
}
.mycard .badge_description.on {
    display: block;
}
.mycard .badge_description>div {
    display: table-cell;
    vertical-align: middle;
}
.mycard .badge_description .desc_badge {
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: left center;
}
.mycard .badge_description .desc_txt {
    padding-left: 10px;
    color: #333;
}
.mycard .bd1 .desc_badge {
    background-image: url(../img/cmn/img_badge_fire.png);
    background-size: 100% auto;
}
.mycard .bd2 .desc_badge {
    background-image: url(../img/cmn/img_badge_moon.png);
    background-size: 100% auto;
}
.mycard .bd3 .desc_badge {
    background-image: url(../img/cmn/img_badge_cloud.png);
    background-size: 100% auto;
}
.mycard .bd4 .desc_badge {
    background-image: url(../img/cmn/img_badge_mountain.png);
    background-size: 100% auto;
}
.mycard .bd5 .desc_badge {
    background-image: url(../img/cmn/img_badge_sea.png);
    background-size: 100% auto;
}
.mycard .bd6 .desc_badge {
    background-image: url(../img/cmn/img_badge_ground.png);
    background-size: 100% auto;
}
.mycard .bd7 .desc_badge {
    background-image: url(../img/cmn/img_badge_shine.png);
    background-size: 100% auto;
}
.mycard .bd8 .desc_badge {
    background-image: url(../img/cmn/img_badge_wind.png);
    background-size: 100% auto;
}
.mycard .bd9 .desc_badge {
    background-image: url(../img/cmn/img_badge_flower.png);
    background-size: 100% auto;
}
.mycard .badge_description .desc_txt p {
    font-size: 13px;
    display: none;
}
.mycard .badge_description .desc_txt p span {
    font-size: 18px;
    font-weight: bold;
}
.mycard .bd1 .desc_txt p:nth-child(1) {
    display: block;
}
.mycard .bd2 .desc_txt p:nth-child(2) {
    display: block;
}
.mycard .bd3 .desc_txt p:nth-child(3) {
    display: block;
}
.mycard .bd4 .desc_txt p:nth-child(4) {
    display: block;
}
.mycard .bd5 .desc_txt p:nth-child(5) {
    display: block;
}
.mycard .bd6 .desc_txt p:nth-child(6) {
    display: block;
}
.mycard .bd7 .desc_txt p:nth-child(7) {
    display: block;
}
.mycard .bd8 .desc_txt p:nth-child(8) {
    display: block;
}
.mycard .bd9 .desc_txt p:nth-child(9) {
    display: block;
}
.mycard .pogics li {
    margin-bottom: 10px;
}
.mycard .prefectures, .mycard .pogics li {
    position: relative;
}
.mycard .prefectures:before, .mycard .pogics li:before {
    position: absolute;
    top: 11px;
    right: 10px;
    display: block;
    width: 0;
    height: 0;
    content: "";
    border-width: 7px 5px 0 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}
.mycard .photo {
    font-size: 0;
    text-align: center;
}
.mycard .photo li {
    font-size: 14px;
    line-height: 40px;
    display: inline-block;
    width: 180px;
    height: 40px;
    margin: 0 5px;
    text-align: center;
}
.mycard .photo li:hover {
    cursor: pointer;
}
.mycard .photo .photo_tw {
    background: #55acee;
}
.mycard .photo .photo_fb {
    background: #485a94;
}
.mycard .file {
    margin-bottom: 20px;
    padding-left: 17px;
}
.mycard_pager {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 64px;
}
.mycard_pager ul {
    font-size: 0;
}
.mycard_pager li {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-left: 10px;
    -webkit-transition: .3s;
    transition: .3s;
}
.mycard_pager li:hover {
    cursor: pointer;
}
.mycard_pager .prev {
    background: url(../img/cmn/icn_arrow_prev.png) no-repeat 0 0;
    background-size: 64px auto;
}
.mycard_pager .next {
    background: url(../img/cmn/icn_arrow_next.png) no-repeat 0 0;
    background-size: 64px auto;
}
.mycard .submit {
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    width: 200px;
    height: 37px;
    margin: 0 auto;
    text-align: center;
    background: url(../img/mycard/btn_creating.png) repeat 0 0;
}
.mycard .submit:hover {
    cursor: pointer;
}

/* on&off */

.status_1 .step2, .status_1 .step3 {
    display: none;
}
.status_1 .prev {
    pointer-events: none;
    opacity: .5;
}
.status_2 .step1, .status_2 .step3 {
    display: none;
}
.status_3 .step1, .status_3 .step2 {
    display: none;
}
.status_3 .next {
    pointer-events: none;
    opacity: .5;
}
.mycard .error {
    margin-top: 5px;
    color: #f00;
}
.mycard .cd .error {
    position: absolute;
    bottom: -6px;
    left: 0;
}
.mycard .note h2 {
    font-size: 14px;
    margin-bottom: 10px;
}
.mycard .note {
    background: rgba(255, 255, 255, .9);
    padding: 20px;
    font-size: 12px;
    border-radius: 10px;
}
.mycard .note a {
    color: #dc396c;
}
.mycard .note p {
    margin-bottom: 10px;
}
.mycard .note dt {
    font-weight: bold;
    color: #dc396c;
}
.mycard .note dd {
    padding-left: 1em;
}

/*======================================

	modal

=======================================*/

.modal {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.modal_wrap {
    width: 100%;
    height: 100%;
    display: table;
}
.share .modal_wrap {
    background: rgba(0, 0, 0, .7);
}
.modal_inner {
    /*position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 850px;
	height: 505px;
	margin-top: -252.5px;
	margin-left: -425px;*/
    /* width: 1104px; */
    /* height: 656px; */
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    /* border-radius: 5px; */
}
.modal_inner.on {
    opacity: 1;
}
.modal_inner.num01 .wrap {
    background-image: url(../img/modal/bg_01.png);
}
.modal_inner.num02 .wrap {
    background-image: url(../img/modal/bg_02.png);
}
.modal_inner.num03 .wrap {
    background-image: url(../img/modal/bg_01.png);
}
.modal_inner.num04 .wrap {
    background-image: url(../img/modal/bg_04.png);
    padding: 103px 100px 152px 154px;
}
.modal_inner.num05 .wrap {
    background-image: none;
    padding: 0;
}
.modal_member_wrap {
    width: 100%;
    height: 100%;
    height: 656px;
    box-sizing: border-box;
    padding: 85px 15px 85px 105px;
}
.modal_inner.num05 .modal_member1 {
    background: url(../img/modal/bg_02.png) no-repeat center center;
}
.modal_inner.num05 .modal_member2 {
    background: url(../img/modal/bg_06.png) no-repeat center center;
}
.modal_inner.num05 .modal_member3 {
    background: url(../img/modal/bg_07.png) no-repeat center center;
}
.modal_inner.num05 .modal_member4 {
    background: url(../img/modal/bg_08.png) no-repeat center center;
}
.modal_inner.num06 .wrap {
    background-image: url(../img/modal/bg_02.png);
    padding: 85px 120px 85px 70px;
}
.modal .modal_detail {
    position: relative;
    width: 1104px;
    height: 656px;
    margin: 0 auto;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: translate(0, 20%);
    -ms-transform: translate(0, 20%);
    transform: translate(0, 20%);
    opacity: 0;
}
.modal .on .modal_detail {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}
.modal .wrap {
    overflow: hidden;
    padding: 85px 15px 85px 105px;
    /* width: 1104px; */
    /* height: 656px; */
    /* margin: 0 auto; */
    border-radius: 5px;
    background: #f1f1f1 no-repeat center center;
}
.modal .num01 .wrap {
    padding-right: 75px;
}
.modal .img {
    float: left;
    width: 100%;
    max-width: 350px;
}
.modal .img img {
    width: 100%;
    height: auto;
}
.modal .detail {
    position: relative;
    float: left;
    box-sizing: border-box;
    width: 500px;
    height: 490px;
    padding-top: 4px;
    padding-right: 50px;
    padding-left: 48px;
}
.modal .num01 .detail {
    width: 570px;
}
.modal .modal_btns {
    position: absolute;
    bottom: 0;
    left: 45px;
    /*overflow: hidden;*/
    width: 450px;
    padding-left: 5px;
}
.modal .num02 .modal_btns, .modal .num03 .modal_btns {
    width: 550px;
}
.modal .modal_btns .btn_mydeck {
    float: left;
    margin-top: 5px;
    cursor: pointer;
    width: 168px;
    height: 28px;
}
.modal .modal_btns .btn_mydeck img {
    width: 100%;
    height: auto;
}

/* マイデッキにいれたあと */

.modal .modal_btns .btn_mydeck .on {
    pointer-events: none;
    /*opacity: .6;*/
}
.modal .modal_btns .btn_mydeck .on:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    border-radius: 10px;
}
.modal .modal_btns .btn_mydeck a {
    position: relative;
    display: block;
}
.modal .modal_btns .modal_sns {
	float: right;
    position: absolute;
    top: -523px;
}
.modal .mycard .modal_btns .modal_sns {
    top: 0;
}
.modal .num01 .modal_btns .modal_sns {
	right: -40px;
}
.modal .num02 .modal_btns .modal_sns,
.modal .num03 .modal_btns .modal_sns {
	right: 60px;
}
.modal .num05 .modal_btns .modal_sns {
	right: 5px;
	top: -560px;
}
.mydeck .modal .modal_btns .modal_sns {
	top: -555px;
}
.mydeck .modal .mycard .modal_btns .modal_sns {
    top: 0;
}
.modal .modal_btns .modal_sns ul {
    font-size: 0;
    text-align: right;
}
.modal .modal_btns .modal_sns li {
    display: inline-block;
    margin-left: 13px;
    vertical-align: middle;
}
.modal .mycard .modal_btns .modal_sns li {
	float: none;
}
.modal .num01 .detail1 {
    margin-bottom: 15px;
}
.modal .num01 .detail2 {
    margin-bottom: 10px;
}
.modal .num01 .detail2 img {
    height: 114px;
}
.modal .num01 .detail3 {
    font-size: 20px;
    overflow: scroll;
    box-sizing: border-box;
    height: 300px;
    padding-right: 10px;
    letter-spacing: -1px;
}

/* modal num02,num03 */

.modal .num02 .detail1, .modal .num03 .detail1 {
    margin-bottom: 15px;
}
.modal .num02 .detail1 img, .modal .num03 .detail1 img {
    width: auto;
    height: 50px;
}
.modal .num02 .detail2, .modal .num03 .detail2 {
    margin-bottom: 10px;
    overflow: hidden;
}
.modal .num02 .detail3 {
    font-size: 20px;
    overflow: scroll;
    box-sizing: border-box;
    height: 200px;
    padding-right: 10px;
    letter-spacing: -1px;
}
.modal .num03 .detail3 {
    font-size: 20px;
    overflow: scroll;
    box-sizing: border-box;
    padding-right: 10px;
    letter-spacing: -1px;
}
.modal .num03 .detail3.long {
    height: 250px !important;
}
.modal .num02 dl, .modal .num03 dl {
    overflow: hidden;
    font-size: 16px;
    margin-bottom: 3px;
}
.modal .num02 dt, .modal .num03 dt {
    float: left;
    margin-right: 10px;
}
.modal .birthyear {
    float: left;
    margin-right: 15px;
    width: 150px;
}
.modal .twitter_id {
    position: absolute;
    bottom: 85px;
    line-height: 1;
    left: 125px;
    font-size: 12px;
    background: url(../img/modal/icn_tw.png) no-repeat left center;
    padding-left: 30px;
    padding: 5px 0 5px 30px;
}
.modal .twitter_id a {
    text-decoration: none;
    color: #333;
}
.modal .detail_pogic dt {
    /* width: 8em; */
}
.modal .detail_pogic dd {
    /* padding-left: 160px; */
}

/* modal num03 num04仮  */

.modal .num03 .detail1 {
    margin-bottom: 15px;
}
.modal .num03 .detail1 img, .modal .num04 .detail1 img {
    height: 50px;
}
.modal .num03 .detail2 {
    margin-bottom: 10px;
    overflow: hidden;
}

/*.modal .num03 .detail3 {
	font-size: 12px;
	font-weight: bold;
	overflow: scroll;
	box-sizing: border-box;
	height: 70px;
	padding-right: 10px;
	letter-spacing: -1px;
}*/

.modal .num03 dl, .modal .num04 dl {
    overflow: hidden;
    font-size: 16px;
    margin-bottom: 3px;
}
.modal .num03 .birthyear {
    width: 180px;
}
.modal .num03 dt, .modal .num04 dt {
    float: left;
}

/* modal num02 */

.modal .num02 .detail, .modal .num03 .detail {
    padding-top: 32px;
    padding-left: 36px;
    padding-right: 20px;
    width: 560px;
}
.modal .num02 .detail1, .modal .num03 .detail1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 18px;
}
.modal .num02 .detail2, .modal .num03 .detail2 {
    font-size: 20px;
    font-weight: bold;
    /* margin-bottom: 0; */
}
.modal .num02 .detail3, .modal .num03 .detail3 {
    height: 150px;
    margin-bottom: 10px;
}
.modal .num02 .detail2>p, .modal .num03 .detail2>p {
    /* margin-bottom: 10px; */
}
.modal .num02 dl, .modal .num03 dl {
    font-size: 20px;
    /* margin-bottom: 3px; */
    line-height: 1.4;
    letter-spacing: -1px;
}
.modal .num02 .detail_run dd, .modal .num03 .detail_run dd {
    float: left;
}
.modal .num02 .detail_soulbadge dd, .modal .num03 .detail_soulbadge dd {
    float: left;
}
.modal .num02 .detail_pogic dd, .modal .num03 .detail_pogic dd {
    float: left;
    width: 310px;
}

/* modal num04  */

.modal .num04 .img p {
    color: #65ace3;
    font-weight: bold;
    margin-top: 5px;
}
.modal .num04 .detail1 {
    margin-bottom: 19px;
}
.modal .num04 .detail2 {
    margin-bottom: 10px;
    overflow: hidden;
}
.modal .num04 .detail3 {
    font-size: 20px;
    /* font-weight: bold; */
    overflow: scroll;
    box-sizing: border-box;
    height: 135px;
    padding-right: 10px;
    letter-spacing: -1px;
    margin-bottom: 15px;
}
.modal .num04 .inner_yato {
    background: #d5e2ed;
    overflow: hidden;
}
.modal .num04 .img {
    /* background: #d5e2ed; */
    padding: 46px 10px 164px 46px;
    height: 100%;
    max-width: 178px;
}
.modal .num04 .img img {
    width: 132px;
}
.modal .num04 .detail {
    /* background: #d5e2ed; */
    width: 615px;
    height: 400px;
    padding-left: 17px;
    padding-top: 44px;
    padding-right: 20px;
}
.modal .num04 dl {
    width: auto;
    margin-right: 5px;
    font-weight: bold;
    font-size: 22px;
}
.modal .num04 .modal_btns {
    /* width: auto; */
    left: inherit;
    right: -213px;
    bottom: 110px;
}

/* modal num05  */

.modal .num05 .detail2 {
    margin-bottom: 25px;
}
.modal .num05 .detail2 img {
    height: 70px;
}
.modal .num05 .detail3 {
    font-size: 20px;
}
.modal .num05 .detail {
    margin-left: 395px;
    padding: 15px 60px 0 0;
}
.modal .modal_close {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: url(../img/modal/btn_close.png) no-repeat 0 0;
    background-size: 25px auto;
}
.modal .modal_close:hover {
    cursor: pointer;
}

/* 比例B num06 */

.modal .modal_ti {
    text-align: center;
    font-size: 24px;
    line-height: 1;
    color: #1c42b1;
    margin-top: 18px;
}
.modal .num06 .detail {
    float: none;
    width: 100%;
    padding: 0;
    overflow: auto;
    padding-top: 40px;
}
.modal .num06 .detail1 img {
    width: 340px;
    height: auto;
}
.modal .detail_block {
    width: 48%;
    float: left;
    margin-bottom: 30px;
}
.modal .detail_block:nth-child(3) {
    clear: both;
}
.modal .detail_block>div {
    font-size: 20px;
    padding-left: 67px;
}
.modal .detail_block .detail1 {
    padding-left: 0;
}
.modal .detail_block .detail1 img {
    height: 55px;
}
.modal .detail_block .detail2 {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.modal .detail_block .detail3 {
    font-weight: bold;
    line-height: 1.3;
    color: #dc396c;
    margin-bottom: 6px;
    letter-spacing: -1.5px;
}
.modal .detail_block .detail4 {
    line-height: 1.3;
    letter-spacing: -1px;
}
.modal .detail_block .link_kyosantopage {
    padding-left: 67px;
    margin-top: 20px;
}
.modal .num06 .modal_btns {
    width: 900px;
}
.modal_inner.mycard {
    background: none;
}
.modal .mycard .img {
    width: 340px;
    float: none;
    margin: 0 auto;
}
.modal .mycard .img img {
    border-radius: 14px;
}
.modal .mycard .wrap {
    padding-left: 15px;
}
.modal .mycard .detail {
    float: none;
    position: absolute;
    bottom: 45px;
    right: 45px;
    width: 125px;
    padding: 0;
    height: 26px;
}
.modal .mycard .modal_detail {
    width: 600px;
}
.modal .mycard .modal_btns {
    width: 125px;
    position: static;
}
.modal .link_kyosantopage {
    margin-top: 20px;
}
.modal .num02 .link_kyosantopage, .modal .num03 .link_kyosantopage {
    position: absolute;
    bottom: 3px;
    left: 250px;
    z-index: 1;
}
.modal .link_kyosantopage a {
    text-decoration: none;
    font-weight: bold;
    color: #dc396c;
}
.modal .link_kyosantopage a:hover {
    text-decoration: underline;
}

/*======================================

	history

=======================================*/

.history {
    margin-bottom: 73px;
    background: url();
}
.history .content {
    padding-top: 40px;
    padding-bottom: 45px;
    background: url(../img/history/pink_bg.png) no-repeat center top;
    background-size: cover;
}
.history h1 {
    display: none;
}
.history .content .inner {
    width: 1022px;
    padding: 0 140px;
    padding-top: 35px;
    padding-bottom: 150px;
    background: url(../img/history/paper.png) no-repeat center top;
}
.history .content .inner .wrap {
    margin: 0 auto;
}
.history .content .inner .wrap h2 {
    margin-bottom: 45px;
}
.history .content .inner p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.history .content .inner .left {
    float: left;
    width: 447px;
}
.history .inner .left h3 {
    padding-top: 24px;
    padding-bottom: 38px;
    background: url(../img/history/character.png) no-repeat;
    background-position: 370px 0;
}
.history .inner .reunion .left h3 {
    padding-top: 32px;
    padding-bottom: 20px;
    background-position: 370px 0;
}
.history .inner .now .left h3 {
    padding-top: 32px;
    padding-bottom: 29px;
    background-position: 370px 0;
}
.history .inner .right {
    float: left;
    padding-left: 20px;
}
.history .inner .debut .right {
    padding-top: 18px;
}
.history .inner .reunion .right {
    padding-top: 30px;
}
.history .inner .now .right {
    padding-top: 30px;
}
.notification_mydeck {
    height: 50px;
    background: #030303;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    z-index: 10000;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    -webkit-transform: translate3d(320px, 0, 0);
    transform: translate3d(320px, 0, 0);
    -ms-transform: translate(320px, 0);
}
.notification_mydeck.on {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -ms-transform: translate(0, 0);
}
.notification_mydeck a {
    display: block;
    position: relative;
    z-index: 2;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 63px;
    background: url(../img/cmn/pct_logo.png) no-repeat 10px center;
    background-size: 45px;
}
.cardget {
    height: 50px;
    background: #030303;
    width: 320px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
}
.notification_mydeck .cardget a {
    background: url(../img/cmn/bg_get.png) no-repeat center center #000;
    background-size: 310px auto;
    text-align: center;
    display: block;
    padding-top: 3px;
    line-height: 47px;
    padding-left: 0;
}
.cardget.get {
    opacity: 1;
    pointer-events: all;
}
.greeting_modal {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.greeting_modal.on {
    display: block;
}
.greeting_table {
    width: 100%;
    height: 100%;
    display: table;
}
.greeting_inner {
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: .5s;
    transition: .5s;
}
.greeting_detail {
    position: relative;
    width: 1104px;
    height: 656px;
    margin: 0 auto;
    -webkit-transition: .5s;
    transition: .5s;
    background: #f1f1f1 no-repeat 0 0;
    border-radius: 5px;
    display: none;
}
.greeting_detail.active {
    display: block;
}
.greeting_close {
    width: 31px;
    height: 31px;
    position: absolute;
    top: 30px;
    right: 30px;
    background: url(../img/top/icn_close.png) no-repeat 0 0;
}
.greeting_detail .wrap {
    width: 100%;
    display: table;
    padding: 49px 60px 49px 71px;
}
.greeting_detail .wrap>div {
    display: table-cell;
    vertical-align: top;
}
.greeting_detail .img {
    width: 249px;
}
.greeting_pager {
    position: absolute;
    bottom: 53px;
    right: 0;
    height: 72px;
}
.greeting_pager a {
    display: inline-block;
    width: 72px;
    height: 72px;
    cursor: pointer;
}
.greeting_box1 {
    background-image: url(../img/top/bg_greeting1.png);
}
.greeting_box1 .img {
    padding-right: 20px;
}
.greeting_box1 .txt {
    width: 675px;
    height: 502px;
    background: url(../img/top/txt_greeting1.png) no-repeat 0 0;
}
.greeting_box1 a {
    background-image: url(../img/top/btn_next.png);
    margin-right: 73px;
}
.greeting_box2 {
    background-image: url(../img/top/bg_greeting2.png);
}
.greeting_box2 .img {
    padding-right: 20px;
}
.greeting_box2 .txt {
    width: 642px;
    height: 527px;
    background: url(../img/top/txt_greeting2.png) no-repeat 0 10px;
}
.greeting_box2 a:nth-child(1) {
    background-image: url(../img/top/btn_prev.png);
}
.greeting_box2 a:nth-child(2) {
    background-image: url(../img/top/btn_next.png);
    margin-right: 75px;
    margin-left: 13px;
}
.greeting_box3 {
    background-image: url(../img/top/bg_greeting3.png);
}
.greeting_box3 .img {
    padding-right: 5px;
}
.greeting_box3 .txt {
    width: 603px;
    height: 503px;
    background: url(../img/top/txt_greeting3.png) no-repeat 0 10px;
}
.greeting_box3 a {
    background-image: url(../img/top/btn_prev.png);
    margin-right: 75px;
}

/*======================================

	goods

=======================================*/

.goods {
    margin-bottom: 74px;
}
.goods .content {
    padding-top: 47px;
    padding-bottom: 70px;
    background: url(../img/goods/bg.jpg) no-repeat center top #64d3fa;
    background-size: cover;
}
.goods .content h1 {
    display: none;
}
.goods_detail {
    width: 1023px;
    background: url(../img/goods/bg_dot.png) no-repeat center top;
    padding-top: 58px;
    margin-top: 60px;
    position: relative;
}
.goods_detail:first-child {
    padding-top: 0;
    background: none;
    margin-top: 0;
}
.goods_stamp {
    padding-left: 60px;
}
.goods_stamp h2 {
    margin-bottom: 37px;
}
.goods_book {
    padding-left: 60px;
}
.goods_book h2 {
    margin-bottom: 34px;
}
.pct_book {
    position: absolute;
    top: 75px;
    right: 50px;
}
.book_detail {
    width: 472px;
    font-size: 18px;
    font-weight: bold;
}
.book_detail li {
    font-size: 0;
    line-height: 0;
    margin-bottom: 12px;
}
.book_detail a {
    color: #000;
    text-decoration: none;
}
.book_link {
    width: 460px;
    margin-bottom: 20px;
}
.goods_original {
    padding-right: 60px;
    padding-left: 60px;
}
.original_wrap li h3 {
    margin-bottom: 15px;
}
.original_wrap li p {
    text-align: center;
    font-weight: bold;
}
.goods_file {
    margin-top: 10px;
    float: left;
}
.goods_tshirt {
    margin-top: -16px;
    float: right;
}
.original_wrap li h3 img {
    vertical-align: bottom;
}
.order {
    width: 900px;
    margin: 30px auto 15px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    color: #fff;
    text-align: center;
}
.order h3 {
    background: #fff;
    text-align: center;
    font-size: 0;
    line-height: 0;
    padding: 3px 0;
    margin-bottom: 17px;
}
.order dt {
    font-size: 17px;
}
.order dd {
    font-size: 17px;
}
.order dd span {
    font-size: 15px;
}
.pct_mail {
    text-align: center;
    font-size: 0;
    line-height: 0;
    margin-bottom: 10px;
}
.btn_order_wrap {
    text-align: left;
    border-top: 3px solid #fff;
    padding: 12px 0 12px 40px;
    overflow: hidden;
    line-height: 29px;
}
.btn_order {
    float: left;
    margin-right: 15px;
}
.goods_original .note {
    font-size: 13px;
    color: #fff;
}
.goods_bonus {
    padding-left: 60px;
}
.goods_bonus p {
    text-align: left;
    margin-bottom: 25px;
}
.goods_bonus h2 {
	margin-bottom:44px;
}
.goods_bonus .img {
	position:absolute;
	top: 88px;
	right: 0px;
}
.goods_bonus li:nth-child(odd) {
	margin-bottom: 10px;
}

/* mycard close */
.mycard .abobe p{
	font-size: 24px;
	text-align: center;
	color: #fff;
}
.mycard .abobe p:first-child{
	margin-bottom: 10px;
}
.mycard .close_txt{
	padding: 100px 0 100px;
}
