@charset "utf-8";

/*************************************************************
   コンテンツ
*************************************************************/
.contents h3 {
    font-size: 2em;
    font-weight: bold;
}

.contents table {
    border: 1px solid #aaa;
    width: 80%;
    left: 0;
    right: 0;
    position: relative;
    margin-bottom: 200px;
    text-align: center;
    table-layout: fixed;
    font-size: 14pt;
    line-height: 50px;
}

.contents td {
    text-align: center;  
    line-height: 100%; 
    padding-top: 10px;   
    padding-bottom: 10px; 
    background: powderblue; /* 非対応ブラウザ用 */
    background: -moz-linear-gradient(top, aliceblue 0%,powderblue 100%);    /* 古いFireFox向け */
    background: -webkit-linear-gradient(top, aliceblue 0%,powderblue 100%); /* 古いSafari・Chrome向け */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='aliceblue', endColorstr='powderblue',GradientType=0 );   /* IE9以下への対応 */
    background: linear-gradient(to bottom, aliceblue 0%, powderblue 100%);  /* 正規のプロパティ */
    font-size: 3vw;
    height: 40px;
    vertical-align: middle;
}

.contents th {
    text-align: center;   
    padding: 0; 
    background: deepskyblue;    /* 非対応ブラウザ用 */
    background: -moz-linear-gradient(top, aliceblue 0%,deepskyblue 100%);       /* 古いFireFox向け */
    background: -webkit-linear-gradient(top, aliceblue 0%,deepskyblue 100%);    /* 古いSafari・Chrome向け */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='aliceblue', endColorstr='deepskyblue',GradientType=0 );  /* IE9以下への対応 */
    background: linear-gradient(to bottom, aliceblue 0%, deepskyblue 100%);     /* 正規のプロパティ */
    font-size: 2vw;
}

th.degreeTitle {
    height: 12px;
    text-align: left;
    padding-left: 10px; 
    background: deepskyblue;    /* 非対応ブラウザ用 */
    background: -moz-linear-gradient(top, aliceblue 0%,deepskyblue 100%);       /* 古いFireFox向け */
    background: -webkit-linear-gradient(top, aliceblue 0%,deepskyblue 100%);    /* 古いSafari・Chrome向け */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='aliceblue', endColorstr='deepskyblue',GradientType=0 );  /* IE9以下への対応 */
    background: linear-gradient(to bottom, aliceblue 0%, deepskyblue 100%);     /* 正規のプロパティ */
}

img.mail {
    width: 100%;
}

/* スマホ用のレイアウトになるようにCSSを上書きする */
@media (max-width: 670px) {
    .contents table {
        width: 100%;
    }
    
    .contents td {
        font-size: 5vw;
        padding: 0;
    }
    .contents th {
        font-size: 5vw;
    }
}