/* =========================================================
	top cover
========================================================= */

#topCoverWrap {
    position: relative;
    width: 100%;
    min-height: 480px;
    height: 100svh;
    overflow: hidden;
    background: #000;
}

.topCover {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    background: #000;
}


/* =========================================================
	background image
========================================================= */

.topCoverBg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url(/img/cover/pc_cover.webp);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    transform-origin: 50% 50%;
    will-change: transform;
}


/* =========================================================
	opening
========================================================= */

.topCoverOpening {
    position: absolute;
    inset: 0;
    z-index: 10;
    overflow: hidden;
    pointer-events: none;
}


/*
	左下から右上へ走る対角線を境に、
	黒い面を上下2枚へ分割
*/

.topCoverOpening__panel {
    position: absolute;
    inset: -2px;
    background-color: #000;
    background-image: url(/img/menu/menu_bg.webp);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 0 2px #000;
    will-change: transform;
}

.topCoverOpening__panel--upper {
    clip-path: polygon(0 0,
            100% 0,
            100% .3%,
            0 100%);
}

.topCoverOpening__panel--lower {
    clip-path: polygon(0 99.7%,
            100% 0,
            100% 100%,
            0 100%);
}


/* =========================================================
	diagonal light
========================================================= */

.topCoverOpening__line {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 0;
    height: 1px;
    opacity: 0;
    transform-origin: 0 50%;
    background: rgba(255, 255, 255, .98);
    box-shadow:
        0 0 4px rgba(255, 255, 255, .95),
        0 0 12px rgba(255, 255, 255, .7),
        0 0 30px rgba(255, 255, 255, .38);
    will-change: width, opacity, transform;
    clip-path: inset(0 100% 0 0);
    visibility: hidden;
}


/* =========================================================
	opening text
========================================================= */

.topCoverOpening__text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: calc(100% - 80px);
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.topCoverOpening__text>span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    white-space: nowrap;
}

.topCoverOpening__char {
    display: inline-block;
    min-width: .08em;
    opacity: 0;
    transform: translateY(28px) scale(.75);
    filter: blur(8px);
    will-change: transform, opacity, filter;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 10px;

}

.topCoverOpening__logo p {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4vw, 72px);
    margin-top: 10px;
    color: #fff;
    letter-spacing: 10px;

}

/* .topCoverOpening__char--space {
	width: 1.3em;
	min-width: 1.3em;
} */


@media screen and (max-width: 767px) {

    .topCoverOpening__text {
        width: calc(100% - 40px);
    }

    .topCoverOpening__text>span {
        font-size: 11px;
    }

    /* .topCoverOpening__char--space {
        width: .9em;
        min-width: .9em;
    } */

}


/* =========================================================
	smartphone
========================================================= */

@media screen and (max-width: 767px) {

    #topCoverWrap,
    .topCover {
        min-height: 560px;
    }

    .topCoverBg {
        background-image: url(/img/cover/sp_cover.webp);
        background-position: 50% 0;
    }

}


/* SP画像がまだない場合はこちらを使用 */

/*
@media screen and (max-width: 767px) {

	.topCoverBg {
		background-image: url(/img/cover/pc_cover.webp);
	}

}
*/


/* =========================================================
	reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .topCoverBg {
        transform: scale(1);
    }

    .topCoverOpening {
        display: none;
    }
}

.featherFall {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: screen;
}

.featherFall__item {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--feather-size, 42px);
    height: auto;
    opacity: 0;
    will-change: transform, opacity, filter;
    transform-origin: 50% 42%;
    user-select: none;
    -webkit-user-drag: none;
    filter:
        drop-shadow(0 8px 12px rgba(0, 0, 0, .12)) blur(var(--feather-blur, 0px));
}

@media (prefers-reduced-motion: reduce) {
    .featherFall {
        display: none;
    }
}

.topLogo {
    position: fixed;
    top: 10px;
    left: 20px;
    width: 22%;
    max-width: 240px;
    min-width: 180px;
    z-index: 6000;
    mix-blend-mode: difference;
}

.topLogo a {
    display: block;
    position: relative;
}

.topLogo a img {
    width: 100%;
}

.topLogo a .logoH1 {
    position: absolute;
    top: 52px;
    right: 50px;
    text-align: center;
    line-height: 1;
    font-size: 10px;
    white-space: nowrap;
    width: 220px;
    background: rgb(255, 139, 193);
    background: -moz-linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff8bc1", endColorstr="#ffa784", GradientType=1);
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(255, 167, 132, 0);
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    font-family: "Noto Serif JP", serif;
    font-style: italic;
    padding: 0 0 2px 0;
}

@media all and (-ms-high-contrast: none) {
    .topLogo a .logoH1 {
        color: #e7027f;
        overflow: hidden;
        background: none;
    }
}

.topTitle-wrap {
    position: relative;
    text-align: center;
    visibility: hidden;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.topTitle {
    position: relative;
    text-align: center;
    display: inline-block;
    user-select: none;
    padding: 0 20px 30px 20px;
}

.topTitle span {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-size: 4.75rem;
    font-style: italic;
    /* font-size: clamp(2.5rem, -3.333rem + 9.33vw, 11.25rem); */
    display: block;
    color: transparent;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 0.1em;
    user-select: none;
    color: rgba(226, 185, 153, 0);
    background: linear-gradient(0deg, #bfc0c0, #fff 25% 0, #fbfbfb, #fff 75% 0, #bfc0c0);
    background-clip: border-box;
    background-clip: text;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.topTitle b {
    display: block;
    font-size: 18px;
    line-height: 1;
    color: #555;
    font-weight: 700;
    /* font-family: "Noto Serif JP", sans-serif; */
    letter-spacing: 4px;
    transform: skewX(-4deg) translateY(-10px);
    color: rgba(226, 185, 153, 0);
    background: linear-gradient(0deg, #bfc0c0, #fff 25% 0, #fbfbfb, #fff 75% 0, #bfc0c0);
    background-clip: border-box;
    background-clip: text;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.topTitle small {
    position: relative;
    left: 0;
    display: block;
    background: #404040;
    background: linear-gradient(90deg, rgba(64, 64, 64, 0) 0%, rgba(64, 64, 64, 1) 50%, rgba(64, 64, 64, 0) 100%);
    margin: 5px 0;
    width: 100%;
    height: 2px;
}

.topTitle small::after {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    top: 2px;
    left: 0;
    background: #000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.title-border {
    position: relative;
    text-align: center;
    font-size: 18px;
    display: block;
}

.title-border:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: rgb(158, 62, 178);
    background: linear-gradient(90deg, rgba(158, 62, 178, 0.3) 0%, rgba(247, 94, 139, 1) 50%, rgba(247, 94, 139, 0.3) 100%);
    transform: translateX(-50%);
    animation-name: border_anim;
    animation-duration: 0.6s;
    animation-delay: 0.5s;
    animation-timing-function: cubic-bezier(0.950, 0.050, 0.795, 0.035);
    animation-fill-mode: forwards;
}

#topLeft {
    width: 320px;
    position: relative;
    float: left;
}

#topRight {
    position: relative;
    margin-left: 340px;
    height: 100%;
    width: auto;
}

