@charset "UTF-8";
/* CSS Document */



.jsicIndex{
    width: 100%;
    padding: 1px 0;
    
/*    background-color: #0d356e;*/
/*    background-color: #eee;*/
    background-color: #0a2954;
    
    background-image: url("jsicimg/bg_jsicIndex.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.jsicCompanyList{
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    
    
    margin-top: 30px;
    margin-bottom: 40px;
}
.jsicCompanyList .domain{
    box-sizing: border-box;
    width: 100%;

    margin-bottom: 30px;
}
.jsicCompanyList .domain .box{
    box-sizing: border-box;
    
    background-color: #fff;
/*    border-radius: 10px;*/

/*	
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));

	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
    will-change: filter;
*/
}
.jsicCompanyList .domain .title{
    box-sizing: border-box;
    width: 100%;
/*    padding: 10px 20px;*/
    padding: 30px 40px;
/*    border-radius: 10px;*/
    
/*    background-color: #edf2f6;*/
/*    background-color: #f5f5f5;*/
    background-color: #fff;
    cursor: pointer;

    position: relative;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jsicCompanyList .domain .title:hover{
/*    background-color: #e3edf5;*/
/*    background-color: #eee;*/
    background-color: #e0eaf6;
}

.jsicCompanyList .domain .title.open{
/*    border-radius: 10px 10px 0 0;*/
    background-color: #e0eaf6;
}

.jsicCompanyList .domain .title::before{
    content: "";
    position: absolute;
    z-index: 110;
    right: 40px;
    top: 50%;
    margin-top: -2px;
    
    width: 20px;
    height: 4px;
    background-color: #203a72;
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jsicCompanyList .domain .title::after{
    content: "";
    position: absolute;
    z-index: 110;
    right: 48px;
    top: 50%;
    margin-top: -10px;

    width: 4px;
    height: 20px;
    background-color: #203a72;
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jsicCompanyList .domain .title.open::before{
    transform: rotate(90deg);
    opacity: 0;
}
.jsicCompanyList .domain .title.open::after{
    transform: rotate(90deg);
}


.jsicCompanyList .domain .title .icon{
/*    width: 65px;*/
    width: 50px;
    margin-right: 15px;
	display: block;
    position: relative;
	z-index: 20;
	overflow: hidden;
	
	line-height: 0;
    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}
.jsicCompanyList .domain .title .icon:before{
	content:"";
	display: block;
	padding-top: 100%;
}
.jsicCompanyList .domain .title .icon.satellite{ background-image: url("jsicimg/icon_domain_satellite.png"); }
.jsicCompanyList .domain .title .icon.satellitedataservice{ background-image: url("jsicimg/icon_domain_satellitedataservice.png"); }
.jsicCompanyList .domain .title .icon.transportation{ background-image: url("jsicimg/icon_domain_transportation.png"); }
.jsicCompanyList .domain .title .icon.componentparts{ background-image: url("jsicimg/icon_domain_componentparts.png"); }
.jsicCompanyList .domain .title .icon.groundsystem{ background-image: url("jsicimg/icon_domain_groundsystem.png"); }
.jsicCompanyList .domain .title .icon.spaceservices{ background-image: url("jsicimg/icon_domain_spaceservices.png"); }
.jsicCompanyList .domain .title .icon.aviation{ background-image: url("jsicimg/icon_domain_aviation.png"); }
.jsicCompanyList .domain .title .icon.other{ background-image: url("jsicimg/icon_domain_others.png"); }

.jsicCompanyList .domain .title .icon.in-space{ background-image: url("jsicimg/icon_domain_in-space.png"); }
.jsicCompanyList .domain .title .icon.science-exploration{ background-image: url("jsicimg/icon_domain_science-and-exploration.png"); }

.jsicCompanyList .domain .title .name{
    display: block;
    width: 100%;
/*    font-size: 2.6rem;*/
    font-size: 3.0rem;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    color: #203a72;
    line-height: 1.3;
}

.jsicCompanyList .domain .domainName{
    box-sizing: border-box;
    width: 100%;
    
    padding: 5px 20px 5px;
    background-color: #203a72;
/*    border-radius: 10px;*/
    
    font-size: 2.4rem;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.jsicCompanyList .domain .list{
    padding: 20px 20px 15px;
    
    display: none;
}
.jsicCompanyList .domain .list ul{
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
    padding-top: 15px;
}
.jsicCompanyList .domain .list ul li{
    box-sizing: border-box;
    width: 49.5%;
    margin-bottom: 12px;
}
.jsicCompanyList .domain .list ul li a{
    box-sizing: border-box;
    width: 100%;
	height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
/*    border-radius: 15px;*/
    
/*    border: 5px solid #f5f5f5;*/
    border: 5px solid #e0eaf6;
    transition: border 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);    

	padding: 10px 10px;


    background-image: url("img/icon_ext_b.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px auto;
}
.jsicCompanyList .domain .list ul li a:hover{
/*    background-color: #f5f5f5;*/
    border-color: #bad2ef;
}
.jsicCompanyList .domain .list ul li .logo{
    width: 20%;

    position: relative;
    line-height: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.jsicCompanyList .domain .list ul li .logo::before{
    content: "";
    display: block;
    padding-top: 56.25%;
}
.jsicCompanyList .domain .list ul li .logo img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;

    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.jsicCompanyList .domain .list ul li .name{
    display: block;
    width: 75%;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.3;
    
    padding: 5px 20px 5px 0;
}


@media only screen and (max-width: 750px){

.jsicCompanyList{
    margin-top: 20px;
    margin-bottom: 30px;
}

.jsicCompanyList .domain{
    margin-bottom: 12px;
}
.jsicCompanyList .domain .title{
    padding: 20px 40px 20px 20px;
/*    border-radius: 10px;*/
}
.jsicCompanyList .domain .title::before{
    right: 20px;
}
.jsicCompanyList .domain .title::after{
    right: 28px;
}

.jsicCompanyList .domain .title .icon{
    width: 50px;
    margin-right: 10px;
}
.jsicCompanyList .domain .title .name{
    font-size: 2.3rem;
}
.jsicCompanyList .domain .domainName{
    padding: 4px 10px 4px;
    font-size: 2.0rem;
/*    border-radius: 5px;*/
}
.jsicCompanyList .domain .list{
    padding: 15px 15px 10px;
}
.jsicCompanyList .domain .list ul{
    padding-top: 10px;
}
.jsicCompanyList .domain .list ul li{
    width: 100%;
    margin-bottom: 8px;
}
.jsicCompanyList .domain .list ul li a{
/*    border-radius: 5px;*/

	padding: 10px 10px;
    border-width: 3px;
}
.jsicCompanyList .domain .list ul li .logo{
    width: 18%;
}
.jsicCompanyList .domain .list ul li .name{
    width: 79%;
    font-size: 1.5rem;
}

}




