
main {
    background: #ebecee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
img{
    display: block;
}
.org-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 55%;
    margin: 50px 0 100px 0;
}
.org-page-header{
    margin: 40px 0;
    width: 100%;
    border-bottom:solid 4px #da0024;
}
.org-page-header-items{
    display: flex;
    justify-content: space-between;
}

.org-item{
    width: 300px;
    height: 120px;
    display: flex;
    background-color: white;
    color: #616c82;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.org-item:hover{
    -webkit-transform: translate(-5px,-5px);
    transform: translate(-5px,-5px);
    -webkit-box-shadow: 5px 5px #ddd;
    box-shadow: 5px 5px #ddd;
}
.org-item:nth-child(4)::after{
    width: 100%;
}
.org-item.active{
    background-color: #da0024;
    color: white;
}
.org-item:nth-child(2).active,#saleCenter .org-jobname{
    background-color: #ecaea4;
}
.org-item:nth-child(3).active,#ewCenter .org-jobname{
    background-color: #f8c061;
}
.org-item:nth-child(4).active,#adminCenter .org-jobname{
    background-color: #384560;
}
.org-item h2{
    font-size: 2rem;
}
.org-text{
    flex: 2;
    padding: 40px 50px;
}
.org-page-container {
    display: none;
}
.org-page-container.con-active{
    display: flex;
}
.org-pic{
    flex: 3;
    display: flex;
    align-items: center;
}
.org-pic img{
    width: 100%;
}
.org-jobname{
    background-color: #da0024;
    color: white;
    width: 190px;
    height: 50px;
    font-size: 1.9rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    margin:50px 0 30px 0;
}
.org-name{
    margin-bottom: 20px;
    font-size: 1.7rem;
    font-weight: 700;
}
.org-text p{
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 500;
}
.sp-only{
    display: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: initial;
    font-weight: normal;
}
.main-title {
    color: #37455E;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-align: center;
    margin: 0 28px;
    margin-top: 30px;
}
@media (min-width: 1200px){
    .main-title {
        font-size: 2.8rem;
        letter-spacing: 8px;
        margin-top: 90px;
    }
}
@media (min-width: 768px){
    .main-title {
        color: #3e3a39;
        margin: 0;
        margin-top: 30px;
    }
}

@media (max-width: 1200px){
    .org-container{
        width: 90%;
    }
}
@media (max-width: 768px){
    .org-page-header{
        border-bottom: none;
    }
    .sp-only{
        display: block;
    }
    .pc-only{
        display: none;
    }
    .org-container {
        width: 100%;
    }
    .org-page-header-items{
        display: block;
    }
    .org-item {
        width: 100%;
        height: 70px;
    }

    .org-page-container{
        flex-direction: column;
    }
    .org-jobname {
        justify-content: center;
        margin: 50px auto;
        font-size: 2.2rem;
    }
    .org-name {
        text-align: center;
        font-size: 2rem;
    }
}