#topicWrap {
    position: relative;
}

#topic {
    position: relative;
    margin: 0 0 50px 0;
    visibility: hidden;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

#topic a {
    display: block;
    position: relative;
    text-align: center;
}

#topic .topicThumb {
    position: relative;
    display: block;
    width: 100%;
    background: linear-gradient(0deg, #353535 0%, #1a1a1a 18%, #3a3a3a 50%, #1a1a1a 82%, #353535 100%), linear-gradient(90deg, #353535 0%, #1a1a1a 18%, #3a3a3a 50%, #1a1a1a 82%, #353535 100%);
    padding: 2px;
    border-radius: 18px;
}

#topic .topicThumb img {
    width: 100%;
    border-radius: 18px;
}

#topic .topic-name {
    position: absolute;
    width: calc(100% - 10px);
    left: 50%;
    bottom: 5px;
    transform: translate(-50%, 0);
    z-index: 10;
    text-align: center;
    background-color: rgba(25, 25, 25, 0.78);
    border-radius: 18px;
    padding: 10px
}

#topic .topic-name::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    border-radius: 18px;
    z-index: 0;
}

#topic .topic-catch {
    position: absolute;
    top: 15px;
    right: 12px;
    z-index: 5;

    writing-mode: vertical-rl;
    text-orientation: upright;

    width: 2em;
    max-height: 100%;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .08em;

    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, .32);
    font-family: 'Noto Serif JP', serif;
    transform: skewY(-6deg);
}


#topic .topicTime {
    display: block;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 10px;
    text-align: right;
    padding: 5px 4% 0 0;
    color: #ccc;
}

#topic .topic-sub {
    position: relative;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.25em;
    line-height: 1;
    color: #FFA784;
    padding: 0 4px;
    font-style: italic;
    display: inline-block;
    background: rgb(255, 139, 193);
    background: -moz-linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 139, 193, 1) 0%, rgba(255, 167, 132, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff8bc1", endColorstr="#ffa784", GradientType=1);
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(255, 167, 132, 0);
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.01);
    z-index: 2;
    letter-spacing: 0.5em;
    display: none;
}

#topic .topic-cast {
    font-size: 2.25rem;
    line-height: 1;
    font-style: italic;
    padding: 10px 0 6px 0;
    letter-spacing: 0;
    font-family: "Roboto", sans-serif;
    transform: scaleY(1.20);
    font-weight: 600;
    display: block;

    user-select: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #9f9f9f 0%,
            #c7c7c7 25%,
            #dddddd 50%,
            #c7c7c7 75%,
            #9f9f9f 100%);
}

#topic .topic-cast b {
    display: inline-block;
    color: inherit;
    font-size: 50%;
    vertical-align: middle;
    font-family: inherit;
    user-select: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    background-image: inherit;
}

#topic a dl small {
    height: 1px;
    width: 60%;
    display: block;
    background: rgb(85, 85, 85);
    background: linear-gradient(90deg, rgba(85, 85, 85, 0) 0%, rgba(85, 85, 85, 0.8) 50%, rgba(85, 85, 85, 0) 100%);
    margin: 2px auto;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

#topic .topic-size {
    position: relative;
    font-family: 'FunctionsPro', sans-serif;
    font-size: 12px;
    padding-top: 6px;
    display: block;
    z-index: 2;

    user-select: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #9f9f9f 0%,
            #c7c7c7 25%,
            #dddddd 50%,
            #c7c7c7 75%,
            #9f9f9f 100%);
}

#topic .topic-size b {
    font-family: 'FunctionsPro', sans-serif;
    font-weight: normal;
    font-size: 16px;
    margin-right: 4px;
    color: #fafafa;
}

#topic .topic-class-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 120px;
}

#topic .topic-class-icon img {
    width: 100%;
}

#topic .topic-type-icon {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    z-index: 11;
    white-space: nowrap;
    margin: 6px auto 0 auto;
    min-height: 44px;
    max-height: 44px;
    overflow: hidden;
}

#topic .topic-type-icon li {
    text-align: center;
    display: inline-block;
}

#topic .topic-type-icon li span {
    display: block;
    white-space: nowrap;
    display: block;
    padding: 4px 8px;
    margin: 2px;
    font-size: 10px;
    background: #292929;
    border-radius: 999px;
    white-space: nowrap;
    color: #aaa;
}

#topic #topicBody {
    position: relative;
    width: calc(100% - 4px);
    padding: 20px 0;
    /* background: #282828;
    background: linear-gradient(0deg, rgba(0,0,0, 0) 50%, rgba(0,0,0, 1) 100%);
    border-radius: 18px 18px 0 0; */
    z-index: 2;
    margin-top: 10px;
}

