:root {
    --TopFrameTitleFontSize: 20px;

    --Element-Border: 1px;

    --SideBar-Width: 140px;
    --SideBar-Width-side-padding: 20px;
    --Total-SideBar-Width: calc(var(--SideBar-Width) + var(--SideBar-Width-side-padding) * 2 + var(--Element-Border));
    --Phone_MenuBar-Height: 60px;

    --Global-Navigation-Height: 70px;
    --Phone_Global-Navigation-Height: 50px;

    --TopFrame-Height: 30px;
    --TopFrame-height-toppadding: 15px;
    --TopFrame-height-bottmpadding: 10px;
    --Total-TopFrame-Height: calc(var(--TopFrame-Height) + var(--TopFrame-height-toppadding) + var(--TopFrame-height-bottmpadding));

    --MiddleFrame-Height: 22px;
    --MiddleFrame-padding: 8px;
    --Total-MiddleFrame-Height: calc(var(--MiddleFrame-Height) + (var(--MiddleFrame-padding) + var(--Element-Border)) * 2);
}

input, select {
    /*-webkit-appearance: none;*/
    /*appearance: none;*/
    background: transparent;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

select option{
    background: transparent;
}
select:disabled, textarea:disabled,input:disabled {
    color: rgb(84, 84, 84);
    /*background-color: rgba(239, 239, 239, 0.3) !important;*/
    background-color: rgba(239, 239, 239, 0.3) ;
    opacity: 1.0;
}

.defbackcolor{
    background-color:transparent !important;
}

select {
    cursor: pointer;
}
select:disabled {
    cursor: default;
}

input[type="color"] {
    cursor: pointer;
}
input[type="color"]:disabled {
    cursor: default;
}
.ui-datepicker-trigger {
    cursor: pointer;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

button {
    cursor: pointer;
}

button:disabled {
    border: 1px solid #CACACA;
    color: #FFFFFF;
    background-color: #CACACA;
    cursor: default;
}

a {
    text-decoration:none;
}

.SideBarDisabled {
    pointer-events: none;

}
.SideBarDisabled > label {
    color: #9b9b9b;
}

.MiddleFrame {
    position: relative;
    display: flex;
    padding: var(--MiddleFrame-padding) 20px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-top: var(--Element-Border) solid #E7E7E7;
    border-bottom: var(--Element-Border) solid #E7E7E7;
    background-color: #ffffff;
    z-index: 5;
    height: var(--MiddleFrame-Height);
}

.TabCommon {
    display: none;
}

.block{
    display:block;
}

.select2-container--default .select2-selection--single {
    border: none !important ;
    outline: none !important ;
    border-bottom: 1px solid #333333 !important ;
    border-radius: 0px !important ;
}

/* Spinner*/
#overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.7);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 80px;
    height: 80px;
    border: 4px #ddd solid;
    border-top: 4px #999 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
.is-hide{
    display:none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ui-datepicker { z-index: 20 !important; }

#RotatePhone {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.RotatePhoneImg {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.displayNone {
    display: none;
}

@media screen and (max-width: 480px) {  /*For Phone*/

    select {
        -webkit-appearance: none;
        appearance: none;
        border-bottom: 1px solid #000;
        background-image: url('../image/SelectBox.png');
        background-repeat: no-repeat;
        background-position: right center;
        padding-right: 15px;
	}

    .SideBar {
        display: none;
    }

    html, body {
        width: 100%;
        height: 100%;
        margin: 0px;
        font-family: var(--System-Font-Family);
    }

    .GlobalNavigation {
        display: flex;
        width: 100%;
        height: var(--Phone_Global-Navigation-Height);
        background: var(--GlobalNavigation-Color);
        box-shadow: 0px 4px 5px 4px rgba(0, 0, 0, 0.08);
        justify-content: center;
        align-items: center;
    }

    /*.DowaImg {
        width: 150px;
        height: 25px;
        padding: 13px 12px 12px 12px;
        position: relative;
        background: transparent;
        margin: auto;
        display: block;
    }*/

	/* MOD 2024/12/06/ chiyo ロゴ表示位置修正 START */
	/* ヘッダロゴ表示サイズ(SP) */
    .DCatImg {
        display:block;
        object-fit: cover;
		height: 90%;
		padding-top: 2.5px;
		margin:0 auto 0 0
    }
	/* MOD 2024/12/06/ chiyo ロゴ表示位置修正 END */

    .Phone_UserSetting_Modal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: transparent;
        z-index: 100;
        display: none;
    }

    .Phone_UserSetting_ModalContents {
        z-index: 100;
        position: absolute;
        top: 5px;
        left: 40px;
        background-color: #d1d1d1;
        padding: 20px;
        border-radius: 10px;
        width: 215px;
    }

    .Phone_UserSettingButtonList {
        margin: 7px;
        width: 200px;
        padding: 4px;
        align-items: center;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid var(--System-Base-Color);
        color: var(--System-Base-Color);
        background: #FFF;
        font-family: var(--System-Font-Family);
        font-size: var(----System-Font-Size);
        display: table-cell;
    }

    .Phone_UserSettingButtonList:active {
        background: #e6e6e6;
    }
    .Phone_UserSettingButtonList > svg {
        vertical-align: middle;
        margin: 0px;
    }

    .mainBody {
        width: 100%;
        height: calc(100% - var(--Phone_Global-Navigation-Height));
    }

    .MainZone {
        width: 100%;
        height: calc(100% - var(--Phone_MenuBar-Height));
    }

    .TopFrame {
        display: none;
    }

    .PhoneMenuBar {
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 0px;
        width: 100%;
        height: var(--Phone_MenuBar-Height);
        background-color: #FFF;
    }

    .PhoneMenuBarList{
        margin: 6px;
        font-size: calc(var(--System-Font-Size) - 2px);
        text-align: center;
    }

    svg {
        margin-left: 10px;
        margin-right: 10px;
    }

    .openfirstPassCh{
        display: none;
    }

    .bell {
        display: none;
    }

    .bellSmt{
        position: absolute;
        top: 10px;
        right: 5px;
        height: 30px;
    }

    .PCOnly {
        display: none;
    }

    .smt_menu_btn {
        position: fixed;
        top: 10px;
        left: 5px;
        display: flex;
        width: 30px;
        height: 30px;
        justify-content: center;
        align-items: center;
        z-index: 10;
        background-color: var(--System-Base-Color);
    }
    .smt_menu_btn span,
    .smt_menu_btn span:before,
    .smt_menu_btn span:after {
        content: '';
        display: block;
        height: 2px;
        width: 20px;
        border-radius: 3px;
        background-color: #ffffff;
        position: absolute;
    }
    .smt_menu_btn span:before {
        bottom: 8px;
    }
    .smt_menu_btn span:after {
        top: 8px;
    }

    .Phone_SubMenu_Modal {
        background-color: transparent;
        z-index: 100;
        display: none;
    }

    .Phone_SubMenu_ModalContents {
        z-index: 100;
        position: absolute;
        /*top: 0%;*/
        /*right: 100%;*/
        bottom: 100%;
        left: calc(100% - (100% - 20px));
        background-color: #FFF;
        border: 1px solid #949593;
        padding: 40px 20px 20px 20px;
        border-radius: 10px;
        width: 80%;
    }

    .Phone_SubMenu_ModalContents a {
        display: block;
        /*width: 80%;*/
        padding: 10px;
    }

    .Phone_SubMenu_ModalContents a:hover{
        color: #fff;
        background-color: var(--System-Base-Color);
        cursor: pointer;
    }

    .Phone_SubMenu_ModalContentsReturnButton {
        position: absolute;
        top: 10px;
        /*left: 0px;*/
        right: 5px;
    }

    .topBoder {
        border-top: 1px solid rgb(202, 202, 202);
    }
}

@media screen and (min-width: 480px) { /*For PC*/
    .MainZone {
        width: calc(100% - var(--Total-SideBar-Width));
        height: 100%;
    }

    .TopFrame {
        height: var(--TopFrame-Height);
        width: calc(100% - 20px);
        display: flex;
        padding: var(--TopFrame-height-toppadding) 0px var(--TopFrame-height-bottmpadding) 20px;
        align-items: center;
        position: relative;
        z-index: 5;
        background-color: #ffffff;
    }

    .TopFrame p {
        color: #10141E;
        font-family: var(--System-Font-Family);
        font-size: var(--TopFrameTitleFontSize);
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
    }

    .rmgcpUser{
        margin-bottom: 15px;
        text-align: center;
        cursor: pointer;
    }

    .UserIcon {
        width: 110px;
        height: 110px;
        margin: auto;
        display: block;
        border-radius: 50%;
        background-position: center;
        object-fit: cover;
    }

    .UserIcon_name{
        display: block;
        word-break: break-all;
        white-space: pre-line;
        max-height: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .UserSetting_Modal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: transparent;
        z-index: 100;
        display: none;
    }

    .UserSetting_ModalContents {
        z-index: 100;
        position: absolute;
        top: 100px;
        left: 150px;
        background-color: #d1d1d1;
        padding: 20px;
        border-radius: 10px;
        width: 155px;
    }

    .UserSettingButtonList {
        margin: 7px;
        width: 140px;
        padding: 4px;
        align-items: center;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid var(--System-Base-Color);
        color: var(--System-Base-Color);
        background: #FFF;
        font-family: var(--System-Font-Family);
        font-size: var(--System-Font-Size);
        display: table-cell;
    }

    .UserSettingButtonList > svg {
        vertical-align: middle;
    }

    .UserSetting_Logout_Text {
        vertical-align: middle;
    }

    .UserSettingButtonList:active {
        background: #e6e6e6;
    }

    .smt_menu_btn{
         display: none;
    }

    .Phone_UserSetting_Modal{
        display: none;
    }

    .Active {
        width: 140px;
        border-radius: 14px;
        background: #EAF5F5;
    }

    .PhoneMenuBar {
        display: none;
    }

    html, body {
        height: 100%;
        margin: 0px;
        font-family: var(--System-Font-Family);
        font-style: normal;
    }

    .GlobalNavigation {
        position: relative;
        display: flex;
        width: 100%;
        height: var(--Global-Navigation-Height);
        background: var(--GlobalNavigation-Color);
        box-shadow: 0px 4px 5px 4px rgba(0, 0, 0, 0.08);
        z-index: 30;
    }

    .GlobalNavigationTitle {
        font-weight: 1000;
        font-size: 28px;
        color: var(--System-Base-Color);
        margin: auto 0px;
        padding-left: 5px;
    }

    /*.DowaImg {
        width: 170px;
        height: 30px;
        padding: 20px;
        position: relative;
        flex-shrink: 0;
    }*/

	/* MOD 2024/12/05/ chiyo N-CATロゴ変更に伴い文字表記を削除＋ロゴサイズ修正 START */
	/* ヘッダロゴ表示サイズ(PC) */
    .DCatImg {
        display:block;
        object-fit: cover;
		height: 77%;
		padding-left: 26px;
		padding-top: 9px;
    }
	/* MOD 2024/12/05/ chiyo N-CATロゴ変更に伴い文字表記を削除＋ロゴサイズ修正 END */
	
	
	/* MOD 2024/11/27/ chiyo D-CAT→N-CATロゴ変更 START */
	/* ログイン画面ロゴ表示サイズ */
	@media screen and (min-width: 480px) { /*For PC*/
	.loginDCatImgPC{
	    display:block;
	    object-fit: cover;
		height: 19%;
		padding-right: 14px;
		padding-bottom: 41px;
	}
		}
	
/*	@media screen and (max-width: 480px) { For Phone
	.loginDCatImgSP{
	    display:block;
	    object-fit: cover;
		height: 10px;
		padding-right: 14px;
		padding-bottom: 41px;
	}
		}*/
	/* MOD 2024/11/27/ chiyo D-CAT→N-CATロゴ変更 END */			

    .mainBody {
        display: flex;
        height: calc(100% - var(--Global-Navigation-Height));
    }

    .SideBar {
        position: relative;
        width: var(--SideBar-Width);
        padding: 30px var(--SideBar-Width-side-padding);
        align-items: flex-start;
        flex-shrink: 0;
        border-right: var(--Element-Border) solid #E7E7E7;
        background: var(--System-SideBar-Color);
    }

    .SideBar a {
        display: flex;
        padding: 15px 0px;
        align-items: center;
        text-decoration: none;
    }

    svg {
        margin: 2px;
    }
    .SideBarList {
        color: #000000;
        font-family: var(--System-Font-Family);
        font-size: carc(var(--System-Font-Size) + 2px);
        font-style: normal;
        font-weight: 300;
        line-height: 100%;
    }
    .SideBarList svg {
        margin: 2px 8px 2px 2px; /*上右下左*/
    }

    .SideBarSubList {
        margin-left: 20px;
    }

    .bell {
        position: absolute;
        margin:  0.5% 1% 0% 50%;
        height: 33px;
    }

    .bellSmt{
        display: none;
    }

    .PhoneOnly {
        display: none;
    }
}

@layer LogoutComponents {
    .logout {
        position: absolute;
        bottom: 30px;
        width: 130px;
        display: flex;
        gap: 12px;
        padding: 6px;
        align-items: center;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid var(--System-Base-Color);
        color: var(--System-Base-Color);
        background: #FFF;
    }

    .logout:active {
        background: #dfdfdf;
    }

    .LogoutModal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 100;
        display: none;
    }

    .LogoutModalContents {
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #ffffff;
        padding: 30px 30px;
        border-radius: 10px;
        width: 320px;
        height: 160px;
        transform: translate(-50%, -50%);
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .LogoutModal_DCatImg {
        display: block;
        object-fit: cover;
		height: 38px;
		margin-bottom: 13px;
        margin-left: auto;
        margin-right: 125px;
    }

    .LogoutModalContentsTitle {
        color: var(--System-Base-Color);
        font-weight: bold;
        font-size: 18px;
    }

    .LogoutModalContents > label {
        font-family: var(--System-Font-Family);
    }

    .logoutButtonList {
        display: flex;
        margin: 0 auto;
    }

    .LogoutModal > .LogoutModalContents > div > .CancelLogout {
        margin: 20px 20px;
        width: 120px;
        height: 30px;
        border: none;
        border-radius: 5px;
        color: #FFF;
        font-family: var(--System-Font-Family);
        background-color: #b4b4b4;
    }

    .LogoutModal > .LogoutModalContents > div > .CancelLogout:active {
        background-color: #858585;
    }

    .LogoutModal > .LogoutModalContents > div > form > .CheckedLogout {
        margin: 20px 20px;
        width: 120px;
        height: 30px;
        border: none;
        border-radius: 5px;
        color: #FFF;
        font-family: var(--System-Font-Family);
        background-color: var(--System-Base-Color);
        display: table-cell;
    }

    .LogoutModal > .LogoutModalContents > div > form > .CheckedLogout > svg {
        vertical-align: middle;
    }

    .LogoutModal > .LogoutModalContents > div > form > .CheckedLogout:active {
        background-color: var(--System-Base-Color_Clicked);
    }

    .SessionTimeOutModal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 100;
        display: none;
    }

    .SessionTimeOutContents {
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #ffffff;
        padding: 20px 30px;
        border-radius: 10px;
        width: 300px;
        height: 200px;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .SessionTimeOutContents > label {
        font-family: var(--System-Font-Family);
    }

    .ClockImg {
        margin-top: 20px;
        width: 100px;
        height: 100px;
    }

    .SessionTimeOutModal > .SessionTimeOutContents > .GoBackLogin {
        margin: 10px 20px 0px 20px;
        width: 250px;
        height: 30px;
        border: none;
        border-radius: 5px;
        color: #FFF;
        font-family: var(--System-Font-Family);
        background-color: var(--System-Base-Color);
        /*display: inline-block;*/
        display: table-cell;
    }

    .SessionTimeOutModal > .SessionTimeOutContents > .GoBackLogin > svg {
        vertical-align: middle;
    }

    .SessionTimeOutModal > .SessionTimeOutContents > .GoBackLogin:active {
        background-color: var(--System-Base-Color_Clicked);
    }
}

@layer MessageComponents {
    .MessageModal{
        position: absolute;
        top: 90px;
        right: 30px;
        background: transparent;
        z-index: 3000; /* モーダルより前面に表示 */
        display: none;
    }

    .MessageModalContents {
        background-color: #67b433;
        padding: 10px 20px;
        border-radius: 10px;
        width: 300px;
        height: 40px;
        box-shadow: 3px 3px 4px -1px gray;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .MessageModal_TextStyle {
        color: #FFF;
        font-family: var(--System-Font-Family);
        font-weight: bold;
    }

    .MessageModalTracking {
        position: fixed;
        top: 10px;
        right: 30px;
        background: transparent;
        z-index: 100;
        display: none;
    }

    .MessageModalTrackingContents {
        background-color: #67b433;
        padding: 10px 20px;
        border-radius: 10px;
        width: 300px;
        min-height: 40px;
        max-height: 100px;
        box-shadow: 3px 3px 4px -1px gray;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@layer BellComponent {
    @media screen and (max-width: 480px) { /*For Phone*/
        .mailSendNewsModalWrapper {
            position: absolute;
            width: 95%;
            height: 95%;
            left: 5px;
            padding: 1%;
            border-radius: 12px;
            background-color: #ffffff;
        }

        .mailSendNewsModalBack {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(128,128,128,0.80);
        }

        .pagetop {
            height: 50px;
            width: 50px;
            position: fixed;
            right: 20px;
            bottom: 35px;
            background: var(--System-Base-Color);
            border: solid 2px var(--System-Base-Color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        .pagetop__arrow {
            height: 10px;
            width: 10px;
            border-top: 3px solid #ffffff;
            border-right: 3px solid #ffffff;
            transform: translateY(20%) rotate(-45deg);
        }
    }

    @media screen and (min-width: 480px) { /*For PC*/
        .mailSendNewsModalWrapper {
            position: absolute;
            width: 30%;
            height: 70%;
            top: 20%;
            left: 65%;
            padding: 1%;
            border-radius: 12px;
            gap: 48px;
            background-color: #ffffff;
        }

        .mailSendNewsModalBack {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(128,128,128,0.80);
        }

        .pagetop {
            height: 20px;
            width: 20px;
            position: fixed;
            /*right: 60px;*/
            /*bottom: 30px;*/
            top:92%;
            left:94.6%;
            background: var(--System-Base-Color);
            border: solid 2px var(--System-Base-Color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }

        .pagetop__arrow {
            height: 5px;
            width: 5px;
            border-top: 3px solid #ffffff;
            border-right: 3px solid #ffffff;
            transform: translateY(20%) rotate(-45deg);
        }
    }

    .mailSendNewsModalArea {
        display: none;
        position: fixed;
        z-index: 10; /*サイトによってここの数値は調整 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        animation: fadeIn 1s ease 0s 1 normal backwards;
        z-index:100;
    }
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateX(20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .mailSendNewsModalContents{
        height: 100%;
        margin: 16px 0px 16px 0px;/*上右下左*/
    }
    .mailSendNewsModalContents  > .closeMailSendNews {
        font-size: large;
        font-weight: bold;
    }

    .mailSendNewsModalContents  > .mailSendNewsTitle {
        position: relative;
        font-size: large;
        font-weight: bold;
        margin: 0% 30% 0% 30%;/*上右下左*/
    }

    .readBtn {
        position: absolute;
        width: 100px;
        height: 30px;
        background-color: var(--System-Base-Color);
        color: #FFF;
        right: 20px;
        top: 10px;
        border: none;
        display: flex;
        padding: 1px 1px;
        justify-content: center;
        align-items: center;
        border-radius: 43px;
        font-style: normal;
        font-weight: 300;
        line-height: 100%;
        gap: 1px;
    }

    .mailSendNewsContent {
        height: 90%;
        overflow-y: scroll;
        scroll-behavior: smooth;
    }

    .mailSendNewsContent > .newsMain {
        width: 90%;
        margin-left: auto; /* 中央寄せにするため */
        margin-right: auto; /* 中央寄せにするため */
    }
    .mailSendNewsContent > .newsMain ul{
        list-style-type: none;
        margin: 0;
        padding: 0;
        max-height: 10%;
        font-size: x-small;
    }

    .mailSendNewsContent > .newsMain ul li {
        overflow: hidden;
        border-bottom: 1px solid #949593;
    }

    .mailSendNewsContent > .newsMain ul li .date {
        float: left;
        width: 50%;
        /*color: black;*/
        text-align: left;
        margin: 0% 0% 1% 0%;/*上右下左*/
    }
    .mailSendNewsContent > .newsMain ul li .userName {
        float: right;
        width: 50%;
        /*color: black;*/
        text-align: right;
        margin: 0% 0% 1% 0%;/*上右下左*/
    }
    .mailSendNewsContent > .newsMain ul li .txt {
        float: left;
        width: 100%;
        text-align: left;
        margin: 0% 0% 1% 0%;/*上右下左*/
        padding: 0% 0% 1% 0%;/*上右下左*/
        /*border-bottom: 1px solid #949593;*/
    }

    .mailSendNewsContent > .newsMain ul li:hover{
        color: #fff;
        background-color: var(--System-Base-Color);
        cursor: pointer;
    }

    .boid {
        font-weight: bold;
    }

}

@layer FirstPasswordChangeComponent {
    @media screen and (max-width: 480px) { /*For Phone*/
        .firstPassChModalWrapper {
            position: absolute;
            width: 95%;
            top: 50%;
            left: 50%;
            transform:translate(-50%,-50%);
            padding: 5px;
            border:solid gainsboro 1px;
            border-radius: 12px;
            background-color: #ffffff;
        }
    }

    @media screen and (min-width: 480px) { /*For PC*/
        .firstPassChModalWrapper {
            position: absolute;
            width: 30%;
            /*height: 40%;*/
            top: 50%;
            left: 50%;
            transform:translate(-50%,-50%);
            padding: 30px;
            border:solid gainsboro 1px;
            border-radius: 10px;
            gap: 45px;
            background-color: #ffffff;
        }
    }

    /* ↓↓↓初回パスワード変更子画面modal用CSS↓↓↓ */
    .PasswordReturnButton {
        display: none;
    }
    .pscModalArea {
        display: none;
        position: fixed;
        z-index: 10; /*サイトによってここの数値は調整 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .pscModalAreaShow {
        position: fixed;
        z-index: 10; /*サイトによってここの数値は調整 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .firstPassChModalBack {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        /*background-color: rgba(128,128,128,0.80);*/
        background-color: #ffffff;
    }

    .firstPassChModalContents{
        margin: 1px;
    }

    .firstPassChContent{
        font-family: var(--System-Font-Family);
        font-size: small;
        font-style: normal;
    }

    .firstPassChInputAreaBoder {
        width: 100%;
        border-width: thin;
        border: solid 1px lightgrey;
        border-radius: 5px;
    }

    .firstPassChInputAreaBoderErr {
        width: 100%;
        border-width: thin;
        border: solid 1px red;
        border-radius: 5px;
    }

    .firstPassChText{
        width: 90%;
        font-size:1.2em;
        border: none; /* デフォルトの枠線を消す */
        vertical-align:  middle;
        margin: 0% 0% 0% 0%;
    }

    input[type="password"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        vertical-align: middle;
    }

    input[type="password"]:-ms-input-placeholder { /* Internet Explorer 10-11 */
        vertical-align: middle;
    }

    input[type="password"]::placeholder{ /* Others */
        vertical-align: middle;
    }

    .firstPassChModaliButtomArea {
        /*text-align: center;*/
        margin: 0% 0% 0% 0%; /*上右下左*/
        display: flex;
        width: 100%;
    }

    .firstPassChClear {
        width: 45%;
        background-color: #fff;
        border: 1px solid #282828;
        border-radius: 30px;
        cursor: pointer;
        margin: 0% 5% 0% 0%;
        padding: 10px 10px 10px 10px; /*上右下左*/
        cursor: pointer;
        color: black;
    }

    .firstPassCh {
        width: 45%;
        color: #fff;
        background-color: var(--System-Base-Color);
        border: 1px solid var(--System-Base-Color);
        border-radius: 30px;
        cursor: pointer;
        margin: 0% 0% 0% 5%;/*上右下左*/
        padding: 10px 10px 10px 10px; /*上右下左*/
        cursor: pointer;
    }

    .passErrorItems > p {
        padding: 0% 0% 0% 5%; /*上右下左*/
    }

    .textRed {
        color: red;
    }
    /* ↑↑↑初回パスワード変更子画面modal用CSS↑↑↑ */


}


/* メタル単価 */
@layer GlobalNaviMetal {
    @media screen and (max-width: 480px) { /*For Phone*/
        /*#GlobalNaviMetalRate {
            display:none;
        }
        #GlobalNaviMetalRate div{
            display:none;
        }*/
        
        #GlobalNaviMetalRateText_time{
            display:none;
        }
        #GlobalNaviMetalRate {
            position: absolute;
            top: 1px;
            right: 55px;
            background-color: #ffffff;
            z-index: 50;
            min-width: 145px;
            max-width: 145px;
            height: 45px;
            border-radius: 6px;
            box-shadow: 2px 2px 4px gray;
            border: solid 1px #333333;
            display: none;
            padding: 0px 10px;
        }
        

        #GlobalNaviMetalRateText_time,#GlobalNaviMetalRateText_price {
            font-size: 11px;
            text-align:center;
            line-height:1.4;
        }

        #GlobalNaviMetalRateText{
            font-size: 11px;
            font-weight: 900;
            top: 50%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%);
        }
        
        /*価格幅固定して右寄せ*/
        #GlobalNaviMetalRate_PT_Price,#GlobalNaviMetalRate_PD_Price,#GlobalNaviMetalRate_RH_Price{
            display: inline-block;
            width: 50px;
            text-align:right
        }

        #GlobalNaviMetalRate_PT_Metal, #GlobalNaviMetalRate_PT_Price{
            font-weight: bold;
            color: red;
        }

        #GlobalNaviMetalRate_PT_Unit {
            color: red;
        }

        #GlobalNaviMetalRate_PD_Metal, #GlobalNaviMetalRate_PD_Price {
            font-weight: bold;
            color: blue;
        }

        #GlobalNaviMetalRate_PD_Unit {
            color: blue;
        }

        #GlobalNaviMetalRate_RH_Metal, #GlobalNaviMetalRate_RH_Price {
            font-weight: bold;
            color: green;
        }

        #GlobalNaviMetalRate_RH_Unit {
            color: green;
        }
    }

    @media screen and (min-width: 480px) { /*For PC*/
    
        #GlobalNaviMetalRate {
            position: absolute;
            top: 10px;
            right: 350px;
           background-color: #ffffff;
            z-index: 50;
            min-width: 500px;
            max-width: 560px;
            height: 50px;
             border-radius: 10px;
            box-shadow: 2px 2px 4px gray;
            border: solid 1px #333333;
            display: none;
            padding: 0px 10px;
        }

        #GlobalNaviMetalRateText_time,#GlobalNaviMetalRateText_price {
            font-size: 14px;
        }

        #GlobalNaviMetalRateText{
            font-size: 14px;
            font-weight: 900;
            top: 50%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%);
        }

        #GlobalNaviMetalRateText_price br{ /*pcはメタル毎の改行なし*/
            display:none;
        }
        
        #GlobalNaviMetalRate_PT_Metal, #GlobalNaviMetalRate_PT_Price{
            font-weight: bold;
            color: red;
        }

        #GlobalNaviMetalRate_PT_Unit {
            color: red;
        }

        #GlobalNaviMetalRate_PD_Metal, #GlobalNaviMetalRate_PD_Price {
            font-weight: bold;
            color: blue;
        }

        #GlobalNaviMetalRate_PD_Unit {
            color: blue;
        }

        #GlobalNaviMetalRate_RH_Metal, #GlobalNaviMetalRate_RH_Price {
            font-weight: bold;
            color: green;
        }

        #GlobalNaviMetalRate_RH_Unit {
            color: green;
        }
    }
}
