:root {
    --color-pink: #ffc0cb;
    --color-blue: #08b1ec;
    --color-main: rgb(255, 241, 243);

    --fs-lg: 1.5rem;
    --fs-md: 1.25rem;
    --fs-theme: 16px;
}

a {
    color: inherit;
}

.body {
    height: 100dvh;
    font-size: var(--fs-theme);
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1;
}

.radiusContainer {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.userRadiusContainer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.editUserImg {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    background-color: rgb(0, 0, 0, 0.6);
}

.object-cover-radius {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.backButton {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
}

.deleteButton {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    right: 0%;
}

.slideContent {
    transition: left 0.4s, top 0.4s;
}

/* .slideContent.active{
    top: 0;
    left: 0;
    transition: left 0.4s;
} */

/* .slideContentContainer {
    width: 100dvw;
    height: 100dvh;
    position: relative;
} */


.stickyTop {
    position: sticky;
    top: 0;
}

.radiusSize {
    border-radius: 5px;
}

.radiusImgSize {
    border-radius: 5px 5px 0 0;
}

.bg-theme {
    background-color: var(--color-theme);
}

.bg-pink {
    background-color: var(--color-pink);
}

.bg-blue {
    background-color: var(--color-blue)
}

.bg-black {
    background-color: black;
}

.text-blue {
    color: var(--color-blue);
}

.bg-main {
    background-color: var(--color-main);
}

.jumpButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid var(--color-blue);
    border-radius: 50%;
}

.toolButton {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 299;
}

.toolButtonIcon {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-blue);
    border-radius: 50%;
    color: var(--color-blue);
}

.toolButtonIconDelete {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid red;
    border-radius: 50%;
    color: red;
}

.trashButton {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.trashButtonIcon {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid red;
    border-radius: 50%;
    color: red;
}


.fs-md {
    font-size: var(--fs-md);
}

.fs-lg {
    font-size: var(--fs-lg);
}


.userImgSize {
    height: 180px;
}



.pictureContainer {
    border: 1px solid black;
    width: 100px;
    aspect-ratio: 1/1;
}

.pictureSize {
    width: 100%;
    aspect-ratio: 1/1;
}







/* カメラ部分 */
/* #camera {
    width: 100%;
    height: 100%;
}

#picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
} */

/* #content{
    width: 350px;
    height: 350px;
    position: relative;
} */

.takePicture {
    position: relative;
}

.takePictureDelete {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plofItemSize {}

.itemContainer {
    width: calc(100% / 3);
    padding: 0.1rem;
}

.padding-x-01rem {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
}

.aspect1-1 {
    aspect-ratio: 1/1;
}

.itemDeleteFlag {}

.itemDeleteSelect {
    position: absolute;
    z-index: 199;
    bottom: 5%;
    right: 5%;
}

.itemDeleteMusk {
    position: absolute;
    background-color: rgb(128, 128, 128, 0.5);
    z-index: 99;
    height: calc(100% - 0.2rem);
    width: calc(100% - 0.2rem);
}

.deleteMuskInfo {
    position: absolute;
    top: 0;
    left: 0;

    z-index: 699;
    height: 100%;
    width: 100%;

    pointer-events: none;

    transition: background-color 0.2s;
}

.deleteMuskInfo.active {
    background-color: rgb(128, 128, 128, 0.5);
    pointer-events: all;
}

.deleteInfo {
    position: absolute;
    z-index: 499;
    bottom: 0%;
    transform: translateY(100%);

    transition: transform 0.3s;
}

.deleteMuskInfo.active .deleteInfo {
    transform: translateY(0);
}

.muskCircle{
    background: rgba(0, 0, 0, 0.6); /* 暗い背景色 */
    -webkit-mask-image: radial-gradient(circle, transparent 69.9%, black 70%);
    mask-image: radial-gradient(circle, transparent 69.9%, black 70%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    z-index: 101;
}

.sss{
    color: red;
}

.header {
    height: 60px;
    z-index: 10;
}

.main {
    height: calc(100% - 60px);
}

#cameraMain {
    height: calc(100% - 270px);
}

#cameraFooter {
    height: 210px;
}


/* スワイプ */
.swipeList .swipeContent {
    transition: transform 0.3s ease;
}

.swipeList.swipeLeft .swipeContent {
    transform: translateX(-70px);
}
.swipeList.swipeRight .swipeContent {
    transform: translateX(70px);
}

.swipeList .swipeArea {
    width: 70px;
    transition: transform 0.3s ease;
    background-color: #b4b4b4;
    color: #fff;
}

.swipeList.swipeLeft .swipeArea1 {
    transform: translateX(-100%);
}
.swipeList.swipeRight .swipeArea2 {
    transform: translateX(100%);
}


.shutterButton {
    background-color: black;
    color: white;
    border-radius: 50%;
    border: 1px solid black;
}























.slider-x {
    /* 以下の設定は必須 */
    scroll-snap-type: x mandatory;
    width: 100%;
    overflow-x: scroll;
    display: flex;
    -webkit-overflow-scrolling: touch;
    /* スマホ対応のため必須 */
    overflow-scrolling: touch;
    /* スマホ対応のため必須 */
}

.slider-x>div {
    /* 以下の設定は必須 */
    scroll-snap-align: center;
    height: 100%;
    width: 100%;
    flex: none;
}




#portraitInfo{
    display: none;
}
@media screen and (orientation: landscape) {
    #portraitInfo{
        display: block;
    }
}





/* システム情報 */
.systemInfo{
    width: 300px;
    top: 10px;
    background-color: var(--color-theme);
    /* border: solid 1px var(--color-text); */
}


/* 利用者マスター */
.mstUser{
    border: solid 1px var(--color-theme);
}
.mstUser.select{
    border: solid 1px var(--color-text);
}
.mstUserArea{
    background-color: var(--color-theme);
    height: 3.5rem;
    transition: height 0.4s;
}
.mstUserArea.active{
    height: 100%;
}
.mstUserAreaHeader{
    background-color: var(--color-theme);
}

/* 人型アイコン */
.person{
    background-color: var(--color-text);
    color: var(--color-theme);
}

/* 定型文 */
.fixedTextFrame{
    max-height: 30vh;
}
.fixedText{
    background-color: var(--color-theme);
    /* font-size: 0.8rem; */
}



/* お知らせ個別 */
#newsArea{
    top: 100%;
    background-color: var(--color-theme);
    transition: top 0.4s;
}
#newsArea.active{
    top: 0;
}