#topic #topicBody h2.topicTitle {
    text-align: left;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    display: block;
    padding: 0 2px 0 14px;
    text-align: justify;
    position: relative;
    background: linear-gradient(90deg,
            #9da3a8 0%,
            #c7ccd1 25%,
            #e2e5e8 50%,
            #c7ccd1 75%,
            #9da3a8 100%);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Noto Serif JP', serif;
    transform: scaleY(1.08);

}

#topic #topicBody h2.topicTitle::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: #9da3a8;
    top: 0;
    left: 0;
    opacity: 0.8;
    border-radius: 1px;
}

#topic .topicTxtWrap {
    position: relative;
}

#topic .topicTxt {
    /* max-height: 100px;
    min-height: 100px; */
    /* ←ここで高さ調整 */
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: max-height .55s cubic-bezier(.22, 1, .36, 1);
    will-change: max-height;

}


.topicTxtWrap.open .topicTxt {

    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.topicTxtWrap.open .topicTxt {
    max-height: none;
}

/* グラデーションで自然に隠す */
#topic .topicTxt::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: -1;
}

#topic .topicTxtWrap.open .topicTxt::after {
    display: none;
}

#topic .topicMoreBtn {
    display: block;
    margin: 10px auto 0;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1em;
    background: #ccc;
    color: #111;
    display: none;
}

#topic #topicBody .topicTxt {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    line-height: 180%;
    color: var(--textColor);
    padding: 20px;
    text-align: justify;
    width: 100%;
    margin: 10px auto 0 auto;
    border-radius: 18px;
}

#topic #topicBody .topicTxt div,
#topic #topicBody .topicTxt div span {
    display: inline-block;
    font-size: 14px;
    line-height: 180%;
    font-weight: bold;
    color: #555;
}

#topic #topicBody .topicTxt a {
    display: inline-block;
}

#topic #topicBody .topicTxt p {
    color: #aaa;
    line-height: 180%;
}

::-webkit-full-page-media,
:future,
:root #topic #topicBody .topicTxt div {
    color: #555;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #555;
    background: none;
}

::-webkit-full-page-media,
:future,
:root #topic #topicBody .topicTxt div span {
    color: #555;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #555;
    background: none;
}

::-webkit-full-page-media,
:future,
:root #topic #topicBody .topicTxt a {
    color: #555;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #555;
    background: none;
}

#topic #topicBody .topicTxt img {
    width: 100% !important;
    height: auto !important;
    text-align: center;
}

.topBorder {
    width: 30%;
    height: 1px;
    background: rgba(0, 0, 0, 0.0);
    margin: 60px auto 30px auto;
}

#topic-list {
    position: relative;
}

#topic-list li {
    width: 100%;
    visibility: hidden;
    animation-duration: 0.6s;
    animation-delay: 0.3s;
    margin-bottom: 10px;
}

#topic-list li a {
    position: relative;
    overflow: hidden;
    padding: 2px;
    transition: 0.3s ease;
    text-align: center;
    margin: 4px;
    background-color: #000;
    border-top: 2px solid #353535;
    border-right: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    border-left: 2px solid #353535;
}

#topic-list li a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}

#topic-list a span.nf-TL {
    background-image: url(/img/name_corner_TL.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 5px;
    left: 5px;
    display: block;
    overflow: hidden;
    z-index: 2;
}

#topic-list a span.nf-TR {
    background-image: url(/img/name_corner_TR.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    overflow: hidden;
    z-index: 2;
}

#topic-list a span.nf-BR {
    background-image: url(/img/name_corner_BR.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 26px;
    height: 26px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: block;
    overflow: hidden;
    z-index: 2;
}

#topic-list a span.nf-BL {
    background-image: url(/img/name_corner_BL.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 26px;
    height: 26px;
    position: absolute;
    bottom: 5px;
    left: 5px;
    display: block;
    overflow: hidden;
    z-index: 2;
}

#topic-list .topicThumb {
    position: relative;
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin: 5px 0 5px 5px;
    z-index: 10;
}

#topic-list .topicThumb img {
    width: 100%;
}

#topic-list .topic-inner {
    display: block;
    position: relative;
    margin: 0 10px 0 117px;
    padding: 10px 0;
    overflow: hidden;
    text-align: center;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#topic-list .topic-cast {
    font-size: 1.4rem;
    line-height: 1;
    color: #aaa;
    padding: 6px 0 0 0;
    letter-spacing: 0;
    font-family: var(--serif);
    font-weight: 600;
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, rgba(158, 62, 178, 1), rgba(247, 94, 139, 1));
}

#topic-list .topic-cast b {
    display: inline-block;
    color: #aaa;
    font-size: 70%;
    font-family: var(--FunctionPro);
    padding-left: 4px;
}


#topic-list a dl small {
    position: relative;
    display: block;
    /* background: rgb(85, 85, 85);
    background: linear-gradient(90deg, rgba(85, 85, 85, 1) 0%, rgba(85, 85, 85, 0) 100%); */
    background: rgb(64, 64, 64);
    background: linear-gradient(90deg, rgba(64, 64, 64, 0) 0%, rgba(64, 64, 64, 1) 50%, rgba(64, 64, 64, 0) 100%);
    width: 90%;
    height: 1px;
    margin: 8px auto;
}

#topic-list a dl small::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 1px;
}

#topic-list .topic-size {
    font-family: var(--FunctionPro);
    font-size: 10px;
    color: #aaa;
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, rgba(158, 62, 178, 1), rgba(247, 94, 139, 1));
    padding-top: 6px;
}

#topic-list .topic-size b {
    font-family: var(--FunctionPro);
    font-weight: normal;
    font-size: 12px;
    margin-right: 4px;
    color: #aaa;
}

#topic-list .topicTitle {
    overflow: hidden;
    font-size: 14px;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    color: #aaa;
    text-align: left;
}

.history-btn {
    display: block;
    text-align: right;
    visibility: hidden;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.history-btn a {
    display: inline-block;
    font-size: 14px;
    margin-right: 5px;
    padding: 3px 10px;
    text-decoration: underline;
    color: #aaa;
}

#top-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 20px 0 20px;
    overflow: hidden;
    background-image: url(/img/repeat_bg.webp);
    background-repeat: repeat;
    background-position: 50%;
    background-size: 300px auto;
    background-color: #000;
    /* margin-top: 130svh; */
}

