@charset "utf-8";
/* CSS Document */
/*各末端2021冬
スマートフォン：320px〜540px
タブレット：600px〜1024px
PC：1,280px〜*/
/**/
/*パソコン対応（基準）*/
body {
        background-color: white;
}
main a {
        color: #0F85C3; /*青*/
}
img:hover {
        opacity: 0.5;
        transition: .3s; /*ゆっくり透明に*/
}
.pagetitle a {
        color: black;
}
.artist4-flex {
        background-color: white;
        display: flex;
        width: 80%;
        margin: 0 auto 50px;
}
.artist4-img {
        background-color: white;
        margin: 10px;
}
.artist4-img a {
        color: black;
}
.artist4-img-name {
        color: #0F85C3;
        border-bottom: 2px solid black;
}
.artist4-img-more {
        font-size: 13px;
}
.artist4-img-size {
        width: 300px;
        height: auto;
        object-fit: cover; /* この一行を追加するだけ！ */
}
/*ゲスト*/
.guest-artist-flex {
        display: flex;
        margin: 0 auto;
        margin-left: 75px;
}
.guest-artist-name {
        width: 300px;
        margin-bottom: 20px;
}
.guest-artist-site a {
        color: #0F85C3; /*青*/
}
/*ソロページ*/
.under-line {
    color: #000000;
    border-bottom: 1px solid #000000;
}
.white-hidden {
        color: white;
}
.artist-solo-flex {
        background-color: white;
        display: flex;
        width: 80%;
        margin: 0 auto;
}
.artist4-img-size-sub {
        width: 180px;
        height: auto;
        object-fit: cover; /* この一行を追加するだけ！ */
        transition: .3s; /*ゆっくり透明に*/
}
.artist-solo-art-box {
        margin-right: 30px;
}

.artist-solo-profile-jp {
        background-color: white;
        margin-left: 20px;
        margin-bottom: 50px;
}
.artist-solo-profile-en {
        background-color: white;
        margin-left: 20px;
        margin-bottom: 50px;
}
.artist-solo-art-flex {
        margin-top: 10px;
}
.artist-solo-art-flex ul {
        background-color: white;
        display: flex;
        list-style-type: none;
        padding-left: 0;
        margin: 0;
        margin-bottom: 5px;
        overflow: hidden;
}
.artist-solo-art-flex ul li {
        width: 100px;
        height: 100px;
        object-fit: cover; /* この一行を追加するだけ！ */
        margin-right: 5px;
        transition: .8s;
}
/*移動＋フェードイン表示*/
/*ul {
    width: 90%;
    display: flex;
    margin: 0 auto;
    list-style-type: none;
    overflow: hidden;
    padding-inline-start: 0;
}
ul li {
    margin: 0 auto;
    transition: .8s;
    }*/
.list-inview {
        opacity: 1; /*0*/
        transform: translate(0, 60px);
        -webkit-transform: translate(0, 60px);
}
.inview {
        opacity: 1.0;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
}
/*レスポンシブウェブデザイン は、閲覧者の画面サイズまたはウェブブラウザに応じてデスクトップウェブページが閲覧できることを目指したウェブデザインの手法。
加えて、1つのウェブサイトで多様なデバイスを同様にサポートすることもレスポンシブウェブデザインのタスクに含まれている点を理解しておくことが重要である。*/
/*スマホ・タブレット対応*/
@media screen and (max-width: 1024px) {
        /*コーディング時は320pxで表示崩れ（横スクロールなど）が無いか確認しながら行うのが確実です。*/
        .artist4-flex {
                background-color: white;
                display: block;
                width: 100%;
                margin: 0 auto 50px;
        }
        .artist4-flex a {
                color: black;
        }
        .artist4-img {
                background-color: white;
                width: 90%;
                margin: 80px auto;
        }
        .artist4-img-size {
                width: 300px;
                height: auto;
                object-fit: cover; /* この一行を追加するだけ！ */
                transition: .3s; /*ゆっくり透明に*/
        }
        .artist4-img-size:hover {
                opacity: 0.5;
        }
        /*ゲスト*/
        .guest-artist-flex {
                display: block;
                width: 90%;
                padding: 0;
                margin-left: 0;
                margin: 30px auto;
        }
        .guest-artist-name {
                width: 90%;
                margin-bottom: 0;
        }
        /*ソロページ*/
        .artist-solo-flex {
                background-color: white;
                display: block;
                width: 100%;
                margin: 0 auto;
        }
        .artist4-img-size-sub {
                width: 180px;
                height: auto;
                object-fit: cover; /* この一行を追加するだけ！ */
                transition: .3s; /*ゆっくり透明に*/
        }
        .artist-solo-name {
                width: 90%;
                margin: 0 auto;
        }
        .artist-solo-art-box {
                margin-right: 0;
        }
        .artist-solo-art-box span {
                color: white;
        }
        .artist-solo-profile-jp {
                width: 90%;
                background-color: white;
                margin: 0 auto;
                margin-top: 50px;
                margin-bottom: 50px;
        }
        .artist-solo-profile-en {
                width: 90%;
                background-color: white;
                margin: 0 auto;
                margin-bottom: 50px;
        }
        .artist-solo-art-flex {
                margin-top: 10px;
        }
        .artist-solo-art-flex ul {
                background-color: white;
                display: flex;
                list-style-type: none;
                padding-left: 0;
                overflow: hidden;
                width: 90%;
                margin: 0 auto;
        }
        .artist-solo-art-flex ul li {
                width: 80px;
                height: 80px;
                object-fit: cover; /* この一行を追加するだけ！ */
                margin: 2px;
                transition: .8s;
        }
}