@charset "utf-8";
/* CSS Document */
html {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
    line-height: 150%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
/*-------------------------- common(s) -----------------------------*/
:root{
    --kikubonColor:#ff6600;
    --primaryBlack:#222222;
    --secondaryGray:#666666;
    --accentColor:#36a431;
    --accentColor2:#0984f1;
    --attentionColor:#f12222;
    --sub_lightGray:#cccccc;
    --subBg_lightGray:#ebeff3;
}

.bg_full {
    width:100%;
}
.bg_gray {
    background-color: var(--subBg_lightGray);
}
.clearfix::after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.clear {
    clear: both;
}
img {
    max-width:100%;
}
a {
    color: var(--primalyBlack);
    text-decoration: none;
}
a:hover {
    opacity: 0.75;
    text-decoration:underline;
}
ul li {
    list-style: none;
}
h1, h2, h3, h4, h5, p {
    line-height:150%;
}
button {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
    border:none;
    background-color:transparent;
    appearance:none;
}
.btn {
    border-radius:3rem;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}
.btn:hover {
    text-decoration:none;
}
.text_link {
    display:inline-block;
    text-decoration: underline;
}
.text_link .icon {
    display:inline-block;
    width: 1.6rem;
    vertical-align: middle;
}
.success_message {
    padding:1rem 3% 0.4rem;
}
.message_text {
    text-align:left;
}
.btn_half {
    display:inline-block;
    width: 47%;
    margin-left:1%;
    margin-right:1%;
}
.btn_full {
    display:block;
    width:90%;
    max-width:600px;
    font-size: 1rem;
    line-height: 3rem;
    margin: 6px auto;
}
button.btn_full {
    font-size: 1rem;
}
.btn_full.line2 {
    line-height: 1.1rem;
    padding:0.4rem 0;
}
.box_gray .btn_full {
    width: 96%;
}
.btn_s {
    display:inline-block;
    font-size: 0.8rem;
    line-height: 2.2rem;
    padding: 0 8px;
}
.btn_black_ol, a.btn_black_ol  {
    color: var(--primaryBlack);
    border: var(--primaryBlack) solid 1px;
    box-sizing: border-box;
    background-color:#ffffff;
}
.btn_black, a.btn_black {
    color: #ffffff;
    background-color:var(--primaryBlack);
}
.btn_kikubon_ol, a.btn_kikubon_ol  {
    color: var(--kikubonColor);
    border: var(--kikubonColor) solid 1px;
    box-sizing: border-box;
    background-color:#ffffff;
}
.btn_orange_gr, a.btn_orange_gr {
    color:#ffffff;
    border: var(--kikubonColor) solid 1px;
    box-sizing: border-box;
    background-image: linear-gradient(90deg, rgba(255, 205, 5, 1), rgba(255, 68, 0, 1));
}
.btn_orange_ol, a.btn_orange_ol {
    color: var(--kikubonColor);
    border: var(--kikubonColor) solid 1px;
    box-sizing: border-box;
    background-color:#ffffff;
}
.btn_point {
    color: #ffffff;
    background-color: var(--accentColor);
}
.point_balance .btn_point {
    font-size:0.8rem;
    line-height: 2.2rem;
    padding: 0 8px;
}
.btn_green, a.btn_green {
    color: #ffffff;
    background-color: var(--accentColor);
}
.btn_buy, a.btn_buy, .btn_red, a.btn_red {
    color: #ffffff;
    background-color: var(--attentionColor);
}
.btn_red_ol, a.btn_red_ol  {
    color: var(--attentionColor);
    border: var(--attentionColor) solid 1px;
    box-sizing: border-box;
    background-color:#ffffff;
}
.btn_blue, a.btn_blue {
    color: #ffffff;
    background-color: var(--accentColor2);
}
.btn_blue_ol, a.btn_blue_ol  {
    color: var(--accentColor2);
    border: var(--accentColor2) solid 1px;
    box-sizing: border-box;
    background-color:#ffffff;
}
.btn_disabled, a.btn_disabled {
    color: #ffffff;
    background-color: var(--sub_lightGray);
    cursor: default;
}
.btn_gray, a.btn_gray {
    color: #ffffff;
    background-color: var(--secondaryGray);
}
.box_gray {
    background-color: var(--subBg_lightGray);
    border-radius: 8px;
    width:94%;
    margin:0 auto 1.6rem;
    padding: 16px 8px;
}
/*-------------------------- common(e) -----------------------------*/

.header_area {
    box-shadow: 0 1px 2px rgba(0,0,0,0.35);
    position: sticky;
    top:0;
    background-color:#ffffff;
    z-index: 1001;
}
.home .header_area {
    top:-2.4rem;
}
.fadeout_up {
    animation: fadeout_up 0.5s forwards;
}

.header_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:  4px 0;
}
.header_left {
    display:flex;
}
.member_info {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
}
/*----- hamburger menu(s)--------*/
.sp_nav_area {
    text-align: center;
}
.slide_menu {
    height: 100vh;
    position: fixed;
    left: -80%; /*メニュー幅*/
    top: 0;
    width: 80%; /*メニュー幅*/
    transition: all 0.6s;
    z-index: 1003;
    overflow: scroll;
    background-color: #fff;
    padding: 2rem 1.4rem 3rem 1.4rem;
}
.sp_nav {
    padding-bottom:4rem;
}
.slide_menu ul {
    border-bottom: #000000 solid 1px;
    margin:0;
    padding:1rem 0;
}
.slide_menu nav ul li {
    margin:4px 0;
    padding-right:12px;
}
.hamburger {
    position: relative;
    cursor: pointer;
    height: 46px;
    width: 40px;
    left:0;
    z-index: 1004;
    margin: 0 4px 0 6px;
}
.hamburger span {
    background-color: #000000;
    height: 2px;
    left: 10px;
    position: absolute;
    width: 20px;
    border-radius: 2px;
}
.hamburger span:nth-child(1) {
    top: 16px;
    transition: all 0.6s;
}
.hamburger span:nth-child(2) {
    top: 22px;
    transition: all 0.1s;
}
.hamburger span:nth-child(3) {
    top: 28px;
    transition: all 0.6s;
}
/*------------------------------------
メニュークリックした後 ↓
------------------------------------*/
.nav_open .slide_menu {
    left: 0;
    padding-bottom:1rem;
}
.nav_open .hamburger {
    left:80vw;
    transition: all 0.6s;
}
.nav_open .hamburger span {
     background-color: #ffffff;
}
.nav_open .hamburger span:nth-child(1) {
    top: 26px;
    transform: rotate(45deg);
}
.nav_open .hamburger span:nth-child(2) {
    right: 50%;
    width: 0;
}
.nav_open .hamburger span:nth-child(3) {
    top: 26px;
    transform: rotate(-45deg);
}
.nav_open .overlay {
    opacity: 0.8;
    visibility: visible;
}
.overlay {
    background-color: #000000;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.6s;
    visibility: hidden;
    width: 100vw;
    cursor: pointer;
    z-index: 1002;
}
/*-------------- hamburger menu(e) --------------*/
.login_prof {
    border-bottom: var(--primaryBlack) solid 1px;
    padding:1rem 0;
}
.login_prof .btn_half {
    line-height: 3rem;
}
.sp_nav li {
    text-align:left;
    background: url(../images/icon/arrow_link.svg) right 2px top 30% / 0.8rem no-repeat;
}
.sp_nav li a {
    display:block;
    color: var(--primaryBlack);
    padding:0.4rem 0;
}
.fixed_area{
    position: fixed;
    bottom: 10px;
    left: 0;
    width:100%;
    z-index: 997;
    animation: fadein_up 1s forwards;
}
.sub_menu {
    display:flex;
    background-color: var(--primaryBlack);
    border: var(--kikubonColor) solid 1px;
    border-radius:3rem;
    width: 99%;
    color: #ffffff;
    margin:0 auto;
    padding:0.6rem 0;
}
.nav_open .fixed_area {
    animation: fadeout_down .5s forwards;
}
.sub_menu a {
    color:#ffffff;
}
.pageTop {
    background-color: rgba(255,255,255,0.9);
    border-radius:100%;
    box-shadow: 0 0 2px rgba(0,0,0,0.75);
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    position: fixed;
    right: 2%;
    bottom:80px;
    transition: 0.2s;
    cursor: pointer;
    padding:8px;
}
.linear_grad {
    background-image: linear-gradient(90deg, rgba(255, 205, 5, 1), rgba(255, 68, 0, 1));
}
.catch_text {
    text-align: center;
    line-height: 2.4rem;
    margin-bottom:0;
}
.header_area .linear_grad {
    display: block;
    height:1px;
}
.logo_kikubon {
    margin-bottom:0;
}
.logo_kikubon svg{
    fill:#ff884f;
    width:92px;
}
.icon_b { fill:var(--primaryBlack); }
.icon_w { fill: #ffffff; }
.icon_o { fill: var(--kikubonColor);}
.icon_bl { fill: var(--accentColor2);}
.icon_pg { fill: #039caa; }
.icon_g { fill: var(--sub_lightGray);}
.header_nav .icon_btn {
    float: right;
    width:40px;
    position: relative;
    margin:0 4px;
}
.header_nav .icon_text {
    color: var(--primaryBlack);
}
.header_nav .icon_btn:hover svg{
    fill: var(--kikubonColor);
}
.header_nav .icon_btn:hover .icon_text {
    color:var(--kikubonColor);
}
.header_nav .icon_btn .icon_number, .to_cart .icon_number {
    color:#ffffff;
    background-color: var(--attentionColor);
    position: absolute;
    top:-0.4rem;
    right:0;
    font-size:0.8rem;
    line-height: 1.1rem;
    text-align: center;
    width:1.1rem;
    height:1.1rem;
    border-radius:1.1rem;
}
.header_nav .icon_btn .icon_new {
    color:#ffffff;
    background-color: var(--attentionColor);
    position: absolute;
    top:-0.4rem;
    right:0;
    font-size:0.8rem;
    line-height: 1.1rem;
    text-align: center;
    width:1.1rem;
    height:1.1rem;
    border-radius:1.1rem;
}
.sub_menu .icon_text{
    color: #ffffff;
}
.sub_menu .icon_btn {
    width:19%;
    margin:0 0.5%;
}
.icon_btn a {
    display:block;
}
.icon_btn svg {
    width: 22px;
    margin: 0 auto;
}
.icon_text {
    display: block;
    font-size: 8px;
    line-height: 8px;
    text-align: center;
    margin-top: 6px;
}
.icon_btn a:hover {
    text-decoration: none;
}
.icon_btn_cart {
    margin-left:25%;
}
.nickname, .point_balance {
    line-height: 2.4rem;
}
.nickname {
    width:52%;
    height:2.4rem;
    text-align:left;
    overflow: hidden;
}
.point_balance {
    width:48%;
    text-align: right;
}
.login_prof .nickname, .login_prof .point_balance {
    width:100%;
}
.banner_area {
    border-top: solid 1px;
    border-bottom: solid 1px;
    border-color: var(--primaryBlack);
    text-align:center;
    width:94%;
    margin: 0 auto 10px;
    padding:20px 0 10px;
}
.banner_area a {
    display: inline-block;
    width:48%;
    margin:0 0.5% 10px;
}
.banner_full {
    width:94%;
    margin:0 auto 1rem;
}
.banner_full img, .img_full {
    margin:0 auto;
}
.payment_box{
    display:none;
}
.home .payment_box {
    display:block;
    text-align:center;
    padding: 30px 0 20px;
}
.paymentList li {
    display:inline-block;
    margin: 0 0.4rem;
}
.paymentList img {
    height: 2rem;
}
.box_title {
    font-size:1.1rem;
    margin-bottom: 0.6rem;
}
#appDL {
    border-top: solid 1px;
    border-bottom: solid 1px;
    border-color: var(--primaryBlack);
    width:94%;
    margin: 10px auto 20px;
    padding:10px 0;
}
.runapp {
    color: var(--primaryBlack);
}
.app_icon {
    width: 56px;
    border-radius:0.8rem;
    float:left;
}
.app_text {
    width: calc(100% - 64px);
    float:right;
}
.app_title {
    display: inline-block;
    font-size:1rem;
    font-weight: bold;
}
.app_description {
    display: inline-block;
    font-size:0.9rem;
    line-height: 1.1rem;
}
.footer_container {
    background-color: var(--primaryBlack);
    padding: 40px 0 90px;
}
.follow_box {
    color:#ffffff;
    text-align: center;
    margin: 0 auto 30px;
}
.share_box {
    text-align: center;
    margin: 0 auto 30px;
}
.sns_icon {
    display:inline-block;
}
.follow_box .sns_icon {
    width: 48px;
    margin: 8px;
}
.share_box .sns_icon {
    width: 36px;
    margin: 8px;
}
.mark_box {
    width:96%;
    text-align: center;
    margin: 0 auto 30px;
}
.mark_box img {
    display:inline-block;
}
#ismsMark, #pMark {
    height: 70px;
}
#ssepMark {
    height: 42px;
}
.footer_link {
    color:#ffffff;
    width:92%;
    text-align: center;
    margin:0 auto 30px;
}
.footer_link a {
    display: inline-block;
    color:#ffffff;
    font-size:0.8rem;
    line-height: 1.2rem;
}
.link_news {
    margin-bottom:20px;
}
.copyright_box {
    border-top: #666666 solid 1px;
    width:96%;
    text-align: center;
    margin:0 auto;
    padding: 30px 0;
}
.copyright, .copy_text {
    display:inline-block;
    color:#ffffff;
    font-size:0.8rem;
    line-height: 1rem;
    margin-bottom:10px;

}
.kv {
    text-align:center;
    margin-bottom: 1rem;
}
.kv img {
    width:100%;
}
.kv .btn_area {
    width:94%;
    margin:0 auto;
}
.kv .btn {
    display: inline-block;
    height: 5rem;
    font-size: 1.1rem;
    line-height: 1.4rem;
    vertical-align: middle;
}
.kv .btn:hover {
    opacity:1;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
} 
.kv .btn_kikubon_ol {
    font-size:1.3rem;
    padding-top:1rem;
}
.kv .btn_orange_gr {
    padding-top: 0.4rem;
}
/*------------------- swiper(s) -------------------*/
.sec_slider {
    position:relative;
    margin-bottom:0.4rem;
    padding-bottom:2.4rem;
}
#mainSwiper {
    border-top: var(--primaryBlack) solid 1px;
    border-bottom: var(--primaryBlack) solid 1px;
    aspect-ratio: 32 / 13.3;
}
.swiper-slide {
    overflow: hidden;
}
#mainSwiper .swiper-slide {
    background-size:cover;
    opacity: 0.5;
}
#mainSwiper .swiper-slide-active {
    opacity:1;
}
#mainSwiper .swiper-slide img {
    align-self: center;
    width:100%;
    margin-left:auto;
    margin-right:auto;
}
#mainSwiper a:hover{
    opacity: 1;
}
.swiper_container {
    position:relative;
}
.swiper_list .swiper-slide {
    width: 30%;
    height: auto;
}
#seriesSwiper .swiper-slide, #featureSwiper .swiper-slide {
    width:260px;
}
.swiper_list .swiper-slide:nth-child(1){
    margin-left: 16px;
}
.swiper_list .thumb_box {
    position: relative;
    padding: 8px;
}
.swiper_list p {
    font-size:0.8rem;
    line-height: 1.2rem;
    margin-bottom: 2px;
}
.swiper_list .title{
    font-size:1rem;
    line-height: 1.4rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#rankingSwiper .swiper-slide, #rankingFreeSwiper .swiper-slide {
    position:relative;
}
#rankingSwiper .rank, #rankingFreeSwiper .rank {
    position:absolute;
    width: 72px;
    top: -6px;
    left: -4px;
}
/*------------------- swiper(e) -------------------*/
.icon_box {
    position: absolute;
    top: 2px;
    left: 1px;
}
.badge {
    display:inline-block;
    border-radius:1.2rem;
    color:#ffffff;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    font-size:0.9rem;
    line-height: 0.9rem;
    font-weight: bold;
    padding: 6px;
}
.badge_new {
    background-color:#ff0000;
}
.badge_campaign {
    background-color: var(--accentColor2);
}
.text_icon_free, .text_icon_rental, .text_icon_premiumSale, .text_icon_campaign {
    border-radius:1rem;
    font-size:0.7rem;
    line-height: 0.9rem;
    margin-right:0.8rem;
    padding:2px 3px;
}
.text_icon_free {
    color: #ff0000;
    border: #ff0000 solid 1px;
    background-color: #ffffff;
}
.text_icon_rental {
    color: var(--accentColor2);
    border: var(--accentColor2) solid 1px;
    background-color: #ffffff;
}
.text_icon_premiumSale{
    color: #ffffff;
    border: var(--attentionColor) solid 1px;
    background-color: var(--attentionColor);
}
.text_icon_campaign {
    color: var(--attentionColor);
    border: var(--attentionColor) solid 1px;
    background-color: #ffffff;
}
.icon_new02 {
  display: inline-block;
  color: #ffffff;
  background-color: #ff0000;
  font-size: 0.8rem;
  line-height: 1.5rem;
  margin-bottom: 0.4rem;
  padding: 0 0.4rem;
}
.contents_body {
    padding-top:0.6rem;
}
.product_page .contents_body, .home .contents_body {
    padding-top:0;
}
/*-------- whats today(s) ---------*/
.acInfo dt {
    cursor : pointer;
}
.acInfo dd {
    display:none;
}
.todays {
    border:#000000 solid 1px;
    border-radius: 3px;
    width: 94%;
    margin: 0 auto 1.6rem;
}
.todays .acInfo {
    margin: 0;
}
.todays dt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:4px;
}
.todays dt span {
    display:inline-block;
}
.today {
    width:23%;
    line-height: 1.4rem;
}
.what_day{
    width: 58%;
    line-height: 1.4rem;
    margin-right: 2%;
}
.show_todays {
    color:#ffffff;
    background-color:#000000;
    border-radius:4px;
    font-size:0.8rem;
    line-height: 1.2rem;
    text-align: center;
    width: 20%;
}
.todays .icon_book {
    height:1.4rem;
    vertical-align: middle;
    margin: 0 auto;
}
.todays_doc {
    font-size:0.9rem;
    line-height: 1.4rem;
    margin:0 0 6px;
}
.todays_book {
    background-color:#e8f2f7;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}
.todays .thumb_box {
    width:25%;
    float:left;
    margin:0;
}
.thumb_box img {
    margin:0 auto;
}
.todays .text_box{
    width:71%;
    float:right;
}
.todays dd {
    border-top:#000000 solid 2px;
    width:96%;
    margin:0 auto;
    padding:8px 0 ;
}
.todays .text_box p {
    margin:0 0 6px;
}
.todays .title {
    font-size: 0.9rem;
    line-height: 1.2rem;
    font-weight: 600;
}
.todays .writer_reader{
    color:#666666;
    font-size:0.8rem;
    line-height: 1.2rem;
}
/*-------- whats today(e) ---------*/
.contents_box {
    margin-bottom:1.6rem;
}
.contents_box h2{
    border-bottom : var(--sub_lightGray) solid 1px;
    font-size: 1.1rem;
    line-height: 2.6rem;
    width: 94%;
    margin: 0 auto 1rem;
}
.description {
    width:94%;
    margin: 0 auto 1rem;
}
h2.line2 {
    line-height : 1.6rem;
}
.to_list {
    float:right;
    font-size:0.8rem;
}
.arrow_s {
    background-color: var(--primaryBlack);
    width:18px;
    height:18px;
    border-radius:100%;
    vertical-align: middle;
    margin-left: 4px;
    }
.btn_sample {
    border:#ffffff solid 1px;
    border-radius: 2rem;
    background-color: rgba(0,0,0,0.5);
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    position: absolute;
    bottom: 10px;
    right: 10px;
    width:2rem;
    height:2rem;
}
.btn_sample svg {
    fill: #ffffff;
}
.pickup_nav {
    background-color: var(--subBg_lightGray);
    text-align: center;
    margin-bottom: 1.6rem;
    padding: 16px 6px ;
}
.pickup_nav ul {
    display:flex;
    flex-wrap: wrap;
}
.pickup_nav ul li {
    border : var(--primaryBlack) solid 1px;
    border-radius: 3.2rem;
    background-color:#ffffff;
    text-align: center;
    font-size:0.85rem;
    line-height: 3.2rem;
    width : 32%;
    margin: 4px auto;
}
.pickup_nav ul li.line2 {
    line-height: 1rem;
}
.pickup_nav ul li a {
    display:block;
}
.pickup_nav ul li.line2 a {
    padding-top: 0.6rem;
}
.list_3col {
    display: flex;
    flex-wrap: wrap;
    width:94%;
    margin: 0 auto;
}
.list_3col li {
    width:30%;
    margin: 0 auto 1rem;;
}
.list_3col .thumb {
    margin : auto;
}
.hapiradi_logo {
    float:left;
    width:40%;
    margin-bottom:16px;
}
.hapiradi_description p {
    width:58%;
    font-size:0.9rem;
    line-height: 1.4rem;
    float:right;
}
.hapiradi_description .btn {
	clear:both;
}
.pickup_box {
    border: var(--primaryBlack) solid 1px;
    border-radius:8px;
    width:94%;
    margin:0 auto 1.6rem;
    padding:0.4rem;
}
.pickup_box .contents_box {
    border: var(--primaryBlack) solid 1px;
    border-radius:8px;
    margin-bottom: 0;
    padding: 0 3%;
}
.pickup_box h2 {
    width: 100%;
    padding-top: 0.6rem;
}
.pickup_box .thumb {
    width: 45%;
    max-width:185px;
    margin: 0.8rem auto;
}
.pickup_box .text_box{
    font-size:0.9rem;
}
.pickup_box .title {
    font-size:1.1rem;
}
.pickup_box .text_link {
    float: right;
    margin-bottom: 1rem;
}
.text_link .arrow_link {
    display:inline-block;
    width:1.4rem;
    margin-left:0.4rem;
}
.premium_description {
    position:relative;
    padding-bottom:8px;
}
.premium_title {
    position: absolute;
    top: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 96%;
}
.premium_doc {
    font-weight:bold;
    text-align: center;
    font-size:0.9rem;
    padding-top: 4.4rem;
}
.premium_description .btn {
    margin-bottom: 0.8rem;
}
.premium_description .btn .icon_present {
    width: 1.6rem;
    fill: var(--attentionColor);
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0.4rem;
}
.list_half {
    display: flex;
    flex-wrap: wrap;
    width :94%;
    margin: 0 auto;
}
.list_half li {
    width:48%;
    margin: 0 auto 0.4rem;
}
.insta_section .list_half li:nth-child(3) {
    display:none;
}
.banner_half {
    margin-bottom:0.6rem;
}
.banner_doc {
    font-size: 0.8rem;
    line-height: 1.1rem;
}
.keycam_doc {
    font-size: 0.9rem;
    text-align: center;
}
.keycam_description {
    background-image : url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><path fill="%23ffffff" d="M94.27,29.64l-11.83-12c-.43-.44-1.04-.65-1.65-.58-.61.07-1.16.42-1.48.95l-13.67,22.44c-.95-.77-2.15-1.23-3.46-1.23h-4.5c-1.31,0-2.51.46-3.46,1.23l-13.67-22.44c-.32-.53-.87-.88-1.48-.95-.61-.07-1.22.14-1.65.58l-11.83,12c-.45.46-.65,1.1-.55,1.73.1.63.5,1.17,1.07,1.46l26.07,13.19v.16h-19.09c-1.66,0-3,1.34-3,3v53.69c0,1.66,1.34,3,3,3h53.69c1.66,0,3-1.34,3-3v-53.69c0-1.66-1.34-3-3-3h-19.09v-.16l26.07-13.19c.57-.29.97-.83,1.07-1.46.1-.63-.1-1.27-.55-1.73ZM54.43,52.18v18.34h-18.34v-18.34h18.34ZM36.09,81.53h18.34v18.34h-18.34v-18.34ZM65.43,99.87v-18.34h18.34v18.34h-18.34ZM83.78,52.18v18.34h-18.34v-18.34h18.34Z" /></svg>');
    background-size:240px;
    background-position: center -1.6rem;
    background-repeat:no-repeat;
}
.result_info {
    width:94%;
    margin:0 auto 1rem;
}
.result_info a {
    color:var(--accentColor2);
}
.num_result {
    font-size:0.9rem;
    margin:0;
}
.sort_result select, .select_button select {
    color: var(--primaryBlack);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    padding-right: 2rem;
    padding-left: 0.2rem;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-size: 0.9rem;
    line-height: 1.2rem;
    height: 2rem;
    width: 100%;
    overflow: hidden;
    vertical-align: middle;
    padding:0.2rem 0.4rem;
}
.sort_result select::-ms-expand, , .select_button select::-ms-expand {
    display:none;
}
.select_button {
    display: inline-block;
    background-color: #ffffff;
    border: var(--primaryBlack) solid 1px;
    border-radius: 2px;
    position: relative;
    width:56%;
}
.list_page .tab_area {
    position: relative;
    padding-top: 8px;
}
.tab_menus {
    display:flex;
}
.list_page .tab_area .tab_menus {
    position: absolute;
    top: -3rem;
    right: 2%;
}
.list_page .tab_menu {
    border: var(--primaryBlack) solid 1px;
    background-color:#ffffff;
    border-radius:0.2rem;
    margin-left: 0.2rem;
}
.list_page .tab_menu svg {
    fill: var(--primaryBlack);
    width:1.8rem;
}
.list_page .tab_menu.active {
    border: var(--primaryBlack) solid 1px;
    background-color: var(--primaryBlack);
}
.list_page .tab_menu.active svg {
    fill: #ffffff;
}
.list_page .tab_menus .text {
    background-color: transparent;
    font-size: 12px;
    line-height: 24px;
    width: auto;
    float:left;
}

.tab_content {
    display: none;
}
.tab_content.active {
    display: block;
    animation: fadein 1s forwards;
}
.thumb_list {
    display:flex;
    flex-wrap:wrap;
    width:94%;
    margin: 0 auto 2rem;
}
.thumb_list li {
    width: 30%;
    margin:0 5% 1.2rem 0;
}
.thumb_list li:nth-child(3n) {
    margin-right:0;
}
.thumb_list .thumb_box {
    position: relative;
    margin-bottom:0.4rem;
}
.thumb_set {
  background: transparent url(../images/setBg2.png) right top no-repeat;
    background-size:100%;
    padding-right:6%;
    padding-top: 0.8rem;
}
.book_info .thumb_set {
    padding-right:25%;
}
.thumb_list p {
    font-size:0.8rem;
    line-height: 1.1rem;
    margin-bottom:0;
}
.thumb_list .title {
    font-size:0.9rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.thumb_text_list {
    width:94%;
    margin: 0 auto 2rem;
}
.thumb_text_list li {
    border-bottom: var(--sub_lightGray) dotted 1px;
    margin-bottom:0.6rem;
    padding-bottom:0.6rem;
}
.thumb_text_list .thumb_box {
    width:28%;
    float: left;
}
.thumb_text_list .text_box {
    width:68%;
    float: right;
}
.thumb_text_list p {
    font-size:0.8rem;
    line-height: 1.1rem;
    margin-bottom:0;
}
.thumb_text_list .award {
    color: var(--kikubonColor);
    margin-bottom:0.4rem;
}
.thumb_text_list .title {
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight:500;
    margin-bottom:0.2rem;
}
.list_page .writer, .list_page .reader, .list_page .time, .list_page .point, .list_text, .series_text, .list_page .list_text {
  color: var(--secondaryGray);
}
.list_page .rank {
    font-size:1rem;
    margin-bottom: 0.8rem;
}
.list_page .rank .number {
    font-size:1.4rem;
    font-style: oblique;
}
.list_page .rank .underline {
    border-bottom: var(--primaryBlack) solid 2px;
}
.paginate {
    text-align:center;
}
.paginate .result_num {
    width: 30%;
}
.icon_paginate {
    display: inline-block;
    border: var(--primaryBlack) solid 1px;
    border-radius: 2.8rem;
    width:2.8rem;
    height: 2.8rem;
    vertical-align: middle;
    margin:0 0.1rem;
}
.icon_paginate svg{
    fill: var(--primaryBlack);
    width: 2rem;
    margin:0.3rem auto;
}
.to_beginning svg, .to_backward svg {
    transform: scale(-1, 1);
}
.sort_nav {
    width:94%;
    margin:0.4rem auto;
}
.sort_nav .btn {
    font-size: 0.8rem;
    line-height: 1.4rem;
    text-align: center;
    min-width:3rem;
    margin: 0 0.4rem 0.4rem 0;
    padding: 0 0.4rem;
}
.author_list, .reader_list {
    display:flex;
    flex-wrap: wrap;
    width:94%;
    margin:0 auto 2rem;
}
.author_list li {
    display:table;
    width:49%;
    margin:0 2% 1rem 0;
}
.author_list li:nth-child(even){
    margin-right:0;
}
.author_list li a {
    display:table-cell;
    font-size:0.9rem;
    line-height: 1.1rem;
    height:3rem;
    vertical-align: middle;
    padding: 0 0.4rem;
}
.reader_list li {
    width:32%;
    text-align: center;
    margin: 0 2% 1rem 0;
}
.reader_list li:nth-child(3n) {
    margin-right:0;
}
.reader_list li .prof_img {
    width:70%;
    border-radius: 1rem; 
    margin:0 auto 0.4rem;
}
.reader_list li .text_info {
    font-size:0.8rem;
    line-height: 1rem;
}
.featured_list {
    width:94%;
    margin:0 auto 2rem;
}
.featured_list li {
    margin-bottom:2rem;
}
.featured_list li a:hover {
    text-decoration:none;
}
.featured_list .thumb_l {
    margin-bottom:0.4rem;
}
.featured_list .title {
    font-size:0.9rem;
    line-height: 1.2rem;
}
.point_info p{
    text-align:center;
}
.point_info .balance {
    font-size:1.2rem;
}
h2.main_image {
    border:none;
    width:100%;
}
h2.main_image img {
    margin-left:auto;
    margin-right:auto;
}
.seriesDoc {
    border: var(--subBg_lightGray) solid 1px;
    width:94%;
    font-size:0.9rem;
    likne
    1.4rem;
    margin:0.4rem auto 1rem;
    padding:0.4rem;
}
.seriesDoc .sub_text {
    display: block;
    background-color:var(--subBg_lightGray);
    font-size:0.9em;
    padding:0.4rem;
}
.divider_bottom {
    border-bottom: var(--subBg_lightGray) solid 10px;
}
.contents_box.divider_bottom {
    margin-bottom:0;
    padding:1rem 0;
}
.col_right .banner_area {
    border-top:none;
    width:100%;
}
.book_info {
    width:94%;
    margin:0 auto 1rem;
    padding:1rem 0;
}
.book_info .thumb_box {
    width:30%;
    float:left;
}
.book_info .thumb_box img {
    box-shadow:0 0 2px rgba(0,0,0,0.75);
}
.book_info .text_box {
    width:66%;
    float:right;
}
.book_info .title {
    font-size:1.2rem;
    margin-bottom:0.4rem;
}
.book_info p {
    font-size:0.9rem;
    line-height: 1.1rem;
    margin-bottom:0.2rem;
}
.ac_area{
    position: relative;
    padding-bottom:1.5rem;
}
#acHalf {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    height: 6rem;
    transition:0.5s height ease;
    overflow: hidden;
    margin-bottom:0.4rem;
}
.ac_area .see_all {
    color: var(--accentColor2);
    background-color:#ffffff;
    border:none;
    text-align:right;
    position: absolute;
    right:0;
    bottom: 0;
    cursor: pointer;
    padding: 0 1rem;
}
.ac_area .ac_close {
    display:none;
}
#acHalf.ac_active {
    display: block;
    -webkit-line-clamp: auto;
    height:auto;
    height: calc-size(auto, size);
}
.ac_area.active .ac_see {
    display:none;
}
.ac_area.active .ac_close {
    display:block;
}
.value_info {
    font-size:0.8rem;
    text-align:left;
    margin: 0.2rem auto;
}
.purchase_box {
    border-top: var(--sub_lightGray) solid 1px;
    width:94%;
    text-align: center;
    margin: 0 auto 1rem;
    padding-top:1rem;
}
.book_detail, .index_area, .profile_box, .pack_box, .col_right .banner_area, .streaming_info {
    padding:1rem 3%;
}
.contents_box h3,.book_detail h3, .index_area h3, .profile_box h3 {
    border-bottom: var(--sub_lightGray) solid 1px;
    font-size: 1rem;
    line-height: 2rem;
}
.contents_box h3 {
    width:94%;
    margin:0 auto 1rem;
}
.contents_box_pd {
    padding:1rem 3%;
}
.contents_box_pd h3 {
    width:100%;
}
.contents_box_pd h3.line2 {
    line-height:1.6rem;
}
.purchase_box .value_info .icon_point {
    display:inline-block;
    color: var(--accentColor);
    background-color: #ffffff;
    border:var(--accentColor) solid 2px;
    border-radius:100%;
    vertical-align: middle;
    line-height: 1.1rem;
    width:1.4rem;
    height:1.4rem;
    text-align: center;
    margin-right:0.2rem;
    padding:0.1rem;
}

