@charset "UTF-8";

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

/*-----------------------------------------------------*/
/*------------------announcer--------------------*/
/*-----------------------------------------------------*/
.announcer{
margin-top: 100px;
}

/* 1人囲み */
.announcer-wrap{
display: grid;
height: 100%;
grid-template-columns: 1fr 1fr;
column-gap: 40px;
}
@media screen and (max-width: 768px) {
.announcer-wrap{
display:block;
}
}

.announcer-wrap{
margin: 100px 0;
}





/*画像 */
.wakui.announcer-wrap .img .img-inner{
background-image: url(../img/talent_ph_wakui.webp);
}
.akashi.announcer-wrap .img .img-inner{
background-image: url(../img/talent_ph_akashi.webp);
}
.nara.announcer-wrap .img .img-inner{
background-image: url(../img/talent_ph_nara.webp);
}
:is(.wakui, .akashi, .nara).announcer-wrap .img .img-inner{
background-size: 90%;
background-position: top right;
position: relative;
width: 100%;
height: 100%;
z-index: 1;
/* アニメ */
  opacity: 0;
  transform: translate(0, 30px);
transition-duration:0.5s;
transition-timing-function:ease;
}
:is(.wakui, .akashi, .nara).announcer-wrap .img.on .img-inner {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
:is(.wakui, .akashi, .nara).announcer-wrap .img .img-inner{
height: 65vw;
}
}


/* 背景の青い四角 */
:is(.wakui, .akashi, .nara).announcer-wrap .img::before{
content: "";
display: block;
width: 200px;
height: 200px;
background-color: var(--color-blue);
position: absolute;
z-index: -1;
/* アニメ */
opacity: 0;
transform : rotateY(180deg);
transition: all 0.5s cubic-bezier(.03,.76,.42,1.03);
}
:is(.wakui, .akashi, .nara).announcer-wrap .img.on::before{
opacity: 1;
transform : rotateY(360deg);
}

@media screen and (max-width: 1200px) {
:is(.wakui, .akashi, .nara).announcer-wrap .img::before{
width: 150px;
height: 150px;
}
}
@media screen and (max-width: 768px) {
:is(.wakui, .akashi, .nara).announcer-wrap .img::before{
width: 30vw;
height: 30vw;
}
}







/* 名前 */
.announcer-wrap .name .txt-ja{
font-size: var(--s30);
margin-right: 5px;
}
.announcer-wrap .name .txt-en{
color: var(--color-blue);
}

/* プロフィール */
.profile{
margin: 20px 0;
}
.profile dl{
display: grid;
grid-template-columns: 120px 1fr;
column-gap: 20px;
justify-content: flex-start;
margin: 10px 0;
}
.profile dl dt{
color: var(--color-blue);
text-align:justify;
text-align-last:justify;
}