@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: #72bbe4;
    /*全体の背景色（古いブラウザだとここの色のみが出ます）*/
    background: radial-gradient(circle 400px at 25% 50px, #a7d4ee, #72bbe4) no-repeat #72bbe4;
    /*ロゴ背後の光(大きさ400px、左から25%、上から50pxの場所に配置)と、背景色*/
    border-top: 4px solid #50a0cc;
    /*HPの最上部に入っている線の幅と線種と色*/
    -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
    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%;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
    color: #666;
    /*リンクテキストの色*/
    transition: 0.5s;
    text-decoration: none;
}

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

/*containerブロック
---------------------------------------------------------------------------*/
#container {
    max-width: 1300px;
    /*サイトの最大幅*/
    padding: 0 3%;
    /*上下、左右へのボックス内の余白*/
    margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    position: relative;
    color: #fff;
    /*ヘッダーの文字色*/
    height: 150px;
    /*ヘッダーの高さ*/
}

/*リンクテキストの文字色*/
header a {
    color: #fff;
}

/*ロゴ画像*/
header #logo img {
    width: 350px;
    /*画像幅*/
    position: absolute;
    left: 3%;
    /*ヘッダーの左から3%の場所に配置*/
    top: 50px;
    /*ヘッダーの上から50pxの場所に配置*/
}

/*電話番号ボックスの設定*/
header #tel {
    position: absolute;
    right: 3%;
    /*ヘッダーの右から3%の場所に配置*/
    top: 38px;
    /*ヘッダーの上から38pxの場所に配置*/
    font-size: 11px;
    /*文字サイズ*/
    letter-spacing: 0.2em;
    /*文字間隔を少し広めにとる設定*/
    background: #000;
    /*背景色（※古いブラウザ用）*/
    background: rgba(0, 0, 0, 0.3);
    /*背景色。0,0,0はRGB値での色設定。ここでは黒。0.3は透明度30%の意味。*/
    border-radius: 8px;
    /*角丸のサイズ*/
    width: 300px;
    /*幅*/
    text-align: center;
    /*文字をセンタリング*/
    padding: 10px;
    /*ボックス内の余白*/
}

/*電話番号の文字設定*/
header #tel span {
    display: block;
    font-size: 18px;
    /*文字サイズ*/
    color: #f9b600;
    /*文字色*/
    font-weight: bold;
    /*太字に*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul {
    margin-left: 0.8%;
    /*メニューブロックの左に空ける余白。全体の左右バランスを取って下さい。*/
}

/*メニュー１個あたりの設定*/
#menubar li {
    float: left;
    /*左に回り込み*/
    width: 16%;
    /*幅*/
    margin-left: 0.5%;
    /*メニュー間にあけるスペース*/
}

#menubar li a {
    display: block;
    text-decoration: none;
    background: #6aacd1;
    /*背景色（古いブラウザだとここの色のみが出ます）*/
    background: linear-gradient(#6aacd1, #c5e3f4);
    /*グラデーション*/
    color: #fff;
    /*文字色*/
    text-align: center;
    /*文字をセンタリング*/
    padding: 10px 0px;
    /*上下、左右への余白*/
    border-top: 1px solid #fff;
    /*上側への線の幅、線種、色*/
    border-right: 1px solid #fff;
    /*右側への線の幅、線種、色*/
    border-left: 1px solid #fff;
    /*左側への線の幅、線種、色*/
}

/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover,
#menubar li.current a {
    background: #fff;
    /*背景色*/
    color: #49b1cb;
    /*文字色*/
}

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

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

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
    clear: both;
    overflow: hidden;
    background: #fff;
    /*背景色*/
    padding: 3%;
    /*ボックス内の余白*/
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
    float: right;
    /*右に回り込み*/
    width: 72%;
    /*幅*/
}

/*１カラム利用時の設定*/
.c1 #main {
    float: none;
    width: auto;
}

h2 {
    position: relative;
    text-align: center;
    font-size: 40px;
    margin: 2rem 0;
}