.product_page .share_box {
    background-color: var(--subBg_lightGray);
    margin:0 auto;
    padding: 0.4rem 0;
}
.value_info .icon_point.limited {
    color: var(--attentionColor);
    background-color: #ffffff;
    border: var(--attentionColor) solid 2px;
}
.index_list li {
    display:flex;
    flex-wrap:wrap;
    border-bottom: var(--sub_lightGray) dotted 1px;
    align-items: center;
    padding:0.4rem 0;
}
.index_title {
    float: left;
    width: 62%;
    font-size:0.9rem;
    line-height: 1.4rem;
    margin: 0;
    padding-left: 2%;
}
.author_area dd {
    border-bottom:var(--sub_lightGray) solid 1px;
    margin-bottom:1rem;
    padding-bottom:1rem;
}
.set_index a{
    display:flex;
    align-items: center;
    width:100%;
}
.set_index .index_title {
    width:calc(100% - 60px - 2.8rem);
    padding:0;
}
.set_index .thumb {
    float:left;
    width:60px;
    margin-right:0.8rem;
}
.set_index .icon_arrow_s {
    float:right;
    width: 2rem;
}
.streaming_info .title {
    margin-bottom:0.4rem;
}
.streaming_info .index_title {
    float:none;
    width:100%;
    padding:0;
}
.index_title .sub_text{
    display: inline-block;
    line-height: 1rem;
}
.index_title .time_text, .index_title .limit_text, .index_title .text_blue{
    display: inline-block;
    font-size:0.8rem;
    line-height: 1rem;
}
.price_info {
    float: right;
    text-align: right;
    width: 38%;
    margin: 0;
}
.btn_buy_s, .btn_rental_s {
    display:inline-block;
    width:48%;
    text-align: center;
    vertical-align: middle;
    font-size:0.7rem;
    line-height: 1rem;
    margin-left:auto;
}
.btn_buy_s .btn, .btn_rental_s .btn {
    display:inline-block;
    width:100%;
    font-size:0.8rem;
    line-height: 1.8rem;
}
.btn_buy_s:hover {
    text-decoration:none;
}
.btn_mobile .btn {
    line-height: 0.8rem;
    font-size:0.7rem;
    padding: 0.15rem 0;
}
.btn_rental_s .btn_blue_ol {
    font-size:0.7rem;
    line-height: 0.8rem;
    padding:0.1rem 0;
}

.icon_limited {
    color: #ffffff;
    background-color: var(--attentionColor);
    font-size: 0.8rem;
    line-height: 1.2rem;
    padding: 0 0.2rem;
}
.price_info .icon_limited  {
    display:inline-block;
}
.icon_incomplete {
    display: inline-block;
    color:  var(--attentionColor);
    background-color: #ffffff;
    border: #ff8f8f solid 1px;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.2rem;
    width: auto;
    text-align: center;
    text-decoration: none;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}
.pack_box .thumb_set {
    width: 120px;
    margin: 0 auto 1rem;
    padding: 16px 28px 0 0;
}
.pack_box .title {
    text-align:center;
}
.profile_box dt {
    font-weight:bold;
    display:flex;
    align-items: center;
    position: relative;
}
.profile_box dd {
    margin-left:0;
}
.prof_img {
    width: 80px;
    margin-right:2%;
}
.profile_box dt .arrow_down {
    width:2rem;
    transform: rotate(90deg);
    position: absolute;
    right:0;
    top:24px;
}
.profile_box dt.active .arrow_down {
    transform: rotate(-90deg);
}
#readerInfo  dt {
    border-bottom: var(--sub_lightGray) solid 1px;
    padding:0 0 0.2rem;
}
#readerInfo  dt.active {
    border-bottom:none;
}
#readerInfo dd {
    border-bottom: var(--sub_lightGray) solid 1px;
    padding: 1rem 0 0.4rem;
    margin:0.2rem 0;
}
.col_right .banner_area a {
    width:94%;
    margin:0 auto 1rem;
}
.col_full .contents_box .thumb_list {
    margin-bottom:0;
}

.box_border {
    border: var(--subBg_lightGray) solid 1px;
    background-color:#ffffff;
    padding: 1rem 3%;
}
.box_ol{
    border: var(--sub_lightGray) solid 1px;
    background-color:#ffffff;
    padding: 1rem 3%;
}
.icon_play_circle {
    display:inline-block;
    border:#ffffff solid 2px;
    border-radius:100%;
    width: 1.6rem;
    vertical-align: middle;
    margin-bototm:0.3rem;
}
.btn_blue .icon_play {
    fill:#ffffff;
}
.campaign_box {
  border-top: var(--attentionColor) dotted 2px;
  border-bottom: var(--attentionColor) dotted 2px;
  margin-bottom: 10px;
  padding: 8px 0;
}
.campaign_title {
  font-size: 1.4rem;
  font-style: italic;
  transform: skewX(-8deg);
  line-height: 1.4rem;
}
.campaign_text {
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin: 0.8rem 0 0;
}
.btn_area .campaign_text {
    color:var(--attentionColor);
}
#streamingArea {
    background-color: var(--primaryBlack);
    padding-bottom:0.5em;
}
#loadingAudio {
  color: #ffffff;
  text-align: center;
  height: 1.6em;
  line-height: 1.6em;
}
#streamingPlayer {
  opacity: 0;
}
#streamingPlayer p {
    font-size:0.9rem;
    line-height: 1.2rem;
}
.streamingBk {
    background-color:#ffeee4;
}
.streamingBk .icon_sound {
    display: inline-block;
    fill: var(--kikubonColor);
    width: 2.4rem;
    margin:0 10% 0 0;
}

#seek {
    width: 80%;
    min-width: 13em;
    background: #ffffff;
    height: 2em;
    line-height: 1.5em;
    text-align: center;
    cursor: pointer;
    display: none;
    margin: 1em auto .5em;
    padding: 0.2em 0;
}
/*------------------  profile_page(s)  -------------------*/
.user_info {
    width:94%;
    border-bottom: var(--sub_lightGray) dashed 1px;
    margin:0 auto;
}
.user_info h3 {
    background-color: var(--subBg_lightGray);
    border:none;
    width:100%;
    padding:0 0.4rem;
}
.user_info p, .link_change {
    width:96%;
    margin: 0 auto 0.8rem;
}
.link_change {
    text-align:right;
}
.user_info dd p {
    width:100%;
    margin:1rem auto;
}
.profile_page .btn_area {
    padding:1rem 0;
}
.bottom_my_nav ul {
    width:94%;
    margin:0 auto;
}
.bottom_my_nav ul li {
    background: url(../images/icon/arrow_link.svg) right 8px top 40% / 0.8rem no-repeat;
    border-bottom: var(--sub_lightGray) solid 1px;
    font-size:0.9rem;
    line-height: 2.6rem;
    margin: 0;
    padding:0.4rem 0;
}
.bottom_my_nav ul li a {
    display:block;
}
.setting_change .col_full .form_box {
    border:none;
    background-color:var(--subBg_lightGray);
    width:96%;
    margin:0 auto;
}
.setting_device {
    background-color:var(--subBg_lightGray);
    width:96%;
    margin:0 auto;
}
.setting_area .btn_half {
    font-size: 0.9rem;
    line-height: 3rem;
}
.setting_area dt {
    margin:0.4rem auto;
}
.edit_box {
    margin:0 auto 1rem;
}
.edit_box.current {
    padding:0.4rem 0;
}
.setting_area .btn_area {
    padding:1rem 0;
}
.updated_message {
    width:96%;
    margin:0 auto 1rem;
}
.form_box .updated_message {
    width:100%;
}
.device_list {
    width:94%;
    margin:0 auto;
}
.device_list li {
    border-bottom:var(--sub_lightGray) dashed 1px;
    margin:0 auto;
    padding:1rem 0;
}
.device {
    width:94%;
    margin:0 auto;
}
/*-----------------  radio button (s)-----------------*/
.radio_input{
  display: none;
}
.radio_input + label{
  padding-left: 24px;
  position:relative;
  margin-right: 20px;
}
.radio_input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #666666;
  border-radius: 50%;
}
.radio_input:checked + label{
  color: var(--accentColor2);
}
.radio_input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--accentColor2);
  border-radius: 50%;
}
/*-----------------  radio button (e)-----------------*/
/*------------------  profile_page(e)  -------------------*/
/*--------------------  reviewArea(s)  ----------------------*/
#review_ruleArea {
    border-top: #cccccc solid 1px;
    margin: 2rem auto;
    padding: 2rem 2% 0
        ;
}
#review_ruleArea.noBorder {
    border: none;
    padding-top: 0;
}
#review_ruleArea p {
    font-size:0.9rem;
    line-height: 1.2rem;
}
#review_ruleArea p.bold {
    margin: 1rem 0 0.4rem;
}
.btn_review.btn_full {
    display: block;
    font-size: 1rem;
    line-height: 3rem;
    margin: 1rem auto;
}
.btn_review.btn_full img {
    height:1.4rem;
}
.notes_list li .list_disc {
    margin: 0.8rem 0 1.6rem;
    padding-left:0.8rem;
}
.list_disc li {
    list-style: disc;
}
.notes_list li .list_disc li {
    text-indent:0;
}
#reviewSection .list_rule li .list_disc li {
    list-style: disc;
    text-indent: 0;
}
.product_sample_area {
    margin-bottom:1rem;
}
.btn_review {
    display:inline-block;
    font-size:0.7rem;
    line-height: 1.6rem;
    margin-bottom:0.8rem;
    padding:0 0.4rem;
}
.btn_review a {
    color: var(--primaryBlack);
}
.btn_review img {
    display: inline;
    height:1rem;
}
#review_ruleArea .btn_review img {
    height:1.4rem;
}
.review_star {
    display:inline-block;
    width:2rem;
}
.review_list {
    width:94%;
    margin:0 auto;
}
.review_list li {
    border-bottom: var(--sub_lightGray) dotted 1px;
    margin-bottom:0.6rem;
}
.review_list .review_star {
    width:1.2rem;
}
.review_area{
    display: none;
    background-color: #ffffff;
    position: fixed;
    width: 90%;
    left: 5%;
    top: 70px;
    z-index: 1006;
    margin: 0;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 4%;
    padding-right: 4%;
    text-align: center;
}
#overlayPopup {
  display: none;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1005;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
}
.review_area p {
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
}
.review_area textarea {
  display: block;
  width: 90%;
  margin: 10px auto;
}
.review_area #reviewBt {
  clear: both;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.2rem;
  margin: 0 auto;
  padding: 0;
}
#closeReview {
  display: block;
  border: #ffffff solid 1px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%; /* CSS3草案 */
  -webkit-border-radius: 50%; /* Safari,Google Chrome用 */
  -moz-border-radius: 50%; /* Firefox用 */
  position: absolute;
  top: -1rem;
  right: -0.4rem;
  font-size: 2rem;
  text-align: center;
  line-height: 3rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
