html {
    font-size: 62.5%;
    background: #ffffff;
}

.pageContent {
    /*display: flex;
    flex-direction: column;*/
    min-height: 100vh;
}

*:focus { outline: none; }

/* スマホタップじのハイライトカラー指定 */
.Android a,
.Android label,
.Android .swiper-slide,
.Android .el_humburger {
    /*background-color:transparent;意図しない箇所まで透化されるためやめたいary*/
    -webkit-touch-callout:none;
    /*-webkit-tap-highlight-color:rgba(119, 119, 119, 0.7);*/
    -webkit-tap-highlight-color:transparent;/*こちらを透過*/
}

.videoBox video {
    max-width: 100%;
    height: auto;
    margin: 0 0 20px 0;
}

body {
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    font-size: 1.6rem;
    color: #262626;
    min-width: 320px;
}

.pageContent {
    margin: 0 auto;
    height:100%;
    max-width: 768px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 45px 0 0 0;
}

.header {
    background: rgba(255,255,255,0.97);
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 768px;
    height: 45px;
    z-index: 3;
    box-sizing: border-box;
    padding: 0 10px;
}

.registHeader {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}

.registHeader .headerBtn {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-align-items: center;
	align-items: center;
}

.headerSignupBtn a {
    display: block;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.4rem;
    background: rgb(84,151,242);
    background: linear-gradient(172deg, rgba(84,151,242,1) 0%, rgba(84,151,242,1) 50%, rgba(36,120,234,1) 50%, rgba(36,120,234,1) 100%);
    color: #ffffff;
    position: relative;
    box-shadow: 2px 2px 0px 0px #2459ea;
    padding: 0 10px;
    margin: 0 20px 0 0;
}

.headerLoginBtn a {
    display: block;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.4rem;
    background: #ffffff;
    color: #2478ea;
    position: relative;
    box-shadow: 2px 2px 0px 0px #2459ea;
    border: solid 1px #2478ea;
    padding: 0 10px;
    box-sizing: border-box;
}

@media screen and (max-width: 480px) {
    .headerBtn a {
        font-size: 1rem;
        height: 30px;
        line-height: 30px;
    }
}

.headerBtn a i {
    display: inline-block;
    padding: 0 3px 0 0;
}

.commonHeader {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}

