@media screen and (max-width: 400px){
    .Common_Wrapper { width: 100%; }
    .Common_Wrapper_FlexRow > img { width: 100%; }
    .Common_Wrapper_FlexRow_Small > a  { width: 100%; }
    .Common_Wrapper_FlexRow_Small > a > div { width: 100%; }
    .Common_Wrapper_FlexRow_Small > a > div > img { width: calc(75% - 10px); }

}

@media screen and (min-width: 400px) and (max-width: 800px){
    .Common_Wrapper { width: 80%; }
    .Common_Wrapper_FlexRow > img { width: calc(50% - 20px); }
    .Common_Wrapper_FlexRow_Small > a  { width: calc(50% - 20px); }
    .Common_Wrapper_FlexRow_Small > a > div { width: 100%; }
    .Common_Wrapper_FlexRow_Small > a > div > img { width: 100%; }

}

@media screen and (min-width: 800px){
    .Common_Wrapper { width: 80%; }
    .Common_Wrapper_FlexRow > img { width: calc(50% - 20px); }
    .Common_Wrapper_FlexRow_Small > a  { width: calc(25% - 10px); }
    .Common_Wrapper_FlexRow_Small > a > div { width: 100%; }
    .Common_Wrapper_FlexRow_Small > a > div > img { width: 100%; }

}

.o_0 {
    top: -200%;
    left: 0;
    opacity: 0;
    transition: 1s;
}

.o_1 {
    top: 0;
    left: 0;
    opacity: 1;
    transition: 1s;
}

.Common_Wrapper {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    margin: 0 auto;
}

.Common_Wrapper_Short {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.Common_Wrapper_100 {
    width: 100%;
    margin: 0 auto;
}

.Common_Wrapper_First {
    margin-top: 60px;
}

.Common_Background {

    background-position: center;
    background-repeat: no-repeat;
    background-size: auto auto;
}

.Common_Background_0 { background-image: url("/_CONTENT/_IMG/bg_0.png"); }
.Common_Background_1 { background-image: url("/_CONTENT/_IMG/bg_1.png"); }
.Common_Background_2 { background-image: url("/_CONTENT/_IMG/bg_2.png"); }
.Common_Background_3 { background-image: url("/_CONTENT/_IMG/bg_3.png"); }

.Common_FlexColumn {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.Common_Wrapper_FlexRow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.Common_Wrapper_FlexRow_Small {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-evenly;
}

.Common_Wrapper_FlexRow_Small_ImageSwicher {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Common_Wrapper_FlexRow_Small_ImageSwicher > img:nth-child(1) { display: unset; }
.Common_Wrapper_FlexRow_Small_ImageSwicher > img:nth-child(2) { display: none; }

.Common_Wrapper_FlexRow_Small_ImageSwicher:hover > img:nth-child(1) { display: none; }
.Common_Wrapper_FlexRow_Small_ImageSwicher:hover > img:nth-child(2) { display: unset; }

input[type=text], input[type=password] {
    margin: 0;

    height: 60px;
    padding: 0 20px;

    line-height: 1.33;
    width: 100%;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;

    color: #000000;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: transparent;
    -webkit-appearance: none;
}

.inputExeption {
    color: var(--c-5)!important;
}