/* ##############################
 * Created on : 2022/11/03
 * @version 1.00
 * @copyright Heaven-studio.com
 * @author Myazou3(Toshiyasu.Tkamoto)
##############################  */

/* ##############################
	初期化
##############################  */
/*### Basic CSS ###*/
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body { margin: 0; padding: 0; width: 100%; max-width: 100%; min-height: 100vh; height: auto; font-family: 'Roboto', sans-serif; font-weight: 400; z-index: 0; color: #000; position: absolute;}
* { margin: 0; padding: 0; }
img { border-style: none; }
.red { color: #f00; }
.red_b { color: #f00; font-weight: bold; }
.blue { color: #00F; }
.blue_b { color: #00F; font-weight: bold; }
#no_js { position: fixed; width: 100%; height: 100%; top: 0; left: 0; background: rgba(0,0,0,0.8); z-index: 5000; }
#no_js div { position: fixed; width: 320px; padding: 15px 0; top:50%; left: 50%; transform: translate(-50%,-60%); font-size: 14px; line-height: 22px; text-align: center; color: #f00; background: #fff; border-radius: 10px; }
.hide { display: none !important; }
.official_color { background: linear-gradient(180deg, rgba(128,0,128,1) 0%, rgba(255,173,255,1) 50%, rgba(128,0,128,1) 100%); }
.active { background: #e4007f; }
.active a { color: #FFF !important; }
.center { text-align: center; }
.f_10-12 { font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem); }
.f_10-14 { font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem); }
.f_12-14 { font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem); }
.f_12-16 { font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem); }
.f_14-16 { font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); }
.f_16-18 { font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); }
.f_16-22 { font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem); }
.f_16-24 { font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem); }

/*### Header ###*/
.inner { display: flex; justify-content: space-between; width: calc(100% - 20px); height: 50px; margin: 0 auto; }
.inner:after { content: ""; clear: both; display: block; }
#top-head { top: -100px; left:50%; transform: translate(-50%,0); position: fixed; width: 100%; margin: 100px auto 0; padding: 5px 0 ; line-height: 1; z-index: 999; box-shadow: 0px 3px 15px rgba(0,0,0,0.2);  background: #fff; }
#top-head a, #top-head { color: #000; text-decoration: none; }
#top-head .inner { position: relative; max-width: 1280px; }
#top-head .logo { float: left; width: 114.69px; max-height: 50px;  display: block; position: relative; right: 0; top: 0; cursor: pointer; }
#top_logo_svg svg { width: 114.69px; max-height: 50px; display: block; filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.4)); }
#user_info { display: flex; width: 135px; height: 50px; position: relative; top: 0; left: 10px; }
#user_icon, #user_data { display: inline-flex; align-items: center; font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem); line-height: 50px; }
#user_icon { width: 20px; }
#user_data { width: 105px; margin-left: 10px; }
#global-nav ul { list-style: none; position: absolute; right: 0; top: 50%; transform: translate(0,-50%); font-size: 14px; line-height: 30px; }
#global-nav ul li { float: left; font-size: 14px; line-height: 30px; }
#global-nav ul li a, #global-nav ul li span { display: block; padding: 5px 15px; position: relative; cursor: pointer; }
#global-nav ul li a::after, #global-nav ul li span::after { position: absolute; left: 0; bottom: -3px; content: ''; width: 100%; height: 3px; background: #e4007f; transform: scale(0, 1); transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/ transition: transform 0.3s;  /*変形の時間*/ }
#global-nav ul li a:hover::after, #global-nav ul li span:hover::after { transform: scale(1, 1); }
 
/* Fixed */
#top-head.fixed { margin-top: 0; top: 0; position: fixed; padding-top: 10px; height: 55px; background: #fff; background: rgba(255,255,255,.7); transition: top 0.65s ease-in; -webkit-transition: top 0.65s ease-in; -moz-transition: top 0.65s ease-in; }
#top-head.fixed .logo { font-size: 24px; color: #333; }
#top-head.fixed #global-nav ul li a { color: #333; padding: 0 20px; }
 
