@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

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

- easing

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

INDEX
	setAnim
	common
	not use compass

======================================== */
/* ------------------------------------

キーフレームアニメーション用mixin

■概要
↓こんな感じで書くブラウザ用の設定を書きだしてくれるmixinです
-webkit-animation-name: animation;
-moz-animation-name: animation;
-ms-animation-name: animation;
animation-name: animation;

■使い方

.class_name {
	@include setAnim(キーフレームアニメーションの名前, イージング, アニメーション時間[, 遅延時間]);
}

※遅延時間はいれなくてもいい
※keyframes ~~というのは別途書く必要があります


------------------------------------ */
/* ========================================

common

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

compassを使わない場合

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

INDEX
	text
	layout
	box
	hr
	video

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

$text

======================================== */
.strong {
    font-weight: bold;
}

.large {
    font-size: 1.25em;
}

.x-large {
    font-size: 1.5em;
}

.mega {
    font-size: 2em;
}

.small {
    font-size: .83em;
}

.x-small {
    font-size: .75em;
}

.red {
    color: #f00;
}

.white {
    color: white;
}

.pink {
    color: #df6b81;
}

.f_pink {
    color: #fdd3db;
}

.peach {
    color: #ec7aac;
}

.yellow {
    color: #fff5ec;
}

.orange {
    color: #f18d00;
}

.f_pink {
    color: #fdd3db;
}

.blue {
    color: #00a0e9;
}

.sky {
    color: #5ec5f2;
}

.Thin {
    font-weight: 100;
}

.Light {
    font-weight: 300;
}

.Regular {
    font-weight: 400;
}

.Medium {
    font-weight: 500;
}

.Bold {
    font-weight: 700;
}

.Extrabold {
    font-weight: 800;
}

.Black {
    font-weight: 900;
}

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

$layout

