.coverBtn {
    display: inline-block;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent;
    border: 1px solid #e1e1e1;
    font: 12px/1.2 "Roboto", sans-serif;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
}

.coverBtn::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    z-index: 1;
    opacity: 0;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

.coverBtn::after {
    transition: border 0.1s linear 0.05s;
}

.coverBtn .btn-inner {
    position: relative;
    z-index: 2;
}

.coverBtn:hover {
    color: #373737;
    transition: color 0.1s linear 0s;
}

.coverBtn:hover::before {
    top: 0;
    height: 100%;
    opacity: 1;
    transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

.coverBtn:hover::after {
    border-color: #373737;
    transition: border 0.1s linear 0s;
}

.main-content {
    position: relative;

}

.slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100dvh;
    z-index: 1;
}

.slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

}

.slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.slideshow .slide.is-active {
    display: block;
}

.slideshow .slide.is-loaded {
    opacity: 1;
}

.slideshow .slide .caption {
    position: relative;
}

.slideshow .slide .caption.caption-inner {
    width: 100%;
    height: 100%;
    background: transparent !important;
    mix-blend-mode: difference !important;
}

.slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("/pc/img/bg_dot_black.png");
    background-repeat: repeat;
    opacity: 0.5;
    /* background: rgba(0, 0, 0, 0.5); */
}

.slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow .slide-content.mix-content {
    background: transparent;
    mix-blend-mode: difference;
}

/*
.slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    font: 300 50px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
*/

.slideshow .slide .title {
    margin: 0 auto 15px;
    max-width: 200px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.slideshow .slide .title span {
    display: block;
    width: 60%;
    max-width: 240px;
    margin: 0 auto;
}

.slideshow .slide .title span img {
    width: 100%;
}

.slideshow .slide .text {
    margin: 0 auto;
    max-width: 400px;
    font-size: 18px;
    line-height: 1.4;
    width: 80%;
}

.slideshow .slide .text span {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.slideshow .slide .text span img {
    width: 100%;
}

.slideshow .slide .coverBtn {
    margin: 15px 0 0;
    border-color: #fff;
}

.slideshow .slide .coverBtn::before {
    background: #fff;
}

.slideshow .pagination {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
}

.slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
}

.slideshow .pagination .item+.page {
    margin-left: -2px;
}

.slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
    background-color: #fff;
}

.slideshow .arrows .arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
    transform: translateY(-50%);
    display: none;
}

.slideshow .arrows .prev {
    left: 15px;
}

.slideshow .arrows .prev:hover .svg {
    left: -10px;
}

.slideshow .arrows .next {
    right: 15px;
    background-color: black;
}

.slideshow .arrows .next:hover .svg {
    left: 10px;
}

.slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
}

#topCoverWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    z-index: 100;
    min-width: 320px;
}

#topCover-wrap,
#topCover-wrap2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100dvh;
    z-index: 100;
    min-width: 320px;
}

.topCover {
    position: relative;
    width: 100%;
    height: 100%;
}

.cover {
    position: relative;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50% 0;
    width: 100%;
    height: 100svh;
}

#topCover-wrap .topCover .cover{
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 50%;
    width: 100%;
    height: 100dvh;
    background-image:url(/sp/img/cover/pair1.jpg);
}

#topCover-wrap2 .topCover .cover{
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 50%;
    width: 100%;
    height: 100dvh;
    background-image:url(/sp/img/cover/pair2.jpg);
}

.cover::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("/pc/img/bg_dot_black.png");
    background-repeat: repeat;
    opacity: 0.5;
}

.coverLogo {
    position: absolute;
    top: 24px;
    left: 10px;
    width: 40%;
    max-width: 240px;
    min-width: 200px;
    z-index: 101;
    background: transparent;
    mix-blend-mode: difference;
}

.coverLogo a {
    display: block;
    position: relative;
}

.coverLogo img {
    width: 100%;
}

.coverVisual-wrap {
    position: absolute;
    left: 0;
    top: -60px;
    width: 100%;
    height: 100vh;
    max-height: 60px;
    background-image: url(/pc/img/cover_inner_visual.svg);
    background-size: 100% auto;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}

.coverVisual {
    position: relative;
    width: 100%;
    height: 100%;
}

.openDay {
    position: absolute;
    left: 50%;
    bottom: 0;
    /* height: 140px; */
    width: 90%;
    max-width: 480px;
    transform: translate(-50%, 0);
}

.openDay img {
    /* height: 100%; */
    width: 100%;
}

.topLogo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    z-index: 101;
}

.topLogo a {
    display: block;
    position: relative;
}

.topLogo a img {
    width: 100%;
}

.coverTitle-wrap {
    position: absolute;
    width: 120%;
    max-width: 800px;
    /* background: transparent !important;
    mix-blend-mode: difference !important; */
    top: 50%;
    left: 60%;
    text-align: left;
    transform: translate(-60%, -50%) rotate(-45deg);
    transform-origin: center center;
}

