@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
    color: #666; /*全体の文字色*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; /*フォント種類*/
    font-size: 15px; /*文字サイズ*/
    line-height: 2; /*行間*/
    background: #fff; /*背景色*/
    -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form, textarea, input {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    font-weight: normal;
}

ul {
    list-style-type: none;
}

ol {
    padding-left: 40px;
    padding-bottom: 15px;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    font-size: 100%;
    border-spacing: 0;
}

iframe {
    width: 100%;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

.clearfix {
    zoom: 1; /*for IE 5.5-7*/
}

.clearfix:after { /*for modern browser*/
    content: ".";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
}

.clr {
    clear: both;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
    color: #238FC1; /*リンクテキストの色*/
    transition: 0.5s; /*同上*/
    text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

a:hover {
    color: #238FC1; /*マウスオン時の文字色*/
    text-decoration: underline; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container（全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
    max-width: 1200px; /*サイトの最大幅*/
    margin: 0 auto;
    padding: 0 2%; /*上下、左右へのブロック内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    height: 80px; /*高さ*/
}

/*ロゴ画像*/
header #logo {
    float: left; /*左に回り込み*/
    margin-top: 10px; /*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
    margin-left: 1%; /*ロゴの左にあける余白。*/
}

/*コンテンツ（左右ブロックとフッターを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    clear: both;
    overflow: hidden;
    border: 1px solid #dcdcdc; /*枠線の幅、線種、色*/
    border-top: none; /*上の線だけ消す*/
/*    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2); /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2が透明度20%の事。*/
/*    border-radius: 10px 10px 0px 0px; /*角丸のサイズ。左上、右上、右下、左下への順番。*/
}
#contents .topimage {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
    clear: both;
    overflow: hidden;
    background: linear-gradient(#69b371, #4c9755); /*グラデーション*/
    padding: 5px 0px 5px 2.8%; /*上、右、下、左への余白*/
    font-size: 18px; /*文字サイズ*/
}

/*メニュー１個あたりの設定*/
#menubar li {
    float: left; /*左に回り込み*/
    width: 16.2%; /*メニュー幅。メニューを増減する場合はここの数字を変更する。#menubarのpaddingの2.8%の数字が加わるので注意して下さい。*/
}

#menubar li a {
    display: block;
    text-decoration: none;
    text-align: center; /*文字を中央に*/
    line-height: 1.5; /*行間を少し狭く*/
    padding: 5px 0px; /*上下、左右へのボックス内の余白*/
    color: #fff; /*文字色*/
    border-right: 1px solid #fff; /*右側の線の幅、線種、色（古いブラウザ用）*/
    border-right: 1px solid rgba(255, 255, 255, 0.3); /*右側の線の幅、線種、色。255,255,255は白の事で0.3が透明度30%の事。*/
    text-shadow: 0px -1px rgba(0, 0, 0, 0.8); /*テキストの影。右へ、下へ(マイナスなので上に向けて)、0,0,0は黒のことで0.8は透明度80%の事。*/
}

/*１つ目のメニューにだけ左側に線を入れる設定*/
#menubar li:first-child a {
    border-left: 1px solid #fff; /*古いブラウザ用*/
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/*マウスオン時*/
#menubar li a:hover {
    background: #fff; /*背景色*/
    color: #69b371; /*文字色*/
    text-shadow: none; /*テキストの影を消す*/
    opacity: 0.8;
}

/*装飾文字（※800px以下の小さな端末#menubar-sも共通）*/
#menubar li a span, #menubar-s li a span {
    display: block;
    text-shadow: none;
    font-size: 11px; /*文字サイズ*/
    letter-spacing: 0.2em; /*文字間隔を少し広く*/
    color: rgba(255, 255, 255, 0.5); /*文字色。255,255,255は白の事で0.5は透明度50%の事。*/
}

/*装飾文字のマウスオン時*/
#menubar li a:hover span {
    color: #69b371; /*文字色*/
}

/*スマホ用メニューを表示させない*/
#menubar-s {
    display: none;
}

/*３本バーアイコンを表示させない*/
#menubar_hdr {
    display: none;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
    overflow: hidden;
    float: left; /*右に回り込み*/
    padding: 0.3rem 2% 0 2%; /*上、右、下、左側へのボックス内の余白*/
    width: 96%; /*幅*/
    margin-bottom: 30px;
}

