/* 共通設定 */
/* 余白ができないようにする */
*{
    margin: 0;
    padding: 0;
}
body{
   
    padding: 75px 0px 0px 0px; /* bodyの内側余白を指定する(上:右:下:左) */
    font-family: "Yu Gothic";
    overflow: scroll;
    overflow-x: hidden;
    
}
main{
    flex: 1;
}

/* 情報セキュリティ方針 */
.contents-title{
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    margin-top:50px;
    width: 70%;
    padding:30px;
    background-color:#1D64A0;
}
.contents-title p{
    /*font-family: "コーポレートロゴ_ふつう";*/
    font-family: corporate-logo-ver2, sans-serif;
    font-style: normal;
    font-weight: 500;    

    font-size: 40px;
    color: #fff;
}
.contents-main{
    margin: 50px auto 50px auto;
    text-align: left;
    width: 80%;
}
.contents-main p{
    font-size: 16px;
}
.contents-sub{
    margin-top: 50px;
}
.subtitle{
    padding-right: 10px;
    font-size: 22px;
    font-weight: bolder;
    border-bottom: solid 2px #999999;
    position: relative;
}
.subtitle::after{
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 2px #00a0e9;
	top: 100%;
	width: 40px;
}
.smalltitle{
    font-weight: bold;
    font-size: 18px;
}

table, td, th {
    border: solid 1px #d0d1d8;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin:10px 10px 0 30px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

td, th{
    font-size: 16px;
}
th{
    text-align: center;
}
.item {
    width: 40%;
    padding: 5px 10px ;
}
.content {
    width: 60%;
    padding: 5px 10px ;
}
a{
    color: #3CA0E1;
}
a:hover{
    font-weight: bold;
}

.kaiji-seikyu-item{
    font-size: 18px;
    margin-top: 20px;
    padding-right: 10px;
}
.kaiji-seikyu-content{
    margin-left: 50px;
    margin-bottom:20px;
}
.item-br{
    display: none;
}

@media screen and (max-width: 768px) {
    .contents-title p{
        font-size: 24px;
    }
    .table{
        margin-left: auto;
        margin-right: auto;
    }
    .item-br{
        display: inline;
    }
}