.headerTicket {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.headerTicket i {
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.headerTicket img {
    width: 14px;
    height: auto;
    filter: brightness(0) contrast(69%) grayscale(100%);
}

.header .bonusTicket,
.header .purchasedTicket {
    font-size: 1rem;
    font-weight: bold;
}

.header .bonusTicket { margin: 0 10px 0 0; }

.header .ticketAmount {
    color: #ea316a;
    font-weight: bold;
    display: inline-block;
    font-size: 1.8rem;
    padding: 0 2px 0 4px;
}

.ticketAmount span { font-size: 1rem; }

.headerLogo img {
    max-width: 125px;
    height: auto;
}

.headerMenu { position: relative; }

.headerFavBtn {
    font-size: 2rem;
    line-height: 2rem;
    padding: 0 40px 0 0;
}

.headerFavBtn a { font-size: 2rem; }

/*ハンバーガーメニュー*/
.el_humburger {
  position: absolute;
  width: 26px;
  right: 0;
  top: -20px;
  height: auto;
  box-sizing: border-box;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}

.el_humburger > span {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #2478ea;
  transition: all 0.2s ease-in-out;
}
.el_humburger > span:last-child {
  margin-bottom: 0;
}
.js_humburgerOpen .el_humburger > span {
  background: #262626;
}

.js_humburgerOpen .el_humburger > span.top {
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger > span.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger > span.bottom {
  transform: translateY(-9px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close > span {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.el_humburgerButton__close > span.el_humburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close > span.el_humburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);
}

/*ナビゲーション*/
.uq_spNavi {
  display: none;
}
.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {
  position: absolute;
  top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 768px;
  width: 100%;
  height: 100%;
}

.naviLabelBtn label {
    display: block;
    border-radius: 10px;
    font-weight: bold;
    background: #2478ea;
    color: #ffffff;
    text-align: center;
    width: 170px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    margin: 0 auto;
}

.naviLabelBtn img {
    width: 18px;
    height: auto;
    filter: brightness(200%);
    padding: 2px 5px 0 0;
}

.navigation {
  padding: 20px 0 0 0;
  margin: 0 0 0 10px;
}

.navigation_item { margin-bottom: 15px; }

.navigation_item > a {
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.4rem;
}

.navigation_item i {
    display: inline-block;
    padding: 0 5px 0 0;
}
.uq_spNavi_screen .myTicketTitle {
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    margin: 10px 0;
}

.naviBonusTicket,
.naviTicketIn {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}

.naviBonusTicket,
.naviPurchasedTicket {
    background: #eeeeee;
    padding: 10px;
    margin: 0 0 10px 0;
    color: #333333;
    font-weight: bold;
    line-height: 1.6rem;
}

.naviTicketIn .ticketAmount,
.naviBonusTicket .ticketAmount {
    font-size: 3rem;
}

.naviTicketIn .ticketAmount span { font-size: 2rem; }

.naviNote {
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 1.4rem;
    margin: 10px 0;
    text-align: center;
}

.naviNote span { color: #ea316a; }


/*モーダル内チケット購入*/
.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9)!important;
  opacity: 0;
  transition: opacity 0.3s, transform 0s 0.3s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 480px;
  padding: 20px 2%;
  box-sizing: border-box;
  background: #fff;
  transition: 0.5s;
  border-radius: 10px;
}

.close_button {
    border: solid 1px #333333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 90px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.close_button i {
    display: inline-block;
    padding: 0 5px 0 0;
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_button { cursor: pointer; }

.ticketNote {
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    line-height: 1.4rem;
    color: #333333;
}

.ticketNote dt {
    margin: 0 0 10px 0;
    font-weight: bold;
}

.ticketNote dd { font-weight: normal; }

.purchaseModalTitle {
    text-align: center;
    margin: 0 0 20px 0;
    color: #333333;
    font-weight: bold;
}

.purchaseTable {
    width: 100%;
    margin: 0 0 20px 0;
}

.purchaseTable td {
    border: solid 1px #dddddd;
    border-collapse: collapse;
    font-weight: bold;
}

.purchaseTable td:nth-child(odd) {
    background: #eeeeee;
    text-align: center;
    padding: 15px 0;
    vertical-align: middle;
    width: 30%;
}

.purchaseTable td:nth-child(even) {
    padding: 15px 5px;
    position: relative;
}

.purchaseTable td:nth-child(even) a {
    display: block;
    background: #2478ea;
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    width: 70px;
    height: 24px;
    line-height: 24px;
    vertical-align: middle;
    position: absolute;
    right: 5px;
    top: 11px;
    font-size: 1.4rem;

}

@media screen and (max-width: 374px) {
  .purchaseTable td{
    font-size:1.3rem;
  }
  .purchaseTable td:nth-child(even) a{
    width:60px;
  }
}


.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}


.main {
}

#canvas {
    margin: 0 auto;
    height:100%;
    max-width: 768px;
}

a {
    color: #a03eb7;
    text-decoration: none;
}

.mainTxt {
    width: 96%;
    margin: 0 auto 20px auto;
    line-height: 2.4rem;
}

.twoBtn {
    display: -webkit-flex;
	display: flex;
    justify-content: space-between;
    margin: 0 auto 20px auto;
    width: 90%;
}

.twoBtn li {
    width: 48%;
}

.twoBtn li a,
.twoBtn li label {
    display: block;
    height: 55px;
    line-height: 55px;
    vertical-align: middle;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.8rem;
    box-shadow: 2px 2px 0px 0px #2459ea;
    cursor: pointer;
}

.twoBtn li a i {
    display: inline-block;
    padding: 0 5px 0 0;
}

.signupBtn a {
    background: rgb(84,151,242);
    background: linear-gradient(172deg, rgba(84,151,242,1) 0%, rgba(84,151,242,1) 50%, rgba(36,120,234,1) 50%, rgba(36,120,234,1) 100%);
    color: #ffffff;
}

.loginBtn a {
    background: #ffffff;
    color: #2478ea;
    border: solid 1px #2478ea;
}

.singleBtn {
    margin: 0 auto 30px auto;
    width: 90%;
    max-width: 300px
}

.singleBtn a {
    display: block;
    height: 55px;
    line-height: 55px;
    vertical-align: middle;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 2rem;
    background: rgb(84,151,242);
    background: linear-gradient(172deg, rgba(84,151,242,1) 0%, rgba(84,151,242,1) 50%, rgba(36,120,234,1) 50%, rgba(36,120,234,1) 100%);
    color: #ffffff;
    position: relative;
    box-shadow: 2px 2px 0px 0px #2459ea;
}

.singleBtn a i {
    display: inline-block;
    padding: 0 10px 0 0;
}

.mainBtnSingle a,
.mainBtnSingle input[type="button"],
.mainBtnSingle input[type="submit"] {
    display: block;
    max-width: 480px;
    width: 96%;
    height: 45px;
    line-height: 45px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    margin: 0 auto 30px auto;
    background: #a03eb7;
    cursor: pointer;
    -webkit-appearance: none;
    box-sizing: border-box;
    border: none;
}

.mainPopupBtn {
    max-width: 480px;
    width: 96%;
    height: 45px;
    line-height: 45px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    margin: 0 auto 30px auto;
    background: #a03eb7;
    cursor: pointer;
}

.h2Title {
    margin: 0 0 15px 10px;
}
.h2Title h2 {
    line-height: 1.4rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.h2Title h2 span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: italic;
    display: block;
    color: #2478ea;
    font-size: 2.4rem;
    line-height: 2.4rem;
    padding: 0 0 5px 0;
}

h3 {
    background: #eeeeee;
    font-weight: bold;
    padding: 10px;
    margin: 0 0 20px 0;
}

.titleBox {
    margin: 0 auto 20px auto;
    width: 96%;
}

.titleBox a {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
    color: #262626;
}

.titleBox .titleImg {
    width: 50%;
    position: relative;
}

.titleBox.new span {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 1rem;
    line-height: 1rem;
    color: #ffffff;
    background: #fd6d6d;
    border-radius: 2px;
    padding: 3px 4px;
    box-sizing: border-box;
}

.titleBox img {
    max-width: 100%;
    height: auto;
}

.titleBox dl { width: 46%; }

.titleBox dl dt {
    font-weight: bold;
    margin: 0 0 10px 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.titleBox .titleDesc {
    line-height: 2.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 480px) {
    .titleBox .titleDesc {
        font-size: 1.4rem;
        line-height: 2rem;
    }
}

.titleBox .author {
    font-size: 1.4rem;
    line-height: 1.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.authorBtn {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}

.authorBtn .author {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 70%;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

@media screen and (max-width: 480px) {
    .authorBtn .author { width: 40%; }
}

.titleBox .linkBtn {
    background: #2478ea;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 6px 14px;
}

@media screen and (max-width: 480px) {
    .titleBox .linkBtn {
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
}

.categoryList dt {
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.categoryList img {
    max-width: 100%;
    height: auto;
}

.categoryList dd {
    vertical-align: top;
    line-height: 100%;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

.footer { margin-top: auto; }

.footerNav {
    font-size: 1.8rem;
    width: 96%;
    margin: 50px auto;
    border-top: solid 1px #cecece;
    padding: 20px 0 0 0;
    box-sizing: border-box;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.categoryTag {
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    margin: 0 10px 20px 10px;
}

.categoryTag li {
    margin: 0 5px 0 0;
}

.categoryTag li:last-child { margin: 0; }

.categoryTag a {
    display: inline-block;
    font-size: 1rem;
    line-height: 1rem;
    border: solid 1px #2478ea;
    border-radius: 10px;
    padding: 4px 10px;
}

.footerNav li {
    width: 48%;
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin: 0 0 20px 0;
}

.footerNav li a {
    color: #cecece;
}

.footerNav li i {
    display: inline-block;
    padding: 0 3px 0 0;
    font-size: 1rem;
}

.copyright {
    background: #333333;
    padding: 15px 0;
    text-align: center;
    color: #cecece;
    width: 100%;
}

.footerFixedBtn {
    position: fixed;
    bottom: 20px;
    z-index: 2;
    width: 100%;
    max-width: 768px;
    display: -webkit-flex;
	display: flex;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
    margin: 0 20px 0 0;
}

.footerFixedBtn li a,
.footerFixedBtn li label {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,1);
    box-sizing: border-box;
    padding: 8px 0 0 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.footerFixedBtn i {
    display: block;
    font-size: 2.4rem;
    margin: 0 0 3px 0;
}

.footerFixedBtn img {
    display: block;
    font-size: 2.4rem;
    margin: 0 auto 3px auto;
    filter: brightness(200%);
}

.fixedPurchasedBtn label {
    background: #2478ea;
    margin: 0 10px;
}

.fixedBonusBtn { background: #ea316a; }

.footerFixedBtn .bonusBtnOff {
    background: #d3d3d3;
    color: #acacac;
    box-shadow: none;
    pointer-events: none;
}

/*fixed購入ボタン*/

/* チェックボックスを非表示 */
#my_modal1,
#my_modal2 {
    display: none;
}
/* モーダル */
.my_modal_body1,
.my_modal_body2 {
    display: none;
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    background-color: #FFF;
    /*overflow-y: auto;*/
    /* スマホ用スクロール */
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    /* お好みで */
    width: 90%;
    max-width: 480px;
    border-radius: 10px;
}

.loginModalWrap {
    display: none;
    position: fixed;
    z-index: 90000;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background: rgba(255,255,255,0.97);
    cursor: pointer;
}

.loginModal {
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    background-color: #FFF;
    /*overflow-y: auto;*/
    /* スマホ用スクロール */
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    width: 90%;
    max-width: 480px;
    border-radius: 10px;
}

/* クローズアイコン */
.my_modal_close {
    border: solid 1px #333333;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 90px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #333333;
}

.my_modal_close i {
    display: inline-block;
    padding: 0 5px 0 0;
}

/* コンテンツ表示 */
.my_modal_content {
    padding: 20px 2%;
    line-height: 1.6rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* 背景を暗くする */
.my_modal_overlay{
    display: none;
    position: fixed;
    z-index: 90000;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: rgba(255, 255, 255, 0.97); !important;
    cursor: pointer;
}

.my_modal_overlay2 {
    display: none;
    position: fixed;
    z-index: 90000;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: rgba(255, 255, 255, 0.97); !important;
    cursor: pointer;
}

.my_modal_overlay3 {
    position: fixed;
    z-index: 90000;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.97) !important;
    cursor: pointer;
}

/* チェック時オーバーレイとコンテンツを表示 */
#my_modal1:checked ~ .my_modal_body1, #my_modal1:checked ~ .my_modal_overlay{
    display: block;
}

#my_modal2:checked ~ .my_modal_body2, #my_modal2:checked ~ .my_modal_overlay2{
    display: block;
}

.bonusModal {
    background: #ffffff;
    padding: 153px 0 20px 0;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
}

.ribbon1 {
    width: 200px;
    padding: 3px 53px;
    height: 21px;
    background: rgb(144,6,6);
    background: linear-gradient(0deg, rgba(144,6,6,1) 0%, rgba(226,10,10,1) 100%);
    color: #fff;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 11px;
    left: -35px;
    text-transform: uppercase;
    transform: rotate(320deg);
}

.ribbon2 {
    width: 200px;
    padding: 3px 53px;
    height: 21px;
    background: rgb(144,6,6);
    background: linear-gradient(0deg, rgba(144,6,6,1) 0%, rgba(226,10,10,1) 100%);
    color: #fff;
    text-align: center;
    display: inline-block;
    position: absolute;
    bottom: 11px;
    right: -35px;
    text-transform: uppercase;
    transform: rotate(320deg);
}

.bonusModalRibbon {
    position: absolute;
    top: 5px;
    left: 15px;
    z-index: 3;
}

.bonusModalRibbon img {
    width: 70px;
    height: auto;
}

.bonusModalGiftbox {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 3;
}

.bonusModalGiftbox img {
    width: 164px;
    height: auto;
}

.bonusModalTitle {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.6rem;
    margin: 0 0 20px 0;
    color: #ea316a;
}

.bonusModal .recieveBtn a {
    display: block;
    text-align: center;
    width: 170px;
    margin: 0 auto 20px auto;
    background: #ea316a;
    color: #ffffff;
    font-weight: bold;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    border-radius: 10px;
    cursor: pointer;
}

.bonusModalNote {
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: #333333;
    font-weight: bold;
    width: 80%;
    margin: 0 auto 20px auto;
}

/*小説を読むリンクモーダル*/
.window {
  /* モーダル全体 */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
}

.overlay {
  /* 背景のオーバーレイ */
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.97) !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}

.inner {
  /*コンテンツ領域 */
  display: inline-block;
  height: auto;
  max-height: calc(100vh - 80px);
  position: relative;
  z-index: 102;
  width: 90%;
  max-width: 350px;
}

.wrap {
  /* コンテンツ単一 */
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 3px 6px #e8e8e8;
}

.close {
  cursor: pointer;
  width: 90px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #333333;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  border-radius: 4px;
  border: solid 1px #333333;
}

.close i {
    display: inline-block;
    padding: 0 3px 0 0;
}

input[type="radio"] {
  /* モーダル機能部分 */
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
input[type="radio"].handle + .wrap {
  display: none;
}
input[type="radio"].handle:nth-of-type(1):checked + .wrap {
  display: block;
}
input[type="radio"].handle:nth-of-type(2):checked + .wrap {
  display: block;
}
input[type="radio"].handle:nth-of-type(3):checked + .wrap {
  display: block;
}
input[type="radio"].handle:nth-of-type(4):checked + .wrap {
  display: block;
}
input[type="radio"].handle:nth-of-type(5):checked + .wrap {
  display: block;
}
input[type="radio"]#close:checked ~ .window, input[type="radio"]#close:checked ~ .close, input[type="radio"]#close:checked ~ .overlay, input[type="radio"]#overlay:checked ~ .window, input[type="radio"]#overlay:checked ~ .close, input[type="radio"]#overlay:checked ~ .overlay {
  display: none;
}

.inner .readModalDesc {
    text-align: center;
    color: #333333;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin: 0 0 10px 0;
}

.inner .readBtn a,
.inner .readBtn label {
    display: block;
    border-radius: 10px;
    background: #2478ea;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.inner .purchaseBtn label {
    display: block;
    border-radius: 10px;
    background: #2478ea;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    font-weight: bold;
    margin: 0 0 15px 0;
    cursor: pointer;
}

.inner .readCancelBtn label {
    display: block;
    border-radius: 10px;
    border: solid 1px #2478ea;
    color: #2478ea;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    font-weight: bold;
}

.inner .readModalValid {
    font-size: 1.4rem;
    margin: 15px 0 0 0;
    text-align: center;
    color: #333333;
}

.inner .readModalValid span { color: #e20a0a; }



.center { text-align: center; }

form input {
    -webkit-appearance: none;
}

.gAdDisplay {
    width: 100%;
    margin: 0 auto 30px auto !important;
}

.top_back {
    padding: 0 10px;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 3;
}

.top_back a {
    font-size: 1.4rem;
    line-height: 1.4rem;
}

/* regist */
.paymentWay {
    margin: 0 auto 30px auto;
    text-align: center;
}

.paymentWay dt {
    margin: 0 0 10px 0;
}

.paymentWay dd {
    font-size: 1.4rem;
    margin: 0 10px 0 0;
}

.login_panel_button { cursor: pointer; }

.otameshi {
    width: 96%;
    margin: 0 auto 20px auto;
    text-align: center;
    background: rgb(227,96,26);
    background: linear-gradient(0deg, rgba(227,96,26,1) 0%, rgba(255,196,0,1) 100%);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 10px;
    font-weight: bold;
    line-height: 2.4rem;
    color: #ffffff;
}

.otameshiNote {
    border: solid 1px #cecece;
    padding: 30px 20px;
    box-sizing: border-box;
    font-size: 1.4rem;
    line-height: 2.4rem;
    width: 96%;
    margin: 0 auto 30px auto;
}

.otameshiNote span { color: #e20a0a; }

.confirmTxt {
    width: 96%;
    margin: 0 auto 30px auto;

}

.completeTxt {
    width: 96%;
    margin: 0 auto 30px auto;
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
    font-weight: bold;
}

/* お気に入り関連 */
.one-column__det .fav_star_content, .one-column__det .fav_star_title {
    position: absolute;
    bottom: 2%;
    right: 2%;
    width: 13%;
}

.one-column__det .fav_star_content .fav_item, .one-column__det .fav_star_title .fav_item {
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-transition: all 300ms;
    transition: all 300ms;
}

.one-column__det .fav_star_content .fav_item__on, .one-column__det .fav_star_title .fav_item__on {
    background-image: url(../image/fav-crip__on.png);
}

.one-column__det .fav_star_content .fav_item__off, .one-column__det .fav_star_title .fav_item__off {
    background-image: url(../image/fav-crip__off.png);
}

.long-item__det .fav_star .fav_item__on {
    background-image: url(../image/fav-crip__on.png);
}

.long-item__det .fav_star .fav_item__off {
    background-image: url(../image/fav-crip__off.png);
}

.long-item__det .fav_star {
    position: absolute;
    bottom: 2%;
    right: 2%;
    width: 22%;
}

.long-item__det .fav_star .fav_item {
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-transition: all 300ms;
    transition: all 300ms;
}

.long-item__det .fav_star .fav_item__on {
    background-image: url(../image/fav-crip__on.png);
}

.long-item__det .fav_star .fav_item__off {
    background-image: url(../image/fav-crip__off.png);
}

.favMsg {
    position: fixed;
    display: none;
    width: 80%;
    bottom: 50px;
    left: 10%;
    text-align: center;
    font-weight: bold;
    -webkit-box-shadow: 0px 3px 6px #e8e8e8;
    box-shadow: 0px 3px 6px #e8e8e8;
    background-color: #ffffff;
    padding: 10px 0;
    border-radius: 10px;
    z-index: 10;
}

.pagination {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
    margin: 0 auto 30px auto;

}

.pagination li { margin: 0 10px 0 0; }

.pagination li:last-child { margin: 0; }

.pagination li a {
    border-radius: 4px;
    line-height: 1.6rem;
    display: block;
    padding: 6px 10px;
    background: #2478ea;
    color: #ffffff;
}

.pagination li.active a {
    background: #eeeeee;
    color: #262626;
}
