* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.swiper-wrapper {
    padding-bottom: 75px !important;
}
.swiper-pagination-bullet-active {
    background: #000 !important;
}
.lc-key-visual {
    position: relative;
    width: 100%;
    height: 550px;
    z-index: 1;
    margin-bottom: 35px;
}

.lc-key-visual__img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.lc-key-visual::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.308);
    z-index: 2;
    width: 100%;
    height: 100%;
}

.lc-key-visual__title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 62px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 2px #000000b4;
}


.lc-sec-title {
    margin: auto;
    padding: 15px;
    position: relative;
    width: max-content;
    text-align: center;
}

.lc-sec-title p {
    font-family: var(--font_title);
    font-size: 62px;
    line-height: 74.4px;
    margin: 0 0 2px;
}

.lc-sec-title span {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
}

.lc-sec-title:after {
    content: "";
    width: 75px;
    height: 2px;
    background: var(--c_main);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.lc-wrapper section {
    margin:0 auto 75px;  
    padding: 50px 15px;
    width: 100%;
    /* max-width: 1000px; */
     max-width: 1180px;
}


@media screen and (max-width: 798px) {
    .lc-key-visual {
    margin-bottom: 0px;
           height: 45vh;
}
    .lc-key-visual__title {
    font-size:3rem;
    width: 90%;
}
.lc-sec-title p {
    font-size: 3.6rem;
   /*  line-height: 185%; */
    height: 55px;
}
.lc-sec-title span {
    font-size: 18px;
 line-height: 185%;
}
.lead-introduction p {
    font-size: 16px;
  line-height: 185%;
}

}
@media screen and (max-width: 498px) {
    .lc-wrapper section {
   margin-bottom: 0;
}
.lc-sec-title {
    width: initial;
}
.lc-sec-title p {
    font-size: 3rem;
}
}

/**************************************************

lead-introduction

***************************************************/
.lead-introduction {
    width: 100%;
    max-width: 750px;
    margin: 35px auto 70px;
    padding: 0 15px;
}

.lead-introduction p {
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
    text-align: center;
}

.btn-area {
    padding: 50px 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.btn-sns {
    font-size: 18px;
    padding: 15px 10px;
    border-radius: 15px;
    display: block;
    width: 300px;
    text-align: center;
    letter-spacing: -0.02rem;
    font-weight: bold;
}

.bt-youtube {
    background: #cd201f;
    color: #fff !important;
    font-weight: bold;
}

.bt-ig {
    background: #d6249f;
    background: -webkit-linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    background: linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff !important;
}

.lc-introduce {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 2%; */
}

.lc-introduce div {
    width: 45%;
}

.lc-introduce div img {
    width: 100%;
    display: block;
    margin: auto;
    max-width: 375px;
}

.lc-introduce div p {
    text-align: center;
    margin: auto;
    font-weight: bold;
    font-size: 21px;
    padding: 3px 25px;
    background-color: #000;
    color: #fff;
    width: max-content;
    margin-bottom: 15px;
    border-radius: 15px;
}

.lc-live-contents {}


/* Table */
:root {
    --bg: #ffffff;
    --text: #222;
    --muted: #666;
    --line: #e9e9e9;
    --head: #f7f7f7;
    --brand: #6a5acd;
    --yt: #ff0000;
    --ig1: #f58529;
    --ig2: #dd2a7b;
    --ig3: #8134af;
    --badge: #6b4ce6;
    --badge-text: #fff;
}

.table-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 50px auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0
}

thead th {
    background: var(--head);
    color: var(--text);
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
}

tbody tr:last-child td {
    border-bottom: none
}

.title {
    font-weight: 700
}

.muted {
    color: var(--muted)
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    background: var(--badge);
    color: var(--badge-text);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 9999px;
    margin-left: .5rem;
    white-space: nowrap;
}

.btn {
    appearance: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transition: transform .06s ease, box-shadow .2s ease, opacity .2s ease;
    white-space: nowrap;
}
.btn:visited{
    color: #fff !important;
}
.btn:hover{
    color: #fff;
}
.btn:hover{
    color: #fff;
}

.btn:active {
    transform: translateY(1px)
}

.btn-youtube {
    background: var(--yt);
    /* box-shadow: 0 6px 16px rgba(255, 0, 0, .18) */
}

.btn-youtube:hover {
    /* opacity: .92 */
}

.btn-instagram {
    background: linear-gradient(135deg, var(--ig1), var(--ig2) 55%, var(--ig3));
   /*  box-shadow: 0 6px 16px rgba(221, 42, 123, .22) */
}

.btn-instagram:hover {
    opacity: .93
}
    .links {
        display: flex;
        gap: 15px;
    }

@media screen and (max-width: 798px) {
.btn-area {
    margin-top: 15px;
    padding: 0;
}
.btn-sns {
    font-size: 14px;
}
.lc-introduce {
    margin-bottom: 0;
}
.lc-introduce div p {
    display: none;
}
.lc-introduce {
    gap: 0%;
}
.lc-introduce div {
    width: 49%;
}

}



.lc-archives{

}

.lc-archives .swiper-button-next:after, .swiper-button-prev:after {
font-size: 25px !important;
    font-weight: bold;
    background: #ea6199;
    border-radius: 50%;
    padding: 15px 20px;
}
.lc-archives .swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
    top: 40%;
}

.lc-archives .swiper-button-next {
    right: 15px;
}
.lc-archives .swiper-button-prev {
    left:  0px;
}
.lc-archives .swiper-button-prev {
    left: initial !important;
}

/* Responsive ﾃ｢窶�窶� rows become cards */
@media (max-width: 720px) {
    thead {
        display: none
    }

    table,
    tbody,
    tr,
    td {
        display: block;
        width: 100%
    }

tbody tr {
    border-bottom: 1px solid var(--line);
    padding: 14px 14px 25px;
}

    tbody td {
        border: none;
        padding: 6px 0
    }

    .cell-label {
        display: block;
        font-size: 12px;
        color: var(--muted);
        margin-bottom: 2px
    }

    .links {
        justify-content: space-around;
    }

    .table-wrap {
        border-radius: 12px;
        width: 98%;
    }
}

/* Small embellishments */
.mono {
    font-variant-numeric: tabular-nums
}

.cast {
    white-space: nowrap
}


.lc-cast{

}


.lc-cast ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:5%;
}


.lc-cast ul li{
   width: 21%;
}


.lc-cast ul li img{
   width: 100%;
   border-radius: 15px;
   margin-bottom: 5px;
}

.lc-cast ul li .cs-jp{
   font-weight: bold;
   margin-top: 3px;
   font-size: 18px;
}

.lc-cast ul li .cs-en{
   font-size: 18px;
   margin-bottom: 2px;
}

.lc-cast ul li .cs-intro{
   font-size: 12px;
}

@media screen and (max-width: 798px) {
.lc-cast ul li{
   width: 45%;
margin-bottom: 15px;
}
}
@media screen and (max-width: 498px) {
    .lc-cast ul {
    flex-direction: column;
    margin-top: 25px;
}
.lc-cast ul li{
   width: 100%;
}
.lc-cast ul li img {
    /* max-width: 275px; */
    display: block;
    margin: auto;
}
.lc-cast ul li .cs-intro {
    margin-bottom: 25px;
}
.faq-container {
    margin-top: 0 !important;
   padding-left: 0;
   padding-right: 0;
}
}