h2::before {
    position: absolute;
    top: 50%;
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    background: linear-gradient(-45deg, transparent, #325A8C 10%, #325A8C 90%, transparent);
}

h2 span {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0 20px;
    background-color: #fff;
    text-align: left;
}


/*h3タグの設定*/
h3 {
    font-size: 20px;
    position: relative;
    padding: 0.6em;
    background: #e0edff;
    margin: 1rem 0 2rem
}

h3:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #e0edff;
    width: 0;
    height: 0;
}

/*段落タグ設定*/
#main p {
    padding: 0px 20px 15px;
    /*上、左右、下への余白*/
}

#main h2 + p,
#main h3 + p {
    margin-top: -10px;
}

#main section + section {
    margin-top: 50px;
}

/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    /*上下ボックス間の余白*/
    padding: 20px;
    /*ボックス内の余白。ここを変更する際は、下の「#main .list a」のpaddingとmarginの数字も合わせる。*/
    border: 1px solid #dcdcdc;
    /*枠線の幅、線種、色*/
    background: #fff;
    /*背景色（古いブラウザ用）*/
    background: linear-gradient(#FFF, #e3e3e3);
    /*背景グラデーション*/
    box-shadow: 0px 0px 0px 1px #fff inset;
    /*内側の影。右へ・下へ・ぼかし幅・距離・色を設定*/
    color: #333;
    /*文字色*/
}

/*ボックス内のh4タグ設定*/
#main .list h4 {
    padding-left: 10px;
    /*枠線とテキストとの間の余白*/
    border-bottom: 1px solid #CCC;
    /*下側の線の幅、線種、色*/
    border-left: 3px solid #49b1cb;
    /*左側の線の幅、線種、色*/
    margin-bottom: 0.5em;
    color: #193c45;
    /*文字色*/
    font-size: 18px
}



/*ボックス内のp(段落)タグ設定*/
#main .list p {
    padding: 0px;
}

/*ボックス内の画像*/
#main .list figure {
    float: left;
    /*左に回り込み*/
    width: 50%;
    /*画像幅*/
    background: #FFF;
    /*画像の背景色。ここでは枠線と画像の間の色になります。*/
    padding: 1%;
    /*余白。ここに上の行で設定した背景色が出ます。*/
    border: 1px solid #CCC;
    /*枠線の幅、線種、色*/
    margin-right: 10px;
    /*画像右側に空ける余白*/
    margin-right: 10px;
}
#main .list figure .figure_text {
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
}
@media screen and (max-width:800px) {
    #main .list figure {
        float: none;
        /*左に回り込み*/
        width: 97.2%;
        /*画像幅*/
        background: #FFF;
        /*画像の背景色。ここでは枠線と画像の間の色になります。*/
        padding: 1%;
        /*余白。ここに上の行で設定した背景色が出ます。*/
        border: 1px solid #CCC;
        /*枠線の幅、線種、色*/
        margin-right: 0px;
        /*画像右側に空ける余白*/
    }
#main .list figure .figure_text {
    margin-top: 10px;
}
}


/*SERVICEページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
    font-size: 16px;
    /*文字サイズ*/
    width: 47%;
    /*テーブル幅*/
    margin-bottom: 5px;
    background: #fff;
    /*背景色*/
}

#main .list table,
#main .list table td,
#main .list table th {
    border: 1px solid #ccc;
    /*枠線の幅、線種、色*/
}

#main .list table td,
#main .list table th {
    padding: 2%;
    /*テーブル内の余白*/
}

/*色のついた見出しブロック*/
#main .list table th {
    width: 20%;
    /*幅*/
    text-align: center;
    /*文字をセンタリング*/
    font-weight: normal;
    /*デフォルトの太字を標準にする設定*/
    background: #edf0f5;
    /*背景色*/
}

/*説明用ブロック*/
#main .list table td {
    width: 30%;
    /*幅*/
}