/* Toggle Button */
#nav-toggle { display: none; position: absolute; right: 12px; top: 17px; width: 34px; height: 36px; cursor: pointer; z-index: 101; }
#nav-toggle div { position: relative; }
#nav-toggle span { display: block; position: absolute; height: 4px; width: 100%; background: #666; left: 0; -webkit-transition: .35s ease-in-out; -moz-transition: .35s ease-in-out; transition: .35s ease-in-out; }
#nav-toggle span:nth-child(1) { top: 0; }
#nav-toggle span:nth-child(2) { top: 11px; }
#nav-toggle span:nth-child(3) { top: 22px; }

#back_image { position: fixed; width: 100%; min-height: 100vh; background: url("https://studio-lit.com/img/full_back.webp") center / cover; z-index: -1; }

/*### Main ###*/
main { width: 100%; min-height: calc(100vh - 96px); display: block; padding-top: 60px; margin: 0 auto;}
main h1 { text-align: center; font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.25rem); line-height: clamp(1.5rem, 1.375rem + 0.63vw, 1.875rem); background-color: rgba(255,255,255,0.9); color: #e4007f; margin-top: 10px; }
#top_svg { display: block; width: 100%; max-width: 640px; margin: 0 auto; }
#top_svg svg { display: block; width: 100%; margin: 0 auto; }
#info { display: block; width: 100%; font-size: 20px; line-height: 40px; text-align: center; margin: 20px auto; color: #FFF; background: #e4007f;}
article { display: block; width: 100%; max-width: 1280px; margin: 5px auto; }
section { display: block; width: 100%; padding: 5px; box-sizing: border-box; margin-bottom: 10px; }
section h2 { font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem); line-height: clamp(1.375rem, 1.148rem + 1.14vw, 2rem); background: #e4007f; color: #FFF; padding-left: 10px; box-sizing: border-box;  }
#flip_wrap { display: flex; justify-content: space-between; }
#filp_content1, #filp_content2, #filp_content3{ display: block; width: 30%; aspect-ratio: 2 / 3; border-radius: 10px; perspective: 100px; transform-style: preserve-3d; transition: transform 1s; }
.flip_image1, .flip_image2{ display: block; width: 100%; border-radius: 10px; position: absolute; backface-visibility: hidden; }
.flip_image1{ transform: rotateY(180deg); }
.flip_image2{ background: red; }
.flip { transform: rotateY(180deg); }
#home_title, #home_comment { display: block; width: 100%; text-align: center; background: rgba(228,0,127,0.7); color: #fff; }
#home_title p, #home_comment p { line-height: 28px; text-align: center; margin-top: 5px; }
#lit_book_wrap { padding: 0 10px 10px 10px; }