/*メインコンテンツのh1タグの設定*/
#main h1 {
    clear: both;
    width: 100%;
    font-size: 1.4rem; /*文字サイズ*/
    line-height: 2; /*行間*/
    margin-bottom: 1.4rem;
}

/* お知らせ等の日付 */
#dataDT {
    float: right;
    font-size: 15px;
    padding-top: 28px;
}

#main h2 {
    clear: both;
    width: 70%;
    font-size: 1.1rem; /*文字サイズ*/
    line-height: 1.6; /*行間*/
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-top: 1px solid #dcdcdc; /*メニュー下の線の幅、線種、色*/
    border-bottom: 1px solid #dcdcdc; /*メニュー下の線の幅、線種、色*/
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15); /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
    background-color: #9ed7a5;
}

/*メインコンテンツのh3タグの設定*/
#main h3 {
    clear: both;
    font-size: 18px; /*文字サイズ*/
    margin-bottom: 20px;
    padding: 2px 20px; /*上下、左右への余白*/
    border: 1px solid #dcdcdc; /*線の幅、線種、色*/
    background: linear-gradient(#fff, #eee); /*グラデーション*/
}

/*メインコンテンツの段落タグ設定*/
#main p {
    padding: 5px 0px 5px; /*上、左右、下への余白*/
}

#main h2 + p,
#main h3 + p {
    margin-top: -10px;
}
.username {
    font-size: 1.2rem;
    font-weight: bold;
}

.ulThumbnail {
    text-decoration: none;
    width:100%;
    background:#fff;
    border:1px solid #9eaaaa;
}
.ulThumbnail li {
    width: 240px;
    display: inline-block;
}

#main table {
    margin: 1rem 0rem;
}

#main table tbody tr th {
    padding: 0rem 0.5rem;
}

#main input[type="text"] {
    height: 1.4rem;
}
#main input[type="password"] {
    height: 1.4rem;
}
#main textarea {
    padding: 8px;
}

ul.imageHorizontalList {
    overflow-x: auto;
    display: flex;
    flex-wrap:wrap;
}

ul.imageHorizontalList li {
    display: inline-block;
    width: 250px;
    padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
    box-sizing:border-box;
}
ul.horizontalList {
    overflow-x: auto;
    display: flex;
    flex-wrap:wrap;
}

ul.horizontalList li {
    display: inline-block;
    padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
    box-sizing:border-box;
}

.top-banner li img {
    max-height:480px; /*画像のはみだしを防ぐ*/
    height: auto; /*画像の縦横比を維持 */
    border:solid 1px #ccc; /*←画像を1pxのグレーの枠線で囲む指定の場合*/
}
/* ボタン
---------------------------------------------------------------------------*/
#main div a.btn-flat-border {
    display: inline-block;
    padding: 0 1rem;
    text-decoration: none;
    color: #4c9755;
    border: solid 2px #4c9755;
    border-radius: 3px;
    transition: .4s;
}

#main div a.btn-flat-border:hover {
    background: #4c9755;
    color: white;
}


/* フォント色等 */
span.txtBold {
    font-weight: bold;
}

span.txtItalic {
    font-style: italic;
}

span.txtRed {
    color: red;
}

span.txtGreen {
    color: green;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
    clear: both;
    background: #69b371; /*背景色*/
    color: #fff; /*文字色*/
    font-size: 85%; /*文字サイズ*/
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #fff;
}

footer .pr {
    display: block;
    font-size: 80%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    clear: both;
    text-align: center;
    background: #333; /*背景色*/
}

#copyright a {
    text-decoration: none;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
    clear: both;
    margin-right: 2%;
}

#pagetop a {
    color: #fff; /*文字色*/
    font-size: 16px; /*文字サイズ*/
    background: #69b371; /*背景色*/
    text-decoration: none;
    text-align: center;
    display: block;
    float: right;
    width: 50px; /*幅*/
}

/*マウスオン時*/
#pagetop a:hover {
    background: #4c9755; /*背景色*/
    color: #fff; /*文字色*/
}