.top-shadow {
    position: absolute;
    height: 500px;
    width: 100%;
    overflow: hidden;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: #111111;
    background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0) 100%);
}

#top-inner {
    position: relative;
    /* max-width: 1640px;
    margin: 0 auto;
    padding: 4px; */
}

#top {
    position: relative;
    padding: 100px 20px 100px 20px;
    /* background: #191919; */
    background-color: rgba(17, 17, 17, 1);
    border-radius: 28px;
}

@media screen and (max-width: 1099px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 520px;
        min-width: 500px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 50%;
        max-width: 260px;
    }

    .top-companion li.thumb-list:nth-child(2n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(2n+2) {
        animation-delay: 0.4s;
    }
}

@media screen and (min-width: 1100px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 780px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 33.3%;
        max-width: 260px;
    }

    .top-companion li.thumb-list:nth-child(3n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(3n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(3n+3) {
        animation-delay: 0.5s;
    }
}

@media screen and (min-width: 1200px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 780px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 33.3%;
        max-width: 260px;
    }

    .top-companion li.thumb-list:nth-child(3n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(3n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(3n+3) {
        animation-delay: 0.5s;
    }
}

@media screen and (min-width: 1300px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 840px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 33.3%;
        max-width: 280px;
    }

    .top-companion li.thumb-list:nth-child(3n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(3n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(3n+3) {
        animation-delay: 0.5s;
    }
}

@media screen and (min-width: 1400px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 25%;
        max-width: 240px;
    }

    .top-companion li.thumb-list:nth-child(4n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(4n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(4n+3) {
        animation-delay: 0.5s;
    }

    .top-companion li.thumb-list:nth-child(4n+4) {
        animation-delay: 0.6s;
    }

}

@media screen and (min-width: 1500px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        max-width: 1040px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        max-width: 260px;
        width: 25%;
    }

    .top-companion li.thumb-list:nth-child(4n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(4n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(4n+3) {
        animation-delay: 0.5s;
    }

    .top-companion li.thumb-list:nth-child(4n+4) {
        animation-delay: 0.6s;
    }
}

@media screen and (min-width: 1600px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        max-width: 1040px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 25%;
        max-width: 260px;
    }

    .top-companion li.thumb-list:nth-child(4n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(4n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(4n+3) {
        animation-delay: 0.5s;
    }

    .top-companion li.thumb-list:nth-child(4n+4) {
        animation-delay: 0.6s;
    }
}

@media screen and (min-width: 1700px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 20%;
        max-width: 240px;
    }

    .top-companion li.thumb-list:nth-child(5n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(5n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(5n+3) {
        animation-delay: 0.5s;
    }

    .top-companion li.thumb-list:nth-child(5n+4) {
        animation-delay: 0.6s;
    }

    .top-companion li.thumb-list:nth-child(5n+5) {
        animation-delay: 0.7s;
    }
}

@media only screen and (min-width:1800px) {
    .top-companion {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;

    }

    .top-companion li.thumb-list {
        position: relative;
        text-align: center;
        width: 20%;
        max-width: 280px;
    }

    .top-companion li.thumb-list:nth-child(5n+1) {
        animation-delay: 0.3s;
    }

    .top-companion li.thumb-list:nth-child(5n+2) {
        animation-delay: 0.4s;
    }

    .top-companion li.thumb-list:nth-child(5n+3) {
        animation-delay: 0.5s;
    }

    .top-companion li.thumb-list:nth-child(5n+4) {
        animation-delay: 0.6s;
    }

    .top-companion li.thumb-list:nth-child(5n+5) {
        animation-delay: 0.7s;
    }
}

/******************************************コンパニオン******************************************/

.top-companion-wrap {
    position: relative;
    margin: -5px 0 50px 0;
}

.top-companion li.thumb-list {
    opacity: 0;
    transform: scale(.985);
    filter: blur(5px);
    transition:
        opacity .75s ease,
        transform .75s ease,
        filter .75s ease;
    will-change: opacity, transform, filter;
}


.top-companion li.thumb-list.is-randomFade-show {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.top-companion li.thumb-list.is-randomFade-done {
    will-change: auto;
}

/* ---------- Slide ---------- */
.top-companion li.thumb-list.effect-slide {
    transform: translateY(40px);
    filter: blur(5px);
}

.top-companion li.thumb-list.effect-slide.is-randomFade-show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ---------- Zoom ---------- */
.top-companion li.thumb-list.effect-zoom {
    transform: scale(.94);
    filter: blur(5px);
}

.top-companion li.thumb-list.effect-zoom.is-randomFade-show {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.top-companion li.thumb-list .thumb-inner {
    display: block;
    position: relative;
    background: transparent;
}


.top-companion li.thumb-list a.ca {
    display: block;
    transition: 0.3s ease;
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 5px;
    padding: 2px;
    background-blend-mode: lighten;
    border-radius: 18px;

    /* background-color: #000;
    border-top: 2px solid #353535;
    border-right: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    border-left: 2px solid #353535; */
}

.top-companion li.thumb-list.class-regular a.ca {
    background: linear-gradient(0deg,
            #353535 0%,
            #1a1a1a 18%,
            #3a3a3a 50%,
            #1a1a1a 82%,
            #353535 100%),
        linear-gradient(90deg,
            #353535 0%,
            #1a1a1a 18%,
            #3a3a3a 50%,
            #1a1a1a 82%,
            #353535 100%);
}


.top-companion li.thumb-list.class-exe a.ca {
    background: linear-gradient(0deg,
            #353535 0%,
            #2b2417 18%,
            #c7a45d 42%,
            #fff2c5 50%,
            #c7a45d 58%,
            #2b2417 82%,
            #353535 100%),
        linear-gradient(90deg,
            #353535 0%,
            #2b2417 18%,
            #c7a45d 42%,
            #fff2c5 50%,
            #c7a45d 58%,
            #2b2417 82%,
            #353535 100%);
}

.top-companion li.thumb-list.class-royal a.ca {
    background: linear-gradient(0deg,
            #353535 0%,
            #222428 18%,
            #bfc4ca 42%,
            #ffffff 50%,
            #bfc4ca 58%,
            #222428 82%,
            #353535 100%),
        linear-gradient(90deg,
            #353535 0%,
            #222428 18%,
            #bfc4ca 42%,
            #ffffff 50%,
            #bfc4ca 58%,
            #222428 82%,
            #353535 100%);
}

.top-companion li.thumb-list.class-vip a.ca {
    background: linear-gradient(0deg,
            #353535 0%,
            #24172d 18%,
            #7d47b6 42%,
            #e5ccff 50%,
            #7d47b6 58%,
            #24172d 82%,
            #353535 100%),
        linear-gradient(90deg,
            #353535 0%,
            #24172d 18%,
            #7d47b6 42%,
            #e5ccff 50%,
            #7d47b6 58%,
            #24172d 82%,
            #353535 100%);
}

.top-companion li.thumb-list .class-bg {
    position: relative;
    display: block;
    /* margin: 2px 0; */
}

.top-companion li.thumb-list .class-bg .class-name {
    display: block;
    line-height: 30px;
}

.top-companion li.thumb-list .class-bg .class-name img {
    width: 70%;
    transform: skewX(-6deg);
}

.top-companion li.thumb-list .flareWrap {
    display: block;
    overflow: hidden;
    background: #fff;
}

.top-companion li.thumb-list a.ca .thumb-inner {
    display: block;
    overflow: hidden;
}

.top-companion li.thumb-list a span.thumb-photo {
    position: relative;
    display: block;
    background-color: #000;
    overflow: hidden;
}

.top-companion li.thumb-list a span.thumb-wrap {
    overflow: hidden;
    display: block;
    transition: 0.3s ease;
    filter: saturate(105%);
}

.top-companion li.thumb-list a span.thumb-wrap img {
    transition: 0.8s ease;
}

.top-companion li.thumb-list a:hover span.thumb-wrap img {
    transform: scale(1.08) rotate(-2deg);
}

.top-companion .nf-TL {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    background-image: url(/img/name_corner_TL.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
    transition: 0.3s ease;
    opacity: 0.6;
}

.top-companion li.thumb-list a.ca:hover .c-TL {
    transform: translate(5px, 5px);
}

.top-companion .nf-TR {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-image: url(/img/name_corner_TR.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
    transition: 0.3s ease;
    opacity: 0.6;
}

.top-companion a.ca:hover .c-TR {
    transform: translate(-5px, 5px);
}

.top-companion .nf-BR {
    display: block;
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-image: url(/img/name_corner_BR.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
    transition: 0.3s ease;
    opacity: 0.6;
}

.top-companion li.thumb-list a.ca:hover .c-BR {
    transform: translate(-5px, -5px);
}

.top-companion .nf-BL {
    display: block;
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    background-image: url(/img/name_corner_BL.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10;
    transition: 0.3s ease;
    opacity: 0.6;
}

.top-companion li.thumb-list a.ca:hover .c-BL {
    transform: translate(5px, -5px);
}

.companionThumb {
    transition: 0.3s ease;
    width: 100%;
}

.top-companion li.thumb-list dl {
    position: relative;
    z-index: 10;
    text-align: center;
    background-color: #000;
    border-radius: 0 0 18px 18px;
}

.top-companion li.thumb-list dl::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    border-radius: 0 0 18px 18px;

}

.top-companion li.thumb-list dl .name-inner {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.top-companion li.thumb-list dl .name-inner .name-area {
    position: relative;
    display: block;
    padding: 5px 5% 10px 5%;
}

.top-companion li.thumb-list dl dt.name {
    /*    font-size: 3vmin;*/
    font-size: 20px;
    line-height: 1;
    color: #555;
    letter-spacing: 0;
    font-weight: 600;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 0 0 0 5px;
}

.top-companion li.thumb-list dl dt.name b {
    font-size: 18px;
    line-height: 1;
    color: #555;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}

.top-companion li.thumb-list dl small {
    position: relative;
    display: block;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 1px;
    margin: 8px auto;
}

.top-companion li.thumb-list dl small::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(53, 53, 53);
    background: linear-gradient(90deg,
            rgba(53, 53, 53, 0) 0%,
            rgba(53, 53, 53, 1) 50%,
            rgba(53, 53, 53, 0) 100%);
}

.top-companion li.thumb-list dl dt.name span.nameR {
    display: inline-block;
    font-size: 0.7rem;
    margin-bottom: 3px;
    font-family: var(--FunctionPro);
    letter-spacing: 2px;
    position: relative;
    white-space: nowrap;
    margin-bottom: 3px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #9f9f9f 0%,
            #c7c7c7 25%,
            #dddddd 50%,
            #c7c7c7 75%,
            #9f9f9f 100%);

    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

.top-companion li.thumb-list dl dt.name span.nameJ {
    /*    font-size: 3vmin;*/
    /* font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem); */
    font-size: 1.4rem;
    line-height: 1;
    padding: 2px 0 0 0;
    font-family: var(--serif);
    font-weight: 600;
    display: block;
    letter-spacing: 0;
    white-space: nowrap;
    transform: scaleY(1.1) skewX(-4deg);
    letter-spacing: 0;
    user-select: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #9f9f9f 0%,
            #c7c7c7 25%,
            #dddddd 50%,
            #c7c7c7 75%,
            #9f9f9f 100%);
}

.top-companion li.thumb-list dl dt.name span.nameJ b {
    font-family: var(--FunctionPro);
    display: inline-block;
    font-size: 70%;
    font-weight: normal;
    padding: 0 2px;
    margin-left: 2px;
}

.top-companion li.thumb-list a.ca dl dd.size {
    font-family: var(--FunctionPro);
    font-size: 12px;
    display: inline-block;
    position: relative;
    font-weight: normal;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #9f9f9f 0%,
            #c7c7c7 25%,
            #dddddd 50%,
            #c7c7c7 75%,
            #9f9f9f 100%);
}

.top-companion li.thumb-list a.ca dl dd.size b {
    display: inline-block;
    font-family: var(--FunctionPro);
    font-weight: normal;
    font-size: 15px;
    margin-right: 3px;
    color: var(--textColor);
}

.top-companion li.thumb-list dl dd.shift_time {
    color: #c91344;
    font-weight: bold;
    padding: 10px 0;
    font-family: 'FunctionsPro', sans-serif;
    letter-spacing: 2px;
    font-size: 20px;
    text-shadow: 0 0 5px #fff;
    text-align: center;
}

.top-companion li.thumb-list .debut {
    position: absolute;
    top: 44px;
    left: 14px;
    z-index: 5;
    text-align: left;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-companion li.thumb-list .debut li {
    position: relative;
    display: block;
}

.top-companion li.thumb-list .debut li.newMark span {
    position: relative;
    display: inline-block;

    background: #cbb891;
    background: linear-gradient(-45deg,
            #f2e7ca 0%,
            #dcc99f 18%,
            #cbb891 50%,
            #b79f73 82%,
            #a48b60 100%);
    border-radius: 3px;

}


.top-companion li.thumb-list .debut li.newMark span b {
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    font-style: italic;
    font-family: "Roboto", sans-serif;
    color: #000;
    padding: 0 10px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.33);
}

.top-companion li.thumb-list .debut li.rePhoto span {
    display: inline-block;
}

.top-companion li.thumb-list .debut li.rePhoto span {
    background: rgb(29, 123, 2);
    background: linear-gradient(90deg, rgba(29, 123, 2, 1) 0%, rgba(66, 151, 8, 1) 100%);
    border-radius: 3px;

}


.top-companion li.thumb-list .debut li.rePhoto span b {
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    color: #fff;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    padding: 0 10px;
}

.top-companion li.thumb-list .rankingIcon {
    position: absolute;
    width: 100px;
    top: -90px;
    left: 50%;
    transform: translate(-50%, 0);
    transform-origin: center bottom;
    display: none;
}

.top-companion li.thumb-list .rankingIcon img {
    width: 100%;
}

.top-companion li.thumb-list a.ca .ng-icon {
    position: absolute;
    top: 35px;
    right: 5px;
    text-align: right;
    display: none;
}

.top-companion li.thumb-list a.ca .ng-icon li {
    margin: 0 2px;
    display: inline-block;
    width: 30px;
    height: 30px;
}

.top-companion li.thumb-list a.ca .ng-icon li span {
    display: block;
    padding: 4px;
    overflow: hidden;
}

.top-companion li.thumb-list a.ca .ng-icon li span img {
    width: 100%;
}

.top-companion li.thumb-list a.ca .type-icon {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
    margin: 10px auto 0 auto;
    min-height: 38px;
    max-height: 38px;
    z-index: 11;
    white-space: nowrap;
    overflow: hidden;
}

.top-companion li.thumb-list a.ca .type-icon li {
    text-align: center;
    display: inline-block;
}

.top-companion li.thumb-list a.ca .type-icon li span {
    display: block;
    padding: 0 6px;
    margin: 2px 1px;
    font-size: 11px;
    line-height: 16px;
    white-space: nowrap;
    background: #292929;
    border-radius: 999px;
    color: #aaa;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.top-companion li.thumb-list a.ca .type-icon li.premium-icon span {
    background: linear-gradient(90deg, #b39855 0%, #fff9e6 50%, #b39855 100%);
    color: #292929;
}

.top-companion li.thumb-list a.ca .ss-icon {
    display: none;
}

.top-companion li.thumb-list a.ca dd.iconFlag {
    position: absolute;
    top: -35px;
    width: 100%;
    right: 5px;
    height: 28px;
    overflow: hidden;
    text-align: center;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns {
    z-index: 11;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li {
    position: relative;
    margin: 0 3px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    border: 1px solid #3f3f3f 50%;
    background: #000;
}


.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-t {
    /* background: #2daae1; */
    background: #000;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-i {
    background: #000;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-l {
    background: #07b53b;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-g {
    background: #000;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-lit {
    background: #9594fc;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-h {
    background: #000;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li span {
    display: block;
    line-height: 28px;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li img {
    width: 60%;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-t span img {
    width: 50%;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-g span img {
    width: 66%;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-lit span {
    line-height: 28px;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-h span img {
    width: 40%;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li a.snsA {
    position: relative;
    display: block;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li a.snsA span {
    display: block;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li a.snsA i {
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}

.top-companion li.thumb-list a.ca dd.iconFlag ul.c-sns li:hover {
    background: #3f3f3f;
}

.top-companion li.thumb-list a.finished:hover span.thumb-wrap {
    filter: none;
    opacity: 1;
}

/*.finished .thumb-wrap img.companionThumb {
    filter: saturate(90%) grayscale(50%);
} */

.top-companion li.thumb-list a.finished:hover img.companionThumb {
    opacity: 1;
}

.top-companion li.thumb-list .class-icon li {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 5;
}

.top-companion li.thumb-list .class-icon img {
    position: absolute;
    top: 0;
    right: 0;
    height: 16vh;
    max-height: 180px;
}

.top-companion li.thumb-list .class-icon .exe-icon {
    left: -25px;
    bottom: 330px;
    width: 50%;
}

.top-companion li.thumb-list .class-icon .royal-icon {
    left: -25px;
    bottom: 330px;
    width: 50%;
}

.top-companion li.thumb-list .class-icon .vip-icon {
    left: -25px;
    bottom: 330px;
    width: 50%;
}


/* きらん */
.anim-box.flare {
    opacity: 1;
    position: relative;
    display: block;
    z-index: 0;
}

.anim-box.flare::after {
    content: "";
    background-color: rgba(255, 255, 255, 1);
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    mix-blend-mode: overlay;
}

.top-companion li.thumb-list a.ca:hover .anim-box.flare::after {
    animation: flare 0.8s linear 1;
}

/*
.anim-box.flare:hover::after {
    animation: flare 0.6s linear 1;
}
*/
@media all and (-ms-high-contrast: none) {
    .anim-box.flare:hover::after {
        animation: none;
    }
}

@keyframes flare {
    0% {
        transform: scale(2) rotate(45deg);
        opacity: 0;
    }

    20% {
        transform: scale(20) rotate(45deg);
        opacity: 0.6;
    }

    40% {
        transform: scale(30) rotate(45deg);
        opacity: 0.4;
    }

    80% {
        transform: scale(45) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

span.shiftMark {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
    z-index: 11;
    background: #1a1a1a;
    border-radius: 18px 18px 0 0;
}

span.shiftMark b {
    display: block;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #fafafa;
    line-height: 36px;
}

span.shiftMark2 {
    position: relative;
    display: block;
    text-align: center;
    position: relative;
    z-index: 11;
    background: #1a1a1a;
    border-radius: 18px 18px 0 0;
}

span.shiftMark2 b {
    display: block;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #aaa;
    line-height: 36px;
}

span.shiftMark3 {
    position: relative;
    display: block;
    text-align: center;
    background: #1a1a1a;
    z-index: 11;
    border-radius: 18px 18px 0 0;
}

span.shiftMark3 b {
    display: block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #ccc;
    line-height: 36px;
}

.top-companion li.thumb-list a.ca:hover span.shiftMark3 {}

.top-companion li.thumb-list a.ca p.shiftTime {
    position: relative;
}

.top-companion li.thumb-list a.ca p.shiftTime span {
    font-family: 'FunctionsPro', sans-serif;
    font-size: 20px;
    color: #cdbb84;
    padding: 10px 0 0 0;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
}

.top-companion li.thumb-list a.ca p.shiftTime span i {
    font-size: 20px;
    color: #cdbb84;
    margin-right: 3px;
}

.thumb-shadow {
    display: block;
    margin-top: -8px;
}

.thumb-shadow img {
    width: 100%;
}

p.debutDay {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30px);
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.3s ease;
}

p.debutDay b {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1;
    color: #EC4B7D;
}

.top-companion li.thumb-list a:hover p.debutDay {
    opacity: 1;
}

.catch_real {
    position: relative;
    text-align: center;
    z-index: 11;
    background-color: #1a1a1a;
    border-radius: 18px 18px 0 0;
}

.catch_real b {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #fafafa;
    line-height: 36px;
}

.catch_real2 {
    position: relative;
    text-align: center;
    z-index: 11;
    background-color: #1a1a1a;
    border-radius: 18px 18px 0 0;
}

.catch_real2 b {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #aaa;
    line-height: 36px;
}

.catch_real b big,
.catch_real2 b big {
    font-size: 20px;
    color: #fafafa;
    display: inline-block;
}

.newsWrap {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    width: 94%;
    margin: 0 auto;
}

.news-inner {
    width: 48%;
    margin: 0 1%;
}

.newsBoder {
    display: none;
}

@media only screen and (max-width:1480px) {
    .news-inner {
        width: 94%;
        margin: 0 auto;
    }

    .newsBoder {
        display: block;
    }
}

.news {
    width: 100%;
    margin: 0 auto;
}

.news li.news-list {
    border-bottom: 1px dotted #555;
    padding: 0 5px 5px 5px;
    margin-bottom: 25px;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);

}

.news li.news-list:nth-child(1) {
    animation-delay: 0.3s;
}

.news li.news-list:nth-child(2) {
    animation-delay: 0.4s;
}

.news li.news-list:nth-child(3) {
    animation-delay: 0.5s;
}

.news li.news-list:nth-child(4) {
    transition-delay: 0.6s;
}

.news li.news-list:nth-child(5) {
    animation-delay: 0.7s;
}

.news li.news-list:nth-child(6) {
    animation-delay: 0.8s;
}

.news li.news-list:nth-child(7) {
    animation-delay: 0.9s;
}

.news li.news-list:nth-child(8) {
    animation-delay: 1s;
}

.news li.news-list:nth-child(9) {
    animation-delay: 1.1s;
}

.news li.news-list:nth-child(10) {
    animation-delay: 1.2s;
}

.news li.news-list:nth-child(11) {
    animation-delay: 1.3s;
}

.news li.news-list:nth-child(12) {
    animation-delay: 1.4s;
}

.news li.news-list:nth-child(13) {
    animation-delay: 1.5s;
}

.news li.news-list:nth-child(14) {
    animation-delay: 1.6s;
}

.news li.news-list:nth-child(15) {
    animation-delay: 1.7s;
}

.news li.news-list:nth-child(16) {
    animation-delay: 1.8s;
}

.news li.news-list:nth-child(17) {
    animation-delay: 1.9s;
}

.news li.news-list:nth-child(18) {
    animation-delay: 2.0s;
}

.news li.news-list:nth-child(19) {
    animation-delay: 2.1s;
}

.news li.news-list:nth-child(20) {
    animation-delay: 2.2s;
}

.news li.news-list table {
    width: 100%;
}

.news li.news-list table th.dateTitle {
    color: #8a8a8a;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    display: block;
    line-height: 1;
    text-align: left;
}

.news li.news-list table th.dateTitle span {
    display: inline-block;
    vertical-align: middle;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
    padding: 2px 6px;
    margin-right: 10px;
    color: #fff;
    border-radius: 2px;

}

.news li.news-list table td.dateName {
    font-size: 14px;
    display: block;
    padding: 5px 0 0 10px;
    color: #aaa;

}

.news li.news-list table td a {
    display: inline-block;
    color: #aaa;
    transition: 0.3s ease;
    line-height: 140%;
}

.news li.news-list table td a:hover {
    color: #808080;
}

.refresh {
    max-width: 820px;
    margin: 50px auto;
    border: 3px double #ffa784;
}

.refresh dl {
    padding: 40px;
}

.refresh dl dt {
    text-align: center;
    font-size: 24px;
    padding: 0 0 20px 0;
    color: #ffa784;
}

.refresh dl dt span {
    display: inline-block;
    color: #ffa784;
}

.refresh dl dd {
    font-size: 14px;
    line-height: 180%;
    text-align: left;
    color: #8a8a8a;
}

.refresh dl dd.period {
    padding: 20px 0 10px 0;
    text-align: center;
}

.refresh dl dd.period_time {
    text-align: center;
}

.refresh dl dd.period b,
.refresh dl dd.period_time b {
    background-color: #ffa784;
    display: inline-block;
    padding: 5px 10px;
    font-size: 18px;
    line-height: 1;
    margin-right: 10px;
    color: #fff;
}

.refresh dl dd.period span,
.refresh dl dd.period_time span {
    font-size: 18px;
    color: #ff8bc1;
}

.newyearNotice {
    position: relative;
    padding: 30px;
    background-color: #a7161d;
    background-image: url(/img/notice/newyear_notice_bg.jpg);
    background-position: 50%;
    background-repeat: repeat;
    background-size: 200px auto;
    margin: 0 auto 80px auto;
    max-width: 1000px;
}

.newyear {
    position: relative;
}

.newyear dl {
    position: relative;
    background-color: #fff;
    padding: 40px;
}

.newyear dl dt {
    text-align: center;
    padding: 0 0 20px 0;
}

.newyear dl dt b {
    font-size: 40px;
    color: #d00000;
    text-align: center;
    padding: 0 0 20px 0;
    font-family: 'Noto Serif JP', serif;
    line-height: 140%;
    font-weight: 700;
}

.newyear dl dd {
    font-size: 1.25em;
    text-align: left;
    line-height: 180%;
    color: #333;
}

.newyear dl dd b {
    display: inline-block;
    color: #d00000;
    font-weight: bold;
    font-size: 120%;
}

.transferWrap {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.transfer {
    position: relative;
    padding: 50px;
    background: #000;
}

.transfer dt {
    text-align: center;
    font-size: 60px;
    color: #ff3947;
    padding: 0 0 20px 0;
    font-family: 'Noto Serif JP', serif;
}

.transfer dd.transferTxt {
    font-size: 20px;
    line-height: 180%;
    text-align: center;
}

.transfer dd.transferTxt span {
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
}

.transferWrap span.tf-TL {
    background-image: url(/pc/img/name_frame_TL.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    overflow: hidden;
}

.transferWrap span.tf-TR {
    background-image: url(/pc/img/name_frame_TR.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 2px;
    right: 2px;
    display: block;
    overflow: hidden;
}

.transferWrap span.tf-BR {
    background-image: url(/pc/img/name_frame_BR.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 2px;
    right: 2px;
    display: block;
    overflow: hidden;
}

.transferWrap span.tf-BL {
    background-image: url(/pc/img/name_frame_BL.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 2px;
    left: 2px;
    display: block;
    overflow: hidden;
}

.discount-banner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.discount-banner span {
    display: block;
    background: rgb(218, 68, 83);
    background: -moz-linear-gradient(left, rgba(218, 68, 83, 1) 0%, rgba(137, 33, 107, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(218, 68, 83, 1) 0%, rgba(137, 33, 107, 1) 100%);
    background: linear-gradient(to right, rgba(218, 68, 83, 1) 0%, rgba(137, 33, 107, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8bc1', endColorstr='#ffa784', GradientType=1);
    padding: 1px;
    position: relative;
}

.discount-banner span.tf-TL {
    background-image: url(/pc/img/name_frame_TL.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 4px;
    left: 4px;
    display: block;
    overflow: hidden;
}

.discount-banner span.tf-TR {
    background-image: url(/pc/img/name_frame_TR.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 4px;
    right: 4px;
    display: block;
    overflow: hidden;
}

.discount-banner span.tf-BR {
    background-image: url(/pc/img/name_frame_BR.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 4px;
    right: 4px;
    display: block;
    overflow: hidden;
}

.discount-banner span.tf-BL {
    background-image: url(/pc/img/name_frame_BL.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 4px;
    left: 4px;
    display: block;
    overflow: hidden;
}

.discount-banner span img {
    width: 100%;
}

.msWrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.ms dt {
    display: block;
    /* background: #000; */
    position: relative;
    z-index: 1;
    line-height: 214px;
    width: 460px;
    height: 214px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.ms dt a {
    display: block;
    transition: 0.5s ease;
}

.ms dt a img {
    width: 100%;
}

.ms dt a:hover {
    opacity: 0.6;
}

.ms dt small {
    display: inline-block;
}

.ms dd {
    position: relative;
    background: rgb(218, 68, 83);
    background: -moz-linear-gradient(left, rgba(218, 68, 83, 1) 0%, rgba(137, 33, 107, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(218, 68, 83, 1) 0%, rgba(137, 33, 107, 1) 100%);
    background: linear-gradient(to right, rgba(218, 68, 83, 1) 0%, rgba(137, 33, 107, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8bc1', endColorstr='#ffa784', GradientType=1);
    padding: 1px;
    z-index: 0;
    margin: -107px 0 0 0;
}

.ms dd .msBody {
    display: block;
    padding: 110px 30px 40px 30px;
    background-color: #000;

}

.ms dd b {
    font-size: 16px;
    line-height: 180%;
    color: #a0a0a0;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    display: inline-block;
}

.ms span.ms-B {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50%;
    height: 2px;
    background-color: #000;
}

.ms span.tf-TL {
    background-image: url(/pc/img/name_frame_TL.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 4px;
    left: 4px;
    display: block;
    overflow: hidden;
}

.ms span.tf-TR {
    background-image: url(/pc/img/name_frame_TR.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 4px;
    right: 4px;
    display: block;
    overflow: hidden;
}

.ms span.tf-BR {
    background-image: url(/pc/img/name_frame_BR.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 4px;
    right: 4px;
    display: block;
    overflow: hidden;
}

.ms span.tf-BL {
    background-image: url(/pc/img/name_frame_BL.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 4px;
    left: 4px;
    display: block;
    overflow: hidden;
}