/*          共通        */
/* モーダルウィンドウ用背景 */
.backBKTranslucent {
    background-color: rgba(68, 68, 68, 0.8);
    z-index: 100;

}
.backWHTranslucent {
    background-color: rgba(204, 204, 204, 0.8);
}

.fullscreenModal {
    width: 100%;
    height: 100vh;

    /* 中央寄せ */
    display: flex;
    /* 要素をflexboxに対応させる */
    align-items: center;
    /* 縦方向の中央揃え */
    justify-content: center;
    /* 横方向の中央揃え */
    flex-direction: column;

    /* 画像の配置 */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (max-width:765px) {
.modaal-inner-wrapper {
    width: 100%;
    height: 100%;
    padding: 0px !important;
}
}


/*          modal_portfolio.html        */
/* 横並びコンテンツ */
/* 全体の枠 */
.card-wrapper-all {
    display: flex;
}

@media screen and (max-width:765px) {
    .card-wrapper-all {
        flex-direction: column;
    }
}

/* 作品カテゴリごとの枠 */
.card-wrapper-category {
    text-align: center;
    padding: 15px;
    z-index: 200;
}

@media screen and (max-width:765px) {
    .card-wrapper-category {
        padding: 0;
        margin-bottom: 10px;
    }
}

/* 画像とテキストのセットの枠 */
.card-wrapper-modal {
    display: flex;
}

/* 画像の枠（1列分）*/
.card-content-modal {
    display: flex;
    flex-direction: column;
}

/* 左側の列 */
.leftContent {
    padding: 0px 10px 0px 0px;
}

/* 右側の列 */
.rightContent {
    padding: 0;
}

/* 画像 */
/* 大きさを画面に合わせて設定 */
.border {
    position: relative;
    width: 11vw;
    height: 11vh;

    margin: 10px 0px 0px 0px;
}

@media screen and (max-width:765px) {
    .border {
        width: 28vw;
        height: 9vh;
    }
}

/* 枠は固定して、中身の画像だけ拡大縮小 */
.works-modal {
    object-fit: cover;

    width: 100%;
    height: 100%;
}

/* テキスト */
.card-text-modal {
    font-size: 24px;
    padding: 0;
    margin: 0;
}

@media screen and (max-width:765px) {
    .card-text-modal {
        font-size: 18px;
    }
}

@media screen and (max-width:765px) {
    .PConly {
        display: none;
    }
}


/*          modal_portfolio_detail.html        */
/* スライダーレイアウト作成 */
.splide__arrow {
    display: none;
}


/* 縦並び用レイアウト調整 */
.image-wrapper-v {
    display: flex;
    z-index: 200;
    flex-direction: column;
}

@media screen and (max-width:765px) {
    .image-wrapper-v {
        align-items: center;
    }
}


/* 横並び用レイアウト調整 */
.image-wrapper-h {
    display: flex;
    z-index: 200;
}

@media screen and (max-width:765px) {
    .image-wrapper-h {
        display: block;
    }
}

/* 説明文 */
p.side-text {
    width: 30vw;
    margin: 0;
    padding-left: 2vw;
    padding-top: 80px;
}

@media screen and (max-width:765px) {
    p.side-text {
        width: 65vw;
        font-size: 14px;
        padding-top: 30px;
    }
}

/* 画像の周りの余白削除 */
figure.side-image {
    margin: 0;
}

@media screen and (max-width:765px) {
    figure.side-image {
        text-align: center;
    }
}

/* 画像の大きさ */
.img {
    width: 40vw;
}

@media screen and (max-width:765px) {
    .img {
        width: 65vw;
    }
}

/* タイトル */
.worksTitle {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
}

/* ジャンル */
.workGenre {
    font-size: 18px;
    padding: 0px;
}


/*          modal_profile.html        */
/* 共通 */
/* 背景画像の配置 */
.modalBack {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 背景を黒色のフィルターで透過 */
.filter-black {
    background-color: rgba(68, 68, 68, 0.6);
    height: 80vh
}

@media screen and (max-width:765px) {
    .filter-black {
        height: 90vh;
    }
}

/* ① 保有スキル */
/* 背景画像 */
.skill {
    background-image: url(../img/profile.png);
}

/* テキストエリア */
.card-content-skills {
    display: flex;
    flex-direction: column;
    width: 32vw;
    padding: 0px 20px 0px 20px;
}

@media screen and (max-width:765px) {
    .card-content-skills {
        width: 70vw;
        padding-bottom: 10px;
    }
}

.skillsBox {
    background-color: rgba(204, 204, 204, 0.7);
    border-radius: 10px;
    height: 100%;
}

.textBox {
    width: 30vw;
    margin: 0 auto 30px auto;
}

@media screen and (max-width:765px) {
    .textBox {
        width: 60vw;
        margin: 0 auto 20px auto;
    }
}

.titleSkills {
    font-size: 40px;
    font-weight: bold;
    margin: 30px;
}

@media screen and (max-width:765px) {
    .titleSkills {
        font-size: 20px;
        margin: 15px;
    }
}

.textSkills {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

@media screen and (max-width:765px) {
    .textSkills {
        font-size: 14px;
        text-align: left;
    }
}

.card-wrapper-skills {
    display: flex;
    justify-content: space-between;
    text-align: center;

    z-index: 200;
}

@media screen and (max-width:765px) {
    .card-wrapper-skills {
        flex-direction: column;
        vertical-align: 15px;
    }
}


/* ② 大好きなこと・夢 */
/* 背景画像 */
.dream {
    background-image: url(../img/popup/profile/dream.png);
}

.textDream {
    text-align: center;
    width: 80vw;
}

@media screen and (max-width:765px) {
    .textDream {
        font-size: 14px;
    }
}

/* ③ 経歴 */
/* 背景画像 */
.career {
    background-image: url(../img/popup/profile/career.png);
}

.textCareer {
    text-align: center;
    width: 70vw;
}

@media screen and (max-width:765px) {
    .textCareer {
        font-size: 14px;
        width: 80vw;
    }
}

.textCareer2 {
    width: 60vw;
    font-size: 14px;
    text-align: left;
    margin-top: 0;
}

@media screen and (max-width:765px) {
    .textCareer2 {
        width: 80vw;
    }
}

/* ④ 強み */
.card-wrapper-prof {
    display: flex;
    justify-content: space-between;
    text-align: center;

    z-index: 200;
}

@media screen and (max-width:765px) {
    .card-wrapper-prof {
        flex-direction: column;
        padding-bottom: 20px;
        vertical-align: 15px;
    }
}

.strengths {
    background-image: url(../img/popup/profile/strength.png);
}

/* テキストエリア */
.card-content-strengths {
    display: flex;
    width: 70vw;

    justify-content: center;
}

@media screen and (max-width:765px) {
    .card-content-strengths {
        flex-direction: column;
        width: 80vw;
    }
}

/* レイアウト設定 */

/* 1.縦並びのレイアウトを作成 */
.container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width:765px) {
    .container {
        gap: 0px;
        width: 80%;
    }
}

/* 2.ボックスの配置等設定 */
.strengthsBox-title {
    background-color: rgba(102, 0, 0, 0.7);
    border-radius: 10px 0 0 10px;
    width: 25%;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:765px) {
    .strengthsBox-title {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
}

.strengthsBox-contents {
    background-color: rgba(254, 254, 254, 0.7);
    border-radius: 0 10px 10px 0;
    width: 75%;
}

@media screen and (max-width:765px) {
    .strengthsBox-contents {
        width: 100%;
        border-radius: 0 0 10px 10px;
    }
}

/* 3.テキストエリアの設定 */
.textSkills-title {
    font-size: 28px;
    color: white;
}

@media screen and (max-width:765px) {
    .textSkills-title {
        font-size: 16px;
        margin: 5px;
    }
}

.textSkills-contents {
    text-align: left;
    font-size: 14px;
    margin: 15px 10px 15px 10px;
}