@media screen and (max-width:1400px) {
    #main .list table {
        width: 46.5%;

    }
}

@media screen and (max-width:1150px) {

    #main .list table td,
    #main .list table th {
        padding: 1%;
        /*テーブル内の余白*/
    }

}

@media screen and (max-width:970px) {
    #main .list table {
        width: 46%;

    }
}

@media screen and (max-width:800px) {
    #main .list table {
        width: 100%;

    }
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
    clear: both;
    text-align: center;
    padding: 10px 0;
    color: #fff;
}

/*リンク*/
footer a {
    text-decoration: none;
    color: #fff;
}

/*著作*/
footer .pr {
    display: block;
    font-size: 80%;
}



/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
    width: 100%;
    margin: 0 auto 20px;
}

.ta1,
.ta1 td,
.ta1 th {
    border: 1px solid #ccc;
    /*テーブルの枠線の幅、線種、色*/
    padding: 10px 15px;
    /*ボックス内の余白*/
    word-break: break-all;
}

/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
    width: auto;
    text-align: left;
    /*左よせ*/
    background: #eee;
    /*背景色*/
}

/*ta1の左側ボックス*/
.ta1 th {
    width: 140px;
    /*幅*/
    text-align: center;
    /*センタリング*/
    font-weight: normal;
}

/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
    width: 100%;
}


/*ページの上部へ「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body .nav-fix-pos-pagetop a {
    display: none;
}

body.is-fixed-pagetop .nav-fix-pos-pagetop a {
    display: block;
    text-decoration: none;
    z-index: 100;
    text-align: center;
    width: 50px;
    /*幅*/
    line-height: 50px;
    /*高さ*/
    position: fixed;
    bottom: 100px;
    /*下から１００pxの場所に配置*/
    right: 5%;
    /*右から5%の場所に配置*/
    background: #000;
    /*背景色（古いブラウザ用）*/
    background: rgba(0, 0, 0, 0.6);
    /*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
    color: #fff;
    /*文字色*/
    border: 1px solid #fff;
    /*枠線の幅、線種、色*/
    animation-name: scroll;
    /*上のアニメーションで指定しているkeyframesの名前（scroll）*/
    animation-duration: 1S;
    /*アニメーションの実行時間*/
    animation-fill-mode: forwards;
    /*アニメーションの完了後、最後のキーフレームを維持する*/
}

/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
    background: #999;
    /*背景色*/
}



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

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

.mb30 {
    margin-bottom: 30px !important;
}

.p0 {
    padding: 0 !important;
}

.clear {
    clear: both;
}

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

.color1,
.color1 a {
    color: #F00;
}

.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: 20px;
}

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

.sh {
    display: none;
}

.fr {
    float: right;
    width: 48%
}

.fl {
    float: left;
    width: 48%
}