.review_link {
  cursor: pointer;
}
.notes_list {
    padding-left: 0.8rem;
}
.notes_list li {
    text-indent:-0.8rem;
    font-size:0.9rem;
    line-height: 1rem;
    text-align: left;
    margin-bottom:0.4rem;
}
/*--------------------  reviewArea(e)  ----------------------*/
/*-----------------  paymentOption confirm(s)  --------------*/
.payment_area .step1_2, .pay-Point.payment_area .step1_3 {
    display:none;
}
.pay-Point.payment_area .step1_2 {
    display:block;
}
.step1_2, .step1_3 {
    border: #cccccc solid 1px;
    background-color: #ffffff;
    width: 94%;
    height: 22px;
    vertical-align: middle;
    margin: 0.8rem auto;
    padding: 0;
}
.step1_2 span, .step1_3 span {
    display: inline-block;
    width: 50%;
    font-size: 12px;
    line-height: 22px;
    height: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.step1_3 span {
    width: 33%;
}
.step1_3 .step02 {
    width: 34%;
}
.step1_2 img, .step1_3 img {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    margin: 0;
}
.step1_2 .current, .step1_3 .current {
    color: #ffffff;
    background: #333333 url(../images/stripe_bg.png) left top repeat;
    height: 20px;
    margin: 0;
    padding: 0;
}
.step1_2 .step02, .step1_3 .step02, .step1_3 .step03 {
    text-indent: 8px;
}
.confirm_item {
    width:96%;
    border-collapse: separate;
    border-spacing: 0.2rem;
    margin:0 auto;
}
.confirm_item th {
    color: #333333;
    background-color: var(--subBg_lightGray);
}
.confirm_item th, .confirm_item td {
    font-size:0.9rem;
    padding: 0.2rem 0;
}
.confirm_item .thumb img {
    width: 90%;
    margin:0 auto;
}
.confirm_item .thumb_set {
    padding-top:0.4rem;
}
.confirm_item .thumb_set img{
    width:84%;
    margin:0;
}
.confirm_item .thumb {
    width: 18%;
    text-align: center;
}
.confirm_item .product_info {
    width:38%;
}
.confirm_item .product_info p {
    margin-bottom:0.4rem;
}
.confirm_item .limit_data {
    color: var(--attentionColor);
}
.confirm_item .price_info {
    width: 44%;
    text-align: center;
    float:none;
}
.confirm_item .price {
    color: #333333;
    line-height: 1.4rem;
}
.confirm_item .price .text_red {
    color: #f12000;
}
.select_payment {
    display: flex;
    flex-wrap:wrap;
    width:96%;
    margin:0 auto;
    padding: 0;
}
.select_payment li {
    background: #ffffff url(../images/radio_off.png) 0.2rem 0.9rem no-repeat;
    background-size:1.4rem;
    border-bottom: #cccccc dotted 1px;
    list-style: none;
    float: left;
    text-align: center;
    width: 48%;
    line-height: 3rem;
    cursor: pointer;
    margin: 0 1%;
    padding: 0.5rem 0;
}
.select_payment li.selected {
    background-image: url(../images/radio_on.png);
}
.select_payment li.selected, .select_payment li:hover {
    background-color: #fff6f1;
}
.select_payment li img {
    height: 1.8rem;
    vertical-align: middle;
    margin:0 auto;
}
.select_payment .maintenance {
    display:none;
}
.select_payment .maintePayment {
    position:relative;
    pointer-events: none
}
.select_payment .maintePayment .maintenance {
    display:block;
    background-color: rgba(0,0,0,0.35);
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 52px;
    font-size:18px;
    line-height: 52px;
}
.sub_area, .contents_box .sub_area {
    border-top: var(--sub_lightGray) solid 1px;
    width:94%;
    font-size:0.9rem;
    margin:0 auto 1rem;
    padding:1rem 0;
}
.sub_area h3, .contents_box .sub_area h3, .item_product_page .contents_box .sub_area h4 {
    border-bottom:none;
    border-left: var(--primaryBlack) solid 4px;
    font-size: 0.9rem;
    line-height: 1.4rem;
    width:100%;
    padding-left:0.4rem;
}
.contact_page .sub_area {
    margin-bottom:0;
}
.list_notice li {
    color: var(--secondaryGray);
    font-size:0.8rem;
    line-height: 1rem;
    margin-bottom:0.4rem;
    margin-bottom:0.4rem;
}
.contents_text {
    width:94%;
    margin:0 auto 1rem;
}

.app_area {
    border: var(--sub_lightGray) solid 1px;
    background-color: var(--subBg_lightGray);
    text-align: center;
    width: 94%;
    margin:0 auto 1rem;
    padding:0.4rem 2%;
}
.app_area p {
    margin:0 0 6px;
}
.app_box {
    display: inline-block;
    width: 48%;
    vertical-align: middle;
    margin: 0 0.5%;
}
.app_box img {
  vertical-align: middle;
}
.app_box .appStore {
    height: 41px;
    margin:0 auto;
}
.app_box .googlePlay {
    height: 44px;
    margin:0 auto;
}
.link_app {
    display:block;
}
.link_app img{
    display:inline-block;
}
.link_app_l {
    text-align:right;
}
.link_app_r {
    text-align:left;
}
/*-----------------  paymentOption confirm(e)  --------------*/
/*-------------------  login Entry (s)-------------------*/
input[type=text], input[type=password]{ 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
}
.error_info {
    border: var(--attentionColor) solid 1px;
    background-color: #fff4f4;
    width: 94%;
    margin: 0 auto 1rem;
    padding: 0.8rem 1rem 0;
}
.error_info p {
    font-size:0.9rem;
    margin-bottom:0.4rem;
}
.form_box {
    border-top: var(--sub_lightGray) solid 1px;
    border-bottom: var(--sub_lightGray) solid 1px;
    width: 94%;
    margin: 0 auto 2rem;
    padding: 1rem 3%;
}
.profile_form dd{
    margin:0 0 1rem;
}
.form_box input[type=text], .form_box input[type=password], .form_box input[type=email], .device_list input[type=text], .serial_box input[type=text], .form_box textarea {
    border: var(--sub_lightGray) solid 1px;
    background-color:#ffffff;
    font-size:1rem;
    line-height: 2rem;
    width:100%;
    padding:0.4rem;
}
.form_box .profile_box {
    border-bottom:none;
}
.link_change {
    display:block;
    text-align: right;
    line-height: 2rem;
    padding: 0.4rem 0;
}
#snsID {
    width: 94%;
    margin: 0 auto 2rem;
    padding: 1rem 3%;
}
#snsID img {
    display:inline;
    width:1.8rem;
    margin-right:0.8rem;
}
#snsID .btn {
    width:70%;
    height:2.4rem;
    line-height: 2rem;
    margin-bottom:1rem;
    padding-top:0.1rem;
}
.btn_facebook, a.btn_facebook {
  color: #ffffff;
  background-color: #1877f2;
}
.btn_xBlack, a.btn_xBlack {
  color: #ffffff;
  background-color: #000000;
  text-decoration: none;
}
.btn_linegreen, a.btn_linegreen {
  color: #ffffff;
  background-color: #00B901;
  text-decoration: none;
}
 .signin-button {
     width: 70%;
     cursor: pointer;
     background-color:#000000;
     border-radius:2.4rem;
     height:2.4rem;
     margin:6px auto 1rem;
     padding:0 2.4rem;
}
.signin-button:hover {
    opacity:0.75;
}
.signin-button div {
    outline:none;
}
.signin-button svg {
    width:auto;
    height:36px;
}
.modal-content {
  border-style: solid;
  border-width: 1px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  position: fixed;
  display: none;
  z-index: 1006;
  width: 920px;
  margin: 0;
}
.modal-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1005;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal-open:hover {
  cursor: pointer;
}
.col_full .form_box {
    width:100%;
}
.prof_table {
    border-collapse: separate;
    border-spacing: 0.2rem;
    width:100%;
    margin:0 auto 1rem;
}
.prof_table th {
    border:#ffffff solid 1px;
    background-color: var(--subBg_lightGray);
    width:36%;
    text-align: right;
    padding-right:2%;
}
.prof_table td {
    border: var(--subBg_lightGray) solid 1px;
}
.prof_table th, .prof_table td {
    padding-top: 0.6rem;
    padding-bottom:0.6rem;
}
/*-----------  LINE ID login (s)-----------*/
#line-login {
    height:auto;
    padding: 1.2rem ;
}
#line-login p {
    width: 90%;
    margin: 0 auto 0.4rem;
}
#line-login .btn_area {
    width:90%;
    margin:0 auto;
}
/*-----------  LINE ID login (e)-----------*/
/*-------------------  login Entry (e)-------------------*/
/*-------------------  charge_page (s)-------------------*/
.charge_select .tab_menus, .book_list .tab_menus {
    width: 94%;
    overflow: visible;
    margin:0 auto;
    padding-top: 1rem;
}
.charge_select .tab_menu {
    text-align: center;
    width: 46%;
    height: 4.2rem;
    position: relative;
    border-top-left-radius:0.4rem;
    border-top-right-radius:0.4rem;
    margin: 0 0 0 2%;
    padding: 0 0.5%;
}

.book_list .tab_menu {
    color: var(--primaryBlack);
    border-top-left-radius:0.4rem;
    border-top-right-radius:0.4rem;
    border: var(--primaryBlack) solid 1px;
    background-color: var(--subBg_lightGray);
    border-bottom: var(--primaryBlack) solid 1px;
    width: 46%;
    text-align: center;
    font-size: 0.9rem;
    line-height: 2.4rem;
    margin: 0 0 0 2%;
    padding: 0 0.5%;
}
.book_list .tab_menu.active {
    color: var(--primaryBlack);
    background-color: #ffffff;
    border-bottom: #ffffff solid 3px;
    font-size: 1rem;
}
.charge_select .tab_menu#tab_charge_each {
    color: var(--accentColor);
    border: var(--accentColor) solid 1px;
    border-bottom:var(--primaryBlack) solid 1px;
    background-image: url(../images/tab_addPoint_bg.png);
}
.charge_select .tab_menu#tab_charge_monthly {
    color: #09287a;
    border: #09287a solid 1px;
    border-bottom:var(--primaryBlack) solid 1px;
    background-image: url(../images/tab_autoPoint_bg.png);
}
.charge_select .tab_menu#tab_charge_each.active, 
.charge_select .tab_menu#tab_charge_monthly.active {
    background-image: none;
    border:var(--primaryBlack) solid 1px;
    border-bottom: #ffffff solid 2px;
    background-color:#ffffff;
}
.charge_select .tab_menu .select_title {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.2rem;
    margin: 1rem 0 0.5rem;
}
.charge_select .tab_menu .balloon {
    color: #ffffff;
    border-radius: 4px;
    position: absolute;
    top: -1.1rem;
    right: -0.2rem;
    font-size: 0.8rem;
    line-height: 0.9rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05rem;
    height: 1.6rem;
    margin: 0;
    padding: 0.4rem 0.2rem 0;
}
.charge_select .tab_menus #tab_charge_monthly .balloon {
    background-color: #ff0000;
}
.charge_select .tab_menus #tab_charge_monthly .balloon .arrow {
    color: #ff0000;
}
.charge_select .tab_menus #tab_charge_each .balloon {
    background-color: #6011a3;
}
.charge_select .tab_menus #tab_charge_each .balloon .arrow {
    color: #6011a3;
}
.charge_select .tab_contents, .book_list .tab_contents {
    border-top: var(--primaryBlack) solid 1px;
    margin-top:-1px;
    padding-bottom: 1rem;
}
.book_list .tab_contents {
    padding-bottom:0;
}
.charge_select .tab_content, .book_list .tab_content {
    display:none;
}
.charge_select .tab_content.active, .book_list .tab_content.active {
    display:block;
}
.charge_select .tab_contents h2 {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    line-height: 2rem;
}
.charge_select .tab_contents .description {
    font-size: 0.9rem;
}
.addPoint {
    padding-top:0.4rem;
}
.addPoint .point_info {
    border-bottom: var(--sub_lightGray) solid 1px;
    width:94%;
    margin:0 auto;
}
.addPoint .point_info .text_s {
    float:left;
    margin-bottom:0;
}
.addPoint .point_info .user_point {
    float:right;
    margin-bottom:0;
}
.addPoint [id^="courseArea-"], .addPoint [id^="chargeArea-"] {
    display: none;
}
#charge_each h2 {
    border-bottom:  var(--accentColor) solid 2px;
    padding-top: 1rem;
}
#charge_each .col_full h2 {
    padding-top:0;
}
#charge_monthly h2 {
    border-bottom:  var(--primaryBlack) solid 2px;
    line-height: 1.4rem;
    position: relative;
    padding-top: 0.8rem;
}
#charge_monthly h2 .more_info {
    position:absolute;
    top:0;
    right:0;
    font-size:0.8rem;
}
.charge_select .col_left h3 {
    border-bottom:none;
    border-left: var(--primaryBlack) solid 4px;
    width:94%;
    line-height: 1.4rem;
    margin:1rem auto;
    padding-left:0.4rem;
    padding-left:0.4rem;
}
.charge_select .select_payment {
  margin-bottom: 3rem;
}
.list_point, .list_course {
    width:94%;
    margin:0 auto 1rem;
}
.list_point li {
    border: var(--accentColor) solid 1px;
    width:100%;
    margin-bottom:1rem;
    padding:0.2rem;
}
.list_course li {
    border: var(--primaryBlack) solid 1px;
    width:100%;
    margin-bottom:1rem;
    padding:0.2rem;
}
.list_point table ,.list_course table {
    width:100%;
}
.list_point table th, .list_point table td {
    padding:0.2rem;
}
.list_point .point_name {
    border-left: var(--accentColor) solid 4px;
    width:50%;
}
.list_course .course_name {
    border-left: var(--primaryBlack) solid 4px;
    width:76%;
}
.list_point table p {
    margin-bottom:0;
}
.list_point .btn_point, .list_course .btn_black, .list_course .btn_disabled {
    font-size: 0.8rem;
    line-height: 2.2rem;
    padding: 0 8px;
}
.list_course .point_detail {
    border-top: var(--sub_lightGray) dashed 1px;
    border-right:var(--sub_lightGray) dashed 1px;
    text-align:center;
    width:32%;
}
.list_course .point_detail:last-child {
    border-right:none;
}
.list_course th, .list_course td {
    padding:0.2rem;
}
.list_course p {
    margin-bottom:0;
}
.addPoint .banner_area {
    border:none;
}
/*-------------------  charge_page (e)-------------------*/
/*-------------------------- myBookList(s) ----------------------*/
.mybook_list h2 {
    padding-top: 0.8rem;
}
.default_box .sort_result, .sorting_box .btn_delete {
    float:left;
    width:56%;
}
.default_box .select_button {
    width:100%;
}
.default_box .btn_sorting, .sorting_box .btn_canceled {
    float:right;
}
.select_button .icon_arrow_s {
    position: absolute;
    top: 0.2rem;
    right: 0;
    width: 1.8rem;
    transform: rotate(90deg);
    pointer-events: none;
}
.mybook_list #thumbList li {
    width:30.3%;
    position: relative;
    padding-bottom: 0;
    margin: 0 1.5% 0.4rem;
}
.mybook_list .thumb_list li:nth-child(3n) {
    margin-right:1.5%;
}
.mybook_list #thumbList li a {
    display:block;
}
.mybook_list #thumbList li .thumb_box img {
  margin-top: 1rem;
}
.mybook_list #thumbList li .icon_area {
  position: absolute;
  top: 0;
  right: 0;
  z-index:996;
  text-align: right;
}

#buyBookList .readMore {
  display: block;
  margin: 0 auto;
}
input.checkbox_select[type=checkbox] {
display: none; 
}
.checkStyle {
  position:relative;
  display:block;
}
.buyerInfo .checkStyle {
  display:inline-block;
  vertical-align: top;
}
.checkStyle .thumb_box {
  position:relative;
}
.checkStyle .thumb_box:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 998;
  width: 36px;
  height: 36px;
  border: 2px solid #ffffff;
  background-color:rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.checkbox_select:checked + .thumb_box img{
  opacity:0.75;
}
.checkbox_select:checked + .thumb_box::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 999;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}
.checkbox_select:checked + .thumb_box::before{
  background-color:rgba(54, 164, 49,1);
}

.serialNum_audioList {
  margin-top: 40px;
  padding: 0;
}
.serialNum_audioList li {
  border: #666666 solid 1px;
  background-color: #ffffff;
  list-style: none;
  width: 94%;
  margin: 0 auto;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.serialNum_audioList li .playImg {
  color: var(--primaryBlack);
  line-height: 32px;
  float: left;
  width: 17%;
  text-align: center;
  margin-right: 2%;
}
.serialNum_audioList li .playImg .icon_sound_s {
    display:block;
    border:var(--primaryBlack) solid 2px;
    border-radius:0.4rem;
    width: 3rem;
    margin: 0 auto 0;
}
.serialNum_audioList li .playImg .icon_sound {
    width:2rem;
    margin:0 auto;
}
.serialNum_audioList li p {
    color: var(--accentColor2);
    float: left;
    font-size: 0.9rem;
    line-height: 1.1rem;
    width: 80%;
    margin: 0;
}
#buyBookList .thumb_text_list .text_box {
    width:40%;
    float:left;
    margin-left:2%;
}
#buyBookList .thumb_text_list li .sorting {
    float:right;
    width:28%;
    text-align: right;
}
#buyBookList .thumb_text_list li .sorting .btn_s {
    line-height: 1rem;
    margin-top:50%;
    padding-top:0.4rem;
    padding-bottom:0.4rem;
}
#buyBookList .thumb_text_list li .sorting .btn_green {
    cursor:pointer;
}
.icon_rental_blue {
    display: inline-block;
    color: var(--accentColor2);
    background-color: #ffffff;
    border: var(--accentColor2) solid 1px;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.2rem;
    width: auto;
    text-align: center;
    text-decoration: none;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}
