/* 共通設定 */
/* 余白ができないようにする */
*{
    margin: 0;
    padding: 0;
}
body{
    padding: 75px 0px 0px 0px; /* bodyの内側余白を指定する(上:右:下:左) */
    font-family: "Yu Gothic";
    overflow: scroll;
    overflow-x: hidden;
}
main{
    flex: 1;
}
.hr{
    margin-top: 100px;
    border-top: 1px dashed #8c8b8b;
    border-bottom: 1px dashed #ffffff;
}
/* ページ内リンクのヘッダによるずれを防ぐ */
.link_anchor {
    padding-top: 100px;
    margin-top: -100px;
}

/* イベント */
.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{
    margin: 0 auto 0 auto;
    display: block;
    font-size: 40px;
    font-weight: bolder;
    text-align: center;
    width: 75%;
    border-top: 6px solid #fff;
    border-bottom: 6px solid #fff;
    border-image: linear-gradient(to right,#004B83 30%, #0071B9 70%, #fff);
    border-image-slice: 1;
}
.smalltitle{
    padding-right: 5px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: solid 1px ;
}

table {
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}
.contents-sub > .table-scroll > table{
    border: 1px solid black;
}
.contents-sub > .table-scroll > table > thead > tr > th {
    border: 1px solid black;
    font-size: 20px;
}
.contents-sub > .table-scroll > table > tbody > tr > th ,
.contents-sub > .table-scroll > table > tbody > tr > td {
    border: 1px solid black;
    font-size: 16px;
}
.item {
    padding: 5px 20px 5px 20px;
    width: 160px;
    background-color: #FFF2CC;
}
thead .item{
    background-color: white;
}
.content {
    padding: 5px 50px 5px 50px;
    border-left: 1px solid black;
    width: 30vw;
}

.salary-table{
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.graduation{
    /* 均等割り付け */
    text-align-last: justify;       /* Chrome・Firefox用 */
    text-justify: inter-ideograph;  /* IE・Edge用 */
}
.grad-br{
    display: none;
}
@media screen and (max-width: 1100px) {
    .grad-br{
        display: block;
    }
    .graduation, .salary{
        border-bottom: 1px solid black;
    }
    .grad-last{
        border: none; /* 一番下の項目は下線を引かない */
    }
}
.salary{
    padding-left: 30px;
    vertical-align: middle;
}

a{
    color: #3CA0E1;
}
a:hover{
    font-weight: bold;
}

.table-scroll{
    overflow-x: scroll;
}

@media screen and (max-width: 800px) {
    .salary-table {
        width: 140%;
        margin-left: -20%;
    }
}

/* 画面サイズタブレット以下時 */
@media screen and (max-width: 768px) {
    .contents-title p {
        font-size: 24px;
    }
    .contents-main {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
    .contents-sub {
        width: 95%;
        margin-top: 50px;
        margin-right: auto;
        margin-left: auto;
    }
    .subtitle {
        width: 95%;
        font-size: 24px;
    }
}

/* ボタン */
a.btn {
	display: block;
	text-align: center;
	text-decoration: none; /* テキストの装飾を指定 */
	width: 400px;
    height: auto;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
    font-size: 25px;
	border: 2px solid #27acd9;
	background: #27acd9;
	color: #fff;
	border-radius: 1.5vh; /* 角の丸さ */
	transition: 0.5s; /* アニメーション遷移時間 */

    margin: 50px auto 0 auto;
}
a.btn:hover {
	color: #27acd9;
	background: #fff;
}
/* 画面サイズタブレット以下時 */
@media screen and (max-width: 768px) {  
    a.btn{
        width: 60%;
    }
}
@media screen and (max-width: 360px) {  
    a.btn{
        width: 60%;
        font-size: 6vw;
    }
}

/* 先輩社員紹介 */
.syain{
    display:flex;
    text-align: center;
    justify-content: center;
    margin: 50px 0 ;
    
}
.syain p{
    margin-top: 50px;
    font-size: 16px;
}
.syain-name{
    font-size: 30px;
    font-weight: bolder;
}
.syain-syousai{
    display: block;
    margin-top: 30px;
    font-size: 20px;
}
.syain img{
    padding-left: 100px;
    width: 200px;
}
.syain-hr{
    width: 60%;
    margin: 40px auto;
    background-color:#baccde;
    border: 1px solid transparent;
}

@media screen and (max-width: 768px) {
    .syain-hr{
        width: 95%;
    }
}

@media screen and (max-width: 700px) {
    .syain p{
        margin-top: 50px;
        font-size: 16px;
    }
    .syain-name{
        font-size: 30px;
        font-weight: bolder;
    }
    .syain-syousai{
        display: block;
        margin-top: 30px;
        font-size: 20px;
    }
}
@media screen and (max-width: 600px) {
    .syain p{
        margin-top: 20px;
        font-size: 16px;
    }
    .syain-name{
        font-size: 30px;
        font-weight: bolder;
    }
    .syain-syousai{
        display: block;
        margin-top: 10px;
        font-size: 16px;
    }
    .syain img{
        padding-left: 30px;
        width: 200px;
    }
}


/* 画像の保存を禁止する*/
.syain img {
    /* PCの右クリック禁止 */
    pointer-events: none;
    /* スマホの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}