.coverTitle {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.coverTitle li {
    position: relative;
    height: 20%;
    width: 100%;
}

.coverTitle li span {
    position: relative;
    display: block;
    height: 20%;
}

.coverTitle li span img {
    width: 100%;
    /* position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%; */
}

.reveal-text,
.reveal-text::after {
    /* -webkit-animation-delay: var(--animation-delay, 2s);
	        animation-delay: var(--animation-delay, 2s);
	-webkit-animation-iteration-count: var(--iterations, 1);
	        animation-iteration-count: var(--iterations, 1);
	-webkit-animation-duration: var(--duration, 800ms);
	        animation-duration: var(--duration, 800ms); */
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
}

.reveal-text2,
.reveal-text2::after {
    animation-delay: 1.8s;
    -webkit-animation-delay: 1.8s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
}

.reveal-text3,
.reveal-text3::after {
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
}

.reveal-text4,
.reveal-text4::after {
    animation-delay: 2.2s;
    -webkit-animation-delay: 2.2s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
}

.reveal-text5,
.reveal-text5::after {
    animation-delay: 2.4s;
    -webkit-animation-delay: 2.4s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
}

.reveal-text,
.reveal-text2,
.reveal-text3,
.reveal-text4,
.reveal-text5 {
    /* --animation-delay: var(--delay, 0);
	--animation-duration: var(--duration, 800ms);
	--animation-iterations: var(--iterations, 1); */
    animation-delay: 0;
    -webkit-animation-delay: 0;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
    position: relative;
    font-size: 10vw;
    -webkit-animation-name: clip-text;
    animation-name: clip-text;
    color: #FFF;
    white-space: nowrap;
    cursor: default;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text::after,
.reveal-text2::after,
.reveal-text3::after,
.reveal-text4::after,
.reveal-text5::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    -webkit-animation-name: text-revealer;
    animation-name: text-revealer;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

@-webkit-keyframes clip-text {
    from {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes clip-text {
    from {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}


@-webkit-keyframes text-revealer {

    0%,
    50% {
        transform-origin: 0 50%;
    }

    60%,
    100% {
        transform-origin: 100% 50%;
    }


    60% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}


@keyframes text-revealer {

    0%,
    50% {
        transform-origin: 0 50%;
    }

    60%,
    100% {
        transform-origin: 100% 50%;
    }


    60% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

.cover-open {
    position: absolute;
    top: 80px;
    left: 10px;
    width: 17vmax;
    max-width: 400px;
}

.cover-open img {
    width: 100%;
}

.cover-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vmin;
    transform: translate(calc(-50% - 20px), calc(-50% + 10px));
    opacity: 0.5;
}

.cover-logo img {
    width: 100%;
}


@-webkit-keyframes fadeTxt {
    from {
        opacity: 0;
        filter: blur(4px);
        margin-bottom: 50px;
    }

    to {
        opacity: 1;
        filter: blur(0);
        margin-bottom: 0;
    }
}

@keyframes fadeTxt {
    from {
        opacity: 0;
        filter: blur(4px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

.fadeTxt {
    -webkit-animation-name: fadeTxt;
    animation-name: fadeTxt;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.topTitle {
    position: relative;
    margin: 30px 0 30px 0;
    text-align: center;
    display: inline-block;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    padding: 0 50px;
    color: #fff;
    white-space: nowrap;
}

.topTitle span {
    text-align: center;
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(3rem, 2.333rem + 2.22vw, 5rem);
    display: inline-block;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.01);
    color: #fff;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
}

.topTitle b {
    display: block;
}

.topTitle b small {
    font-size: clamp(0.75rem, 0.667rem + 0.13vw, 0.875rem);
    font-weight: 600;
    display: inline-block;
    line-height: 1;
    letter-spacing: 2px;
    color: #000;
    margin-top: 8px;
    padding: 5px 5px 3px 5px;
    font-style: italic;
    background: #fff;
    white-space: nowrap;
}

.topTitle span:nth-of-type(1) {
    animation-delay: 0.6s;
}

.topTitle span:nth-of-type(2) {
    animation-delay: 0.7s;
}

.topTitle span:nth-of-type(3) {
    animation-delay: 0.8s;
}

.topTitle span:nth-of-type(4) {
    animation-delay: 0.9s;
}

.topTitle span:nth-of-type(5) {
    animation-delay: 1s;
}

.topTitle span:nth-of-type(6) {
    animation-delay: 1.1s;
}

.topTitle span:nth-of-type(7) {
    animation-delay: 1.2s;
}

.topTitle span:nth-of-type(8) {
    animation-delay: 1.3s;
}

.topTitle span:nth-of-type(9) {
    animation-delay: 1.4s;
}

.topTitle span:nth-of-type(10) {
    animation-delay: 1.5s;
}

#topLeft {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

#topRight {
    position: relative;
}


#topicWrap {
    position: relative;
}

#topic {
    position: relative;
    margin: 0 0 50px 0;
}

#topic dl {
    position: relative;
}

#topic .topicThumb {
    position: relative;
    display: block;
}

#topic dt a.topicPhoto {
    display: block;
    position: relative;
    background: rgb(127, 127, 127);
    background: -moz-linear-gradient(top, rgba(127, 127, 127, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(127, 127, 127, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(127, 127, 127, 1) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7f7f7f', endColorstr='#000000', GradientType=0);
    padding: 4px;
    border-radius: 10px 10px 0 0;
}

#topic a .topic-img {
    width: 100%;
    transition: 0.3s ease;
    opacity: 1;
    border-radius: 10px 10px 0 0;
}

#topic a:hover img.topic-img {
    opacity: 0.8;
}

#topic a img,
#topic img {
    width: 100%;
}

#topic span.topicTime {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: 10px;
    text-align: right;
    padding: 5px 5px 0 0;
    color: #d0d0d0;
    position: absolute;
    right: -10px;
    top: -25px;
    display: none;
}

.topic-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    padding: 4px;
    display: inline-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='#da4453', endColorstr='#89216b', 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);
}