======================================== */
.hide {
    display: none;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.pd-5 {
    padding: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.pd-10 {
    padding: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.pd-15 {
    padding: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.pd-20 {
    padding: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.pd-25 {
    padding: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.pd-30 {
    padding: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.pd-35 {
    padding: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.pd-40 {
    padding: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.pd-45 {
    padding: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.pd-50 {
    padding: 50px !important;
}

.half {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.third {
    width: 33.333%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.quarter {
    width: 25%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.percent20 {
    width: 20%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.percent60 {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 60%;
}

.clear {
    clear: both;
}

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

$box

======================================== */
.box {
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #000;
}

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

$hr

======================================== */
hr {
    border: none;
    border-top: 1px solid #000;
}

hr.dash {
    border-top-style: dashed;
}

hr.dott {
    border-top-style: dotted;
}

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

$video

======================================== */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

- common

======================================== */
body {
    font-family: "Rounded Mplus 1c", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Meiryo, メイリオ, "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    font-weight: 400;
    -ms-word-break: break-all;
    word-break: break-all;
}

.row {
    overflow: hidden;
}

img {
    vertical-align: bottom;
}

a {
    outline: none;
    color: #df6b81;
}

a:visited {
    color: #bb2944;
}

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

INDEX
	text
	layout
	box
	hr
	video

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

$text

======================================== */
.strong {
    font-weight: bold;
}

.large {
    font-size: 1.25em;
}

.x-large {
    font-size: 1.5em;
}

.mega {
    font-size: 2em;
}

.small {
    font-size: .83em;
}

.x-small {
    font-size: .75em;
}

.red {
    color: #f00;
}

.white {
    color: white;
}

.pink {
    color: #df6b81;
}

.f_pink {
    color: #fdd3db;
}

.peach {
    color: #ec7aac;
}

.yellow {
    color: #fff5ec;
}

.orange {
    color: #f18d00;
}

.f_pink {
    color: #fdd3db;
}

.blue {
    color: #00a0e9;
}

.sky {
    color: #5ec5f2;
}

.Thin {
    font-weight: 100;
}

.Light {
    font-weight: 300;
}

.Regular {
    font-weight: 400;
}

.Medium {
    font-weight: 500;
}

.Bold {
    font-weight: 700;
}

.Extrabold {
    font-weight: 800;
}

.Black {
    font-weight: 900;
}

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

$layout

======================================== */
.hide {
    display: none;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.pd-5 {
    padding: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.pd-10 {
    padding: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.pd-15 {
    padding: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.pd-20 {
    padding: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.pd-25 {
    padding: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.pd-30 {
    padding: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.pd-35 {
    padding: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.pd-40 {
    padding: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.pd-45 {
    padding: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.pd-50 {
    padding: 50px !important;
}

.half {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.third {
    width: 33.333%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.quarter {
    width: 25%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.percent20 {
    width: 20%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.percent60 {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 60%;
}

.clear {
    clear: both;
}

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

$box

======================================== */
.box {
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #000;
}

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

$hr

======================================== */
hr {
    border: none;
    border-top: 1px solid #000;
}

hr.dash {
    border-top-style: dashed;
}

hr.dott {
    border-top-style: dotted;
}

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

$video

======================================== */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wrapper {
    position: relative;
}

.blue {
    color: #00a0e9;
}

.sky {
    color: #5ec5f2;
}

.share-buttons iframe {
    vertical-align: bottom;
}

.loading_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
}

.loading_bg02 {
    display: none;
}

.loading_img {
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
    background-image: url(/images/common/loading_img.gif);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 99999;
}

.loading_img02 {
    display: none;
    background-image: none;
}

.loading_text {
    background-image: url(/images/common/loading_img_2.gif);
}

.index02 .loading_text {
    background-image: url(/images/common/loading_img_3.gif);
}

.index02 .loading_bg02 {
    display: none;
}

.index02 .loading_img02 {
    display: none;
}

.border_pink {
    border: 1px solid #df6b81;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

topへ戻る

======================================== */
.page-top {
    position: fixed;
    display: none;
    bottom: 100px;
    right: 100px;
    padding: 5px;
    background: #df6b81;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    font-size: 0.9em;
    font-family: "Cagliostro", sans-serif;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: 0.6;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease;
    width: 60px;
    height: 60px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 99999;
}

.page-top:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
}

.page-top:before {
    content: "↑";
    font-family: "Cagliostro", sans-serif;
    display: block;
}

.page-top:visited {
    color: #fff;
}

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

- footer

======================================== */
.footer {
    overflow: hidden;
    padding: 0 0;
    z-index: 1000;
    position: absolute;
    width: 100%;
}

.footer_inner {
    background: #fdd3db;
    padding: 20px;
    overflow: hidden;
    text-align: center;
}

.footer_right {
    float: right;
    font-size: 0.8em;
}

.footer_menu {
    display: block;
    overflow: hidden;
}

.footer_menu li {
    float: left;
}

.footer_menu a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
}

.footer_banners a {
    display: inline-block;
    width: 270px;
    margin-bottom: 5px;
}

.footer_banners img {
    width: 100%;
    height: auto;
}

.bonus {
    margin-bottom: 10px;
    text-align: center;
}

.bonus a {
    display: inline-block;
    width: 350px;
}

.bonus a:hover {
    opacity: .7;
}

.bonus img {
    max-width: 100%;
}

.copyright {
    overflow: hidden;
    font-size: 0.7em;
    position: absolute;
    bottom: 0;
    padding: 10px;
    text-align: center;
    z-index: 999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

- footer

======================================== */
.to-top a {
    bottom: 36px !important;
    display: block;
    height: 40px;
    width: 40px;
    border: 1px solid #df6b81;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    font-family: "Rounded Mplus 1c", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Meiryo, メイリオ, "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    font-weight: 500;
    font-size: .83em;
    color: #df6b81;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
}

.to-top a:hover {
    color: #fff;
    border-color: transparent;
    -webkit-animation-name: totop;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 4s;
    -webkit-animation-delay: 0;
    -moz-animation-name: totop;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-duration: 4s;
    -moz-animation-delay: 0;
    -ms-animation-name: totop;
    -ms-animation-timing-function: linear;
    -ms-animation-iteration-count: infinite;
    -ms-animation-duration: 4s;
    -ms-animation-delay: 0;
    animation-name: totop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-delay: 0;
}

@keyframes totop {
    0% {
        background-color: #df6b81;
    }

    33% {
        background-color: #00a0e9;
    }

    66% {
        background-color: #fff5ec;
    }

    100% {
        background-color: #df6b81;
    }
}

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

- top

======================================== */
.share-buttons {
    text-align: right;
}

.logo {
    padding-top: 60px;
    margin-bottom: 5px;
}

.news .list-item a {
    padding: 0;
    margin-bottom: 30px;
    color: #909090;
}

.news .list-item time {
    color: #df6b81;
    font-weight: 500;
}

.news .list-title {
    margin-bottom: 5px;
    line-height: 1.5em;
    color: #555;
}

.news a {
    text-decoration: none;
}

.index_news_more a {
    padding: 10px;
    color: #555;
    font-family: "Cagliostro", sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.TweetAuthor {
    white-space: normal !important;
}

.ps-container {
    touch-action: auto;
    -ms-touch-action: auto;
}

.puyon {
    animation: puyon 1.0s linear 0s 1;
}

@keyframes puyon {
    0% {
        transform: scale(1, 1) translate(0%, 0%);
    }

    40% {
        transform: scale(0.95, 1.2) translate(0%, -10%);
    }

    50% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }

    60% {
        transform: scale(0.95, 1.05) translate(0%, -3%);
    }

    70% {
        transform: scale(1.05, 0.95) translate(0%, 3%);
    }

    80% {
        transform: scale(1, 1) translate(0%, 0%);
    }

    100% {
        transform: scale(1, 1) translate(0%, 0%);
    }
}

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

- main

======================================== */
.main_inner {
    height: 1200px;
}

.main_img {
    position: relative;
    overflow: hidden;
    height: 1200px;
}

.main_img_inner {
    position: absolute;
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
}

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

- sub

======================================== */
.section__header,
.world_title {
    margin-bottom: 10px;
    background-image: url("/images/common/line_dotted.png");
    background-position: bottom left;
    background-repeat: repeat-x;
}

.section__title,
.world_title,
.section__sub-title {
    display: inline-block;
}

.section__title,
.world_title {
    margin-right: 10px;
    font-family: "Cagliostro", sans-serif;
    font-size: 2em;
    color: #df6b81;
}

.section__title:before,
.world_title:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 35px;
    background-image: url("/images/common/title_flower_icon.png");
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all 1s ease;
    margin-right: 5px;
    vertical-align: bottom;
}

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

- staff

======================================== */
.staff__content {
    margin-bottom: 40px;
}

.kana {
    font-size: 0.8em;
}

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

- comment

======================================== */
.comment {
    background: #fff;
    padding: 20px;
    width: 600px;
}

.comment__title {
    font-weight: 500;
}

.comment__title .text {
    position: relative;
    z-index: 1;
}

.comment__title .text:after {
    content: "";
    display: block;
    position: absolute;
    left: 5%;
    bottom: 0;
    height: .5em;
    width: 90%;
    -moz-transform: skew(10deg);
    -ms-transform: skew(10deg);
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
    background-color: white;
    z-index: -1;
}

.comment_link {
    text-decoration: none;
    border-bottom: dotted 1px #df6b81;
    color: #df6b81;
}

.comment_link:hover {
    border-bottom: dotted 2px #df6b81;
}

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

2階層　news

======================================== */
.page-title {
    text-align: center;
    vertical-align: middle;
    position: relative;
    font-family: "Cagliostro", sans-serif;
    color: #e895a5;
}

.news-article {
    margin-bottom: 20px;
    padding: 20px 0;
}

.news-article:after {
    content: "";
    display: block;
    background-image: url("/images/common/line_flower_icon.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 200px;
    height: 100px;
}

.news-article__inner {
    padding: 10px 20px;
}

.news-article__inner .article__content {
    line-height: 30px;
}

.news-article__header time {
    display: block;
}

.news-article__header .article__title {
    font-size: 1.5em;
    margin-bottom: 10px;
    padding: 5px 0 10px;
    color: #df6b81;
}

.news-article__header .article__title a {
    text-decoration: none;
    color: #df6b81;
}

.sidebar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.sidebar-title {
    font-size: 1.5em;
}

.new-entry {
    margin-top: -10px;
    padding: 40px 0 20px;
    position: relative;
}

.sidebar-list {
    padding: 20px;
}

.sidebar-list__item {
    margin-bottom: 10px;
    border-bottom: 1px dotted #555;
    padding-bottom: 10px;
}

.sidebar-list__item a {
    text-decoration: none;
    color: #555;
}

.sidebar-list__item time {
    font-size: 0.8em;
}

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

2階層目　ストーリー

======================================== */
.chara_all {
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-image: url(/images/common/top/chara_all.png);
    width: 80%;
    padding-top: 115%;
    margin: 0 auto;
}

.story_container_title {
    font-size: 2em;
}

.story_list {
    text-align: center;
}

.story_list_item {
    width: 50%;
    float: left;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.story_list_item:nth-child(2n+1) {
    clear: both;
}

.story_list_img a {
    text-align: center;
    text-decoration: none;
    color: #555;
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
}

.story-slider__thumbs li {
    width: 25%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding: 5px;
}

.story-slider__thumbs img {
    width: 100%;
}

.story_image {
    margin-bottom: 20px;
}

.story__name {
    font-size: 1.5em;
    margin-bottom: 10px;
}

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

２階層目　グッズ

======================================== */
.goods_container {
    margin-bottom: 50px;
}

.goods-article {
    width: 33.33%;
    float: left;
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.goodslist_image__inner {
    margin-bottom: 20px;
}

.goodslist_image__inner a {
    text-decoration: none;
    display: block;
    height: 200px;
    width: 200px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
}

.goodslist_image__inner img {
    max-width: 200px;
    max-height: 200px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.goodsname a {
    text-decoration: none;
    color: #555;
    display: block;
}

.goodsprice {
    font-size: 0.8em;
}

.goods-slider__thumbs li {
    width: 20%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding: 5px;
    min-height: 100px;
}

.goods-slider__thumbs img {
    width: 100%;
}

.goods_image {
    width: 50%;
    float: left;
}

.goods__data {
    width: 45%;
    float: right;
}

.goods__name {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.goods__detail__row {
    margin-bottom: 20px;
}

.goods__term {
    font-size: 0.8em;
}

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

ページャー

======================================== */
.article-pager {
    height: 45px;
    position: relative;
    padding-top: 10px;
    text-align: center;
    color: #df6b81;
}

.article-pager a {
    color: #df6b81;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.article-pager--list {
    position: relative;
}

.article-pager--back {
    position: relative;
}

.nolink {
    opacity: 0.3;
}

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

2階層目　ムービー

======================================== */
.movie-thumbs-list li {
    padding: 20px;
}

.movie-thumbs-list a {
    text-decoration: none;
    color: #555;
    display: block;
}

.movie-thumbs-list a img {
    width: 80%;
}

.movie_cont {
    max-width: 700px;
    margin: 0 auto;
}

.youtube_box {
    position: relative;
    padding-top: 56.25%;
}

.youtube_box iframe {
    position: absolute !important;
    max-width: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
}

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

2階層目　ミュージック

======================================== */
.music-cont {
    overflow: hidden;
}

.music-cont:after {
    content: "";
    display: block;
    background-image: url(/images/common/line_flower_icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 200px;
    height: 100px;
}

.music-cont__header {
    text-align: center;
    margin-bottom: 20px;
}

.music-cont__theme {
    font-size: 1.5em;
}

.music-cont__singer {
    font-size: 2em;
}

.music-cont__title {
    font-size: 1.5em;
    color: #df6b81;
}

.music__jacket {
    margin-bottom: 10px;
}

.music__jacket img {
    width: 100%;
    max-width: 500px;
}

.music-item__data {
    margin-bottom: 20px;
}

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

2階層目　オンエアー

======================================== */
.onair__title {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 500;
}

.onair__item {
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.onair__item__title {
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: 500;
}

.onair__item__time {
    font-size: 1.2em;
}

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

2階層目　DVD

======================================== */
.disk-container2 {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 45px;
    clear: both;
    padding-bottom: 40px;
    border-bottom: 2px dotted #e62e8b;
}

.disk-container2:last-child {
    border: none;
}

.disk__title2 {
    padding-bottom: 10px;
    font-size: 1.6em;
    line-height: 1.6em;
    color: #df6b81;
}

.disk-list2 {
    text-align: center;
}

.disk__item2 {
    display: inline-block;
    margin-bottom: 40px;
    text-align: center;
}

.disk__item2 a {
    text-decoration: none;
    display: block;
    color: #df6b81;
    padding: 0 10px;
}

.disk__item2 a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 15px;
    background-image: url("/images/common/title_flower_icon.png");
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all 1s ease;
    vertical-align: middle;
}

.disk__jacket02 {
    max-width: 400px;
    overflow: hidden;
    padding: 5px;
    margin: 0 20px 10px auto;
}

.disk__jacket02 img {
    width: 100%;
}

.disk__jacket__caption {
    font-size: 0.8em;
}

.disktrack {
    font-size: 0.8em;
}

.tokuten-list {
    overflow: hidden;
}

.tokuten__item {
    padding: 30px 5px 0;
    margin: 0 0 50px 0;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left;
}

.tokuten__item__title {
    font-size: 1.5em;
    color: #00a0e9;
}

.tokuten__img img {
    width: 100%;
}

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

2階層目　キャラクター

======================================== */
.chara_cont {
    position: relative;
}

.chara-data {
    position: absolute;
    padding: 0;
    float: left;
    margin-top: 100px;
}

.chara-data__name {
    padding: 5px;
    background-image: url("/images/common/line_dotted.png");
    background-position: bottom left;
    background-repeat: repeat-x;
    display: inline-block;
}

.chara-data02 {
    position: absolute;
    padding: 0;
}

.chara-data__name--text {
    font-size: 2em;
    font-weight: 500;
    display: inline-block;
}

.chara-data__name--kana {
    font-size: 1em;
    display: inline-block;
}

.chara-data__cv {
    padding: 5px;
    margin-bottom: 10px;
}

.chara-data__detail {
    margin-bottom: 20px;
}

.slider-images {
    /*width: 60%;*/
    position: absolute;
}

.selector-arrows {
    text-align: right;
}

.chara_thumb {
    text-align: center;
}

.chara_thumb_list {
    border: #df6b81 dotted 1px;
    margin-bottom: 40px;
    display: inline-block;
}

.chara_thumb_list a {
    text-decoration: none;
    color: #555;
    vertical-align: middle;
    display: inline-block;
    margin: 10px 0 10px 30px;
}

.chara_thumb_list a:last-child {
    margin-right: 30px;
}

.chara_thumb_list a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 30px;
    background-image: url("/images/common/nav_flower_icon.png");
    background-repeat: no-repeat;
    position: absolute;
    margin-left: -25px;
    moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    opacity: 0;
    animation: animationbig 2s ease 1s both;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.chara_thumb_list a:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.chara_thumb_list02 {
    width: 900px;
    margin: 0 auto 50px;
}

.chara_thumb_list02 a {
    display: block;
    text-decoration: none;
    color: #555;
}

.chara_thumb_slider_item_name {
    font-size: 0.8em;
}

/* ========================================
Slider
======================================== */
.bx-wrapper .bx-viewport {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
}

.chara_thumb_slider_item {
    text-align: center;
}

.chara_thumb_slider_item img {
    width: 100%;
}

/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
    color: #df6b81;
}

/*左右の矢印の位置を変える*/
/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #df6b81;
}

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

comingsoon

======================================== */
.comingsoon {
    font-size: 3em;
    font-family: "Cagliostro", sans-serif;
    color: #00a0e9;
}

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

notfound

======================================== */
.notfound {
    font-size: 3em;
    font-family: "Cagliostro", sans-serif;
    color: #df6b81;
}

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

specialページ

======================================== */
.special_bannerlist {
    overflow: hidden;
}

.special_bannerlist div {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
}

.special_bannerlist div a {
    display: block;
}

.special_bannerlist div img {
    width: 100%;
}

.special_comment {
    width: 700px;
    margin: 10px auto;
}

.special_large_title {
    text-align: center;
    color: #df6b81;
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 20px;
}

.special_thumb_slider {
    margin-bottom: 20px;
}

.cheering_illust {
    text-decoration: none;
}

.cheering_illust-thumbs__item__title {
    font-size: 1.5em;
    margin: 10px 0;
}

.cheering_comment {
    border: 2px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 25px 10px;
    overflow: hidden;
    margin-bottom: 40px;
    display: inline-block;
}

.cheering_comment_name {
    font-size: 0.8em;
    line-height: 1.5em;
    text-align: right;
}

.spinoff_comics {
    text-align: center;
}

.spinoff_comics a {
    text-decoration: none;
    overflow: hidden;
    width: 400px;
    margin: 0 auto;
    display: block;
}

.spinoff_comics img {
    width: 100%;
}

.spinoff_comics_btn {
    background: #000;
    color: #fff;
}

.special_comic_slider {
    max-width: 90%;
    margin: 30px auto;
}

.special_comic_slider img {
    width: 100%;
}

.special_comic_slider .slick-prev:before,
.special_comic_slider .slick-next:before {
    color: #df6b81;
}

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

bookページ

======================================== */
.book_list_header,
.book_list_header_sub {
    font-size: 1.5em;
    font-weight: 500;
    color: #df6b81;
    text-align: center;
}

.book_new {
    overflow: hidden;
    padding: 10px;
    margin-bottom: 40px;
}

.book_new .book_picture {
    float: left;
    width: 400px;
}

.book_archives {
    float: left;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.book_archives img {
    width: 100%;
}

.book_archives .book_title {
    text-align: center;
}

.book_picture {
    border: #df6b81 2px solid;
    margin-right: 10px;
    box-sizing: border-box;
}

.book_name {
    margin-bottom: 10px;
}

.book_title {
    font-size: 1.25em;
}

.book_code {
    margin-bottom: 10px;
}

.book_btn a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    border: #df6b81 2px solid;
    margin: 5px 5px 0 0;
}

.world_item {
    margin-bottom: 30px;
}

.world_title {
    font-size: 1.5em;
    display: block;
    font-family: "Rounded Mplus 1c", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", Meiryo, メイリオ, "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

.world_title:before {
    height: 30px;
}

.everyday_zouroku_img {
    width: 100%;
}

.everyday_zouroku_img img {
    width: 100%;
}

.index_everyday_zouroku {
    background: #df6b81;
    padding: 0 10px 10px;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.index_everyday_zouroku_title {
    font-size: 1.5em;
    color: #fff;
}

@media screen and (min-width: 769px) {

    /* ========================================
  
  - common
  
  ======================================== */
    html,
    body {
        min-height: 100%;
        min-width: 1400px;
    }

    body {
        position: relative;
        background: url(/images/common/bg_yellow.jpg) repeat-y left top, url(/images/common/bg_pink.jpg) repeat-y right bottom;
    }

    a {
        -webkit-transition: opacity 200ms;
        -moz-transition: opacity 200ms;
        -ms-transition: opacity 200ms;
        -o-transition: opacity 200ms;
        transition: opacity 200ms;
    }

    a:hover {
        opacity: .7;
    }

    .wrapper {
        overflow: hidden;
        margin: 0 auto;
        max-width: 1500px;
        min-width: 1300px;
        box-sizing: border-box;
    }

    .share-buttons {
        position: absolute;
        right: 10px;
        top: 5px;
        z-index: 10;
    }

    .container {
        position: relative;
        z-index: 1;
    }

    .container .inner {
        width: 1080px;
        margin: 0 auto;
    }

    .loaded .container {
        display: block;
    }

    /* ========================================
  
  - header
  
  ======================================== */
    .site-header {
        width: 280px;
        float: left;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
        position: relative;
        z-index: 200;
        height: 100%;
        text-align: center;
        padding: 10px;
        min-height: 950px;
    }

    .index .site-header {
        width: 520px;
    }

    .site-header__inner {
        position: relative;
        margin-bottom: 50px;
    }

    .site-header__inner .banner {
        display: block;
        padding: 20px;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .site-header__inner .banner img {
        width: 100%;
    }

    .site-header__inner img {
        max-width: 100%;
    }

    .site-header__inner02 {
        display: none;
    }

    .header-banners a {
        display: inline-block;
        width: 270px;
        margin-bottom: 10px;
    }

    .header-banners a:hover {
        opacity: .7;
    }

    .header-banners img {
        width: 100%;
        height: auto;
    }

    .site-logo {
        text-align: center;
        margin: 60px 10px;
    }

    .site-logo a {
        display: block;
        transition: all 1s ease;
        -webkit-transition: all 1s ease;
    }

    .site-logo a:hover {
        opacity: 1;
    }

    .onair_text {
        margin: 30px 10px;
    }

    /* ========================================
  
  nav
  
  ======================================== */
    .navi {
        letter-spacing: 0.2em;
        position: relative;
    }

    .navi_list {
        background-repeat: no-repeat;
        text-align: center;
        font-size: 1.2em;
        padding: 0;
        background-size: 100%;
    }

    .navi_list li {
        margin-bottom: 20px;
    }

    .navi_item {
        position: relative;
        font-weight: 500;
    }

    .navi_item a {
        text-decoration: none;
        color: #555;
        display: inline-block;
    }

    .navi_item__content:before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 30px;
        background-image: url("/images/common/nav_flower_icon.png");
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        margin-left: -25px;
        moz-transition: -moz-transform 0.5s linear;
        -webkit-transition: -webkit-transform 0.5s linear;
        -o-transition: -o-transform 0.5s linear;
        -ms-transition: -ms-transform 0.5s linear;
        transition: transform 0.5s linear;
        opacity: 0;
        animation: animationbig 2s ease 1s both;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .navi_item__content:hover:before {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .navi_products_sub {
        position: absolute;
        top: 310px;
        left: 200px;
        padding: 10px 20px 10px 30px;
        text-align: left;
        min-width: 90px;
        z-index: 999;
        background-color: #fff5ec;
    }

    .navi_products_sub .navi_item {
        margin-bottom: 0;
    }

    .index .navi_products_sub {
        top: 310px;
        left: 320px;
    }

    .navi_story_sub {
        position: absolute;
        top: 100px;
        left: 200px;
        padding: 10px 20px 10px 30px;
        text-align: left;
        min-width: 200px;
        z-index: 999;
        background-color: #fff5ec;
    }

    .navi_story_sub .navi_item {
        margin-bottom: 0;
    }

    .index .navi_story_sub {
        top: 100px;
        left: 320px;
    }

    /* ========================================
  
  - main
  
  ======================================== */
    .main {
        margin: 0px auto 0px -280px;
        padding: 0px 0px 0px 280px;
        text-align: left;
        width: 100%;
        float: right;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .main {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    .main.show {
        transition-property: transform opacity;
        transition-duration: 1s;
        transition-delay: 0s;
        transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    .index .main {
        margin: 0px auto 0px -520px;
    }

    .main_img {
        float: left;
        margin: 0px -300px 0px 0px;
        padding: 0px 300px 0px 0px;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }

    .main_img img {
        width: 100%;
    }

    .main_img_inner {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 74%;
        background: url(/images/common/main_img.png) no-repeat top center;
        background-size: 100% auto;
        padding-top: 100%;
        z-index: 0;
    }

    .main_img_inner02 {
        background: url(/images/common/main_img_201703.png) no-repeat top center;
        background-size: 100% auto;
    }

    .main_img_inner03 {
        background: url(/images/common/main_img_201705.png) no-repeat top center;
        background-size: 100% auto;
    }

    .index_sub_cont {
        float: right;
        margin: 0px;
        padding: 10px;
        width: 300px;
        position: relative;
        z-index: 2;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding-top: 20px;
    }

    .index_youtube {
        z-index: 999;
        text-align: center;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .index_youtube iframe {
        width: 280px;
    }

    .copyright {
        width: 300px;
    }

    .index .copyright {
        width: 520px;
    }

    .index_everyday_zouroku {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    .index_everyday_zouroku img {
        width: 100%;
    }

    /* ========================================
  
  - news
  
  ======================================== */
    .news {
        top: 50px;
        right: 0;
        -webkit-transition: opacity 400ms 2s;
        -moz-transition: opacity 400ms 2s;
        -ms-transition: opacity 400ms 2s;
        -o-transition: opacity 400ms 2s;
        transition: opacity 400ms 2s;
        margin-bottom: 40px;
    }

    .news .content {
        position: relative;
        /*height: 320px;*/
        width: 100%;
    }

    .news .list-item {
        position: relative;
        padding-bottom: 1em;
        margin-bottom: 1em;
        border-bottom: 1px dotted #555;
    }

    .news .list-item:last-child {
        margin-bottom: 0;
    }

    .loaded .news {
        opacity: 1;
    }

    .index_news_more {
        text-align: right;
    }

    .index_news_more a {
        display: inline-block;
        padding: 10px;
        color: #555;
    }

    /* ========================================
  
  - twitter
  
  ======================================== */
    .twitter {
        height: 400px;
        top: 500px;
        right: 0;
        overflow: scroll;
    }

    /* ========================================
  
  - staff
  
  ======================================== */
    .staff-comment {
        padding-top: 180px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .staff-comment .bg {
        overflow: hidden;
        padding: 90px;
        background: rgba(255, 255, 255, 0.5);
    }

    .staff-comment--v2 {
        padding-top: 150px;
    }

    .staff-comment--v2 .bg {
        padding-top: 45px;
    }

    .staff {
        margin-bottom: 20px;
        width: 50%;
        float: left;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 20px;
    }

    .staff img {
        max-width: 100%;
    }

    .staff__title {
        margin-right: 10px;
        font-family: "Gloria Hallelujah", cursive;
        font-size: 2.5em;
        color: #ef9dbe;
    }

    .comment .content {
        font-size: 1.25em;
        letter-spacing: 0.15em;
        line-height: 2.5em;
        color: #333;
    }

    /* テーブル全体 */
    .table-staff {
        width: 100%;
        display: block;
        /* ヘッダー行 */
        /* 通常行 */
    }

    .table-staff tbody {
        display: block;
    }

    .table-staff tr {
        display: block;
        margin-bottom: 10px;
    }

    .table-staff td {
        display: inline-block;
        padding: 10px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        /* text-align: center; */
        /* vertical-align: middle; */
    }

    .table-staff td:nth-child(odd) {
        width: 41%;
        line-height: 1.2em;
    }

    .table-staff td:nth-child(even) {
        width: 59%;
        font-size: 1.2em;
    }

    /* ========================================
  
  2階層　news
  
  ======================================== */
    .page-title {
        font-size: 3em;
        padding-top: 40px;
        text-align: left;
        padding-left: 100px;
    }

    .container__inner {
        padding: 50px 100px;
    }

    .main-column {
        width: 70%;
        float: left;
    }

    .news-article {
        margin-bottom: 20px;
        padding: 20px 0;
    }

    .news-article__inner {
        padding: 10px 100px 10px 0;
    }

    .news-article__header time {
        display: block;
    }

    .news-article__header .article__title {
        font-size: 1.5em;
        margin-bottom: 10px;
        padding: 5px 0 10px;
    }

    .sidebar {
        width: 30%;
        float: left;
        padding: 10px 30px;
    }

    .sidebar-title {
        font-size: 1.5em;
    }

    .sidebar-list {
        padding: 0px;
    }

    .sidebar-list__item a {
        text-decoration: none;
        color: #555;
    }

    .sidebar-list__item time {
        font-size: 0.8em;
    }

    /* ========================================
  
  2階層目　ストーリー
  
  ======================================== */
    .story_container {
        width: 60%;
        float: left;
    }

    .story_container_title {
        font-size: 2em;
    }

    .story_list {
        width: 35%;
        float: right;
        text-align: center;
    }

    .story_list_item {
        width: 50%;
        float: left;
        padding: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .story_list_item:nth-child(2n+1) {
        clear: both;
    }

    .story-slider__thumbs li {
        width: 25%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        padding: 5px;
    }

    .story-slider__thumbs img {
        width: 100%;
    }

    .story_image {
        margin-bottom: 20px;
    }

    .story__name {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    /* ========================================
  
  ２階層目　グッズ
  
  ======================================== */
    .goods_container {
        margin-bottom: 50px;
    }

    .goods-article {
        width: 33.33%;
        float: left;
        text-align: center;
        padding: 10px;
        margin-bottom: 30px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .goods-article:nth-child(3n+1) {
        clear: both;
    }

    .goodslist_image__inner {
        margin-bottom: 20px;
    }

    .goodslist_image__inner a {
        text-decoration: none;
        display: block;
        height: 200px;
        width: 200px;
        margin: 0 auto;
        position: relative;
        background-color: #fff;
    }

    .goodslist_image__inner img {
        max-width: 200px;
        max-height: 200px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    .goodsname a {
        text-decoration: none;
        color: #555;
        display: block;
    }

    .goodsprice {
        font-size: 0.8em;
    }

    .goods-slider__thumbs li {
        width: 20%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        padding: 5px;
        min-height: 100px;
    }

    .goods-slider__thumbs img {
        width: 100%;
    }

    .goods_image {
        width: 50%;
        float: left;
    }

    .goods__data {
        width: 45%;
        float: right;
    }

    .goods__name {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .goods__detail__row {
        margin-bottom: 20px;
    }

    .goods__term {
        font-size: 0.8em;
    }

    /* ========================================
  
  ページャー
  
  ======================================== */
    .article-pager {
        height: 45px;
        position: relative;
        padding-top: 10px;
    }

    .article-pager a,
    .article-pager span {
        color: #df6b81;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        line-height: 45px;
        width: 80px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .article-pager--list {
        position: relative;
        padding: 0 10px;
    }

    .article-pager--back {
        position: relative;
    }

    /* ========================================
  
  2階層目　ムービー
  
  ======================================== */
    .movie-thumbs-list a {
        text-decoration: none;
        color: #555;
        display: block;
    }

    .movie-thumbs-list a img {
        width: 80%;
    }

    .movie-thumbs__item__title {
        font-size: 2em;
    }

    /* ========================================
  
  2階層目　ミュージック
  
  ======================================== */
    .music-cont {
        margin-bottom: 60px;
    }

    .music-cont__header {
        text-align: center;
        margin-bottom: 20px;
    }

    .music-cont__theme {
        font-size: 1.5em;
    }

    .music-item {
        clear: both;
        overflow: hidden;
    }

    .music__jacket {
        margin-bottom: 10px;
        float: left;
        width: 40%;
    }

    .music__jacket img {
        width: 100%;
    }

    .music-item__data {
        float: left;
        margin-bottom: 20px;
        width: 60%;
        padding: 10px;
        box-sizing: border-box;
    }

    /* ========================================
  
  2階層目　オンエアー
  
  ======================================== */
    .onair__title {
        font-size: 2em;
        text-align: center;
        margin-bottom: 50px;
    }

    .onair__item {
        padding: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
        width: 650px;
        margin: 0 auto;
    }

    .onair__item__title {
        margin-bottom: 20px;
        float: left;
        width: 200px;
        font-size: 2em;
        line-height: 1.3em;
    }

    .onair__item__time {
        float: left;
        font-size: 1.5em;
    }

    .onair_distribute .onair__item {
        margin-bottom: 30px;
    }

    .onair_distribute .onair__item__title {
        width: auto;
        margin-bottom: 0;
        float: none;
    }

    .onair_distribute .onair__item__time {
        float: none;
    }

    /* ========================================
  
  2階層目　DVD
  
  ======================================== */
    .disk-list2 {
        margin-bottom: 30px;
    }

    .disk__item2 {
        margin-bottom: 10px;
    }

    .disk__jacket02 {
        max-width: 400px;
        max-height: 500px;
        padding: 5px;
        margin: 0 20px 10px auto;
    }

    .disk__jacket02 img {
        width: 100%;
    }

    .disk__jacket__caption {
        font-size: 0.8em;
        margin: 0 20px;
    }

    .disktrack {
        font-size: 0.8em;
    }

    .tokuten__img {
        width: 50%;
    }

    /* ========================================
  
  2階層目　キャラクター
  
  ======================================== */
    .chara_cont {
        width: 900px;
        margin: 0 auto;
        height: 600px;
    }

    .chara-data {
        padding: 0;
        float: left;
        margin-top: 100px;
    }

    .chara-data__name {
        padding: 5px;
    }

    .chara-data02 {
        position: absolute;
        padding: 0;
        float: left;
        top: 0;
        left: 400px;
        margin-top: 100px;
        width: 500px;
        padding: 10px;
    }

    .chara-data__name--text {
        font-size: 2em;
        font-weight: 500;
    }

    .chara-data__name--kana {
        font-size: 1em;
    }

    .chara-data__cv {
        padding: 5px;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .chara-data__detail {
        margin-bottom: 20px;
        font-size: 1.1em;
    }

    .slider-images {
        width: 650px;
        position: absolute;
    }

    .slider-images02 {
        width: 400px;
        position: absolute;
        top: 0;
    }

    .selector-arrows {
        text-align: left;
    }

    /* ========================================
  
  bookページ
  
  ======================================== */
    .book_archives {
        width: 25%;
    }

    .sp_elem {
        display: none;
    }
}

@media screen and (max-width: 768px) {

    /* ========================================
  
  - common
  
  ======================================== */
    body {
        color: #333;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .wrapper {
        overflow-x: hidden;
    }

    .section__title,
    .world_title {
        font-size: 2em;
    }

    .sp-elem {
        display: block;
    }

    .pc-elem {
        display: none !important;
    }

    .half {
        width: 100%;
        float: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .third {
        width: 100%;
        float: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .w100p {
        max-width: 100%;
    }

    .w100p iframe {
        max-width: 100%;
    }

    /* ========================================
  
  topへ戻る
  
  ======================================== */
    .page-top {
        bottom: 20px;
        right: 20px;
    }

    /* ========================================
  
  - header
  
  ======================================== */
    .share-buttons {
        overflow: hidden;
        position: absolute;
        right: 5px;
        top: 5px;
        z-index: 10;
    }

    .site-header {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #df6b81;
        background-color: #fff;
        z-index: 200;
        background: url("/images/common/bg_sp_top.png");
    }

    .site-header__inner {
        position: relative;
    }

    .site-logo {
        height: 70px;
    }

    .site-logo a {
        display: block;
        height: 70px;
        line-height: 70px;
    }

    .site-logo img {
        width: 150px;
        padding: 10px;
        vertical-align: middle;
    }

    .sp_navi {
        display: none;
        background-color: #fff5ec;
    }

    .nav_btn {
        position: absolute;
        top: 5px;
        right: 5px;
        height: 60px;
        width: 60px;
        background: #df6b81;
        display: block;
        padding: 5px;
        text-align: center;
        font-size: 0.7em;
        color: #fff;
        font-family: "Cagliostro", sans-serif;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .nav_btn:before {
        content: "";
        width: 50px;
        height: 30px;
        background-image: url("/images/common/icon_nav_sp.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 80%;
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* ========================================
  
  nav
  
  ======================================== */
    .navi_list {
        text-align: center;
        font-size: 1.2em;
        padding: 30px 10px;
        background-size: 100%;
        overflow: hidden;
        margin: 0 auto;
        z-index: 99999;
    }

    .navi_list li {
        margin-bottom: 0;
    }

    .navi_item {
        float: left;
        width: 50%;
        font-size: 0.8em;
    }

    .navi_item a,
    .navi_item div {
        text-decoration: none;
        color: #555;
        display: block;
        padding: 10px 0;
    }

    .navi_story_sub,
    .navi_products_sub {
        text-align: center;
        overflow: hidden;
        clear: both;
        width: 100%;
        border: 1px dotted #df6b81;
    }

    /* ========================================
  
  - main
  
  ======================================== */
    .logo {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 120px;
        padding: 0;
        z-index: 10;
        text-align: center;
    }

    .logo img {
        width: 100%;
    }

    .banners {
        margin: 8px 8px 0;
    }

    .banners a {
        display: block;
        width: 200px;
        margin: 0 auto 8px;
        text-align: center;
    }

    .news {
        margin: 0;
        padding: 70px 10px 32px;
    }

    .main {
        padding: 0 0 32px;
    }

    /* ========================================
  
  - main visual
  
  ======================================== */
    .main_inner {
        height: auto;
    }

    .main_img {
        width: 100%;
        height: auto;
        padding-top: 140%;
    }

    .main_img_inner {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        background: url(/images/common/main_img_sp.png) no-repeat top center;
        background-size: 100% auto;
        padding-top: 140%;
        z-index: 0;
    }

    .main_img_inner02 {
        background: url(/images/common/main_img_sp_201703.png) no-repeat top center;
        background-size: 100% auto;
    }

    .main_img_inner03 {
        background: url(/images/common/main_img_sp_201802.png) no-repeat top center;
        background-size: 100% auto;
    }

    .index_youtube {
        position: relative;
        padding-top: 45%;
        /*80%以外で出したい場合はここの数値を変える*/
        width: 80%;
        margin: 20px auto;
    }

    .index_youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .index_everyday_zouroku {
        display: block;
        width: 80%;
        margin: 20px auto;
    }

    .index_everyday_zouroku img {
        width: 100%;
    }

    /* ========================================
  
  - news
  
  ======================================== */
    .news {
        padding: 20px 10px 32px;
    }

    .news .section__sub-title img {
        position: relative;
        top: -10px;
        width: 62.5px;
    }

    .news .list-item {
        padding: 8px 0;
        border-bottom: 1px dotted #555;
        color: #333;
    }

    .news .list-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .news .list-title {
        font-weight: 500;
        font-size: 1em;
        line-height: 1.5em;
    }

    .index_baner_slider {
        width: 85%;
        max-width: 260px;
        margin: 5px auto;
        padding: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .index_baner_slider a {
        display: block;
        width: 100%;
    }

    .index_baner_slider a img {
        width: 100%;
    }

    .index_news_more {
        text-align: center;
    }

    .index_news_more a {
        display: block;
        padding: 10px;
        color: #555;
    }

    /* ========================================
  
  - staff comment
  
  ======================================== */
    .staff-comment {
        border-top: 1px solid #e8e590;
    }

    .staff {
        margin-bottom: 30px;
    }

    .staff .content {
        text-align: center;
    }

    .staff-image {
        width: 280px;
    }

    .comment {
        width: 90%;
    }

    .comment .content {
        font-size: 1.25em;
    }

    /* テーブル全体 */
    .table-staff {
        width: 100%;
        display: block;
        font-size: 0.8em;
        line-height: 1.5em;
        /* ヘッダー行 */
        /* 通常行 */
    }

    .table-staff tbody {
        display: block;
    }

    .table-staff tr {
        width: 100%;
        display: block;
        float: left;
    }

    .table-staff td {
        display: inline-block;
        padding: 10px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        /* text-align: center; */
        /* vertical-align: middle; */
    }

    .table-staff td:nth-child(odd) {
        width: 40%;
    }

    .table-staff td:nth-child(even) {
        width: 60%;
        font-size: 1.3em;
    }

    /* ========================================
  
  - twitter
  
  ======================================== */
    .twitter {
        height: 600px;
        width: 100%;
        padding: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        overflow: scroll;
    }

    .twitter .content {
        text-align: center;
    }

    /* ========================================
  
  - footer
  
  ======================================== */
    .footer {
        position: relative;
    }

    .footer .container {
        padding-top: 16px;
    }

    .bonus {
        text-align: center;
    }

    .bonus a {
        display: inline-block;
        width: 200px;
        margin-bottom: 10px;
    }

    .copyright {
        padding-bottom: 8px;
        text-align: center;
        clear: both;
        display: block;
        width: 100%;
        position: relative;
        padding: 0;
    }

    .footer_banners {
        clear: both;
        overflow: hidden;
        min-width: 280px;
        text-align: center;
    }

    .footer_banners a {
        display: inline-block;
        width: 100%;
        margin-bottom: 0;
        padding: 5px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .footer_right {
        clear: both;
    }

    .footer_menu {
        background: url(/images/common/bg_sp_footer.png) repeat top center;
        background-size: 100% auto;
        border-top: 1px solid #df6b81;
    }

    .footer_menu li {
        float: left;
        width: 50%;
        overflow: hidden;
    }

    .footer_menu a,
    .footer_menu div {
        padding: 10px 0;
        display: block;
        text-align: center;
    }

    /* ========================================
  
  2階層　news
  
  ======================================== */
    .page-title {
        vertical-align: middle;
        font-size: 2.5em;
        padding-top: 20px;
    }

    .news-article__inner {
        padding: 10px 0;
    }

    .news-article__inner iframe {
        max-width: 100%;
    }

    .news-article__header .article__title {
        font-size: 1.25em;
    }

    .container__inner {
        padding: 20px;
        /*   min-height: 780px;*/
    }

    .sidebar {
        width: 100%;
    }

    .sidebar-title {
        text-align: center;
        font-size: 1.5em;
    }

    .new-entry {
        margin-top: 50px;
        padding: 40px 0 20px;
        position: relative;
    }

    .sidebar-list {
        padding: 0;
    }

    .sidebar-list__item a {
        text-decoration: none;
        color: #555;
    }

    .sidebar-list__item time {
        font-size: 0.8em;
    }

    /* ========================================
  
  2階層目　ストーリー
  
  ======================================== */
    .story_container_title {
        font-size: 1.5em;
    }

    /* ========================================
  
  ２階層目　グッズ
  
  ======================================== */
    .goods_container {
        margin-bottom: 10px;
    }

    .goods-article {
        width: 50%;
        padding: 5px;
        margin-bottom: 30px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .goods-article:nth-child(2n+1) {
        clear: both;
    }

    .goodslist_image__inner {
        margin-bottom: 10px;
    }

    .goodslist_image__inner a {
        text-decoration: none;
        display: block;
        height: 120px;
        width: 120px;
        margin: 0 auto;
        position: relative;
        background-color: #fff;
    }

    .goodslist_image__inner img {
        max-width: 120px;
        max-height: 120px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    .goodsname a {
        text-decoration: none;
        color: #555;
        display: block;
    }

    .goodsprice {
        font-size: 0.8em;
    }

    .goods-slider__thumbs li {
        width: 20%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        padding: 5px;
        min-height: auto;
    }

    .goods-slider__thumbs img {
        width: 100%;
    }

    .goods_image {
        width: 100%;
        float: left;
    }

    .goods__data {
        width: 100%;
        float: right;
    }

    .goods__name {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .goods__detail__row {
        margin-bottom: 20px;
    }

    .goods__term {
        font-size: 0.8em;
    }

    /* ========================================
  
  ページャー
  
  ======================================== */
    .article-pager {
        height: 30px;
        position: relative;
        padding-top: 10px;
    }

    .article-pager a,
    .article-pager span {
        letter-spacing: .2em;
        text-decoration: none;
        display: inline-block;
        width: 80px;
        height: 28px;
        text-align: center;
        line-height: 28px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* ========================================
  
  2階層目　ムービー
  
  ======================================== */
    .movie-thumbs-list li {
        width: 100%;
        float: none;
        padding: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .movie-thumbs__item__title {
        font-size: 1.25em;
    }

    /* ========================================
  
  2階層目　ミュージック
  
  ======================================== */
    .music-cont__header {
        text-align: center;
        margin-bottom: 10px;
    }

    .music-cont__theme {
        font-size: 1.2em;
    }

    .music-cont__singer {
        font-size: 2em;
    }

    .music-cont__title {
        font-size: 1.5em;
    }

    /* ========================================
  
  2階層目　オンエアー
  
  ======================================== */
    .onair__title {
        font-size: 1.5em;
        margin-bottom: 10px;
        text-align: center;
    }

    .onair__item {
        margin-bottom: 20px;
        text-align: center;
    }

    .onair__item:nth-child(2n+1) {
        clear: both;
    }

    .onair__item__title {
        margin-bottom: 5px;
        font-size: 1.2em;
    }

    /* ========================================
  
  2階層目　DVD
  
  ======================================== */
    .tokuten__item {
        width: 100%;
        padding: 30px 5px 0;
        margin: 0 0 80px 0;
        float: none;
        text-align: center;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .disk-container2 {
        margin-bottom: 15px;
        padding-bottom: 30px;
    }

    .disk__title2 {
        font-size: 1.3em;
        line-height: 1.3em;
        padding-top: 20px;
        text-align: center;
    }

    .disk__jacket02 {
        padding: 0;
        margin: 10px auto;
    }

    .disk__item2 {
        margin-bottom: 5px;
    }

    .disk__item2 a {
        padding: 0 10px;
        font-size: 1em;
    }

    .tokuten__img {
        width: 70%;
        margin: 0 auto;
    }

    /* ========================================
  
  2階層目　キャラクター
  
  ======================================== */
    .chara-data {
        padding: 0;
        float: none;
        margin-top: 0px;
        line-height: 1.2em;
        text-align: center;
        left: -100%;
        width: 100%;
        top: 0;
    }

    .chara-data__name {
        margin-bottom: 10px;
        display: inline-block;
    }

    .chara-data02 {
        padding: 0;
        float: none;
        margin-top: 0px;
        line-height: 1.2em;
        text-align: center;
        width: 100%;
        position: relative;
    }

    .chara-data__name--text {
        font-size: 1.5em;
        font-weight: 500;
    }

    .chara-data__name--kana {
        font-size: 0.8em;
    }

    .chara-data__cv {
        padding: 5px;
        margin-bottom: 10px;
        font-size: 1.2em;
    }

    .chara-data__detail {
        margin-bottom: 20px;
        text-align: left;
    }

    .slider-images {
        width: 100%;
        position: absolute;
        margin-top: 100px;
        top: 0;
    }

    .slider-images02 {
        width: 100%;
    }

    .selector-arrows {
        text-align: center;
    }

    .selector-arrows img {
        width: 40px;
    }

    .chara_thumb_list {
        margin: 0;
        background-repeat: repeat, repeat;
        margin-bottom: 20px;
        font-size: 0.8em;
    }

    .chara_thumb_list a:before {
        width: 10px;
        height: 20px;
        background-size: 100%;
    }

    .chara_thumb_list02 {
        width: 90%;
    }

    /* ========================================
  
  comingsoon
  
  ======================================== */
    .comingsoon {
        font-size: 2em;
    }

    /* ========================================
  
  specialページ
  
  ======================================== */
    .special_bannerlist div {
        width: 100%;
        float: none;
        padding: 10px;
    }

    .special_comment {
        width: 100%;
    }

    .special_large_title {
        font-size: 1.5em;
        line-height: 1.5em;
    }

    .cheering_illust_thumb {
        width: 200px;
    }

    .cheering_comment {
        padding: 20px 15px 10px;
    }

    /* balloon-1 top */
    .special_comic_slider .slick-prev {
        left: 0px;
        z-index: 9999;
    }

    .special_comic_slider .slick-next {
        right: 0px;
        z-index: 9999;
    }

    .spinoff_comics a {
        width: 100%;
    }

    /* ========================================
  
  bookページ
  
  ======================================== */
    .book_list_header {
        font-size: 1.25em;
    }

    .book_list_header_sub {
        font-size: 1.1em;
    }

    .book_new {
        padding: 5px;
        margin-bottom: 20px;
        text-align: center;
    }

    .book_new .book_picture {
        float: none;
        width: 400px;
        max-width: 100%;
    }

    .book_archives {
        float: left;
        padding: 5px;
        box-sizing: border-box;
        margin-bottom: 30px;
    }

    .book_picture {
        margin-right: 0;
    }

    .book_archives {
        width: 50%;
    }

    .book_title {
        font-size: 1.25em;
    }

    .world_title {
        font-size: 1.25em;
    }

    .world_title:before {
        height: 25px;
        width: 25px;
    }

    .pc_elem {
        display: none;
    }
}

/*# sourceMappingURL=alicetozouroku.css.map */