@charset "utf-8";

*{
	list-style:none;
	margin:0;
	text-decoration:none;
}

body{
	width:100%;
	height:100%;
	margin:0 auto;
	font-family: "Noto Sans JP";
    color: #333333;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-ideograph;
}

img{
	vertical-align:top;
}

.wrapper{
	overflow:hidden;
}



/*ーーーーー会社ページ共通デザインーーーーー*/
main{
    background: #fff;
}

.bc-list{
    background: #fff;
}

.bc-list-inner{
    background: #fff;
    padding-left: 0;
}

.headline-img{
    background-color: #325A8C;
    display: inline-block;
    position: relative;

}

.headline-img img{
    opacity: 0.4;
    display: block;
    width: 100%;
    height: 231px;
        object-fit: cover;
}


.headline-img-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.textbox{
    font-size: 40px;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}



.wrap{
    width: 100%;
    max-width: 1024px;
    margin: 60px auto;
    padding: 0 40px;
    box-sizing: border-box;
    background: #fff;
}

.contents{
    background: #fff;
    width: 100%;
    height:auto;
}

.contents-box:not(:last-child){
    margin-bottom: 60px;
}

.contents-box h2{
    background: linear-gradient(90deg, #3498db 0%, #CCE6FF 100%) no-repeat 100% 100% / 100% 100%;
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 2px 0;
    margin-bottom:60px;
}

.contents-inner:not(:last-child){
    margin-bottom: 80px;
}


/*ーーーーーサイトマップ部分ーーーーー*/
.sitemap a{
    color: #333;
}
.sitemap a:hover{
    color: #3498db;
    opacity: 0.7;
    transition: .3s;
}
.sitemap>ul{
    padding-left: 0;
}
.sitemap-list{
    margin-bottom: 60px;
    
}
.sitemap-list>ul{
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.sitemap-list>a{
    display: block;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    text-decoration: underline;
    background: #eeeeff;
}

.sitemap-list2{
    margin: 10px 0 0 0;

    width: calc(100% / 3);
}

.sitemap-list2>a{
    display: inline-block;
    font-size: 16px;
    padding: 0 0 0 1rem;
    text-decoration: underline;
}


/*ーーーーーーーーレスポンシブ設定ーーーーーーーー*/
@media screen and (max-width: 767px) and (min-width:0px) {
    
    .wrap{
        padding: 0 20px;
    }

    .sitemap{
        flex-direction: column;
    }
    .sitemap>ul{
        width: 100%;
    }
    .sitemap-list>a{
        font-size: 16px;
    }
    .sitemap-list2{
        margin: 10px 0 0 0;
        width: 100%;
    }
    .sitemap-list2>a{
        font-size: 16px;
    }
    .sitemap-list3>a{
        font-size: 14px;
    }
    .sitemap-list>ul{
        flex-direction: column;
    }

}/*media screen 終*/