@charset "utf-8";
#wrapper {
    width: 100%;
    font-size: 16px;
    line-height: 1.7;
}
#wrapper img {
    vertical-align: top;
}
section{
	max-width: 1280px;
}
a {
	text-decoration: none;
	color: #222222;
}
.sp {
    display: none;
}
.cover {
    max-width: 1280px;
    position: relative;
    margin: 0 auto;
}
.coverInner {
    position: relative;
    max-width: 100%;
}
.coverImg {
    width: 100%;
    margin: 0 auto;
}
.coverImg img {
    width: 100%;
}
.sns_top {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    /* width: 15%; */
}

.sns_top a {
    max-width: 50px;
    max-height: 50px;
    background-color: #545659;
    padding: 1.6em;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: .4s;
}
.sns_top a.tiktok:hover {
	background-color: #36c5c3;
}
.sns_top a.x:hover {
	background-color: #151616;
}
.sns_top a.instagram:hover {

background-color: #fb4c8f;
}
.sns_top a.yt:hover {
background-color: #d40a00;
}
.sns_top a .fa-youtube {
    font-size: 1.7em;
}


section.imgListWrap {
    margin: 0 auto;
    position: relative;
    display: flex;
    overflow: hidden;
}
section.imgListWrap .slider {
    display: flex;
    width: max-content;
}
section.imgListWrap .slider li {
    min-width: calc(1280px / 4);
    padding: 20px 10px;
}
@media screen and (max-width:1279px){
	section.imgListWrap .slider li {
	    min-width: calc(100vw / 4);
	    padding: 1.4vw 0.7vw;
	}
}
section.imgListWrap .slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}
section.imgListWrap .slider:first-child {
    animation: loop 70s -35s linear infinite;
}
section.imgListWrap .slider:last-child {
    animation: loop2 70s linear infinite;
}
@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

section.profile {
    margin: 0 auto 0%;
    padding: 0 0 3%;
    background: #D6F5F5;
    position: relative;
}
.proListWrap {
    width: 80%;
    margin: 0 auto;
}
.proIcon {
    width: 13%;
    margin: 0 auto;
    padding: 2% 0 0;
}

.contTtl {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    color: #aaa;
    letter-spacing: 2.5px;
    padding: 2%;
    position: relative;
}
.proFlex {
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 3%;
    z-index: 6;
}

.profile .proCont {
    width: 48%;
}

table.proTable {
    width: 100%;
}
th.proTtl {
    width: 6em;
    text-align: left;
    font-weight: bold;
    padding: 3% 0;
}
.proTVcharge_img {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}
.proTVcharge_item {
	transition: 0.3s;
	width: calc(100%/4 - 20px);
	text-align: center;
}
.proTVcharge_item:hover {
	opacity: 0.7;
}
.proTVcharge_item div img {
    max-width: 326px;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
}

.interview {
    margin: 0 auto 0%;
    padding: 0 0 3%;
    background: #ffffff;
    position: relative;
}
.interTtl {
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    color: #aaa;
    letter-spacing: 2.5px;
    padding: 4% 2%;
    position: relative;
}
.chatWrap {
    max-width: 896px;
    width: 95%;
    margin: 0 auto;
    font-weight: bold;
}
.balloon-chat {
    position: relative;
    display: flex;
    gap: 5px;
}
.balloon-chat.left {
    flex-direction: row;
    position: relative;
}
.balloon-chat.right {
    flex-direction: row-reverse;
}
.chatting {
    position: relative;
    display: inline-block;
    min-width: 23em;
    max-width: 46em;
    margin: 20px;
    padding: 20px;
    background: #d6f5f5;
    text-align: left;
    border-radius: 12px;
}
.chatting::after {
    content: "";
    border: 15px solid transparent;
    border-top-color: #d6f5f5;
    position: absolute;
    top: 10px;
}
.chatting.gray {
    position: relative;
    display: inline-block;
    min-width: 23em;

    margin: 20px;
    padding: 20px;
    background: #ddd;
    text-align: left;
    border-radius: 12px;
}
.chatting.gray::after {
    content: "";
    border: 15px solid transparent;
    border-top-color: #dddddd;
    position: absolute;
    top: 10px;
}
.balloon-chat.chatting.michu {
	position: relative;
}
.balloon-chat .chatting.michu::before {
    content: "";
    background: url("../../common/img/michu/michu01.png")no-repeat top center;
    background-size: cover;
    /* max-width: 92px; */
    width: 70px;
    height: 54px;
    position: absolute;
    top: -27px;
    right: -28px;
}
.left .chatting::after {
    left: -15px;
}
.right .chatting::after {
    right: -15px;
}
.balloon-chat .chat-name {
	text-align:center;
}
.balloon-chat figure img {
    border-radius: 50%;
    margin: 0;
}
.icon-img {
    width: 80px;
    height: 80px;
}

a.back {
    display: block;
    margin: 3% auto;
    width: 200px;
    color: #666;
}
a.back:hover {
    color: #333;
    text-decoration: underline;
}


/*アナウンサーリスト*/
.announcerListWrap {
    margin: 13% auto 0%;
    padding: 0 0 3%;
    background: #D6F5F5;
    position: relative;
    /* margin-top: 180px; */
}
.announcerListWrap .section_ttl {
    position: absolute;
    width: 50%;
    top: -7%;
    left: 50%;
    transform: translateX(-50%);
}
.ja {
    display: block;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    color: #c6c6c6;
    font-size: 2rem;
}
.announcerList {
    display: flex;
    flex-wrap: wrap;
    padding: 10% 4% 1%;
}
.announcerList li {
    width: 25%;
    position: relative;
}
.announcerList li img {
    width: 100%;
}
.announcerList .txt_content {
    position: absolute;
    z-index: 1;
    bottom: 20%;
    left: 5%;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
}
.announcerList .txt_content .name {
    font-size: 170%;
}
.announcerList .txt_content .join {
    font-size: 90%;
}
.announcerList li a {
    transition: .3s;
}
.announcerList li a:hover {
    opacity: 0.7;
}
.announcerList .sns_list {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 56%;
    padding: 2% 2%;
    border-radius: 10px 0 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.announcerList .sns_list a {
    max-width: 38px;
    /* width: 22%; */
}