/*-------------------------- myBookList(e) ----------------------*/
/*-------------------------- point_history(s) ----------------------*/
.history_page .user_point {
    font-size: 1.6rem;
    margin-right:0.4rem;
}
.history_page .box_gray {
    padding-top:2rem;
}
.about_point {
    padding:0.8rem 0;
}
.about_point a {
    color: var(--accentColor2);
}
.history_table{
    border-collapse: separate;
    border-spacing: 2px;
    width:94%;
    margin:0 auto 1rem;
}
.history_table th {
    background-color: var(--subBg_lightGray);
}
.history_table th, .history_table td {
    font-size:0.8rem;
    line-height: 1rem;
    padding:0.6rem 0.2rem;
}
.history_table td {
    border-bottom: var(--sub_lightGray) solid 1px;
}
.date_point {
    width:20%;
    text-align: center;
}
.amount_point {
    width:20%;
    text-align: center;
    font-weight: bold;
}
.date_limit {
    width:26%;
    text-align: center;
}
/*-------------------------- point_history(e) ----------------------*/
/*-------------------------- history(s) ----------------------*/
.date_buy {
    width:24%;
}
.howTo_buy {
    width:24%;
}
.amount_buy {
    width:20%;
    text-align: center;
}
.link_to {
    width:94%;
    margin:0 auto 0.8rem;
}
.link_to .arrow_s {
    margin-right:0.2rem;
}
/*-------------------------- history(e) ----------------------*/
/*-------------------------- search(s) ----------------------*/
.search_page .key_li {
    width:94%;
    margin: 0 auto 2rem;
}
.search_page .key_li h3 {
    width:100%;
    border:none;
    font-size:0.9rem;
    line-height: 1.2rem;
}
.search_box {
    border: var(--primaryBlack) solid 1px;
    border-radius:2.4rem;
    vertical-align: middle;
    width: 94%;
    margin: 1rem auto 2rem;
    padding:0.4rem 0.6rem;
}
.search_box input, .search_box .btn_search {
    border:none;
    outline: none;
    background-color:#ffffff;
}
.search_box input {
    font-size:1rem;
    line-height: 2rem;
    width:calc(100% - 30px);
    padding:0 0.4rem;
}
.btn_search {
    width:24px;
    height:2rem;
    vertical-align: middle;
    cursor: pointer;
    padding:0;
}
.key_li a {
    font-size: 0.9rem;
    line-height: 1.8rem;
    min-width: 4rem;
    text-align: center;
    margin: 0 0.2rem 0.8rem 0;
    padding: 0 0.8rem;
}
/*-------------------------- search(e) ----------------------*/
/*-------------------------- news_list(s) ----------------------*/
.list_news, .news_contents {
    width:94%;
    margin:0 auto 2rem;
}
.list_news li {
    border-bottom: var(--sub_lightGray) dashed 1px;
    padding:0.6rem 0;
}
.news_date {
    color: var(--secondaryGray);
    font-size:0.9rem;
    margin-bottom:0.2rem;
}
.news_contents .news_date {
    text-align:right;
}
.list_news .news_title{
    font-size:0.9rem;
    margin-bottom:0;
}
.list_news a {
    color: var(--accentColor2);
}
.news_page .contents_box h2 {
    line-height:1.4rem;
    padding:1rem 0 0.8rem;
}
.charity .contents_box h2 {
    border:none;
}
.news_page .sub_area .thumb_list {
    justify-content: flex-start;
}
.tsogen_awardList li {
    margin-bottom:1rem;
}
/*-------------------------- news_list(e) ----------------------*/
/*-----------------  premimu (s)-----------------*/
.premium_area {
    font-family: "メイリオ", "Meiryo", "Hiragino Sans", "Hiragino Kaku Gothic ProN",sans-serif;
}
.premium_title_section h2 {
    margin-bottom: 0.7rem;
}
.premium_title_sp_image {
    width: 100%;
}
.premium_merit {
    width: 92%;
    max-width: 1024px;
    margin: 0 auto 0;
}
.premium_merit_title {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
    margin-bottom: 10px;
}
.premium_merit_title img {
    width:4%;
    max-width: 18px;
}
.premium_merit_title h3 {
    font-size:1.3rem;
    text-align: center;
    line-height: 1.8rem;
    margin: 5px 0px 0px;
}
.premium_merit_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 0.5rem;
    margin-bottom: 22px;
}
.premium_merit_menu li {
    text-align:center;
    width: 49%
}
.premium_merit_menu img {
    display: block;
    width: 26%;
    max-width: 60px;
    margin: 0 auto;
}
.merit_menu_frame {
    color: #000000;
    border:1px solid var(--primaryBlack);
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(34, 34, 34, 0.15); /* varで指定できず */
    line-height: 1.3em;
    padding: 20px 7px 6px;
    margin: -20px auto 0;
}
.merit_menu_frame img {
    display: block;
    width: 13%;
    max-width: 20px;
    margin-top:5px
}
.premium_area_btn {
    display: block;
    font-size: 1rem;
    width: 90%;
    max-width: 600px;
    padding: 10px 20px;
    margin: 0 auto 0;
}
.premium_merit_contents_section {
    background-color: var(--subBg_lightGray);
    padding-bottom: 32px;
    margin: 32px auto 32px;
}
.premium_merit_contents_section img {
    margin: 0 auto;
}
.premium_merit_contents_section img.merit_img {
    margin-bottom: 16px;
}
.merit_number_img {
    width: 18%;
    max-width: 72px;
    padding: 24px 0 0;
}
.merit_img {
    width: 95%;
    max-width: 448px;
}
.merit_arrow_img {
    width: 7%;
    max-width: 20px;
}
.premium_merit_select .merit_arrow2_img {
    width: 5%;
    max-width: 14px;
    display: inline-block;
    margin-left: 0.4rem; 
}
.premium_merit_contents {
    border-radius: 10px;
    background-color: #ffffff;
    width: 92%;
    max-width: 912px;
    padding: 42px 16px 16px;
    margin: -30px auto 0;
}
.premium_merit_contents h4 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    
}
.premium_merit_contents .underline {
    text-decoration:underline;
}
.premium_merit_select {
    margin-top: 16px;
}
.premium_merit_select p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.2rem;
}
.premium_merit_select a {
    color: #000000;
}
.premium_course_section {
    width: 92%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 40px;
}
.premium_course_table {
    font-size: 0.8rem;
    line-height: 0.9rem;
    text-align: center;
    width: 92%;
    max-width: 912px;
    margin: 0 auto 32px;
}
.premium_course_table th, .premium_course_table td {
    padding: 0.5rem 0.4rem;
}
.premium_course_table th {
    color: #ffffff;
    background-color: #acacac;
    border-left: 1px solid;
    border-right: 1px solid;
}
.premium_course_table td {
    border-left: 1px solid #acacac;
    border-right: 1px solid #acacac;
    border-bottom: 1px solid #acacac;
}
.premium_course_table th.course_table_first {
    border-left: none;
}
.premium_course_table td.course_table_first {
    border-left: none;
}
.premium_course_table th.course_table_last{
    border-right: none;
}
.premium_course_table td.course_table_last{
    border-right: none;
    line-height: 1rem;
}
.premium_course_table td.background_y {
    background-color: #fffae5;
}
.select_1100 p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 8px
}
.select_1100 img {
    width: 70%;
    max-width: 264px;
    margin: 0 auto 16px;
}
.premium_course_note_section {
    width: 92%;
    max-width:1200px;
    margin: 0 auto 80px;
}
.premium_course_note_section h3 {
    border-top: 1px solid #acacac;
    margin-bottom: 5px;
    padding-top: 24px;
}
.premium_course_note {
    font-size: 0.8rem;
    line-height: 1rem;　
}
.premium_course_note li {
    margin-bottom: 0.2rem;
}
.premium_course_note li::before {
    content: "※";
    padding-right: 2px;
}
a.hover-link_none:hover {  /* ホバー時下線無し */
    text-decoration: none;
}
/*-----------------  premium (e)-----------------*/
/*-----------------  guide (s)-----------------*/

.guide_area {
    font-family: "メイリオ", "Meiryo", "Hiragino Sans", "Hiragino Kaku Gothic ProN",sans-serif;
}
.guide_area .underline {
    display: inline-block;
    line-height: 1em;
    border-bottom: solid 1px;
}
.guide_area .introMainImg {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* 会員登録ボタン関係(s) */
.guide_area .btn_entry {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    text-align: center;
    width: 75%;
    max-width: 424px;
    padding: 10px 20px;
    margin: 2rem auto;
}
.guide_area .guide_main .btn_entry {
    margin: 1.5rem auto 2rem;
}
.guide_area .btn_entry_l {
    width: 85%;
}
.guide_area .btn_entry .highlight {
    color: #fff600;
}
/* 会員登録ボタン関係(e) */

.guide_main {
    width: 92%;
    max-width: 1024px;
    margin: 0.5rem auto 2rem;
}
.guide_maintitle {
    font-size: 1.4rem;
    color: var(--kikubonColor);
    text-align: center;
    margin-bottom: 0.6rem;
}
.guide_maincontent {
    text-align: center;
}
.guide_maincontent .lead-text{
    font-size: 1.1rem;
}
.guide_wrapper {
    background-color: var(--subBg_lightGray);
    padding-bottom: 0.2rem;
}
.guide_maintitle.feature {
    padding: 2rem 0 0;
    margin-bottom: 0.8rem;
}
 .guide_wrapper .linear_grad {
    border-radius: 10px;
    width: 90%;
    max-width: 880px;
    padding: 1px;
    margin: 0 auto 1.5rem;    
}
.guide_section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem 4% 0.5rem;
}
.guide_section .linear_grad {
    width: 100%;
    height: 1px;
    padding: 0;
    margin-bottom: 1.2rem;
}
.guide_title {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
}
.guide_content p {
    margin-bottom: 0.6rem;
}
.guide_link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.guide_link a {
    border-radius: 18px;
    padding: 0 1.5rem;
}
.guide_content p.guide_link {
    margin-top: 1rem;
}
.guide_arrow2_img {
    width: 0.7rem;
    display: inline-block;
    margin-left: 0.4rem;
}
.guide_area .image_payment {
    text-align: center;
    margin: 1.5rem 0 0.6rem;
}

.guide_area .logo_payment,
.guide_area .rakutenID {
    display: inline;
    height: 1.6rem;
    margin-bottom: 0.6rem;
}
.guide_area .appBtnArea {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 1rem auto 0.6rem;
}
.guide_area .linkApp {
    height: auto;
    width: 140px; 
}
.guide_area .introImg {
    margin: 0 auto 1.5rem;
    width: 100%;
    max-width: 880px;
}
.guide_end {
    width: 91%;
    max-width: 1024px;
    text-align: center;
    margin: 2rem auto;
}
.guide_cta_wrapper {
    background-color:var(--subBg_lightGray);
    padding : 2rem 0 1.9rem;
    display: flex;
    min-height: 150px;
    align-items: center;
    margin-bottom: 0.6rem;
}
.guide_cta {
    width: 91%;
    max-width: 1024px;
    text-align: center;
    margin: 0 auto;
}
.guide_cta .cta-text {
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0;
}
.guide_cta .cta-text span{
    color: var(--kikubonColor);
}
.guide_cta .cta-note {
    margin-bottom: 0.6rem;
}
.guide_arrow {
    border-style: none;
    width: 17px;
    margin: 1rem auto;
}
    .guide_area .guide_cta .btn_entry {
        margin: 0 auto;
    }
/*-----------------  guide (e)-----------------*/
/*-----------------  review_recommend (s)-----------------*/

.review_recommend .clearfix::after {  /* 31の打消し */
    content: none;
}
.review_recommend .share_box {
    margin: 10px auto 0;
}
.review_recommend {
    background-color: #ffffff;
}
.review_recommend h1 {
    margin: 0;
    padding: 0;
}
.review_recommend .shareSNS_top {
    border: none;
    margin: 4px auto 0;
}
.review_recommend .title_section img {
    display: block;
    width: 100%;
}
.review_recommend ul {
    margin: 1.4vw auto 0;
}
.review_recommend li {
    list-style: none;
}
.review_recommend .tab_area {
    width: 93%;
    padding-top: 0;
    margin: 0 auto;
}
.review_recommend .tab_menus {
    display: flex;
    justify-content: space-between;
    width: auto;
    padding: 0;
}
.review_recommend .tab_menu {
    width: 49%;
    background-image: url("../images/review/review_tub_disabled.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position:right bottom;
    background-color: #ffffff;
    border: none;
    margin: 0;
}
.review_recommend .tab_menu.active.listener {
    background-image: url("../images/review/review_tub_listener.png");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-position:left bottom;
    box-shadow: none;
    margin: 0;
}
.review_recommend .tab_menu.active.staff {
    background-image: url("../images/review/review_tub_staff.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position:right bottom;
    border: none;
    box-shadow: none;
    margin: 0;
}
.review_recommend .tab_menu:hover {
    background-image: url("../images/review/review_tub_hover.png");
    text-shadow: 1px 1px 2px rgba(51, 51, 51, 0.7);
}
.review_recommend .tab_menu p {
    font-size: min(4.4vw, 26px);
    line-height: 6vw;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    margin: 1.4em auto 0.5em;
}
.review_recommend .tab_menu.active p {
    text-shadow: 1px 1px 2px rgba(51, 51, 51, 0.7);
}
.review_recommend .tab_contents {
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0 0 16px;
}
.review_recommend .review_img {
    width: 100%;
    text-align: center;
    border: none;
    padding: 0;
}
.review_recommend .review_img img {
    display: block;
    width: 100%;
    border-radius: 23px;
    margin-bottom: min(3.5vw, 24px);
}

.review_recommend .tab_content {
    display: none;
}
.review_recommend .tab_content.active {
    width: auto;
    display: block;
    text-align:center;
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0;
}
.review_recommend .tab_content.active.listener_about {
    background-image: url(../images/review/review_listener_text_bg.png);
}
.review_recommend .tab_content.active.staff_about {
    background-image: url(../images/review/review_staff_text_bg.png);
}
.tab_content_text {
    font-size: min(3.3vw, 17px);
    padding-top: min(6vw, 42px);
    margin-bottom: min(3vw, 22px);
}
.review_recommend .about_img {
    width: 100%;
}
.review_recommend_banner_area {
    text-align: center;
    margin-top: 24px;
}
.review_recommend_banner {
    display: flex;
    width: 80%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 40px;
}
.review_recommend_banner_area p {
    margin-bottom: 0em;
}
.review_recommend_banner_area a {
    color: #000000;
}
.review_recommend_banner li {
    width: 100%;
}
.review_recommend_banner_text {
    text-align: left;
    padding: 0.6em;
}
.review_recommend_banner_area .mybook {
    text-align: center;
    margin-bottom: 0.4em;
}
.review_recommend_banner_area a:hover {
    text-decoration: none;
    }
/*-----------------  review_recommend (e)-----------------*/
/*-----------------  featured (s)-----------------*/
.featured_page .main_image {
    margin:0 auto;
}
.featured_ichiritsu {
    background: #ffffff url("../images/featured/ichiritsu/bg.png") center top repeat;
}
.featured_page .contents_body {
    margin-bottom:0.6rem;
    padding-bottom:1rem;
}
.featured_page .contents_box {
    width:94%;
    margin:0 auto 1.6rem;
    padding:1rem;
}
.featured_page .contents_box h3 {
    text-align: center;
    width:100%;
    font-size:1.2rem;
    padding-bottom:0.4rem;
}
.featured_page .contents_box.mb0 {
    margin-bottom:0;
}
.featured_page .list_word li {
    display:flex;
    justify-content: space-between;
    flex-wrap:wrap;
}
.word_t {
    width:50%;
}
.word_d{
    width:48%;
}
.featured_page dt{
    font-weight:bold;
}
.featured_page dd{
    margin-bottom:1rem;
}
.featured_arslan{
    background-color:#f7f0df;
}
.featured_arslan h2, .featured_arslan h3, .featured_arslan p, .featured_arslan li {
    color:#4b0e0c;
}
.featured_page .divider {
    margin: 0 auto;
}
.featured_arslan .contents_box {
    border:#4b0e0c solid 1px;
}
.featured_arslan h3 {
    border-bottom:#4b0e0c solid 1px;
}
.featured_arslan .list_text li {
    border-bottom:#4b0e0c dotted 1px;
    margin-bottom:0.8rem;
    padding-bottom:0.8rem;
}

.featured_arslan header h2, .featured_arslan header p {
    width:94%;
    margin:1rem auto;
}

.featured_ichiritsu .contents_box {
    border: #d3e1ef solid 1px;
    background: #e7eef6 url(../images/featured/ichiritsu/contents_bg.png) right top no-repeat;
    background-size:130%;
}
.featured_page .thumb_area img {
    margin:0 auto 1rem;
}
.featured_sanada {
        background:#360907 url(../images/featured/sanada/sanada_mainImg.png) center top no-repeat;
    background-size:100%;
}
.featured_sanada h2 {
    width:48vw;
}
.featured_sanada {
    color:#ffffff;
}
.featured_sanada header p {
    width:65%;
    margin-left:5%;
}
.featured_sanada .product_box {
    width:80%;
    text-align: center;
}
.sanada_list {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 5%;
    margin-bottom:1rem;
}
.sanada_list li {
    background-color:#333333;
    width:32%;
    font-size:0.8rem;
}
.sanada_list li img{
    width:80%;
    margin:0.4rem auto;
}
.sanada_list .btn_s {
    border:#ffffff solid 1px;
    background-color: var(--primaryBlack);
    border-radius: 1.6rem;
    line-height: 1.6rem;
    margin: 0.4rem auto;
    padding: 0 0.8rem;
}
.featured_sanada .share_box {
    background-color:#7c120f;
}
.featured_sanada .contents_box h3 {
    color: #e1c7c7;
    font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "メイリオ", Meiryo, serif;
    border-bottom:none;
    text-align: left;
    font-size: 1.3rem;
    margin: 1rem 0;
}
.featured_sanada .contents_box h3 img {
    display:inline-block;
    width:1.6rem;
    vertical-align: middle;
    margin-right:0.4rem;
}
.cast_list li {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    border-bottom: #7c120f dotted 1px;
    align-items: center;
    margin-bottom: 0.4rem;
    padding-bottom:0.4rem;
}
.cast_list .role {
    width:50%;
}
.cast_list .cv {
    width:48%;
}
.cast_list .cv img {
    display: inline-block;
    width:3rem;
    vertical-align: middle;
    margin-right:0.4rem;
}
.featured_sanada a, .cast_list .cv, .cast_list .cv a {
    color:#fffcc8;
}
.featured_sanada .product_box a {
    color:#ffffff;
}
.featured_oiran {
    background:#ffffff url(../images/featured/oiran/bg.png) center top repeat;
    background-size:100%;
    font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "メイリオ", Meiryo, serif;
}
.featured_oiran .contents_box {
    border: #eeb4bd solid 2px;
    background: #ffffff url(../images/featured/oiran/contents_bg.png) left top no-repeat;
    background-size:100%;
}
.featured_oiran h3 {
    border:none;
}
.featured_page .thumb_list img {
    margin-bottom:0.4rem;
}
/*----------- nanairo(s) --------*/
.featured_nanairo {
    color: #00286d;
    background-color: #ffffff;
    position: relative;
}
.featured_nanairo header h2 {
    margin: 0 auto;
}
.featured_nanairo .contents_body {
    padding-top:0;
}
.featured_nanairo a:hover {
    opacity: 0.75;
}
.featured_nanairo .season01 {
    background: transparent url(../images/featured/nanairo/contentsBg02.png) right top no-repeat;
    background-size:100%;
    text-align: center;
    margin: 0;
    padding: 1.6rem 0;
}
.featured_nanairo .season01 .text_main, .featured_nanairo .storyText {
    color: #00286d;
    font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "メイリオ", Meiryo, serif;
}
.featured_nanairo .season01 .text_main {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}
.featured_nanairo .season01 .highlight {
    color: #ff4498;
}
.featured_nanairo .btn_area {
    margin: 0 auto;
}
.featured_nanairo .btn_area {
    background-color: #daebf8;
    border-radius: 0.4rem;
    text-align: center;
    width: 92%;
    padding: 1rem;
}
.featured_nanairo .btn_area p {
    margin: 0 auto;
}
.featured_nanairo .btn_full {
    display: block;
    color: #ffffff;
    border-color: #ff4498;
    background-color: #ff4498;
    margin: 0 auto 14px;
    padding-bottom: 8px;
}
.featured_nanairo .btn_disabled {
    background-color: #ffa1cb;
}
.featured_nanairo .btn_disabled:hover {
    color: #ffffff;
    opacity: 1;
    cursor: pointer;
}
.featured_nanairo .contents_area {
    min-height: 420px;
    margin-top: 0;
}
.featured_nanairo .contents_area h3 {
    color: #ffffff;
    background: #00286d url(../images/featured/nanairo/titleBg.png) center top no-repeat;
    background-size:100%;
    font-size: 1.6rem;
    line-height: 11vw;
    height: 11vw;
    font-weight: normal;
    text-align: center;
    margin: 0;
}
.featured_nanairo .contents_area.bg01 {
    background: transparent url(../images/featured/nanairo/contentsBg01.png) center 11vw no-repeat;
    background-size:100%;
}
.featured_nanairo .contents_area.bg02 {
    background: transparent url(../images/featured/nanairo/contentsBg02.png) center 11vw no-repeat;
    background-size:100%;
}
.featured_nanairo .contents_area.bg03 {
    background: transparent url(../images/featured/nanairo/contentsBg01.png) center top no-repeat;
    background-size:100%;
}
.featured_nanairo .contents_area {
    padding-bottom: 1rem;
}
.featured_nanairo .contents_box{
    padding:1rem 0;
}
.featured_nanairo #memberList {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
}
.featured_nanairo #memberList li {
    background: transparent url(../images/featured/nanairo/star64.png) left top no-repeat;
    background-size: 20%;
    width: 32%;
}
.featured_nanairo #memberList li:first-child {
    margin: 0 32%;
}
.featured_nanairo #memberList li img {
    display: block;
    border-color: #74a2f2;
    border-width: 2px;
    border-style: solid;
    border-radius: 100%;
    box-shadow: 0.1rem 0.1rem 0 rgb(0, 40, 110);
    width: 92%;
    margin: 0 auto;
}
.featured_nanairo #memberList li .charaName {
    color: #0d9bf5;
    text-decoration: underline;
    font-size: 1rem;
    text-align: center;
    margin: 0.4rem auto 2rem;
}
.featured_nanairo .storyText {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 20px;
}
.featured_nanairo h4 {
    margin: 1rem auto;
}
.featured_nanairo .description {
    text-align: justify;
    margin: 0 auto 1rem;
}
.featured_nanairo .description {
    margin: 0 auto 1.4rem;
}
.featured_nanairo footer {
    color: #ffffff;
    background: #00286d url(../images/featured/nanairo/footerBg.png) center top repeat;
    height: 64px;
    text-align: center;
    margin: 0;
    padding: 20px 0 0;
}
.featured_nanairo footer .copyright {
    color: #ffffff;
    font-size: 0.9rem;
}
.featured_nanairo #linkTopWrap {
    background-color: #f0efff;
}
.featured_nanairo #linkTop {
    display: block;
    text-align: center;
    margin: 20px 0 0;
    padding: 10px 0;
}
.featured_nanairo .contents_box h4 {
    display: flex;
    flex-wrap:wrap;
    font-size: 1.2rem;
    align-items: center;
    margin:0 auto 1rem;
}
.featured_nanairo .contents_box h4 .iconImg {
    width: 4rem;
    margin-right: 0.4rem;
}
.featured_nanairo h4 .text_s {
    font-size:0.9rem;
}
.modal-content {
    border-style: solid;
    border-width: 1px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    position: fixed;
    display: none;
    z-index: 99997;
    width: 94%;
    height:85vh;
    overflow-y: scroll;
    margin: 0;
}
.modal-overlay {
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99996;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal-open:hover {
    cursor: pointer;
}
.featured_nanairo .profBox {
    border-radius: 1rem;
}
.featured_nanairo .profBox h3 {
    width: 100%;
    margin: 0;
}
.featured_nanairo .profImg {
    width: 100%;
    max-width:680px;
    margin:0 auto;
}
.featured_nanairo #prof01 {
    border-color: #324faf;
    background-image: url(../images/featured/nanairo/chara01_textBg.png);
    background-position: left bottom;
    background-size:100%;
}
.featured_nanairo #prof01 .profText {
    background: transparent url(../images/featured/nanairo/chara01_textBg.png) 0 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo #prof02 {
    border-color: #ed2725;
    background-image: url(../images/featured/nanairo/chara02_textBg.png);
    background-position: right bottom;
    background-size:100%;
}
.featured_nanairo #prof02 .profText {
    background: transparent url(../images/featured/nanairo/chara02_textBg.png) right 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo #prof03 {
    border-color: #207820;
    background-image: url(../images/featured/nanairo/chara03_textBg.png);
    background-position: left bottom;
}
.featured_nanairo #prof03 .profText {
    background: transparent url(../images/featured/nanairo/chara03_textBg.png) 0 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo #prof04 {
    border-color: #e5277c;
    background-image: url(../images/featured/nanairo/chara04_textBg.png);
    background-position: right bottom;
}
.featured_nanairo #prof04 .profText {
    background: transparent url(../images/featured/nanairo/chara04_textBg.png) right 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo #prof05 {
    border-color: #bc32c8;
    background-image: url(../images/featured/nanairo/chara05_textBg.png);
    background-position: left bottom;
}
.featured_nanairo #prof05 .profText {
    background: transparent url(../images/featured/nanairo/chara05_textBg.png) 0 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo #prof06 {
    border-color: #2fadb2;
    background-image: url(../images/featured/nanairo/chara06_textBg.png);
    background-position: right bottom;
}
.featured_nanairo #prof06 .profText {
    background: transparent url(../images/featured/nanairo/chara06_textBg.png) right 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo #prof07 {
    border-color: #8a8a0a;
    background-image: url(../images/featured/nanairo/chara07_textBg.png);
    background-position: left bottom;
}
.featured_nanairo #prof07 .profText {
    background: transparent url(../images/featured/nanairo/chara07_textBg.png) 0 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo #prof08 {
    border-color: #2fadb2;
    background-image: url(../images/featured/nanairo/chara08_textBg.png);
    background-position: -80px -40px;
}
.featured_nanairo #prof08 .profText {
    background: transparent url(../images/featured/nanairo/chara08_textBg.png) right 0 no-repeat;
    background-size: 56%;
}
.featured_nanairo .profText {
    background-color: #ffffff;
    background-repeat: no-repeat;
    margin-top: -15vw;
}