/*### Footer ###*/
footer { width: 100%; height: 35px; display: block; border-top: 1px #333 solid; text-align: center; bottom: 0; position: relative; padding: 0; background: rgba(255,255,255,.5); }
footer small { display: block; margin: 5px 0 0; line-height: 16px; font-size: 10px; }
footer small a:hover { color: #666; text-decoration: underline; }

/*### Login Form ###*/
#login_back { position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,.9); z-index: 9999; }
#login_wrap { display: block; position: absolute; width: 320px; height: 365px; padding: 5px; box-sizing: border-box; border: 1px #999 solid; background: #fff; border-radius: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
#login_wrap svg { display: block; width: 100%; margin: 0; }
#login_wrap h2 { font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem); line-height: 30px; height: 30px; background: #e4007f; color: #fff; text-align: center; border-radius: 5px 5px 0 0; }
#login_form { padding:10px 5px 0; display: block;}
#login_form .icon{ width:40px; height:40px; background-color:#e4007f; float:left; border:1px solid #ccc; border-right: none; margin-bottom: 10px; box-sizing: border-box; border-radius: 5px 0 0 5px; }
#login_form .icon span{ display: block; width: 24px; height: 24px; margin: 8px; color: #fff; }
#login_form input[type="text"], #login_form input[type="password"]{ width: calc(100% - 42px); height:40px; border:1px solid #ccc; border-left: none; margin-bottom: 10px; padding: 0 10px; box-sizing: border-box; border-radius: 0 5px 5px 0;  }
#cookie_chack_area { display: block; text-align: center; }
#cookie_check_login { display: none; }
.check_cookie { box-sizing: border-box; cursor: pointer; display: inline-block; padding: 5px 30px; margin: 0 0 5px; position: relative; width: auto; cursor: pointer; }
.check_cookie::before { background: #fff; border: 1px solid #ccc; border-radius: 3px; content: ''; display: block; height: 16px; left: 5px; margin-top: -10px; position: absolute; top: 50%; width: 16px; }
.check_cookie::after { border-right: 6px solid #e4007f; border-bottom: 3px solid #e4007f; content: ''; display: block; height: 20px; left: 7px; margin-top: -16px; opacity: 0; position: absolute; top: 50%; transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1); transition: transform .2s ease-in-out, opacity .2s ease-in-out; width: 9px; }
#cookie_check_login:checked + .check_cookie::before { border-color: #666; }
#cookie_check_login:checked + .check_cookie::after { opacity: 1; transform: rotate(45deg) scale3d(1,1,1); }
#login_mess { display: block; width: 100%; height: 20px; font-size: 12px; line-height: 20px; text-align: center; margin-bottom: 5px; color: #f00; }
#login_button { display: block; width:80%; background:#e4007f; border:0; padding:4%; font-size:100%; color:#fff; cursor:pointer; transition:background .3s; -webkit-transition:background .3s; border-radius: 10px; margin: 5px auto; }
#login_button:hover{ background:#ef5be7; }
#login_cancel { display: block; width:50%; background:#aaa; border:0; padding:4%; font-size:100%; color:#000; cursor:pointer; transition:background .3s; -webkit-transition:background .3s; border-radius: 10px; margin: 5px auto; }
#login_cancel:hover{ background:#666; }
#forget_pass { display: block; width: 100%; text-align: center; font-size: 12px; color: #666; line-height: 20px; cursor: pointer; margin: 5px 0; cursor: pointer; }
#forget_pass:hover { color: #3366ff; font-weight: bold; }
#forget_wrap { position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,.9); z-index: 9000; }
#forget_inner_block { display: block; width: 320px; height: 300px; position: relative; top: 50%; left: 50%; transform: translate(-50%,-50%); padding: 5px; box-sizing: border-box; border: 2px #000 solid; border-radius: 10px; background: #FFF; }
#forget_inner_block h2 { display: block; width: 100%; font-size: 18px; line-height: 40px; text-align: center; }
#forget_inner_block p { font-size: 14px; line-height: 24px; text-align: center; }
#forget_inner_block .icon{ width:40px; height:40px; background-color:#e4007f; float:left; border:1px solid #ccc; border-right: none; margin-top: 10px; margin-bottom: 20px; box-sizing: border-box; border-radius: 5px 0 0 5px; }
#forget_inner_block .icon span{ display: block; width: 24px; height: 24px; margin: 8px; color: #fff; }
#forget_inner_block input[type="text"], #forget_inner_block input[type="password"]{ width: calc(100% - 42px); height:40px; border:1px solid #ccc; border-left: none; margin-top: 10px; margin-bottom: 20px; padding: 0 10px; box-sizing: border-box; border-radius: 0 5px 5px 0;  }
#pass_send_mess { display: block; width: 100%; height: 20px; font-size: 12px; line-height: 20px; text-align: center; margin-bottom: 10px; color: #f00; }
#pass_send { width:100%; background:#e4007f; border:0; padding:4%; font-size:100%; color:#fff; cursor:pointer; transition:background .3s; -webkit-transition:background .3s; border-radius: 10px; }
#pass_send:hover { background:#ef5be7; color: #fff; }
#pass_close { display: block; width: 100%; font-size: 14px; line-height: 20px; text-align: center; margin-top: 20px; cursor: pointer; }
#pass_close:hover { text-decoration: underline; color: #00F; }
#form_bottom { content: ""; display: block; width: 100%; height: 20px; background: #e4007f; border-radius: 0 0 5px 5px; }


/*### Back Ground ###*/
#back_ground { position: absolute; top: 0; left: 0; width: 100%; height: 100%;  z-index: -1; display: block; }



/*### Concting ###*/
#conecting_load_animation { position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,.8); z-index: 19999; }
#conecting_load_svg_box { width: 80px; height: 80px; position: relative; top: 50%; left: 50%; transform: translate(-50%,-50%); }



/* ### フレキシブル ###  */
@media screen and (max-width: 768px) {
    #top-head, .inner { width: 100%; padding: 0; margin: 0; }
    #top-head { top: 0; position: fixed; margin-top: 0; }
    /* Fixed reset */
    #top-head.fixed { padding-top: 0; background: transparent; }
    #mobile-head { background: #fff; width: 100%; height: 60px; z-index: 999; position: fixed; box-shadow: 0px 3px 15px rgba(0,0,0,0.2); }
    #top-head.fixed .logo,
    #top-head .logo { position: absolute; left: 0; top: 0; margin: 5px 0 5px 5px; }
    #global-nav { position: absolute; /* 開いてないときは画面外に配置 */ top: -500px; background: #333; width: 100%; text-align: center; padding: 10px 0; -webkit-transition: .5s ease-in-out; -moz-transition: .5s ease-in-out; transition: .5s ease-in-out; }
    #global-nav ul { list-style: none; position: static; right: 0; bottom: 0; font-size: 14px; transform: none; }
    #global-nav ul li { float: none; position: static; }
    #top-head #global-nav ul li a, #top-head #global-nav ul li span, #top-head.fixed #global-nav ul li a, #top-head.fixed #global-nav ul li span { width: 100%; display: block; color: #fff; padding: 10px 0; }
    #nav-toggle { display: block; }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) { top: 11px; -webkit-transform: rotate(315deg); -moz-transform: rotate(315deg); transform: rotate(315deg); }
    .open #nav-toggle span:nth-child(2) { width: 0; left: 50%; }
    .open #nav-toggle span:nth-child(3) { top: 11px; -webkit-transform: rotate(-315deg); -moz-transform: rotate(-315deg); transform: rotate(-315deg); }
    /* #global-nav スライドアニメーション */
    .open #global-nav { /* #global-nav top + #mobile-head height */ -moz-transform: translateY(560px); -webkit-transform: translateY(560px); transform: translateY(560px); }
    #user_info { margin: 0 auto; height: 60px; position: relative; top: 0; left: 15px; }
    #user_icon, #user_data { line-height: 60px; }
}
@media (min-width: 769px) {
	main h1 { font-size: 24px; line-height: 40px; }
	section h2 { font-size: 20px; line-height: 30px; }
}

/* svg animation */
@-webkit-keyframes animate-svg-stroke-1 { 0% { stroke-dashoffset: 1373.6600341796875px; stroke-dasharray: 1373.6600341796875px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1373.6600341796875px; }}
@keyframes animate-svg-stroke-1 { 0% { stroke-dashoffset: 1373.6600341796875px; stroke-dasharray: 1373.6600341796875px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1373.6600341796875px; }}
@-webkit-keyframes animate-svg-fill-1 { 0% { fill: transparent; } 100% { fill: rgb(0, 0, 0); }}
@keyframes animate-svg-fill-1 { 0% { fill: transparent; } 100% { fill: rgb(0, 0, 0); }}
.svg-elem-1 { -webkit-animation: animate-svg-stroke-1 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both; animation: animate-svg-stroke-1 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;}
@-webkit-keyframes animate-svg-stroke-2 { 0% { stroke-dashoffset: 1830.8798828125px; stroke-dasharray: 1830.8798828125px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1830.8798828125px; }}
@keyframes animate-svg-stroke-2 { 0% { stroke-dashoffset: 1830.8798828125px; stroke-dasharray: 1830.8798828125px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1830.8798828125px; }}
@-webkit-keyframes animate-svg-fill-2 { 0% { fill: transparent; } 100% { fill: rgb(0, 0, 0); }}
@keyframes animate-svg-fill-2 { 0% { fill: transparent; } 100% { fill: rgb(0, 0, 0); }}
.svg-elem-2 { -webkit-animation: animate-svg-stroke-2 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both; animation: animate-svg-stroke-2 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;}
@-webkit-keyframes animate-svg-stroke-3 { 0% { stroke-dashoffset: 1138.070068359375px; stroke-dasharray: 1138.070068359375px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1138.070068359375px; }}
@keyframes animate-svg-stroke-3 { 0% { stroke-dashoffset: 1138.070068359375px; stroke-dasharray: 1138.070068359375px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1138.070068359375px; }}
@-webkit-keyframes animate-svg-fill-3 { 0% { fill: transparent; } 100% { fill: rgb(255, 255, 255); }}
@keyframes animate-svg-fill-3 { 0% { fill: transparent; } 100% { fill: rgb(255, 255, 255); }}
.svg-elem-3 { -webkit-animation: animate-svg-stroke-3 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both; animation: animate-svg-stroke-3 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;}
@-webkit-keyframes animate-svg-stroke-4 { 0% { stroke-dashoffset: 80.57679748535156px; stroke-dasharray: 80.57679748535156px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 80.57679748535156px; }}
@keyframes animate-svg-stroke-4 { 0% { stroke-dashoffset: 80.57679748535156px; stroke-dasharray: 80.57679748535156px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 80.57679748535156px; }}
@-webkit-keyframes animate-svg-fill-4 { 0% { fill: transparent; } 100% { fill: rgb(228, 0, 127); }}
@keyframes animate-svg-fill-4 { 0% { fill: transparent; } 100% { fill: rgb(228, 0, 127); }}
.svg-elem-4 { -webkit-animation: animate-svg-stroke-4 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both; animation: animate-svg-stroke-4 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;}
@-webkit-keyframes animate-svg-stroke-5 { 0% { stroke-dashoffset: 1295.89404296875px; stroke-dasharray: 1295.89404296875px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1295.89404296875px; }}
@keyframes animate-svg-stroke-5 { 0% { stroke-dashoffset: 1295.89404296875px; stroke-dasharray: 1295.89404296875px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 1295.89404296875px; }}
@-webkit-keyframes animate-svg-fill-5 { 0% { fill: transparent; } 100% { fill: rgb(255, 255, 255); }}
@keyframes animate-svg-fill-5 { 0% { fill: transparent; } 100% { fill: rgb(255, 255, 255); }}
.svg-elem-5 { -webkit-animation: animate-svg-stroke-5 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both; animation: animate-svg-stroke-5 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;}
@-webkit-keyframes animate-svg-stroke-6 { 0% { stroke-dashoffset: 226.03521728515625px; stroke-dasharray: 226.03521728515625px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 226.03521728515625px; }}
@keyframes animate-svg-stroke-6 { 0% { stroke-dashoffset: 226.03521728515625px; stroke-dasharray: 226.03521728515625px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 226.03521728515625px; }}
@-webkit-keyframes animate-svg-fill-6 { 0% { fill: transparent; } 100% { fill: rgb(228, 0, 127); }}
@keyframes animate-svg-fill-6 { 0% { fill: transparent; } 100% { fill: rgb(228, 0, 127); }}
.svg-elem-6 { -webkit-animation: animate-svg-stroke-6 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both; animation: animate-svg-stroke-6 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;}
@-webkit-keyframes animate-svg-stroke-7 { 0% { stroke-dashoffset: 2272.481689453125px; stroke-dasharray: 2272.481689453125px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 2272.481689453125px; }}
@keyframes animate-svg-stroke-7 { 0% { stroke-dashoffset: 2272.481689453125px; stroke-dasharray: 2272.481689453125px; } 100% { stroke-dashoffset: 0; stroke-dasharray: 2272.481689453125px; }}
@-webkit-keyframes animate-svg-fill-7 { 0% { fill: transparent; } 100% { fill: rgb(255, 255, 255); }}
@keyframes animate-svg-fill-7 { 0% { fill: transparent; } 100% { fill: rgb(255, 255, 255); }}
.svg-elem-7 { -webkit-animation: animate-svg-stroke-7 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both; animation: animate-svg-stroke-7 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s both, animate-svg-fill-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;}