@charset "utf-8";

/* ●divのデザインCSS● */

/* 丸囲み項目タイトル付 */
/* 共通 */
/* 上部分 */
.create_section_header {
    background: #267D70;
    background: linear-gradient(rgba(38, 125, 112, 0.6), rgba(38, 125, 112, 0.9) 50%);
    background: -webkit-linear-gradient(rgba(38, 125, 112, 0.6), rgba(38, 125, 112, 0.9) 50%);
    border-top: 1px solid #267D70;
    border-left: 1px solid #267D70;
    border-right: 1px solid #267D70;
    border-radius: 8px 8px 0 0;
    color: #FFF;
}
/* 本文部分 */
.create_section_main {
    border-left: 1px solid #267D70;
    border-right: 1px solid #267D70;
    border-bottom: 1px solid #267D70;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0 0 8px 8px;
}
.caption {
    float: right;
    margin-left: 4px;
}
/* パソコン用 */
@media screen and (min-width:769px){
    /* 上部分 */
    .create_section_header {
        width: 874px;
        margin: 10px auto 0;
        padding: 3px 8px;
    }
    .create_section_header h2 {
        font-size: 116%; /* 16px */
    }
    /* 本文部分 */
    .create_section_main {
        width: 882px;
        padding: 4px;
    }
}
/* スマホ用 */
@media screen and (max-width:768px){
    .create_section_header {
        width: 100%;
        box-sizing: border-box;
        margin: 3px auto 0;
        padding: 1px 6px;
    }
    .create_section_header h2 {
        font-size: 4vw;
    }
    /* 本文部分 */
    .create_section_main {
        width: 100%;
        box-sizing: border-box;
        padding: 2px;
    }
    .caption {
        width: 25vw;
        height: auto;
    }
}

/* ●●テーブルのデザインCSS●● */
/* テーブル1 四つ角は5px-R タイトル部水色のテーブル ホバーすると行色変わります。 */
/* 共通 */
.table1 {
    border-spacing: 0;
}
.table1 th {
    color: #fff;
    padding: 3px 10px;
    background: #9DD6E0;
    background: linear-gradient(rgba(157, 214, 224, 0.7), rgba(157, 214, 224, 0.9) 50%);
    background: -webkit-linear-gradient(rgba(157, 214, 224, 0.7), rgba(157, 214, 224, 0.9) 50%);
    font-weight: bold;
    border-left: 1px solid #9DD6E0;
    border-top: 1px solid #9DD6E0;
    border-bottom: 1px solid #9DD6E0;
    line-height: 120%;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
}
.table1 th:first-child {
    border-radius: 5px 0 0 0;
}
.table1 th:last-child {
    border-radius: 0 5px 0 0;
    border-right: 1px solid #9DD6E0;
}
.table1 th:only-child {
    border-radius: 5px 5px 0 0;
    border-right: 1px solid #9DD6E0;
}
.table1 tr td {
    padding: 3px 7px;
    border-bottom: 1px solid #84b2e0;
    border-left: 1px solid #84b2e0;
    text-align: center;
}
.table1 tr td:last-child {
    border-right: 1px solid #84b2e0;
}
.table1 tr {
    background: #FFF;
}
.table1 tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}
.table1 tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}
/* パソコン用 */
@media screen and (min-width:769px){
    .table1 {
        margin: 5px;
    }
    .table1 tr:hover {
        background: rgba(157, 214, 224, 0.5);
    }
}
/* スマホ用 */
@media screen and (max-width:768px){
    .table1 {
        margin: 0;
    }
}

/* テーブル2 会社概要とかの青ヘッダ付き */
/* 共通 */
.table2 {
    border-collapse: collapse;
}
.table2 th {
    width: 27%;
    text-align: left;
    border-top: #E3E3E3 1px dotted;
    border-bottom: #E3E3E3 1px dotted;
    background: #F7F7F7;
    text-align: left;
    padding: 3px;
    font-weight: normal;
}
.table2 td {
    border-top: #E3E3E3 1px dotted;
    border-bottom: #E3E3E3 1px dotted;
    text-align: left;
    padding: 3px;
}
.table2 tr:first-child th {
    border-top: #000066 4px solid;
}
.table2 tr:first-child td {
    border-top: #B3B3B3 4px solid;
}
/* パソコン用 */
@media screen and (min-width:769px){
    .table2 {
        margin: 10px auto;
        width: 80%;
    }
}
/* スマホ用 */
@media screen and (max-width:768px){
    .table2 {
        width: 97%;
    }
}

/* テーブル3 金型一覧で使う予定 */
.table3 {
    margin: 15px auto;
    width: 750px;
    border-spacing: 0;
}
.table3 th {
    color: #fff;
    padding: 3px 10px;
    background: #9DD6E0;
    background: linear-gradient(rgba(157, 214, 224, 0.7), rgba(157, 214, 224, 0.9) 50%);
    background: -webkit-linear-gradient(rgba(157, 214, 224, 0.7), rgba(157, 214, 224, 0.9) 50%);
    font-weight: bold;
    font-size: 116%;
    /* 15px */
    border-left: 1px solid #9DD6E0;
    border-top: 1px solid #9DD6E0;
    border-bottom: 1px solid #9DD6E0;
    line-height: 120%;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
}
.table3 th:first-child {
    border-radius: 5px 0 0 0;
}
.table3 th:last-child {
    border-radius: 0 5px 0 0;
    border-right: 1px solid #9DD6E0;
}
.table3 th:only-child {
    border-radius: 5px 5px 0 0;
    border-right: 1px solid #9DD6E0;
}
.table3 tr td {
    padding: 3px 7px;
    border-bottom: 1px solid #84b2e0;
    border-left: 1px solid #84b2e0;
    text-align: center;
    font-size: 85%;
    /* 11px */
}
.table3 td {
    width: 8.33%;
}
.table3 tr td:last-child {
    border-right: 1px solid #84b2e0;
}
.table3 tr {
    background: #FFF;
}
.table3 tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}
.table3 tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}
.table3 td:hover {
    background: rgba(157, 214, 224, 0.5);
}