.featured_nanairo #prof01 .profText .name, .featured_nanairo #prof01 .profText table td {
    color: #324faf;
}
.featured_nanairo #prof02 .profText .name, .featured_nanairo #prof02 .profText table td {
    color: #ed2725;
}
.featured_nanairo #prof03 .profText .name, .featured_nanairo #prof03 .profText table td {
    color: #207820;
}
.featured_nanairo #prof04 .profText .name, .featured_nanairo #prof04 .profText table td {
    color: #e5277c;
}
.featured_nanairo #prof05 .profText .name, .featured_nanairo #prof05 .profText table td {
    color: #bc32c8;
}
.featured_nanairo #prof06 .profText .name, .featured_nanairo #prof06 .profText table td {
    color: #2fadb2;
}
.featured_nanairo #prof07 .profText .name, .featured_nanairo #prof07 .profText table td {
    color: #8a8a0a;
}
.featured_nanairo #prof08 .profText .name, .featured_nanairo #prof08 .introduce {
    color: #6d2106;
}
.featured_nanairo .profText table {
    width: 94%;
    margin: 0 auto;
}
.featured_nanairo .profText table th {
    color: #333333;
    font-weight: normal;
    vertical-align: text-top;
    width: 100px;
    text-align: right;
}
.featured_nanairo .profText table th, .featured_nanairo .profText table td {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    font-size: 0.9rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}
.featured_nanairo #prof01 .profText table th, .featured_nanairo #prof01 .profText table td {
    border-color: #324faf;
}
.featured_nanairo #prof02 .profText table th, .featured_nanairo #prof02 .profText table td {
    border-color: #ed2725;
}
.featured_nanairo #prof03 .profText table th, .featured_nanairo #prof03 .profText table td {
    border-color: #207820;
}
.featured_nanairo #prof04 .profText table th, .featured_nanairo #prof04 .profText table td {
    border-color: #e5277c;
}
.featured_nanairo #prof05 .profText table th, .featured_nanairo #prof05 .profText table td {
    border-color: #bc32c8;
}
.featured_nanairo #prof06 .profText table th, .featured_nanairo #prof06 .profText table td {
    border-color: #2fadb2;
}
.featured_nanairo #prof07 .profText table th, .featured_nanairo #prof07 .profText table td {
    border-color: #8a8a0a;
}
.featured_nanairo #prof08 .introduce {
    border: #6d2106 solid 1px;
    font-size: 0.9rem;
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}
.featured_nanairo .profText .name {
    font-size: 1.4rem;
    margin: 0 0 1rem 42vw;
}
.featured_nanairo #prof02 .name, .featured_nanairo #prof04 .name, .featured_nanairo #prof06 .name {
    margin: 0 0 1rem 11vw;
}
.featured_nanairo .profText .name .kana {
    font-size: 0.9rem;
}
.featured_nanairo .profText .name .cv {
    font-size: 1.4rem;
}
.featured_nanairo .profText .name .btn_whiteNavy {
    font-size: 14px;
    line-height: 18px;
    padding-left: 0.4rem;
    padding-right: 0;
}
.featured_nanairo .charaMainBox {
    position: absolute;
    width: 48vw;
    left: 0;
    top: 0;
}
.featured_nanairo #prof02 .charaMainBox, .featured_nanairo #prof04 .charaMainBox, .featured_nanairo #prof06 .charaMainBox {
    left: auto;
    right: 10px;
}
.featured_nanairo .charaMain {
    width: 100%;
    max-width:260px;
    margin:20px auto;
}
.featured_nanairo #prof07 .charaMain {
    width:90%;
}
.featured_nanairo .profText .profVoice {
    text-align: right;
    vertical-align: middle;
    padding-top: 0;
}
.featured_nanairo #prof02 .profVoice, .featured_nanairo #prof04 .profVoice, .featured_nanairo #prof06 .profVoice{
    text-align:left;
}
.featured_nanairo #prof08 .name, .featured_nanairo #prof08 .profVoice {
    text-align:center;
    margin:0 auto 1rem;
}
.featured_nanairo .profText .voiceTitle {
    font-size: 10px;
    margin:0 0.4rem;
}
.featured_nanairo .profText .btn_voice {
    border-radius: 0.8rem;
    text-align: center;
    cursor: pointer;
    width: 4rem;
    height: 3rem;
    margin: 0 0 0 0.4rem;
}
.featured_nanairo .profText .btn_voice:hover {
    opacity: 0.75;
}
.featured_nanairo .profText .btn_voice .icon_play, 
.featured_nanairo .profText .btn_voice .icon_stop{
    fill: #ffffff;
    width:3rem;
    margin:0 auto;
}
.featured_nanairo #prof01 .btn_voice {
    background-color: #324faf;
}
.featured_nanairo #prof02 .btn_voice {
    background-color: #ed2725;
}
.featured_nanairo #prof03 .btn_voice {
    background-color: #207820;
}
.featured_nanairo #prof04 .btn_voice {
    background-color: #e5277c;
}
.featured_nanairo #prof05 .btn_voice {
    background-color: #bc32c8;
}
.featured_nanairo #prof06 .btn_voice {
    background-color: #2fadb2;
}
.featured_nanairo #prof07 .btn_voice {
    background-color: #8a8a0a;
}
.featured_nanairo #prof08 .btn_voice {
    background-color: #6d2106;
}
.featured_nanairo div.btn_voice {
    display: inline-block;
    line-height: 1.8rem;
    vertical-align: middle;
}
.featured_nanairo .btn_voice p {
    margin: 0;
}
.featured_nanairo .close {
    position: fixed;
    right: 0.4rem;
    top: 2rem;
    width:3rem;
    height: 3rem;
}
.featured_nanairo .close a {
    display: block;
    background-color: #e5e5e5;
    border-radius: 100%;
    color: #00286d;
    text-align: center;
    font-size: 2rem;
    line-height: 2.6rem;
    font-weight: bold;
    width:3rem;
    height: 3rem;
}
.featured_nanairo .close a:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: #00286d;
    text-decoration:none;
}
.featured_nanairo .twitterBox {
    width: 50%;
    margin: 0 auto;
}
.featured_nanairo .copyright {
    text-align: center;
}
/*------------- nanairo(e) ------------*/
/*-----------------  featured (e)-----------------*/
/*--------------  online Shopping (s)-------------*/
.item_list_page .contents_body, .item_product_page .contents_body, .cart_page  .contents_body, .item_order_page .contents_body {
    padding-top:0;
}
.item_list_page header, .item_product_page header, .cart_page header, .item_order_page header {
    background-color: #dff3ff;
    border-bottom: var(--accentColor2) solid 2px;
    margin: 0 0 1.2rem;
}
.item_list_page h2, .item_product_page h2, .cart_page h2, .item_order_page h2 {
    font-size: 1.2rem;
    line-height: 2rem;
    position: relative;
    width:100%;
    margin-bottom:0;
    padding: 0.8rem 0.6rem 0.4rem;
}
.item_list_page h2 .point_deal, .item_product_page h2 .point_deal {
    border: #ff0000 solid 2px;
    background-color: #ffffff;
    transform: skewX(-20deg);
    font-size: 0.9rem;
    line-height: 1.4rem;
    width:200px;
    max-width:56%;
    position: absolute;
    top: 0;
    right: 1rem;
    padding: 0.2rem 0.4rem;
}
.item_list_page .point_deal img, .item_product_page .point_deal img  {
    width:1.6rem;
}
.important_info, .textbanner_area {
    width:94%;
    margin:0 auto 1rem;
}
.important_info .title {
    font-weight: bold;
    margin-bottom:0.4rem;
}
.item_cdbox .important_info a {
    color: var(--accentColor2);
    text-decoration: underline;
}
.item_list {
    display:flex;
    flex-wrap:wrap;
    justify-content: flex-start;
    width:94%;
    margin:0 auto 1rem;
}
.item_list li {
    width:48%;
    border: var(--sub_lightGray) solid 1px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    margin:0 1% 1rem;
}
.item_list li .thumb_box {
    position: relative;
    margin-bottom:0.6rem;
}
.item_list li .text_box {
    padding:0.6rem 0.4rem;
}
.item_list li .text_box p {
    margin-bottom:0.4rem;
}
.item_list li .item_title {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.circle {
    color: #ffffff;
    background-color:var(--attentionColor);
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    font-size:0.9rem;
    text-align: center;
    position: absolute;
    top: -8px;
    right: -4px;
    margin: 0 auto;
    padding-top: 0.8rem;
}
.circle.restocked {
  background-color:var(--attentionColor);
}
.circle.limited {
  background-color: var(--primaryBlack);
}
.circle.reserve {
  background-color: var(--accentColor2);
}
.circle.restockedSoon {
  background-color: var(--accentColor2);
  line-height: 16px;
  font-size:12px;
  height:53px;
  padding-top: 7px;
}
.btn_cart {
    display:block;
    color:#ffffff;
    background-color: var(--accentColor2);
    margin:0 auto;
}
.item_main .btn_cart {
    margin:0.6rem auto 1.6rem;
}
.stock, .item_list li .item_price {
    text-align:center;
}
.important_info {
    border: var(--attentionColor) solid 1px;
    padding:0.8rem 0.4rem 0;
}
.img_box {
    display:flex;
    flex-wrap:wrap;
    border:var(--sub_lightGray) solid 1px;
    width:94%;
    margin:0 auto 1rem;
}
.photo_box {
    width:83.4%;
}
.photo_thumb_list {
    width:16.6%;
    background-color:var(--subBg_lightGray);
    margin-bottom:0;
}
.item_cdbox .photo_thumb_list {
    width:13.8%;
}
.item_main .title {
    font-size:1.2rem;
}
.item_main .title .sub_text {
    font-weight:normal;
}
.item_main .price {
    text-align:right;
    width:94%;
    margin-left:auto;
    margin-right:auto;
}
.item_main .stock_message, .item_main .select_button {
    display:inline-block;
}
.item_main .select_button {
    width:120px;
}
.item_main .stock {
    margin-bottom:1rem;
}
.item_main .list_notice {
    width:94%;
    margin:0 auto 1rem;
}
.item_detail {
    width:94%;
    margin:0 auto 1rem;
}
.item_detail h4 {
    border-bottom: var(--sub_lightGray) solid 1px;
}
.cart_page .icon_done {
    display:inline-block;
    width:2rem;
}
.cart_page .message p {
    margin-bottom:0.6rem;
}
.cart_table {
    border-collapse: separate;
    border-spacing: 2px;
    width:94%;
    margin:0 auto 1rem;
}
.cart_page .item_img {
    width:19%;
    padding-right:1%;
}
.cart_page .item_name {
    width:23%;
}
.cart_page .item_name .remove {
    color:var(--accentColor2);
    cursor: pointer;
}
.cart_page .price {
    width:18%;
}
.cart_page .number {
    width:18%;
}
.cart_table th, .cart_table td {
    border-bottom:var(--primaryBlack) dotted 1px;
    font-size:0.8rem;
    line-height: 1rem;
    padding:0.4rem 0;
}
.cart_table .select_button {
    width: calc(100% - 1.4rem);
}
.cart_table .select_button select {
    font-size:0.8rem;
    padding:0.2rem 0.1rem;
}
.cart_table .select_button .icon_arrow_s {
    width:1.2rem;
    top:0.6rem;
}
.cart_table .sub_total td {
    border-top:var(--primaryBlack) solid 1px;
    text-align: right;
}
.cart_page input[type=submit] {
    border:none;
}
.cart_page .btn_area p {
    width:94%;
    margin:1rem auto;
}
.cart_page .no_contents {
    text-align:center;
}
.to_cart {
    color:#ffffff;
    background-color: var(--accentColor2);
}
.to_cart p {
    text-align:right;
    margin-bottom:0;
    padding:0.4rem;
}
.to_cart a:hover {
    text-decoration:none;
}
.to_cart svg {
    display:inline-block;
    width:24px;
}
.to_cart .icon_btn_cart {
    display: inline-block;
    position: relative;
    width:2.4rem;
    text-align: left;
    margin-left:0;
}
.to_cart .icon_btn_cart .icon_number {
    top:1px;
}
.item_order_page .buyer_info {
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
    margin:0 auto;
}
.item_order_page .buyer_info th {
    background-color: #f5f5f5;
    font-size:0.8rem;
    width: 28%;
}
.item_order_page .buyer_info th, .item_order_page .buyer_info td {
  padding: 0.4rem;
}
.item_order_page .buyer_info td {
  border: #e5e5e5 solid 1px;
}
.item_order_page .buyer_info .gender th, .item_order_page .buyer_info td {
    padding:0.8rem 0.4rem;
}
.select_button.select_year {
    width:30%;
}
.select_button.select_month, .select_button.select_day {
    width:20%;
}
.item_order_page .buyer_info .add input {
  display: inline-block;
  margin-bottom: 0.4rem;
}
.item_order_page .buyer_info td.tel input {
  display: inline-block;
  width: 28%;
}
.item_order_page .radio_input + label {
    padding-left:1.6rem;
}
.item_order_page .checkStyle {
    display:inline;
}
.item_order_page .btn_area {
  margin: 1rem auto 2rem;
}
.item_order_page .btn_area .btn_buy {
  font-size: 1rem;
  line-height: 1.4rem;
    width:94%;
  padding: 0.4rem 0;
}
#itemConfirm {
  margin-bottom: 1.2rem;
}
.item_order_page .form_box{
    padding:1rem 0;
}
.item_order_page .form_box input[type=text]{
    margin-bottom:0.4rem;
}
.item_page .itemInputForm .inputBox #male {
  margin-right: 0.2rem;
}
.item_page  .itemInputForm .inputBox #female {
  margin-right: 0.2rem;
  margin-left: 1rem;
}
.item_page .itemInputForm .inputBox li {
  margin-bottom: 0.9rem;
}
.item_page  .itemInputForm .inputBox li input {
  margin-left: 1rem;
  margin-right: 1rem;
}
.item_page  .itemInputForm .inputErr {
  display: block;
  margin-left: 1rem;
}
.item_page  .itemInputForm .inputBox li img {
  height: 2.2rem;
}
.item_page  .itemInputForm .note {
  color: var(--secondaryGray);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.item_page  .itemInputForm table th {
  background-color: var(--subBg_lightGray);
  width: 28%;
}
.item_page  .itemInputForm table td {
    font-size:0.9rem;
    width: 64%;
}
.order_table {
    width:94%;
    border-collapse: separate;
    border-spacing: 2px;
    margin:0 auto 1rem;
}
.order_table th {
  background-color: var(--subBg_lightGray);
    font-size:0.8rem;
}
.order_table th, .order_table td {
  padding: 0.4rem 0.2rem;
}
.order_table td {
  border-bottom:  var(--subBg_lightGray) solid 1px;
    font-size:0.9rem;
}
.order_table .sub_total td {
  border-top: var(--primaryBlack) solid 1px;
  text-align: right;
}
.order_table .discount_price td {
  color: var(---attentionColor);
  text-align: right;
}
.order_table .shipping td {
  text-align: right;
}
.order_table .total td {
  border-top: var(--primaryBlack) solid 2px;
  text-align: right;
  font-weight: bold;
}
.order_table .present_point td {
  text-align: right;
  font-weight: bold;
}
.order_table .item_name {
  width: 40%;
}
.confirm_info {
    width:94%;
    margin:0 auto 2rem;
}
.confirm_info .form_box {
    border:none;
    padding: 1rem 0 0;
}

.message_box .present_point {
    background-color: var(--subBg_lightGray);
    text-align: center;
    font-size: 0.9rem;
    margin: 0 auto 1rem;
    padding:1rem;
}
.message_box .present_point .point {
    font-size:1.4em;
}
.message_box {
    border: var(--sub_lightGray) solid 1px;
    background-color: #ffffff;
    text-align: left;
    margin: 1.2rem auto;
    padding: 1rem;
}
.message_box .note {
  color: var(--secondaryGray);
  font-size: 0.9rem;
}
.item_order_page .message_text{
    text-align:left;
}
.success_message .text_l.order_no {
    color:var(--primaryBlack);
}
/*------------  cdBox (s)-----------*/
.item_info h2{
    text-align:center;
}
.tokuten_point {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    width:94%;
    margin:0.4rem auto;
}
.tokuten_point a {
    width:31%;
}
.tokuten_point img {
    margin:0.6rem auto;
}
.item_cdbox .btn_area form {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
}
.item_cdbox .select_button {
    width:30%;
    margin-bottom:1rem;
}
.item_cdbox .btn_area .btn {
    margin-bottom:0.6rem;
}
.item_cdbox dd {
    margin-bottom:1rem;
}
.item_cdbox .box_gray .btn_black_ol {
    margin-bottom:0.4rem;
}
/*------------  cdBox (e)-----------*/
/*--------------  online Shopping (e)-------------*/
/*------------------  retire (s)------------------*/
.about_premium {
    width:94%;
    margin:0 auto;
}
.about_premium h3 {
    width:100%;
}
.retire_page .contents_box h3 {
    line-height:150%;
    text-align: center;
    padding-top: 2rem;
}
.retire_page .contents_box .not_premium_entry h3 {
    padding-top: 0;
}
.premium_merit_menu {
    margin-bottom: 3rem;
}
.retire_box .btn_area {
    margin:2rem auto 3rem;
}
.retire_box .btn {
    margin-bottom:1rem;
}
.retire_page .btn_half {
    line-height:3rem;
    font-size:0.9rem;
}
.retire_confirm .box_gray {
    border-radius:0;
}
.retire_course_list p {
    margin-bottom:0.4rem;
}
.important_info .btn_area {
    margin-bottom:1rem;
}
.retire_page .thumb_list li, .retire_page .thumb_list li:nth-child(3n) {
    width:32%;
    margin:0 auto 1rem;
}
/*------------------  retire (e)------------------*/
/*------------------  presentPrivileges (s)------------------*/
.privileges .box_gray .icon_present {
    width:120px;
    margin:0 auto;
}
.present_list {
    width:94%;
    margin:0 auto 1rem;
}
.present_list li {
    border: var(--sub_lightGray) solid 1px;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    margin-bottom:1rem;
    padding:0.6rem;
}
.privileges_limit .present_list li {
    background:#ffffff url(../images/present_object01_new.png) left top no-repeat;
    background-size:8%;
}
.privileges_continue .present_list li {
    background:#ffffff url(../images/present_object02_new.png) left top no-repeat;
    background-size:8%;
}
.present_list .thumb_box {
    width:24%;
}
.present_list .text_info {
    width:72%;
}
.present_list p {
    font-size:0.9rem;
    margin-bottom:0.1rem;
}
.present_list p.title {
    font-size:1rem;
    font-weight:bold;
}
.present_list .btn_area {
    text-align:right;
}
.present_list .btn_s {
    align-items:center;
}
.present_list .icon_present {
    display:inline-block;
    width:1.4rem;
    margin-bottom: 0.2rem;
}
.privileges_continue h2 {
    border:none;
}
.privileges p.box_gray {
    text-align:center;
    
}
/*------------------  presentPrivileges (e)------------------*/
/*------------------  form_page (s)------------------*/
.serial_box dt, .post_form dt, .form_box dt {
    margin-bottom:0.8rem;
}
.serial_box dd, .post_form dd, .form_box dd {
    margin-left:0;
    margin-bottom:2rem;
}
.form_box textarea{
    width:100%;
}
.post_form .dd_radio .radioButton, .post_form .dd_checkbox .checkBox {
  display: inline-block;
  margin: 0.4rem 1.2rem 0.4rem 0;
}
.form_page .btn_area {
    margin-bottom:2rem;
}
.radio_area {
    margin-bottom:1rem;
}
.form_page a {
    color:var(--accentColor2);
}
.radio_input {
    margin-right:0.4rem;
}
/*------------------  form_page (e)------------------*/
/*-----------------  doc_page (s)-----------------*/
.doc_page .box_gray th {
    text-align: right;
    font-size:0.8rem;
    vertical-align: top;
    width:40%;
}
.doc_page .box_gray td {
    font-size:0.9rem;
    vertical-align: top;
}
.doc_page h3 {
    border:none;
    margin-bottom:0.4rem;
}
.doc_page dl {
    width:94%;
    margin:0 auto 1rem;
}
.doc_page dt {
    margin-bottom:0.4rem;
}
.doc_page dd {
    font-size:0.9rem;
    margin-bottom:1rem;
}
.doc_page .faq_list {
    margin-bottom:3rem;
}
.faq_list dt {
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    background-color: var(--subBg_lightGray);
    align-items: center;
    margin-bottom:0.8rem;
    padding: 0.4rem;
}
.faq_list dd {
    margin-left:0;
}
.faq_list .q {
    width:84%;
}
.faq_list .expand {
    position: relative;
    cursor: pointer;
    height: 2rem;
    width: 2rem;
    margin: 0 4px 0 6px;
}
.faq_list .expand span {
    background-color: var(--primaryBlack);
    height: 2px;
    width: 1rem;
    position: absolute;
    right: 0;
    border-radius: 2px;
}
.faq_list .expand span:nth-child(1) {
    top: 1rem;
    transition: all 0.6s;
}
.faq_list .expand span:nth-child(2) {
    top: 1rem;
    transform: rotate(90deg);
    transition: all 0.1s;
}

.faq_list .active .expand span:nth-child(1) {
    top: 1rem;
    transform: rotate(45deg);
}
.faq_list .active .expand span:nth-child(2) {
    top: 1rem;
    transform: rotate(-45deg);
}
.faq_list a {
    color:var(--accentColor2);
    text-decoration: underline;
}
.faq_list ol {
    padding-left:1.2rem;
}
.faq_list .image_payment {
    text-align:center;
    margin:1rem auto;
}
.faq_list .image_payment img {
    display:inline-block;
    height: 1.4rem;
    margin: 0.4rem;
}
.faq_list .image_area {
    text-align: center;
    margin:1rem auto;
}
.faq_list .linkApp img {
    display:inline-block;
    height:2.4rem;
    margin:0.6rem;
}
.list_value li{
    border: var(--sub_lightGray) solid 1px;
    margin-bottom:1rem;
}
.list_value li img {
    width:30%;
    max-width:117px;
}
.list_value li p {
    margin-bottom:0;
    padding:0.4rem 1rem;
}
.doc_page .main_table {
    border-collapse:separate;
    border-spacing: 2px;
    width: 94%;
    margin:0 auto 3rem;
}
.doc_page .main_table th, .doc_page .main_table td {
    font-size:0.9rem;
    padding:0.4rem;
} 
.doc_page .main_table th {
    background-color: var(--subBg_lightGray);
    width:38%;
}
.doc_page .main_table td {
    border:var(--subBg_lightGray) solid 1px;
}
/*-----------------  doc_page  (e)-----------------*/

/*-----------------  popup_info (s)-----------------*/
body.open_popup_info {
    overflow: hidden;
}
.bg_popup_info {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index:1005;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
body.open_popup_info .bg_popup_info {
    opacity: 1;
    visibility: visible;
}
#confettiCanvas {
    display: block;
    width: 100vw;
    height: 100vh;
   margin:0 auto;
}
.popup_info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80%;
    background-color: #ffffff;
    border-radius: 0.8rem;
}