@media screen and (max-width:1150px) {
    .fr {
        float: none;
        width: 100%
    }

    .fl {
        float: none;
        width: 100%
    }
}

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

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

    /*ロゴ画像*/
    header #logo img {
        width: 250px;
        /*画像幅*/
        top: 43px;
        /*ヘッダーの上から43pxの場所に配置*/
    }

    /*電話番号ボックスの設定*/
    header #tel {
        display: none;
        /*画面が小さくなるので、非表示にする。*/
    }

    /*メインメニュー
---------------------------------------------------------------------------*/
    /*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
    @keyframes menu1 {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /*スマホ用メニューブロック*/
    #menubar-s {
        display: block;
        overflow: hidden;
        position: absolute;
        top: 124px;
        /*上から124pxの場所に配置*/
        border-top: 1px solid #fff;
        /*上の線の幅、線種、色*/
        width: 94%;
        z-index: 10;
        animation-name: menu1;
        /*上のkeyframesの名前*/
        animation-duration: 0.5S;
        /*アニメーションの実行時間。0.5秒。*/
        animation-fill-mode: both;
        /*アニメーションの完了後、最後のキーフレームを維持する*/
    }

    /*メニュー１個あたりの設定*/
    #menubar-s li a {
        display: block;
        text-decoration: none;
        padding: 15px 10px 15px 20px;
        /*上、右、下、左へのメニュー内の余白*/
        border-bottom: 1px solid #fff;
        /*下の線の幅、線種、色*/
        background: #000;
        /*背景色（古い端末用に念のため）*/
        background: rgba(0, 0, 0, 0.9);
        /*背景色。0,0,0は黒の事で0.9は透明度90%の事。*/
        color: #fff;
        /*文字色*/
        font-size: 20px;
        /*文字サイズ*/
    }

    /*PC用メニューを非表示にする*/
    #menubar {
        display: none;
    }

    /*３本バーアイコン設定
---------------------------------------------------------------------------*/
    /*３本バーブロック*/
    #menubar_hdr {
        display: block;
        position: absolute;
        top: 36px;
        /*上から36pxの場所に配置*/
        right: 3%;
        /*右から3%の場所に配置*/
        border: 1px solid #000;
        /*枠線の幅、線種、色*/
    }

    /*アイコン共通設定*/
    #menubar_hdr.close,
    #menubar_hdr.open {
        width: 50px;
        /*幅*/
        height: 50px;
        /*高さ*/
    }

    /*三本バーアイコン*/
    #menubar_hdr.close {
        background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
    }

    /*閉じるアイコン*/
    #menubar_hdr.open {
        background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
    }

    /*main,subコンテンツ
---------------------------------------------------------------------------*/
    #main,
    #sub {
        float: none;
        width: auto;
    }

    /*その他
---------------------------------------------------------------------------*/
    body.s-n #sub,
    body.s-n #footermenu,
    .m-n {
        display: none;
    }

}



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

    /*全体の設定
---------------------------------------------------------------------------*/
    body {
        font-size: 12px;
        /*文字サイズ*/
        line-height: 1.5;
        /*行間*/
    }

    /*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
    /*ロゴ画像*/
    header #logo img {
        width: 230px;
        /*画像幅*/
    }

    /*mainコンテンツ
---------------------------------------------------------------------------*/
    #main h2 {
        font-size: 14px;
        padding-left: 0px;
        padding-right: 10px;
    }

    #main h3 {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /*段落タグ設定*/
    #main p {
        padding: 0px 10px 15px;
        /*上、左右、下への余白*/
    }

    /*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
    /*各ボックスの設定*/
    #main .list {
        padding: 10px;
    }

    #main .list a {
        padding: 10px;
        margin: -10px;
    }

    /*SERVICEページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
    #main .list table {
        font-size: 10px;
        /*文字サイズ*/
    }

    /*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
    /*メニュー１個ごとの設定*/
    #sub ul.submenu li a {
        padding: 10px;
        /*ボックス内の余白*/
    }

    /*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
    /*ブロック全体の設定*/
    #new dl {
        padding-left: 10px;
        padding-right: 10px;
    }

    /*テーブル（ta1）
---------------------------------------------------------------------------*/
    /*ta1設定*/
    .ta1,
    .ta1 td,
    .ta1 th {
        padding: 5px;
        /*ボックス内の余白*/
    }

    /*ta1の左側ボックス*/
    .ta1 th {
        width: 85px;
    }

    /*その他
---------------------------------------------------------------------------*/
    .ws,
    .wl {
        width: 94%;
    }

    .big1 {
        font-size: 16px;
    }

    img.fr,
    img.fl {
        float: none;
        margin: 0;
        width: 100%;
    }

    .sh {
        display: block;
    }

    .pc {
        display: none;
    }

}

.ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 480px) {
    .sp_br {
        display: none;
    }
}

/* カウンターの設置 */
.counter {
    position: fixed;
    right: 0;
    bottom: 10px;
    width: 70px;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 10px 0;
    box-sizing: border-box;
    border: 2px solid #50a0cc;
}
.counter_h{
    color: #50a0cc;
    font-weight: 600;
    font-size: 0.8em;
}