#topicBody {
    position: relative;
    margin: 20px 0 0 0;
    padding: 40px 10px 50px 10px;
    background: rgba(0, 0, 0, 0.6);
}

#topicWrap h2.topicsTitle {
    color: #5d5d5d;
    text-align: left;
    font-weight: normal;
    font-size: 24px;
    line-height: 140%;
    display: block;
    padding: 0 2px 0 14px;
    text-align: justify;
    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='#da4453', endColorstr='#89216b', 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);
    font-weight: 900;
}

#topicWrap h2.topicsTitle::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: rgb(137, 33, 107);
    background: -moz-linear-gradient(top, rgba(137, 33, 107, 1) 0%, rgba(218, 68, 83, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(137, 33, 107, 1) 0%, rgba(218, 68, 83, 1) 100%);
    background: linear-gradient(to bottom, rgba(137, 33, 107, 1) 0%, rgba(218, 68, 83, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#89216b', endColorstr='#da4453', GradientType=0);
    top: 0;
    left: 0;
    opacity: 0.8;
    border-radius: 1px;
}

#topicBody span.topicTxt {
    position: relative;
    display: block;
    font-size: inherit;
    text-align: left;
    line-height: 160%;
    padding: 20px 10px 0 10px;
    text-align: justify;
    color: inherit;
}

#topicBody span.topicTxt div {
    position: relative;
    font-size: inherit;
    text-align: left;
    line-height: 160%;
    color: inherit;
    text-align: justify;
}