.popup_info_title {
    position: relative;
    text-align: center;
}
.popup_info img {
    display: block;
    width:100%;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
}
.popup_info_close {
    position: absolute;
    top: 10px;
    right: 0;
    width: 36px;
    height: 36px;
    transform: translateY(-100%);
    cursor: pointer;
    background-color: rgba(0,0,0,0.5);
    border-radius: 100%;
}
.popup_info_close::before,
.popup_info_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    height: 2px;
    background-color: #ffffff;
    content: "";
}
.popup_info_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.popup_info_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.popup_info_content {
    padding: 1rem 1.5rem;
    text-align: center;
}
.btn_popupLink{
    background-color:#000000;
    line-height: 2.6rem;
    margin: 0 auto 0.4rem;
}
.popup_info_content p {
    line-height: 1.6rem;
    text-align: justify;
    margin-top:0;
}
.new_audiobook_info {
    background: transparent url("../images/popupBg01.png") center top no-repeat;
    background-size: cover;
    width: 98%;
}
.new_audiobook_info h2 {
    color: #ffffff;
    text-shadow: 0 0 12px #ff6600;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 2rem 0 0;
}
.new_audiobook_info ul {
    display:flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin:0 auto 40px;
}
.new_audiobook_info li {
    width:30%;
    background-color:#ffffff;
    border-radius: 0.4rem;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    list-style: none;
    padding: 0.8rem 0;
    margin:auto;
}
.new_audiobook_info .thumb_box {
    width:90%;
    margin:0 auto 0.8rem;
}
.new_audiobook_info .thumb_box img {
    border-radius: 0;
}
.new_audiobook_info p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0.2rem 0.6rem;
}
.new_audiobook_info a {
    color:#000000;
}
.new_audiobook_info .btn_black {
    width:80%;
    text-align: center;
    font-size:0.8rem;
    line-height: 1.4rem;
    margin: 0 auto;
}
/*-----------------  popup_info (e)-----------------*/
/*-------------------------- animation(s) -----------------------------*/
@keyframes fadein {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@keyframes fadein_up {
    0% {
        opacity: 0;
        bottom:-5rem;
    }
    100% {
        opacity: 1
    }
}
@keyframes fadeout_up {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top:-260px;
    }
}
@keyframes fadeout_down {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        bottom:-5rem;
    }
}

/*-------------------------- animation(e) -----------------------------*/
.fixed_banner {
    display: none;
    background-color: rgba(0,0,0,0.5);
    position: relative;
    bottom:36px;
    padding: 8px 0;
    animation: fadein_up 1.5s forwards;
}
.fixed_banner.show_fBan {
    display:block;
}
#fBan.hideBanner{
    display: none;
}
.fixed_banner img {
    display: block;
    width: 96%;
    max-width: 640px;
    margin: 0 auto;
}
.fixed_banner a#closeBanner {
    display: block;
    color: #ffffff;
    background-color: #333333;
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.9rem;
    line-height: 1.4rem;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0.2rem;
}
/*-------- cookie(s) --------*/
.cc-revoke, .cc-window, .cc-color-override-357797827.cc-window {
    z-index:1000;
}
.cc-window.cc-bottom {
    bottom:4.4rem;
}
.non_fixedNav .cc-window.cc-bottom {
    bottom:0;
}
.cc-window .cc-message {
    font-size:0.9rem;
    line-height: 1.4rem;
}
.cc-revoke.cc-left {
    left:2rem;
    bottom:67px;
    font-size:0.7rem;
    animation: fadein_up 0.8s forwards;
}
.non_fixedNav .cc-revoke.cc-left {
    bottom:0;
}
.cc-floating .cc-compliance>.cc-btn {
  font-size:0.9rem;
}
@media (min-width: 480px) {
    .hapiradi_logo {
        width: 150px;
    }
    .hapiradi_description p {
        width: calc(100% - 170px);
        font-size: 1rem;
    }
    .featured_nanairo .profText table {
        width:64%;
        margin-left:30%;
    }
    .featured_nanairo #prof02 .profText table, .featured_nanairo #prof04 .profText table, .featured_nanairo #prof06 .profText table {
        margin-left:10%;
    }
}
@media (max-width: 360px) {
    html {
        font-size: 88%;
    }
    .hamburger {
        width:36px;
        height:36px;
        margin:0 4px;
    }
    .hamburger span {
        left:8px;
        width:20px;
    }
    .hamburger span:nth-child(1) {
        top:12px;
    }
     .hamburger span:nth-child(2) {
        top:18px;
    }
     .hamburger span:nth-child(3) {
        top:24px;
    }
    .logo_kikubon {
        width:80px;;
    }
    .icon_btn {
        width:36px;
        margin:0;
    }
    .icon_text{
        font-size:7px;
    }
}
@media (min-width: 768px) {
    .sec_slider{
        margin-bottom:1rem;
    }
    .success_message {
        padding:36px 3% 18px;
    }
    .message_text {
        text-align:center;
    }
    .slide_menu{
        padding-left:3rem;
        padding-right:3rem;
    }
    .box_gray {
        padding : 16px;
    }
    .btn_full {
        width:80%;
    }
    .box_gray .btn_full {
        width:70%;
    }
    .login_prof {
        padding:1.6rem 0;
    }
    .today {
        width:13%;
    }
    .todays_doc {
        width:50%;
        float:left;
    }
    .todays_book {
        width:48%;
        float:right;
    }
    .todays .icon_book {
        display:inline-block;
        margin:2px auto 4px;
    }
    .swiper_list .swiper-slide {
        width:160px;
    }
    #seriesSwiper .swiper-slide, #featureSwiper .swiper-slide {
        width:340px;
    }
    .pickup_nav ul {
        width: 96%;
        margin: 0 auto 1rem;
    }
    .pickup_nav ul li {
        width:30%;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    .pickup_nav ul li.line2 {
        line-height: 1.2rem;
    }
    .pickup_nav ul li.line2 a {
        padding-top : 0.4rem;
    }
    .premium_doc {
        font-size:1rem;
        padding-top:3rem;
    }
    .thumb_list li {
        width:20.5%;
        margin-right:6%;
    }
    .thumb_list li:nth-child(3n){
        margin-right:6%;
    }
    .thumb_list li:nth-child(4n){
        margin-right:0;
    }
    .thumb_text_list {
        display:flex;
        flex-wrap:wrap;
    }
    .thumb_text_list li {
        width: 46%;
        margin-left:auto;
        margin-right:auto;
    }
    .author_list li {
        width:32%;
    }
    .author_list li:nth-child(even){
        margin-right:2%;
    }
    
    .author_list li:nth-child(3n){
        margin-right:0;
    }
    .reader_list li {
        width:19%;
        margin-right:1.25%;
    }
    .reader_list li:nth-child(3n) {
        margin-right:1.25%;
    }
    .reader_list li:nth-child(5n) {
        margin-right:0;
    }
    .featured_list {
        display:flex;
        flex-wrap:wrap;
    }
    .featured_list li {
        width:32%;
        margin: 0 2% 2rem 0;
    }
    .featured_list li:nth-child(3n){
        margin-right:0;
    }
    .seriesDoc {
        padding:1rem;
    }
    .col_full .contents_box {
        padding-bottom:30px;
    }
    .col_full .contents_box .thumb_list li {
        width:15%;
        margin-right:2%;
    }
    .col_full .contents_box .thumb_list li:nth-child(3){
        margin-right:2%;
    }
    .col_full .contents_box .thumb_list li:nth-child(4n){
        margin-right:2%;
    }
    .col_full .contents_box .thumb_list li:nth-child(6n){
        margin-right:0;
    }
    .book_info .thumb_box {
        width:200px;
    }
    .book_info .text_box {
        width: calc(100% - 4% - 200px);
    }
    .book_info .thumb_set {
        padding:28px 22% 0 0;
    }
/*-----------------  paymentOption confirm(s)  --------------*/
    .confirm_item .thumb_set {
        padding-top:1rem;
    }
    .confirm_item .product_info {
        width:37%;
        padding-left:0.5%;
        padding-right:0.5%;
    }
    .confirm_item .thumb_set img {
        width:81%;
    }
    .col_full .btn_full {
        width:60%;
        line-height: 3.4rem;
    }
    .col_full .btn_full.line2 {
        line-height: 1.1rem;
        padding:0.6rem 0;
    }
/*-----------------  paymentOption confirm(e)  --------------*/
/*-------------------  charge_page (s)-------------------*/
    .charge_select .tab_menu {
        width:36%;
    }
    .charge_select .tab_menu .balloon {
        right:-0.6rem;
    }
    .addPoint {
        position:relative;
    }
    #charge_each h2 {
        padding-top:1.4rem;
        padding-bottom:0.6rem;
    }
    #charge_monthly h2 .more_info {
        position: relative;
        margin-left:8px;
    }
    .addPoint .point_info {
        border:none;
        background-color: var(--subBg_lightGray);
        border-radius:8px;
        width:36%;
        position:absolute;
        top:20px;
        right:3%;
        padding: 4px 8px;
    }
    .addPoint .point_info .text_s {
        font-size:14px;
        margin-top: 8px;
    }
    .pointName .d_md_inline_block, .course_name .d_inline_block {
        margin-left:0.8rem;
    }
    .list_point .btn_point, .list_course .btn_black, .list_course .btn_disabled {
        padding:0 16px;
    }
/*-------------------  charge_page (e)-------------------*/
/*-------------------  profile_page (s)-------------------*/
    .setting_change .col_full .form_box {
        width:80%;
    }
    .edit_box {
        margin:10px auto 30px;
    }
/*-------------------  profile_page (e)-------------------*/
/*-------------------------- myBookList(s) ----------------------*/
    #buyBookList .thumb_text_list li, #rankingPage .thumb_text_list li {
        width:100%;
        margin: 0 auto 0.8rem;
    }
    .mybook_list #thumbList li {
        width: 20.5%;
        margin:0 2.2% 1rem;
    }
    .default_box .sort_result, .sorting_box .btn_delete {
        width:40%;
    }
    #buyBookList .thumb_text_list .thumb_box {
        width:18%;
    }
    #buyBookList .thumb_text_list .text_box {
        width:50%;
    }
    #buyBookList .thumb_text_list li .sorting .btn_s {
        line-height: 2.2rem;
        margin-top: 34%;
    }
    .serialNum_audioList li p {
        font-size:18px;
        line-height: 150%;
    }
    #rankingPage .thumb_text_list .thumb_box {
        width:16%;
    }
    #rankingPage .thumb_text_list .text_box {
        width:80%;
    }
/*-------------------------- myBookList(e) ----------------------*/
/*-------------------------- point_history(s) ----------------------*/
    .history_table th, .history_table td {
        font-size:16px;
        line-height: 24px;
    }
    .history_table .detail_point {
        font-size:14px;
        line-height: 20px;
    }
/*-------------------------- point_history(e) ----------------------*/
/*-------------------------- search(s) ----------------------*/
    .search_box input {
        width:calc(100% - 36px);
    }
/*-------------------------- search(e) ----------------------*/
/*-------------------------- news(s) ----------------------*/
    .news_page .sub_area h3 {
        font-size:1rem;
        margin:1rem auto 2rem;
    }
    .tsogen_awardList {
        display:flex;
        flex-wrap:wrap;
        justify-content: space-between;
    }
    .tsogen_awardList li {
        width:48%;
    }
    .tsogen_text_list li {
        width:100%;
    }