table.noWrap {
    width: 100%;
}
.noWrap>tbody th {
    white-space: nowrap;
}
table.borderTable {
    border: 1px solid #dcdcdc;
}

.borderTable>thead th {
    border: 1px solid #dcdcdc;
    padding-left: 4px;
    padding-right: 4px;
    background-color: #69b371;
    color: #FFF;
}

.borderTable>tbody th {
    border: 1px solid #dcdcdc;
    background-color: #69b371;
    padding-left: 4px;
    padding-right: 4px;
    color: #FFF;
}

.borderTable>tbody td {
    border: 1px solid #dcdcdc;
    padding-left: 4px;
    padding-right: 4px;
}
.borderTable>thead th.swidth {
    width: 6em;
}
.borderTable>thead th.lwidth {
    width: 12em;
}


/*その他
---------------------------------------------------------------------------*/
.look {
    background: #e5e5e5;
    padding: 5px 10px;
    border-radius: 4px;
}

.mb15, .mb1em {
    margin-bottom: 15px;
}

.clear {
    clear: both;
}

ul.disc {
    padding: 0em 25px 15px;
    list-style: disc;
}

.color1, .color1 a {
    color: #69b371;
}

.bg1 {
    background: #f6f5f2;
}

.pr {
    font-size: 10px;
}

.wl {
    width: 96%;
}

.ws {
    width: 50%;
}

.c {
    text-align: center;
}

.r {
    text-align: right;
}

.l {
    text-align: left;
}

img.fr {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
}

img.fl {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.big1 {
    font-size: 24px;
    letter-spacing: 0.2em;
}

.mini1 {
    font-size: 11px;
    display: inline-block;
    line-height: 1.5;
}

.sh {
    display: none;
}

/*画面幅640px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {

    /*全体の設定
    ---------------------------------------------------------------------------*/
    body {
        font-size: 12px; /*文字サイズ*/
        line-height: 1.5; /*行間*/
    }
    #contents {
        border: none;
    }
    /*ヘッダー（ロゴが入った最上段のブロック）
    ---------------------------------------------------------------------------*/
    /*ヘッダーブロック*/
    header {
        height: 60px; /*高さ*/
    }

    /*ロゴ画像*/
    header #logo {
        width: 320px; /*ロゴ画像の幅*/
        margin-top: 10px; /*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
    }

    /*メインメニューを非表示に
    ---------------------------------------------------------------------------*/
    #menubar {
        display: none;
    }
    /*スマホ用メニューを非表示から表示に切り替える*/
    #menubar-s {
        display: block;
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
        border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
        border-right: 1px solid #fff;	/*右側の線の幅、線種、色*/
        background: linear-gradient(#69b371, #4c9755);	/*グラデーション*/
        font-size: 18px;	/*文字サイズ*/
    }
    /*メニュー１個あたりの設定*/
    #menubar-s li {
        float: left;	/*左に回り込み*/
        width: 50%;		/*メニュー幅*/
    }
    #menubar-s li a {
        display: block;
        text-decoration: none;
        text-align: center;	/*文字をセンタリング*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 7px 0;	/*上下、左右へのメニュー内の余白*/
        border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
        border-left: 1px solid #fff;	/*左側の線の幅、線種、色*/
        color: #fff;	/*文字色*/
    }
    /* クリックしたら表示 */
    #menubar-s {
        display: none;
    }

    /*３本バーアイコン設定
    ---------------------------------------------------------------------------*/
    /*３本バーブロック*/
    #menubar_hdr {
        display: block;
        position: absolute;
        top: 16px;		/*上から32pxの場所に配置*/
        right: 3%;		/*右から3%の場所に配置*/
        width: 30px;	/*幅*/
        border: 1px solid #000;	/*枠線の幅、線種、色*/
        padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
        background: #fff;		/*背景色*/
    }
    /*３本のバー（1本あたり）*/
    #menubar_hdr span {
        display: block;
        border-top: 3px solid #000;	/*枠線の幅、線種、色*/
        margin-bottom: 7px;			/*バー同士の余白*/
    }

    table.borderTable>thead th.swidth {
        width: 3em;
    }
    table.borderTable>thead th.lwidth {
        width: 7em;
    }
}