span.topics-tf-TL {
    background-image: url(/pc/img/profile_corner_TL.png);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -5px;
    left: -5px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

span.topics-tf-TR {
    background-image: url(/pc/img/profile_corner_TR.png);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -6px;
    right: -6px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

span.topics-tf-BR {
    background-image: url(/pc/img/profile_corner_BR.png);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -5px;
    right: -5px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

span.topics-tf-BL {
    background-image: url(/pc/img/profile_corner_BL.png);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -5px;
    left: -5px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

span.topics-tf-T {
    background-image: url(/pc/img/profile_frame_border_W.png);
    height: 2px;
    width: calc(100% - 74px);
    position: absolute;
    top: 0;
    left: 37px;
    display: block;
    border-radius: 1px;
    background-size: cover 807px;
    background-repeat: repeat;
}

span.topics-tf-R {
    background-image: url(/pc/img/profile_frame_border_H.png);
    height: calc(100% - 74px);
    width: 2px;
    position: absolute;
    top: 37px;
    right: 0;
    display: block;
    border-radius: 1px;
    background-size: cover 647px;
    background-repeat: repeat;
}

span.topics-tf-B {
    background-image: url(/pc/img/profile_frame_border_W.png);
    height: 2px;
    width: calc(100% - 74px);
    position: absolute;
    bottom: 0;
    left: 37px;
    display: block;
    border-radius: 1px;
    background-size: cover 807px;
    background-repeat: repeat;
}

span.topics-tf-L {
    background-image: url(/pc/img/profile_frame_border_H.png);
    height: calc(100% - 74px);
    width: 2px;
    position: absolute;
    top: 37px;
    left: 0;
    display: block;
    border-radius: 1px;
    background-size: cover 647px;
    background-repeat: repeat;
}

.mmBanner {
    background: rgb(237, 59, 75);
    background: -moz-linear-gradient(left, rgba(237, 59, 75, 1) 0%, rgba(76, 59, 146, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(237, 59, 75, 1) 0%, rgba(76, 59, 146, 1) 100%);
    background: linear-gradient(to right, rgba(237, 59, 75, 1) 0%, rgba(76, 59, 146, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed3b4b', endColorstr='#4c3b92', GradientType=1);
    margin: 10px auto;
    max-width: 320px;
}

.mmBanner a {
    display: block;
    transition: 0.3s ease;
    padding: 2px;
}

.mmBanner a img {
    width: 100%;
}

.topBorder {
    width: 30%;
    height: 1px;
    background: rgba(0, 0, 0, 0.0);
    margin: 30px auto;
}

#top-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 320px;
    background-color: #000;
    background-image: url("/sp/img/index/bg.jpg");
    background-size: 1080px 1440px;
    background-repeat: no-repeat;
    background-position: 0 0;
    margin: 100dvh auto 0 auto;
    padding: 10px 0 0px 0;
    z-index: 101;
}

#top-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
    overflow: hidden;
}

#top-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
    overflow: hidden;

}

#top-inner {
    position: relative;
    width: 96%;
    margin: 0 auto;
    max-width: 900px;
    z-index: 5001;
    padding: 0 0 100px 0;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#top {
    position: relative;
    padding: 20px 20px 20px 20px;
    max-width: 1920px;
    margin: 0 auto;
}

@media screen and (max-width: 680px) {
    .top-companion_list {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

    .top-companion_list li.thumb-list {
        position: relative;
        text-align: center;
        width: 100%;
    }

    .top-companion_list li.thumb-list:nth-of-type(1) {
        animation-delay: 0.3s;
    }

    .top-companion_list li.thumb-list:nth-of-type(2) {
        animation-delay: 0.4s;
    }

    .top-companion_list li.thumb-list:nth-of-type(3) {
        animation-delay: 0.5s;
    }

    .top-companion_list li.thumb-list:nth-of-type(4) {
        animation-delay: 0.6s;
    }

    .top-companion_list li.thumb-list:nth-of-type(5) {
        animation-delay: 0.7s;
    }

    .top-companion_list li.thumb-list:nth-of-type(6) {
        animation-delay: 0.8s;
    }

    .top-companion_list li.thumb-list:nth-of-type(7) {
        animation-delay: 0.9s;
    }

    .top-companion_list li.thumb-list:nth-of-type(8) {
        animation-delay: 1s;
    }

    .top-companion_list li.thumb-list:nth-of-type(9) {
        animation-delay: 1.1s;
    }

    .top-companion_list li.thumb-list:nth-of-type(10) {
        animation-delay: 1.2s;
    }

    .top-companion_list li.thumb-list:nth-of-type(11) {
        animation-delay: 1.3s;
    }

    .top-companion_list li.thumb-list:nth-of-type(12) {
        animation-delay: 1.4s;
    }

    .top-companion_list li.thumb-list:nth-of-type(13) {
        animation-delay: 1.5s;
    }

    .top-companion_list li.thumb-list:nth-of-type(14) {
        animation-delay: 1.6s;
    }

    .top-companion_list li.thumb-list:nth-of-type(15) {
        animation-delay: 1.7s;
    }

    .top-companion_list li.thumb-list:nth-of-type(16) {
        animation-delay: 1.8s;
    }

    .top-companion_list li.thumb-list:nth-of-type(17) {
        animation-delay: 1.9s;
    }

    .top-companion_list li.thumb-list:nth-of-type(18) {
        animation-delay: 2s;
    }

    .top-companion_list li.thumb-list:nth-of-type(19) {
        animation-delay: 2.1s;
    }

    .top-companion_list li.thumb-list:nth-of-type(20) {
        animation-delay: 2.2s;
    }
}

@media screen and (min-width: 681px) {
    .top-companion_list {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

    .top-companion_list li.thumb-list {
        position: relative;
        text-align: center;
        width: 50%;
    }

    .top-companion_list li.thumb-list:nth-of-type(2n+1) {
        animation-delay: 0.3s;
    }

    .top-companion_list li.thumb-list:nth-of-type(2n+2) {
        animation-delay: 0.4s;
    }

    .top-companion_list li.thumb-list a.ca {}
}

/******************************************コンパニオン******************************************/

.top-companion {
    position: relative;
    margin: 0 0 0 0;
}

.top-companion_list li.thumb-list {
    position: relative;
    visibility: hidden;
    animation-duration: 0.6s;
    /* animation-timing-function: cubic-bezier(0.000, 0.000, 0.580, 1.000); */
}

.top-companion_list li.thumb-list a.ca {
    display: block;
    transition: 0.3s ease;
    position: relative;
    text-align: center;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    background: #333;
    background: -webkit-linear-gradient(top, rgba(218, 68, 83, 0.4), rgba(137, 33, 107, 0.4));
    background: linear-gradient(to top, rgba(218, 68, 83, 0.4), rgba(137, 33, 107, 0.4));
    padding: 1px;
    margin: 5px;
}

.top-companion_list li.thumb-list a.ca .thumb-inner {
    display: block;
    overflow: hidden;
    padding: 5px;
    background: #000;
}

.top-companion_list li.thumb-list a span.thumb-photo {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100px;
    float: left;
}

.top-companion_list li.thumb-list a span.thumb-wrap {
    overflow: hidden;
    display: block;
    transition: 0.3s ease;
}

.top-companion_list li.thumb-list a.ca:hover span.thumb-wrap {
    filter: saturate(30%) grayscale(30%);
}

.top-companion_list li.thumb-list a span.thumb-wrap img {
    transition: 0.8s ease;
    overflow: hidden;
}

.companionThumb {
    transition: 0.3s ease;
    width: 100%;
}

.top-companion_list li.thumb-list dl {
    position: relative;
    z-index: 10;
    margin: 0 0 0 110px;
    height: 100px;
    width: auto;
}

.top-companion_list li.thumb-list dl .name-inner {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.top-companion_list li.thumb-list dl .name-inner .name-area {
    display: block;
}

.top-companion_list li.thumb-list span.cf-TL {
    background-image: url(/pc/img/top_name_frame_TL.png);
    width: 24px;
    height: 24px;
    position: absolute;
    top: -2px;
    left: -2px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

.top-companion_list li.thumb-list span.cf-TR {
    background-image: url(/pc/img/top_name_frame_TR.png);
    width: 24px;
    height: 24px;
    position: absolute;
    top: -2px;
    right: -2px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

.top-companion_list li.thumb-list span.cf-BR {
    background-image: url(/pc/img/top_name_frame_BR.png);
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: -2px;
    right: -2px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

.top-companion_list li.thumb-list span.cf-BL {
    background-image: url(/pc/img/top_name_frame_BL.png);
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: -2px;
    left: -2px;
    display: block;
    overflow: hidden;
    background-size: cover;
}

.top-companion_list li.thumb-list dl dt.name {
    /*    font-size: 3vmin;*/
    font-size: 20px;
    line-height: 1;
    color: #d0d0d0;
    letter-spacing: 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

@media all and (-ms-high-contrast: none) {
    .top-companion_list li.thumb-list dl dt.name {}
}

.top-companion_list li.thumb-list dl dt.name b {
    font-size: 13px;
    line-height: 1;
    color: #d0d0d0;
    /* font-family: 'FunctionsPro', sans-serif; */
    font-family: 'Noto Serif JP', serif;
    display: inline-block;
    margin-left: 4px;
}

.top-companion_list li.thumb-list dl small {
    display: block;
    background-image: url(/pc/img/name_roma_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 90%;
    height: 1px;
    margin: 5px auto;
    opacity: 0.4;
}

.top-companion_list li.thumb-list dl dt.name span {
    display: block;
    color: #d0d0d0;
    font-size: 8px;
    margin-bottom: 2px;
    font-family: 'FunctionsPro', sans-serif;
    letter-spacing: 2px;
}

.top-companion_list li.thumb-list a.ca dl dd.size {
    font-family: 'FunctionsPro', sans-serif;
    font-size: 10px;
    color: #d0d0d0;
    letter-spacing: 0;
    padding-left: 2px;
}

.top-companion_list li.thumb-list a.ca dl dd.size b {
    font-family: 'FunctionsPro', sans-serif;
    font-weight: normal;
    font-size: 13px;
    margin-right: 2px;
    color: #d0d0d0;
}

.top-companion_list 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_list li.thumb-list .newMark {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 100px;
    transform: rotate(-11deg);

}

.top-companion_list li.thumb-list .newMark img {
    width: 100%;
}

.top-companion_list li.thumb-list .newMark2 {
    position: absolute;
    top: 35px;
    left: 15px;
    background: rgb(237, 172, 163);
    background: -moz-linear-gradient(left, rgba(237, 172, 163, 1) 10%, rgba(255, 235, 210, 1) 80%);
    background: -webkit-linear-gradient(left, rgba(237, 172, 163, 1) 10%, rgba(255, 235, 210, 1) 80%);
    background: linear-gradient(to right, rgba(237, 172, 163, 1) 10%, rgba(255, 235, 210, 1) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#edaca3', endColorstr='#ffebd2', GradientType=1);
    border-radius: 3px;
    z-index: 10;
}

.top-companion_list li.thumb-list .newMark2 span {
    display: block;
    font-size: 12px;
    font-family: 'FunctionsPro', sans-serif;
    color: rgba(226, 185, 153, 0);
    background: linear-gradient(90deg, #1f1f1f, #8b8b8b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    padding: 3px 10px;
}

.top-companion_list li.thumb-list .newMark2 img {
    width: 100%;
}

.top-companion_list li.thumb-list .rankingIcon {
    position: absolute;
    width: 100px;
    top: -83px;
    left: -5px;
    transform-origin: center bottom;
}

.top-companion_list li.thumb-list .rankingIcon img {
    width: 100%;
}

.top-companion_list li.thumb-list a.ca .ss-icon {
    position: absolute;
    top: 35px;
    right: 10px;
    text-align: right;
    display: none;
}

.top-companion_list li.thumb-list a.ca .ss-icon li {
    margin: 3px 0;
}

.top-companion_list li.thumb-list a.ca .ss-icon .shameMark span {
    display: inline-block;
    background: rgba(255, 139, 193, 0.7);
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 10px;
    line-height: 18px;
    padding: 0 8px;
    color: #fff;
    border-radius: 9px;
}

.top-companion_list li.thumb-list a.ca .ss-icon .reviewMark span {
    display: inline-block;
    background: rgba(0, 208, 239, 0.7);
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 10px;
    line-height: 18px;
    padding: 0 8px;
    color: #fff;
    border-radius: 9px;
}

.top-companion_list li.thumb-list a.ca .ss-icon .shameMark span i {
    font-size: 18px;
    vertical-align: middle;
}

.top-companion_list li.thumb-list a.ca .ss-icon .movieMark span {
    display: inline-block;
    background: rgba(255, 167, 132, 0.7);
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 10px;
    line-height: 18px;
    padding: 0 8px;
    color: #fff;
    border-radius: 9px;
}

.top-companion_list li.thumb-list a.ca .ss-icon .movieMark span i {
    font-size: 20px;
    vertical-align: middle;
}

.top-companion_list li.thumb-list a.ca .type-icon {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    min-height: 18px;
    display: none;
}

.top-companion_list li.thumb-list a.ca .type-icon li {
    text-align: center;
    display: inline-block;

}

.top-companion_list li.thumb-list a.ca .type-icon li span {
    display: block;
    padding: 0 10px;
    margin: 0 1px;
    font-size: 10px;
    line-height: 16px;
    background: #591f2e;
    border-radius: 3px;
    white-space: nowrap;
    color: #d0d0d0;
}

.top-companion_list li.thumb-list a.ca .debut {
    position: absolute;
    top: 42px;
    left: 7px;
    z-index: 1001;
    display: flex;
    flex-wrap: wrap;
}


.top-companion_list li.thumb-list a.ca .nirinMark {
    position: absolute;
    top: -60px;
    left: 0;
    width: 60px;
    overflow: hidden;
    display: none;
}

.top-companion_list li.thumb-list a.ca .nirinMark img {
    width: 100%;
}

.top-companion_list li.thumb-list a.ca .rePhoto {
    position: absolute;
    top: -8px;
    right: -7px;
    width: 68px;
    display: none;
}

.top-companion_list li.thumb-list a.ca .rePhoto img {
    width: 100%;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag {
    position: absolute;
    bottom: 135px;
    width: 100%;
    left: 0;
    height: 28px;
    overflow: hidden;
    display: none;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns {
    z-index: 11;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    float: right;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 2px;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-t {
    background: #2daae1;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-i {
    /* background: #2daae1; */
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-f {
    background: #4267b2;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-b {
    background: #ef7a2b;
}


.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-i {
    background: linear-gradient(45deg, rgba(254, 212, 117, 1) 0%, rgba(229, 61, 93, 1) 50%, rgba(194, 49, 134, 1) 70%, rgba(156, 56, 187, 1) 100%);
    z-index: 1;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-i::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    left: -15px;
    background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
    background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
    z-index: 0;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li a.snsA {
    position: relative;
    display: block;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li a.snsA span {
    display: block;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li a.snsA i {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-t:hover {
    background: #fff;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-t:hover i {
    color: #2daae1;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-i:hover {
    background: #fff;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-i:hover i {
    color: rgba(194, 49, 134, 1);
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-f:hover {
    background: #fff;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-f:hover i {
    color: #4267b2;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-b:hover {
    background: #fff;
}

.top-companion_list li.thumb-list a.ca dd.iconFlag ul.c-sns li.sns-b:hover i {
    color: #ef7a2b;
}

.finished .thumb-wrap {
    background-color: #000;
}

.top-companion_list li.thumb-list a.finished:hover span.thumb-wrap {
    filter: none;
    opacity: 1;
}

.finished .thumb-wrap img.companionThumb {
    opacity: 0.6;
}

/* きらん */
.anim-box.flare {
    opacity: 1;
    position: relative;
    display: block;
    z-index: 0;
    width: 100px;
    float: left;
}

.anim-box.flare::after {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
    z-index: 0;
}

.top-companion_list li.thumb-list a.ca:hover .anim-box.flare::after {
    animation: flare 0.6s 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 {
    display: block;
    text-align: center;
    position: relative;
    padding: 8px 0 0 0;
}

span.shiftMark b {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
    line-height: 20px;
    background: #591f2e;
    border-radius: 3px;
    white-space: nowrap;
    color: #d0d0d0;
    padding: 0 10px;

}

span.shiftMark2 {
    display: block;
    text-align: center;
    position: relative;
    padding: 8px 0 0 0;
}

span.shiftMark2 b {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
    line-height: 20px;
    background: #591f2e;
    border-radius: 3px;
    white-space: nowrap;
    color: #8a8a8a;
    padding: 0 10px;
}

span.shiftMark3 {
    position: relative;
    display: block;
    text-align: center;
    padding: 8px 0 0 0;
}

span.shiftMark3 b {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
    line-height: 20px;
    border-radius: 3px;
    white-space: nowrap;
    color: #d0d0d0;
    padding: 0 10px;
}

.top-companion_list li.thumb-list a.ca:hover span.shiftMark3 {}

p.debutDay {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 26px;
    letter-spacing: 0;
    line-height: 1;
    color: #ccc;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
    margin: 10px 0 -3px 0;
}

p.debutDay b {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
    color: #EC4B7D;
    padding-left: 4px;
}

.top-companion_list li.thumb-list a:hover p.debutDay {
    opacity: 1;
}

.catch_real {
    position: relative;
    text-align: center;
    padding: 8px 0 0 0;
    z-index: 11;
}

.catch_real b {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    font-family: "Roboto", source-han-sans-japanese, sans-serif;
    line-height: 20px;
    background: #591f2e;
    border-radius: 3px;
    white-space: nowrap;
    color: #d0d0d0;
    padding: 0 10px;
}

.catch_real2 {
    position: relative;
    text-align: center;
    padding: 8px 0 0 0;
    z-index: 11;
}

.catch_real2 b {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: "Roboto", source-han-sans-japanese, sans-serif;
    line-height: 20px;
    background: #591f2e;
    border-radius: 3px;
    white-space: nowrap;
    color: #aaa;
    padding: 0 10px;
}

.newsWrap {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    width: 94%;
    margin: 0 auto;
}

.news-inner {
    width: 100%;
    margin: 0 auto;
}

.newsBoder {
    display: block;
}

.news {
    width: 100%;
    margin: 0 auto;
}

.news li.news-list {
    border-bottom: 1px dotted #555;
    padding: 0 0 5px 0;
    margin-bottom: 20px;
}

.news li.news-list:nth-of-type(1) {
    animation-delay: 0.3s;
}

.news li.news-list:nth-of-type(2) {
    animation-delay: 0.4s;
}

.news li.news-list:nth-of-type(3) {
    animation-delay: 0.5s;
}

.news li.news-list:nth-of-type(4) {
    transition-delay: 0.6s;
}

.news li.news-list:nth-of-type(5) {
    animation-delay: 0.7s;
}

.news li.news-list:nth-of-type(6) {
    animation-delay: 0.8s;
}

.news li.news-list:nth-of-type(7) {
    animation-delay: 0.9s;
}

.news li.news-list:nth-of-type(8) {
    animation-delay: 1s;
}

.news li.news-list:nth-of-type(9) {
    animation-delay: 1.1s;
}

.news li.news-list:nth-of-type(10) {
    animation-delay: 1.2s;
}

.news li.news-list:nth-of-type(11) {
    animation-delay: 1.3s;
}

.news li.news-list:nth-of-type(12) {
    animation-delay: 1.4s;
}

.news li.news-list:nth-of-type(13) {
    animation-delay: 1.5s;
}

.news li.news-list:nth-of-type(14) {
    animation-delay: 1.6s;
}

.news li.news-list:nth-of-type(15) {
    animation-delay: 1.7s;
}

.news li.news-list:nth-of-type(16) {
    animation-delay: 1.8s;
}

.news li.news-list:nth-of-type(17) {
    animation-delay: 1.9s;
}

.news li.news-list:nth-of-type {
    animation-delay: 2.0s;
}

.news li.news-list:nth-of-type(19) {
    animation-delay: 2.1s;
}

.news li.news-list:nth-of-type(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;
    vertical-align: middle;
}

.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 5px;
    color: #8a8a8a;

}

.news li.news-list table td a {
    display: inline-block;
    color: #8a8a8a;
    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;
}

.newyear_notice_wrap {
    margin: 0 0 20px 0;
    position: relative;
    width: 100%;
}

.newyear_notice {
    position: relative;
    padding: 10px;
    background: url(/notice/newyear_notice_bg.jpg);
    background-repeat: repeat;
    background-position: 50%;
    background-size: 600px auto;
    max-width: 800px;
    margin: 0 auto;
}

.newyear_notice dl {
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    text-align: center;
}

.newyear_notice dl dt span {
    font-size: 28px;
    color: #f66;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    line-height: 140%;
    font-weight: bold;
    display: inline-block;
    letter-spacing: 0;
}

.newyear_notice dl dd {
    margin: 20px auto 0 auto;
    font-size: 16px;
    line-height: 140%;
    text-align: left;
}

.newyear_notice dl dd table.newyearTable {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.newyear_notice dl dd table.newyearTable th {
    display: inline-block;
    width: 50%;
    text-align: right;
    line-height: 1;
    padding: 10px 5px 10px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

.newyear_notice dl dd table.newyearTable td {
    display: inline-block;
    width: 50%;
    text-align: left;
    line-height: 1;
    padding: 10px 0 10px 5px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;

}

.newyear_notice dl dd table.newyearTable td b {
    display: block;
    font-size: 14px;
    padding-top: 5px;
    color: #f66;
    letter-spacing: 0;
    white-space: nowrap;
}


.transferWrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 50px auto 50px auto;
}

.transfer {
    position: relative;
    padding: 50px 10px;
    background: #000;
    text-align: center;
}

.transfer dt {
    padding: 0 0 20px 0;
}

.transfer dt span {
    font-size: 30px;
    color: #ff3947;
    font-family: 'Noto Serif JP', serif;
    display: inline-block;
    white-space: nowrap;
}

.transfer dd.transferTxt {
    font-size: 16px;
    line-height: 180%;
    text-align: center;
}

.transfer dd.transferTxt b {
    display: inline-block;
    font-size: 16px;
    line-height: 180%;
}

.transfer dd.transferTxt span {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    display: inline-block;
    line-height: 180%;

}

.transferWrap span.tf-TL {
    background-image: url(/pc/img/name_frame_TL.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    top: -2px;
    left: -2px;
    display: block;
    overflow: hidden;
}

.transferWrap span.tf-TR {
    background-image: url(/pc/img/name_frame_TR.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    top: -2px;
    right: -2px;
    display: block;
    overflow: hidden;
}

.transferWrap span.tf-BR {
    background-image: url(/pc/img/name_frame_BR.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -2px;
    right: -2px;
    display: block;
    overflow: hidden;
}

.transferWrap span.tf-BL {
    background-image: url(/pc/img/name_frame_BL.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: -2px;
    left: -2px;
    display: block;
    overflow: hidden;
}

.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;
}

.ms-icon {
    max-width: 480px;
    margin: 10px auto 0 auto;
    width: 96%;
}

.ms-icon a {
    display: block;
    transition: 0.5s ease;
}

.ms-icon a:hover {
    opacity: 0.6;
}

.ms-icon a img {
    width: 100%;
}

.open_notice_wrap {
    width: 100%;
    margin: 0 0 40px 0;
}

.open_notice {
    position: relative;
    padding: 0 2px 2px 2px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff45c;
}

.open_notice dl {
    background: rgba(255, 255, 255, 1);
    text-align: center;
}

.open_notice dl dt {
    background-color: #fff45c;
    padding: 20px 0;
}

.open_notice dl dt span {
    font-size: 26px;
    color: #333;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    line-height: 140%;
    font-weight: bold;
    display: inline-block;
}

.open_notice dl dd {
    padding: 20px 10px;
    font-size: 14px;
    line-height: 180%;
    text-align: left;
    color: #5c5c5c;
}

.open_notice dl dd b{
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.open_notice dl dd b small{
    position: relative;
    display: inline-block;
    color: #e60000;
    font-size: 18px;
    padding: 0 3px;
    font-weight: 700;
    z-index: 1;
}

.open_notice dl dd b small::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #fefbc4;
    z-index: -1;
    opacity: 0.6;
}

.open_notice dl dd table.openTable {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.open_notice dl dd table.openTable th.th-top2  {
    border: 1px solid #a0a0a0;
}

.open_notice dl dd table.openTable th.th-top2 span{
    display: block;
    color: #5c5c5c;
    line-height: 50px;
    font-size: 22px;
}

.open_notice dl dd table.openTable td {
    font-size: 26px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    border: 1px solid #a0a0a0;
    color: #5c5c5c;
}

.open_notice dl dd table.openTable td.td-1-2{
    font-size: 20px;
    color: #5c5c5c;
}

.open_notice dl dd table.openTable td span {
    position: relative;
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.open_notice dl dd table.openTable td.td-1, .open_notice dl dd table.openTable td.td-2{
    width: 30%;
    font-size: 20px;

}
.open_notice dl dd table.openTable td.td-1-2, .open_notice dl dd table.openTable td.td-2-2{
    width: 70%;
}

.open_notice dl dd table.openTable td.td-1, .open_notice dl dd table.openTable td.td-1-2 {
    background-color: #efefef;
}

.open_notice dl dd table.openTable td.td-2, .open_notice dl dd table.openTable td.td-2-1 {
    background-color: #fefbc4;
    color: #e60000;
}
.open_notice dl dd table.openTable td.td-2-1 span {
    color: #e60000;
}
.open_notice dl dd table.openTable td span b {
    display: inline-block;
    font-size: 18px;
    color: inherit;
    font-weight: inherit;
}

.open_notice dl dd table.openTable td.td-1-2 span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8a8a8a;
}

.open_notice dl dd table.openTable th.th-bottom {}

.open_notice dl dd table.openTable td.td-top1 {
    border-top: 2px solid #a0a0a0;
    background-color: #efefef;
}

.open_notice dl dd table.openTable td.td-top2 {
    border-top: 2px solid #a0a0a0;
    background-color: #fefbc4;
    color: #e60000;
}

.open_notice dl dd table.openTable td.td-bottom1 {
    font-size: 24px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
}

.open_notice dl dd table.openTable td.td-bottom1 {
    background-color: #efefef;
}
.open_notice dl dd table.openTable td.td-bottom2 {
    width: 6%;
    display: none;
}

.open_notice dl dd table.openTable td.td-bottom3 {
    background-color: #fefbc4;
}

.open_notice dl dd table.openTable td.td-bottom3 span {
    color: #e60000;
}