/*-------------------------- news(e) ----------------------*/
/*-----------------  premimu (s)-----------------*/
    .premium_merit_title {
        margin-top: 32px;
        margin-bottom: 20px;
    }
    .premium_merit_title img {
        max-width: 20px;
    }
    .premium_merit_title h3 {
        font-size: 1.8rem;
        margin: 5px 8px 0px;
    }
    .premium_merit_menu {
        margin-bottom: 32px;
    }
    .premium_merit_menu li {
        width: 24%;
    }
    .merit_menu_frame {
        padding: 24px 7px 14px;
    }
    .premium_area_btn {
        font-size: 1.3rem;
        padding: 15px 20px;
    }
    .premium_merit_contents {
        text-align: center;
    }
    .premium_merit_contents_section {
        padding-bottom: 48px;
        margin: 40px auto 40px;
    }
    .merit_number_img {
        padding: 32px 0 0;
    }
    .premium_merit_contents h4 {
        font-size: 1.5rem;
    }
    .premium_merit_contents_section img.merit_img {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .premium_course_section {
        margin-top: 48px;
        margin-bottom: 48px;
    }
    .premium_course_table {
        font-size: 1em;
        line-height: 1.1rem;
        margin: 0 auto 40px;
    }
    .premium_course_table th, .premium_course_table td {
        padding: 0.8rem 0.4rem;
    }
    .premium_course_table td.course_table_last {
        line-height: 1.3rem;
    }
    .background_y .font_size {
        font-size: 1.2rem;
    }
    .select_1100 p {
        font-size: 1.3rem;
    }
    .select_1100 img {
        max-width: 520px;
    }
    .premium_course_note_section {
        margin: 0 auto 80px;
    }
/*-----------------  premium (e)-----------------*/
/*-----------------  guide (s)768-----------------*/
    .guide_main {
        margin: 3.8rem auto 4.2rem;
    }
    .guide_maintitle {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }
    .guide_maintitle.feature {
        padding: 3.6rem 0 0;
        margin-bottom: 1.6rem;
    }
    .guide_title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .guide_title h4 {
        line-height: 140%;
    }
    .guide_maincontent .lead-text {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    .guide_section {
        padding: 2.4rem 5% 2rem;
    }
    .guide_section .linear_grad {
        margin-bottom: 1.5rem;
    }
    .guide_wrapper {
        padding-bottom: 1.8rem
    }
    .guide_wrapper .linear_grad {
        margin: 0 auto 2rem;
    }
    .guide_area .introImg {
        margin: 0 auto 2.5rem;
    }
    .guide_area .btn_entry {
        margin: 2.7rem auto;
    }
    .guide_content p.guide_link {
        margin-top: 1.5rem;
    }
    .guide_area .image_payment {
        text-align: center;
        margin: 2rem 0 0.6rem;
    }
    .guide_end {
        margin: 4.3rem auto;
    }
    .guide_cta_wrapper {
        padding: 6rem 0;
    }
    .guide_cta .cta-text {
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    .guide_cta .cta-note {
        font-size: 1.2rem;
    }
    .guide_arrow {
        width: 18px;
        margin: 1.7rem auto 1.8rem;
    }

    
/*-----------------  guide (e)768-----------------*/
/*-----------------  review_recommend (s)768-----------------*/
    .review_recommend {
        padding-bottom: 20px;
    }
    .review_recommend_banner_area {
        margin-top: 40px;
    }
    .review_recommend .share_box {
        position: relative;
        margin: -24px auto 16px;   /* マイナス数値 */
    }
    .review_title_section_lg {
        background: url("../images/review/review_brick_pattern_2.jpg") repeat-x;
    }
    .review_title_area {
        background-repeat: no-repeat;
        background-position: right top;
        background-image: url("../images/review/review_yellow_leaf.png");
        position: relative;
        padding: 0;
        margin: 0;
        }
    .tree {
        display: block;
        padding: 0;
        margin: 0;
    }
    .review_recommend .title_img {
        width: 100%;
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        margin: 0;
    }
    .review_title_img {
        width: 620px;
        margin: 0 auto;
    }
    .review_recommend .tab_menu {
        background-size: 100%;
    }
    .review_recommend .tab_menu.active.listener {
        background-size: 100%;
    }
    .review_recommend .tab_menu.active.staff {
        background-size: 100%;
    }
    .review_recommend .tab_menus {
        height: 64px;
    }
    .review_recommend .tab_menu {
        height: 64px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .review_recommend .tab_menu p {
        height: 105px;
        line-height: 60px;
        margin: 11px auto 0;
    }
    .tab_content_text {
        padding-top: 45px;
        margin-bottom: 0;
    }
    .reviews {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        gap: 2vw 2%;
    }
    .review_recommend .review_img {
        width: 49%;
        border-radius: 23px;
    }
    .review_recommend .review_img img {
        margin-bottom: 0;
    }
    .review_recommend .review_img img:hover {
        opacity: 0.9;
    }
    
    .review_img.blue {
        background-color: #014dc8;
    }
    .review_img.yellow {
        background-color: #f3d312;
    }
/*-----------------  review_recommend (e)-----------------*/
/*-----------------  featured (s)-----------------*/
    .featured_page header h2, .featured_page header p {
        text-align:center;
    }
    .featured_nanairo header h2 img {
        width: 100%;
        margin:0 auto;
    }
    .featured_page h3 {
        margin-bottom:2rem;
    }
    .featured_page .list_word {
        display:flex;
        flex-wrap:wrap;
        justify-content: space-between;
    }
    .featured_page .list_word li {
        width:48%;
    }
    .featured_arslan header {
        padding-top:30px;
    }
    .featured_arslan .contents_box {
        max-width:860px;
    }
    .featured_page .thumb_area {
        width:25%;
        float:left;
    }
    .featured_page .text_area {
        width:73%;
        float:right;
    }
    .featured_sanada header p {
        text-align: left;
    }
    .featured_sanada .product_box {
        width:70%;
    }
/*-----------------  featured (e)-----------------*/
/*--------------  online shopping (s)-------------*/
    .item_list li {
        width:23%;
    }
    .img_box {
        width:70%;
        max-width:700px;
        max-height:600px;
    }
    .photo_thumb_list {
        max-width:100px;
    }
    .buyer_info .name input, .buyer_info .kana input, .buyer_info .postcode input {
        width:40%;
    }
/*--------------  online shopping (e)-------------*/
/*------------------  retire (s)------------------*/
    .retire_box .btn_area {
        display:flex;
        flex-wrap:wrap;
        justify-content: center;
        width:94%;
        margin-left:auto;
        margin-right:auto;
    }
    .retire_box .btn_area .btn_full {
        width:48%;
    }
    .retire_page .presents {
        display:flex;
        flex-wrap:wrap;
        justify-content: space-between;
        padding:20px 0;
    }
    .retire_page .present {
        width:48%;
    }
    .retire_page .presents h3 {
        padding-top:0;
    }
    .retire_page .box_gray{
        width:80%;
        padding:30px;
    }
    .retire_page .thumb_list {
        padding-top:1rem;
    }
    .retire_page .thumb_list li, .retire_page .thumb_list li:nth-child(3n){
        width:14%;
    }
/*------------------  retire (e)------------------*/
/*------------------  form_page (s)------------------*/
    .form_page .box_gray {
        padding:30px 10%;
    }
    .form_page .btn_full {
        width:60%;
    }
    .form_page .box_gray .btn_full {
        width:80%;
    }
/*------------------  form_page (s)------------------*/
/*------------------  presentPrivileges (s)------------------*/
    .privileges .box_gray .icon_present {
        display:inline-block;
        display:inline-block;
        width:2.4rem;
        margin:0 0 0.6rem;
    }
    .present_list {
        display:flex;
        flex-wrap:wrap;
        justify-content: space-between;
    }
    .present_list li {
        width:48%;
    }
    .privileges_continue .present_list {
        justify-content:center;
    }
/*------------------  presentPrivileges (e)------------------*/
/*-----------------  doc_page (s)-----------------*/
    .doc_page .box_gray th {
        width:20%;
    }
/*-----------------  doc_page (e)-----------------*/
/*-----------------  popup_info (s)-----------------*/
    .new_audiobook_info h2 {
        font-size:2rem;
        margin-top:20px;
    }
    .new_audiobook_info ul {
        width:86%;
    }
    .new_audiobook_info .thumb_box {
        width:80%;
    }
    .popup_info_close {
        width:56px;
        height:56px;
    }
/*-----------------  popup_info (e)-----------------*/
}
@media (min-width: 1024px) {
    .btn_s {
        padding:0 16px;
    }
    .header_container {
        width: 96%;
        max-width:1200px;
        justify-content: space-between;
        height: 92px;
        position: relative;
        margin: auto;
    }
    .header_left {
        width:49%;
    }
    .header_right {
        width:49%;
    }
    .nickname {
        position: absolute;
        top: 0;
        right: 0;
        width:100%;
        text-align: right;
        font-size: 14px;
    }
    .nickname .userName {
        display: inline-block;
        width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }
    .point_balance {
        width: 106px;
        float: right;
        margin-top: 20px;
    }
    .balance {
        font-size : 14px;
        font-weight :bold;
        line-height : 24px;
    }
    .header_nav {
        margin-top: 20px;
    }
    .header_nav .btn {
        display: block;
        line-height: 48px;
        width:128px;
        float: right;
        text-align: center;
        margin: 8px 0 0 12px;
    }
    .header_nav .icon_btn {
        width:54px;
        margin-top: 20px;
    }
    .icon_text {
        font-size :10px;
    }
    .icon_btn_booklist .icon_text {
        letter-spacing : -1px;
    }
    .contents_body, .product_page .contents_body, .home .contents_body {
        width: 96%;
        max-width:1200px;
        margin: 0 auto;
        padding-top: 30px;
    }
    .kv {
        position:relative;
        overflow: hidden;
        margin:0 auto;
    }
    .kv .btn_area {
        position: absolute;
        left:-50%;
        right:-50%;
        width:100%;
        height:160px;
        max-width:1200px;
        bottom: 0;
    }
    .kv .btn_kikubon_ol {
        border-radius: 100%;
        width: 160px;
        height: 160px;
        font-size: 22px;
        line-height: 26px;
        float: left;
        margin-left:32px;
        padding-top: 46px;
    }
    .kv .btn_orange_gr {
        display:block;
        font-size:22px;
        line-height: 68px;
        height:68px;
        margin:0 auto;
        padding:0;
    }
    .col_left {
        width:25%;
        float:left;
    }
    .col_right {
        width:70%;
        float:right;
    }
    #mainSwiper {
        border:var(--primaryBlack) solid 1px;
    }
    .logo_kikubon {
        margin-top: 6px;
        margin-right: 20px;
    }
    .logo_kikubon svg {
        width:116px;
    }
    .search_box {
        border-radius:36px;
        width:auto;
        margin: 20px 0 0;
        padding:4px 8px;
    }
    .search_box input {
        font-size:14px;
        line-height: 28px;
        width: 280px;
        padding:0 4px;
    }
    .btn_search {
        height:24px;
        border-radius:24px;
    }
    .btn_search:hover {
        padding-left:4px;
        padding-right:4px;
    }
    .pc_nav {
        background-color: var(--primaryBlack);
    }
    .pc_gMenu {
        display: flex;
        width:100%;
        align-items: center;
        justify-content:space-around;
        max-width:1200px;
        margin:0 auto;
        padding: 0 4px;
    }
    .pc_gMenu li {
        text-align: center;
        font-size: 13px;
        line-height: 36px;
    }
    .pc_gMenu li a {
        position: relative;
        display: block;
        color: #ffffff;
        padding: 12px 1vw;
    }
    .pc_gMenu li a:hover {
        text-decoration : none;
    }
    .pc_gMenu li a::after {
        position: absolute;
        bottom: 1px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #ff6600;
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform .3s;
    }
    .pc_gMenu li a:hover::after {
        transform-origin: left top;
        transform: scale(1, 1);
    }
    .pc_gMenu .line2 {
        line-height:18px;
    }
    .pc_gMenu .line2 a {
        padding:12px 0.9vw;
    }
    .banner_area {
        max-width:1200px;
        border-bottom: none;
        margin-bottom:0;
    }
    .left_nav ul {
        margin-bottom:40px;
    }
    .section_t {
        font-size :16px;
        line-height :36px;
        border-bottom: var(--sub_lightGray) solid 1px;
        margin-bottom:16px;
    }
    .section_st {
        font-size:12px;
        font-weight:bold;
        line-height: 18px;
    }
    .link_li {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 12px;
        padding-left: 12px;
    }
    .key_li a {
        font-size: 13px;
        line-height: 22px;
        min-width: 40px;
        text-align: center;
        margin:0 4px 8px 0;
        padding: 0 8px;
    }
    .key_li .btn:hover {
        background-color: var(--subBg_lightGray);
        opacity:1;
    }
    .to_list_li {
        font-size: 12px;
        text-align:right;
    }
    .to_list_li a:hover {
        text-decoration:none;
    }
    .banner_area  a {
        width:23%;
    }
    .footer_area {
        border-top: var(--primaryBlack) solid 1px;
        padding-top: 40px;
    }
    .footer_nav_container {
        width:94%;
        max-width:1200px;
        margin:0 auto 40px;
    }
    .footer_nav {
        display: flex;
        flex-wrap:wrap;
        width: 540px;
        float:left;
    }
    .footer_nav ul {
        width:170px;
        margin-right: 10px;
    }
    .box_title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .footer_nav .link_li {
        font-size: 12px;
        padding-left:0;
    }
    .follow_box {
        width: 180px;
        float:right;
    }
    .payment_box, .home .payment_box {
        display:block;
        width: 200px;
        float:right;
        padding-top: 0;
    }
    .paymentList img {
        height: 20px;
    }
    .follow_box {
        color: var(--primaryBlack);
    }
    .footer_container {
        padding-bottom :0;
    }
    .footer_link_area {
        width:94%;
        max-width:1200px;
        margin:0 auto;
    }
    .mark_box {
        width:35%;
        float:right;
        text-align: right;
    }
    .footer_link{
        width:65%;
        float:left;
        text-align: left;
    }
    .copyright_box {
        padding:20px 0;
    }
    .setting_change .contents_box, .charge_end .contents_box {
        max-width:1024px;
        margin-left:auto;
        margin-right:auto;
    }
    .setting_change .contents_text, .charge_end .contents_text {
        width:94%;
    }
    .contents_box h2 {
        font-size:28px;
        line-height: 42px;
        font-weight:normal;
        width:100%;
        padding: 10px 0;
    }
    .home .contents_box h2 {
        font-size:24px;
        line-height: 36px;
    }
    .contents_box h2.line2 {
        line-height:36px;
    }
    .home .pickup_box h2 {
        font-size:20px;
    }
    .sub_area {
        width:100%;
    }
    .pageTop {
        width:60px;
        height:60px;
        bottom:60px;
        padding:12px;
    }
    .breadcrumb {
        width:94%;
        font-size:0.9rem;
        line-height: 1.2rem;
        margin:0 auto 0.4rem;
        padding-top: 0.4rem;
    }
    .crumb {
        display:inline-block;
    }
    .swiper_container {
        padding:0 32px;
    }
    .swiper_list .swiper-slide {
        width: 120px;
        margin: 0 6px;
    }
    .swiper_list .swiper-slide:nth-child(1){
        margin-left: 0;
    }
    .swiper_list .thumb_box {
        padding: 8px 2px;
    }
    .swiper_container .swiper-button-next, .swiper_container .swiper-button-prev {
        top: 90px;
    }
    #seriesSwiperContainer .swiper-button-next, #seriesSwiperContainer .swiper-button-prev, 
    #featureSwiperContainer .swiper-button-next, #featureSwiperContainer .swiper-button-prev{
        top:80px;
    }
    .swiper_container .swiper-button-next {
        right: 0;
    }
    .swiper_container .swiper-button-prev {
        left: 0;
    }
    .pickup_box, .todays, .box_gray {
        width:100%;
    }
    .hapiradi_logo {
        margin:0 10px 0 0;
    }
    .hapiradi_description p {
        width:calc(56% - 150px);
        float: left;
        font-size: 0.9rem;
        margin:0;
    }
    .hapiradi_description .btn {
        width:40%;
        float:right;
        clear:none;
    }
    .pickup_box .thumb {
        width:140px;
        float:left;
        margin-top:0;
    }
    .pickup_box .text_box {
        width: calc(100% - 164px);
        float: right;
    }
    .pickup_box .title {
        margin-bottom:0;
    }
    .premium_description {
        text-align:center;
    }
    .premium_description .btn {
        display:inline-block;
        width:40%;
        margin-left:6px;
        margin-right:6px;
    }
    .keycam_description {
        background-size:200px;
        background-position: 16% -22px;
    }
    .keycam_doc {
        width:50%;
        float:left;
        font-size: 16px;
        text-align: left;
        margin-bottom:0;
        margin-top: 16px;
        margin-left:2%;
    }
    .keycam_description .btn_area p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    .keycam_description .btn_area {
        width:42%;
        float:right;
    }
    .keycam_description .btn_area .btn {
        width:99%;
    }
    .insta_section .list_half li {
        width:32%;
    }
    .insta_section .list_half li:nth-child(3) {
        display: block;
    }
    .breadcrumb {
        width:100%;
    }
    .result_info {
        width:100%;
    }
    .list_page .tab_area .tab_menus {
        right:0;
    }
    .thumb_list {
        width:100%;
    }
    .thumb_list li {
        width:21%;
        margin-right:5%;
        margin-bottom:24px;
    }
    .thumb_list li:nth-child(3n) {
        margin-right:5%;
    }
    .thumb_list li:nth-child(4n) {
        margin-right:0;
    }
    .thumb_l_list, .thumb_text_list {
        width:100%;
    }
    .thumb_l_list li, .thumb_text_list li {
        width:48%;
        margin-left: 0;
        margin-right:4%;
    }
    
    .thumb_l_list li{
        border:none;
        margin-bottom:10px;
        padding-bottom: 10px;
    }
    .thumb_text_list li {
        margin-bottom:18px;
        padding-bottom: 18px;
    }
    .thumb_text_list p {
        font-size:14px;
        line-height: 20px;
        margin-bottom:4px;
    }
    .thumb_l_list li:nth-child(even), .thumb_text_list li:nth-child(even){
        margin-right:0;
    }
    .thumb_l_list .thumb_box {
        width:100%;
        float:none;
        margin-bottom:10px;
    }
    .thumb_l_list .text_box {
        width:100%;
        float:none;
    }
    .icon_paginate{
        margin-left:4px;
        margin-right:4px;
    }
    .paginate .result_num {
        width:40%;
    }
    .page_num {
        display:inline-block;
        vertical-align: middle;
        font-size:18px;
        margin-left:10px;
        margin-right:10px;
    }
    .page_num.current {
        font-weight:bold;
        font-size:20px;
    }
    
    .author_list, .reader_list, .featured_list {
        width:100%;
    }
    .author_list li {
        margin-bottom:24px;
    }
    .author_list li a:hover {
        background-color: var(--subBg_lightGray);
        opacity:1;
    }
    .reader_list li {
        margin-bottom:30px;
    }
    .featured_list .description {
        color: var(--secondaryGray);
        width:100%;
        font-size:13px;
        line-height: 18px;
    }
    .featured_list .title {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 4px;
    }
    .seriesDoc {
        width:100%;
        padding:20px;
    }
    .product_page .col_left, .confirm_page .col_left, .login_page .col_left, .charge_page .col_left {
        width:64%;
    }
    .product_page .col_right, .confirm_page .col_right, .login_page .col_right, .charge_page .col_right {
        width:32%;
    }
    .product_page .bg_full {
        border-bottom:none;
        background: rgb(235,239,243);
        background: linear-gradient(0deg, rgba(235,239,243,1) 0%, rgba(255,255,255,1) 26%);
    }
    .divider_bottom {
        border-bottom: none;
        padding:16px 1%;
    }
    .book_info {
        width:64%;
        float:left;
    }
    .privileges_page .book_info {
        width:80%;
        float:none;
    }
    .book_info .title {
        font-size:24px;
        margin-bottom:10px;
    }
    .book_info p {
        margin-bottom:8px;
    }
    .price_info .icon_limited {
        width:48%;
        text-align: center;
    }
    .contents_box h3 {
        font-size:24px;
        line-height: 42px;
        width:100%;
    }
    .purchase_box {
        border:var(--sub_lightGray) solid 1px;
        background-color: var(--subBg_lightGray);
        width:100%;
        padding: 20px 0.5%;
    }
    .product_page .purchase_box, .product_page .share_box {
        width:32%;
        float:right;
    }
    .product_page .share_box {
        background-color: transparent;
    }
    .qr_area p {
        font-size:13px;
        line-height: 16px;
    }
    .index_list {
        margin-bottom:30px;
    }
    .index_list li {
        padding:10px 0;
    }
    .index_title {
        font-size:16px;
        width:74%;
    }
    .price_info {
        width:26%;
    }
    .review_area {
        width:800px;
        left: calc(50% - 400px);
    }
    .review_area #reviewBt {
        font-size:18px;
        line-height: 48px;
    }
    .btn_review.btn_full {
        width:60%;
        margin-bottom:40px;
    }
    .pack_box {
        border:var(--sub_lightGray) solid 1px;
        background-color: var(--subBg_lightGray);
        margin-bottom:20px;
        padding: 20px 20px 10px;
    }
    .pack_box .thumb_set {
        float:left;
        width:100px;
        padding: 12px 23px 0 0;
    }
    .pack_box .title {
        width: calc(100% - 110px);
        float:right;
        text-align: left;
    }
    .result_info .select_button{
        width:30%;
    }
    #playBookList .result_info .select_button{
        width:100%;
    }
    .review_list {
        width:100%;
    }
/*-----------------  paymentOption confirm(s)  --------------*/
    .step1_2, .step1_3 {
        width:80%;
        margin:0 auto 30px;
    }
    .select_payment li {
        background-position: 10px 16px;
    }
    .select_payment li img {
        height:36px;
    }
    .contents_text {
        width:100%;
    }
    .app_box{
        background-color:#ffffff;
        border: var(--sub_lightGray) solid 1px;
        width:40%;
    }
    .link_app {
        display:inline-block;
    }
    .app_box .appStore {
        height:54px;
    }
    .app_box .googlePlay {
        height:60px;
    }
/*-----------------  paymentOption confirm(e)  --------------*/
/*-------------------  login Entry (s)-------------------*/
    .form_box {
        width:100%;
        border-top:none;
        padding-bottom:30px;
    }
    .profile_form {
        width:90%;
        margin:0 auto;
    }
    #snsID .btn_area {
        display:flex;
        flex-wrap:wrap;
    }
    #snsID .btn, #snsID .signin-button {
        width:42%;
    }
    .signin-button {
        border-radius:36px;
    }
    .contents_full #entForm {
        width:64%;
        margin:0 auto;
    }
    .prof_table {
        width:80%;
        margin-bottom:40px;
    }
    .prof_table th {
        width:28%;
    }
/*-------------------  login Entry (e)-------------------*/
/*-------------------  charge_page (S)-------------------*/
    .charge_select .tab_menu .select_title{
        font-size:18px;
        line-height:20px;
    }
    .charge_select .tab_menu:hover .select_title{
        font-size:20px;
        line-height:19.5px;
    }
    .charge_select .tab_menu .select_title .text_s, .charge_select .tab_menu:hover .select_title .text_s{
        font-size:14px;
        line-height:20px;
    }
    .addPoint h2 .text_xs {
        font-size:18px;
    }
    .addPoint .point_info {
        width:30%;
        top:40px;
        right:0;
    }
    #charge_each h2 {
        padding-top:2rem;
    }
    .addPoint .sub_area h3 {
        font-size:0.9rem;
        line-height: 1.4rem;
    }
    .sub_area.notice01 {
        border-top:none;
    }
    .addPoint .notice02 {
        padding-top:24px;
    }
    .list_point .btn_point, .list_course .btn_black, .list_course .btn_disabled {
        padding: 0 36px;
    }
/*-------------------  charge_page (e)-------------------*/
/*------------------  profile_page(s)  -------------------*/
    .user_info {
        width:100%;
        
    }
    .user_info h3 {
        font-size:18px;
    }
    .profile_page .btn_area {
        widows: 80%;
        padding:40px 0;
    }
    .setting_area {
        width:80%;
        margin:0 auto;
    }
    .setting_area dl, .setting_area .device_list, .setting_change .btn_area, .device {
        width:80%;
        margin:0 auto;
    }
    .device_list input[type=text] {
        width:80%;
    }

/*------------------  profile_page(e)  -------------------*/
/*-------------------------- myBookList(s) ----------------------*/
    .default_box .sort_result, .sorting_box .btn_delete {
        width:33%;
    }
    .mybook_list #thumbList li {
        width:15%;
        margin: 0 2.5% 16px; 
    }
    .serialNum_audioList li {
        width:100%;
    }
    .serialNum_audioList li p {
        width:78%;
    }
    #buyBookList .thumb_text_list .thumb_box {
        width:14%;
    }
    #buyBookList .thumb_text_list li .sorting .btn_s {
        margin-top:25%;
    }
/*-------------------------- myBookList(e) ----------------------*/
/*-------------------------- point_history(s) ----------------------*/
    .history_table {
        width:100%;
    }
    .history_table th, .history_table td {
        padding:16px 8px;
    }
/*-------------------------- point_history(e) ----------------------*/
/*-------------------------- history(s) ----------------------*/
    .link_to {
        width:100%;
    }
/*-------------------------- history(e) ----------------------*/
/*-------------------------- news_list(s) ----------------------*/
    .list_news, .news_contents {
        width:100%;
    }
    .news_page .contents_box h2 {
        line-height:36px;
    }
    .news_page .sub_area .thumb_list li {
        width:14%;
        margin-right:3%;
    }
    .news_page .sub_area .thumb_list li:nth-child(4n) {
        margin-right:3%;
    }
    .news_page .sub_area .thumb_list li:nth-child(6n) {
        margin-right:0;
    }
    .tsogen_awardList li {
        width:32%;
    }
    .tsogen_text_list li {
        width:100%;
    }
    .news_page .btn_full {
        width:60%;
    }
/*-------------------------- news_list(e) ----------------------*/
/*-----------------  premimu (s)-----------------*/
    .premium_title_pcxl {
        justify-content: space-between;
        width: 100%;
        max-height:219px;
        background: url("../images/premium/premium_FV_bg.png") left bottom repeat-x;
        margin-bottom: 20px;
    }
    .premium_title_image {
        width: 14%;
    }
    .premium_title_pcxl h2 {
        width: 70%;
        max-width:798px;
        margin-top: 1.2vw;
    }
    .premium_merit_title {
        margin-top: 48px;
        margin-bottom: 32px;
    }
    .premium_merit_menu {
        margin-bottom: 48px;
    }
    .merit_menu_frame {
        font-size: 1.2rem;
    }
    .premium_merit_contents_section {
        padding-bottom: 80px;
        margin: 48px auto 48px;
        padding-top: 8px;
    }
    .merit_number_img {
        padding: 48px 0 0;
    }
    .premium_course_section {
        margin-top: 72px;
        margin-bottom: 72px;
    }
    .premium_course_table {
        margin: 0 auto 48px;
    }
    .premium_course_note_section h3 {
        padding-top: 40px;
}
/*-----------------  premium (e)-----------------*/
/*-----------------  guide (s)1024-----------------*/
    .guide_main {
        margin: 4.2rem auto 5rem;
    }
    .guide_maintitle {
        font-size: 2.5rem;
    }
    .guide_maintitle.feature {
        padding: 4.5rem 0 0;
        margin-bottom: 1.6rem;
    }
    .guide_area .guide_main .btn_entry {
        margin: 2.5rem auto 2rem;
    }
    .guide_title {
        font-size: 1.7rem;
    }
    .guide_area .btn_entry {
        margin: 3.5rem auto;
    }
    .guide_cta .cta-text {
        font-size: 2rem;
    }
    .guide_wrapper {
        padding-bottom: 2.3rem;
    }
    .guide_end {
        margin: 5.5rem auto;
    }
/*-----------------  guide (e)-----------------*/
/*-----------------  review_recommend (s)1024-----------------*/
    
    .reviews {
        gap: 30px 2%;
    }
    .review_recommend .tab_area {
        width: 96%;
    }
    .tab_content_text {
        padding-top: 32px;
    }
    .review_recommend ul {
        margin-top: 21px;
    }
    .review_recommend .tab_menus {
        height: min(5vw, 63px);
    }
    .review_recommend .tab_menu {
    }
    .review_recommend .tab_menu p {
        margin-top: min(0.4vw, 6px);
    }
    .review_recommend .tab_menu {
        background-image: url("../images/review/review_tub_disabled_L.png");
        background-size: contain;
        height: auto;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .review_recommend .tab_menu:hover {
        background-image: url("../images/review/review_tub_hover_L.png");
        text-shadow: 1px 1px 2px rgba(51, 51, 51, 0.7);
    }
    .review_recommend .tab_menu.active.listener {
        background-image: url("../images/review/review_tub_listener_active_L.png");
        background-size: contain;
    }
    .review_recommend .tab_menu.active.staff {
        background-image: url("../images/review/review_tub_staff_active_L.png");
        background-size: contain;
    }
    .review_recommend .tab_content.active.listener_about {
        background-image: url(../images/review/review_listener_text_bg_L.png);
    }
    .review_recommend .tab_content.active.staff_about {
        background-image: url(../images/review/review_staff_text_bg_L.png);
    }
    .review_recommend .review_img {
        width: 32%;
    }
    .review_recommend_banner_area {
        margin: 40px 0;
    }
    .review_recommend_banner_area p {
        margin-bottom: 0.4em;
    }
    .review_recommend_banner {
        border: #aa833a solid 1px;
        border-radius: 10px;
        flex-wrap: nowrap;
        width: 800px;
    }
    .review_recommend_banner_title {
        font-size: 17px;
    }
    .review_recommend_banner img {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        width: 50%;
    }
    .review_recommend_banner_text {
        padding: 1em;
        margin: auto;
    }
    .review_recommend_banner_area .mybook {
        text-align: right;
    }

/*-----------------  review_recommend (e)-----------------*/
/*-----------------  featured_pag (s)-----------------*/
    .featured_page .thumb_list li {
        width:19%;
        margin: 0 3% 20px;
    }
    .featured_page .thumb_list li img {
        margin:0 auto 8px;
    }
    .featured_page .contents_body {
        margin-bottom:0;
    }
    .featured_sanada {
        background: #360907 url(../images/featured/sanada/sanada_bg.png) center 20px no-repeat;
    }
    .featured_arslan .contents_box {
        width:1024px;
    }
    .featured_sanada header, .featured_sanada .contents_body, .featured_sanada .product_box, .featured_sanada .share_box {
        width:900px;
        margin:0 auto;
    }
    .featured_sanada h2 {
        padding:100px 0 0 100px;
    } 
    .featured_sanada header p {
        width:62%;
        margin-left: 7%;
    }
    .product_box .originalCast_t, .product_box .sanada_list, .product_box p {
        width:60%;
        margin-left:5%;
    }
    .featured_sanada .product_box {
        margin-bottom:30px;
    }
    .sanada_list li {
        padding:6px 0;
    }
    .featured_sanada .cast_list {
        display:flex;
        flex-wrap:wrap;
        justify-content: space-between;
    }
    .featured_sanada .cast_list li {
        width:49%;
    }
    .cast_list .role {
        width:52%;
    }
    .cast_list .cv {
        width:44%;
    }
    .featured_page .contents_box {
        margin-bottom:60px;
    }
    .featured_sanada .thumb_area img {
        margin-right:20px;
    }
    .featured_page .contents_box h3 {
        font-size:24px;
        padding-top:20px;
    }
    .featured_arslan .contents_box h3 {
        padding-top:0;
    }
    .featured_nanairo header h2 {
        background-image:url("../images/featured/nanairo/mainBg.png");
    }
    .featured_nanairo .contents_area.bg01, .featured_nanairo .contents_area.bg02 {
        background-position: center 60px;
    }
    .featured_nanairo header h2 img {
        width: auto;
        margin:0 auto;
    }
    .featured_nanairo .contents_body {
        width:100%;
        max-width:100%;
        padding-bottom:0;
    }
    .featured_nanairo .contents_area h3 {
        line-height:104px;
        height:104px;
        background-size:auto;
    }
    .featured_nanairo .btn_area {
        max-width:1024px;
        padding-top:20px;
    }
    .featured_nanairo .contents_box {
        max-width:1024px;
        padding:60px 0;
    }
    .featured_nanairo .btn_area .btn_full {
        width:60%;
    }
    .featured_nanairo #memberList {
        max-width:1024px;
        margin:0 auto;
    }
    .modal-content {
        max-width:960px;
    }
    .featured_nanairo #prof01, .featured_nanairo #prof02, .featured_nanairo #prof03, .featured_nanairo #prof04, .featured_nanairo #prof05, .featured_nanairo #prof06, .featured_nanairo #prof07, .featured_nanairo #prof08 {
        background-size:auto;
    }
    .featured_nanairo #prof01 h3, .featured_nanairo #prof03 h3, .featured_nanairo #prof05 h3, .featured_nanairo #prof07 h3, .featured_nanairo #prof02 .profText, .featured_nanairo #prof04 .profText, .featured_nanairo #prof06 .profText, .featured_nanairo #prof08 .profText {
        float:left;
        width:49%;
    }
    .featured_nanairo #prof02 h3, .featured_nanairo #prof04 h3, .featured_nanairo #prof06 h3, .featured_nanairo #prof08 h3,.featured_nanairo #prof01 .profText, .featured_nanairo #prof03 .profText, .featured_nanairo #prof05 .profText, .featured_nanairo #prof07 .profText {
        float:right;
        width:49%;
    }
    .featured_nanairo .profImg {
        height:80vh;
        max-height:500px;
        width: auto;
    }
    .featured_nanairo #prof01 .profText, .featured_nanairo #prof03 .profText, .featured_nanairo #prof05 .profText, .featured_nanairo #prof07 .profText,.featured_nanairo #prof02 .profText, .featured_nanairo #prof04 .profText, .featured_nanairo #prof06 .profText, .featured_nanairo #prof08 .profText {
        background-position:0 -400px;
        background-size:90%;
        height:85vh;
        margin:0;
        padding-top: 20px;
    }
    .featured_nanairo .profText .name, .featured_nanairo .profText table {
        width:90%;
        margin:0 auto;
    }
    .featured_nanairo .profText .voiceTitle {
        display: inline-block;
    }
    .featured_nanairo .profText {
        margin-top:30px;
    }
    .featured_nanairo .charaMainBox {
        width:calc(49% - 10px);
    }
    .featured_nanairo .charaMain {
        max-height:85vh;
        width: auto;
        max-width:50%;
        margin-left:0;
    }
    .featured_nanairo #prof07 .charaMain {
        width:auto;
    }
    .featured_nanairo #prof02 .charaMain, .featured_nanairo #prof04 .charaMain, .featured_nanairo #prof06 .charaMain {
        margin-left:50%;
    }
    .featured_nanairo .profText .profVoice {
        padding-right:10px;
    }
    .featured_nanairo #prof02 .name, .featured_nanairo #prof04 .name, .featured_nanairo #prof06 .name {
        margin-left:50px;
    }
    .featured_nanairo .close {
        right:calc(50vw - 500px);
    }
/*-----------------  featured_pag (e)-----------------*/
/*---------------  online shopping (s)----------------*/
    .item_list_page .contents_body, .item_product_page .contents_body, .cart_page .contents_body, .item_order_page .contents_body {
        width:100%;
        max-width:100%;
        padding-top:0;
    }
    .item_list_page .contents_body .breadcrumb, .item_list_page .contents_body h2, .item_list_page .contents_box, .important_info, .item_product_page .contents_body .breadcrumb, .item_product_page .contents_body h2, .item_product_page .contents_box, .cart_page .contents_body .breadcrumb, .cart_page .contents_body h2, .cart_page .contents_box, .to_cart p, .item_order_page h2, .item_order_page .contents_box {
        width:94%;
        max-width:1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .item_list_page header, .item_product_page header, .cart_page header {
        padding-top:20px;
    }
    .item_list_page h2, .item_product_page h2, .cart_page h2 {
        font-size:30px;
        margin-bottom:10px;
        padding:20px 0 10px;
    }
    .item_list_page h2 .catch, .item_product_page h2 .catch {
        font-size:18px;
    }
    .item_list_page h2 .sub_text, .item_product_page h2 .sub_text {
        font-size:13px;
        margin-left:10px;
    }
    .item_list_page h2 .point_deal, .item_product_page h2 .point_deal {
        width:480px;
    }
    .item_list {
        width:100%;
    }
    .contents_box .sub_area {
        width:100%;
    }
    .item_main {
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top:20px;
    }
    .item_main .title {
        font-size:24px;
    }
    .item_main .img_box {
        width:480px;
        margin:0 0 20px;
    }
    .item_main .text_box {
        width:calc(100% - 510px);
    }
    .item_main .price {
        width:100%;
        font-size: 24px;
    }
    .item_main .stock {
        display:flex;
        flex-wrap:wrap;
        justify-content: flex-end;
        align-items: center;
        margin-bottom:20px;
    }
    .item_main .stock p {
        width:20%;
        text-align: right;
        margin-bottom: 0;
        margin-right:2%;
    }
    .item_main .stock .select_button {
        width:30%;
        margin-right:2%;
    }
    .item_main .stock .btn_full {
        width:44%;
        margin:0;
    }
    .item_product_page .contents_box h4 {
        font-size:20px;
    }
    .cart_table {
        width:100%;
    }
    .cart_table .sub_total td {
        padding:20px 0;
    }
    .cart_table .select_button {
        width:50%;
        margin-right:2%;
        padding:0 0.4rem;
    }
    .cart_table .select_button .icon_arrow_s {
        top:0.4rem;
    }
    .cart_page .message {
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .cart_page .message p {
        margin-bottom:0;
    }
    .cart_page .item_img {
        width:10%;
    }
    .cart_page .item_name {
        width:32%;
    }
    .cart_table th, .cart_table td {
        font-size:1rem;
        line-height: 150%;
    }
    .cart_page .btn_area {
        text-align:center;
        margin:40px auto;
    }
    .cart_page .btn_full {
        width:60%;
    }
    .item_order_page .description {
        width:100%;
    }
    .item_order_page .btn_area .btn_buy {
        width:60%;
    }
    .item_order_page .message_text, .item_order_page .message_box{
        width:80%;
        margin:0 auto 2rem;
    }
/*------------  cdBox (s)-----------*/
    .item_cdbox .title {
        padding-top:20px;
    }
    .item_cdbox .title img {
        margin-bottom:20px;
    }
    .cd_info {
        display:flex;
        flex-warap:wrap;
        justify-content: space-between;
    }
    .cd_info .img_box {
        width:440px;
        height:370px;
        margin:0;
    }
    .cd_info .text_info {
        width: calc( 100% - 460px);
    }
    .tokuten {
        margin-bottom:20px;
    }
    .cd_info .text_info .description {
        width:100%;
        font-size:14px;
        font-size:14px;
        margin-bottom:4px;
    }
    .cd_info .box_gray {
        font-size:12px;
        margin-top:10px;
        padding:10px;
    }
    .cd_info .price_area {
        border: var(--sub_lightGray) solid 1px;
        margin-bottom:10px;
        padding:16px 16px 0;
    }
    .item_cdbox .share_box {
        float:none;
    }
    .cd_info .btn_full{
        width:50%;
        margin-right:0;
    }
    .cd_info .price {
        text-align:left;
    }
/*------------  cdBox (e)-----------*/
/*---------------  online shopping (e)----------------*/
/*------------------  retire (s)------------------*/
    .retire_box .btn_area .btn_full {
        width:32%;
    }
    .retire_page .box_gray {
        padding:60px;
    }
    .retire_page .box_gray .btn_area {
        width:80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    .retire_page .important_info {
        padding:20px 60px 10px;
    }
/*------------------  retire (e)------------------*/
/*------------------  presentPrivileges (s)------------------*/
    .privileges .box_gray {
        padding:20px 10%;
    }
    .privileges_limit .present_list::after{
        content:"";
        display: block;
        width:30%;
    }
    .present_list li {
        width:32%;
    }
    .privileges_continue .present_list {
        justify-content:center;
    }
    .privileges_continue .present_list li {
        width:48%;
    }
/*------------------  presentPrivileges (e)------------------*/
/*------------------  form_page (s)------------------*/
    .form_page .main_image img {
        margin-top:20px;
    }
    .form_page .box_gray, .form_page .btn_area {
        padding-left: 20%;
        padding-right: 20%;
    }
    .form_page .box_gray .btn_area {
        padding-left: 10%;
        padding-right: 10%;
    }
    .form_page .btn_full {
        width:80%;
    }
    .form_page .box_gray .btn_full {
        width:98%;
    }
    .contact_page .description {
        width:100%;
    }
/*------------------  form_page (s)------------------*/
/*-----------------  doc_page (s)-----------------*/
    .doc_page .box_gray {
        width:80%;
    }
    .doc_page .box_gray th {
        width:24%;
    }
    .doc_page .main_table th, .doc_page .main_table td {
        padding:20px;
    }
    .doc_page .main_table th {
        width:25%;
    }
/*-----------------  doc_page (e)-----------------*/
/*-----------------  popup_info (s)-----------------*/
    .popup_info {
        width: 80%;
        max-width: 880px;
    }
    .new_audiobook_info .thumb_box {
        max-width:180px;
    }
    .new_audiobook_info p {
        margin-left:10px;
        margin-right:10px;
    }
    .popup_info_close {
        right:-24px;
    }
/*-----------------  popup_info (e)-----------------*/
/*-----------------  search (s)-----------------*/
    .search_page .search_box {
        width:340px;
        margin-bottom:36px;
    }
    .search_page .key_li {
        width:100%;
    }
/*-----------------  search (e)-----------------*/
    .cc-revoke.cc-left {
        bottom:18px;
    }
}
@media (min-width: 1224px) {
    .search_box input {
        width:300px;
    }
    .search_page .search_box {
        width:360px;
    }
    .pc_gMenu li {
        font-size: 14px;
    }
    .pc_gMenu li a {
        padding-left: 16px;
        padding-right: 16px;
    }
    .pc_gMenu .line2 {
        line-height: 20px;
    }
    .pc_gMenu .line2 a {
        padding: 10px 12px;
    }
    .footer_nav {
        width:630px;
    }
    .footer_nav ul {
        width:200px;
    }
    .payment_box, .home .payment_box {
        width:270px;
        margin-right:20px;
    }
    .box_title {
        font-size: 16px;
    }
    .link_li {
        margin-bottom: 16px;
    }
    .footer_nav .link_li {
        font-size: 13px;
    }
    .mark_box {
        width:30%;
    }
    .footer_link{
        width:68%;
    }
    
    .swiper_list .swiper-slide {
        width: 140px;
        margin: 0 10px;
    }
    .swiper_container .swiper-button-next, .swiper_container .swiper-button-prev {
        top: 112px;
    }
    .hapiradi_description p {
        font-size:1rem;
    }
    .keycam_doc {
        margin-left:4%;
    }
/*-----------------  premium (s)-----------------*/
    .premium_title_pcxl {
        height: 219px;
    }
    .premium_title_image {
        width: 181px;
    }
    .premium_title_pcxl h2 {
        margin-top: 13px;
    }
/*-----------------  premium (e)-----------------*/
/*-----------------  review_recommend (s)1224-----------------*/
    .review_title_img {
        width: 690px;
    }
    .review_recommend .title_img {
        top: 58px;
    }
    .review_recommend_banner_text p {
        font-size: 1.1em;
        line-height: 1.5em;
    }
/*-----------------  review_recommend (e)-----------------*/
/*---------------  online shopping (s)----------------*/
    .item_list_page h2 .point_deal, .item_product_page h2 .point_deal {
        top:10px;
    }
    .item_list li {
        width:18%;
        margin-bottom: 30px;
    }
    .item_main .img_box {
        width:600px;
    }
    .item_main .text_box {
        width:calc(100% - 630px);
    }
/*------------  cdBox (s)-----------*/
    .cd_info .img_box{
        width:480px;
        height:402px;
    }
    .cd_info .text_info{
        width:calc(100% - 530px);
    }
/*------------  cdBox (e)-----------*/
/*---------------  online shopping (e)----------------*/
}
@media (min-width: 1500px) {
    .kv .btn_area {
        height:200px;
        bottom: 0.6vw;
    }
    .kv .btn_kikubon_ol {
        width: 200px;
        height: 200px;
        font-size: 28px;
        line-height: 30px;
        margin-left: 0;
        padding-top: 66px;
    }
}
/*-------------------------- margin-bottom(s) -----------------------------*/
.mb0{ margin-bottom: 0px;}
.mb10{ margin-bottom: 10px;}
.mb20{ margin-bottom: 20px;}
.mb30{ margin-bottom: 30px;}
.mb40{ margin-bottom: 40px;}
.mb60{ margin-bottom: 60px;}
.mlr_auto {
    margin-left:auto;
    margin-right:auto;
}
/*-------------------------- margin-bottom(e) -----------------------------*/
/*-------------------------- text(s) -----------------------------*/
.text_center {
    text-align: center;
}
.text_left {
    text-align: left;
}
.text_right {
    text-align: right;
}
.text_xs {
    font-size:0.8em;
}
.text_s {
    font-size:0.9em;
    line-height: 1.4em;
    text-decoration: inherit;
}
.text_l {
    font-size:1.4em;
    line-height: 1.4em;
    text-decoration: inherit;
}
.sub_text {
    color: var(--secondaryGray);
    font-size: 0.9em;
    line-height: 1.4em;
}
.highlight {
    color: var(--kikubonColor);
}
.text_red {
    color: var(--attentionColor);
}
.text_blue {
    color: var(--accentColor2);
}
.text_linethrough {
    text-decoration:line-through;
}
.text_underline {
    display: inline-block;
    border-bottom:var(--primaryBlack) solid 1px;
}
.bold {
    font-weight: bold;
}
.message {
    background-color: var(--subBg_lightGray);
    text-align:center;
    width:90%;
    margin:0 auto 1rem;
    padding:20px 2%;
}
.success_message {
    background-color: #ecfbeb;
    text-align: center;
    width:94%;
    margin:0 auto 1rem;
}
.success_message .text_l {
    color: var(--accentColor);
    margin-bottom:0.4rem;
}
.success_message a {
    color: var(--accentColor2);
}
.message .text_l {
    margin:1rem auto;
}
.updated_message {
    color: var(--attentionColor);
    border: var(--attentionColor) solid 1px;
    font-size:0.9rem;
    padding: 0.1rem 1rem;
}
.error_message {
    color: var(--attentionColor);
    border: var(--attentionColor) solid 1px;
    background-color:#fff4f4;
    font-size:0.9rem;
    margin-bottom:1rem;
    padding: 0.1rem 1rem;
}
/*-------------------------- text(e) -----------------------------*/
.d_none {
    display: none;
}
.d_block {
    display: block;
}
.d_inline {
    display: inline;
}
.d_inline_block {
    display: inline-block;
}

@media (max-width: 480px) {
    .d_sm_none {
        display: none;
    }
    .d_sm_block {
        display: block;
    }
    .d_sm_inline {
        display: inline;
    }
    .d_sm_inline_block {
        display: inline-block;
    }
    .d_sm_flex {
        display:flex;
    }
}
@media (min-width: 768px) {
    .d_md_none {
        display: none;
    }
    .d_md_block {
        display: block;
    }
    .d_md_inline {
        display: inline;
    }
    .d_md_inline_block {
        display: inline-block;
    }
    .d_md_flex {
        display:flex;
    }
}
@media (min-width: 1024px) {
    .d_lg_none {
        display: none;
    }
    .d_lg_block {
        display: block;
    }
    .d_lg_inline {
        display: inline;
    }
    .d_lg_inline_block {
        display: inline-block;
    }
    .d_lg_flex {
        display:flex;
    }
}
@media (min-width: 1224px) {
    .d_xl_none {
        display: none;
    }
    .d_xl_block {
        display: block;
    }
    .d_xl_inline {
        display: inline;
    }
    .d_xl_inline_block {
        display: inline-block;
    }
    .d_xl_flex {
        display:flex;
    }