﻿/* -------------
    共通CSS
   ------------- */

@charset "UTF-8";

html {
    height: 100%;
}

body {
    background: url(../img/background/bg.png);
    font-size: 16px;
}

/* --------------------------------------------------
    ヘッダー
   --------------------------------------------------*/

.cont_header {
    background: url(../img/img/headtop.jpg);
    height: 230px;
    padding: 10px 0;
    position: relative;
}

h1 {
    color: #002E05;
    font-size: 48px;
    left: 50%;
    position: absolute;
    top: 70%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#gMenu-pc {
    left: 0;
    position: fixed;
    top: 10px;
    transition: .5s;
    width: 100%;
    z-index: 3;
}

#gMenu-sp {
    display: none;
}

/* --------------------------------------------------
    ナビゲーションメニュー
   --------------------------------------------------*/
.menu {
    background: #fff; /* ナビの背景色 */
    border-radius: 20px;
    box-shadow: 0 0 6px #cecece;
    height: 100px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    text-align: center;
    width: 100%;
}

    .gMenu_list > li {
        float: left;
        height: 100px;
        line-height: 55px;
    }

        .gMenu_list > li a {
            color: #111; /* ナビのリンク色 */
            display: block;
        }

    .gMenu_link-logout:hover {
        background: #ECFFEE; /* 1階層目ホバー時 */
        transition: all .5s;
        -webkit-transition: all .5s;
    }

.gMenu_link-logout {
    border-radius: 0 20px 20px 0;
}

    .gMenu_link-logout:hover {
        border-radius: 0 20px 20px 0;
    }

.gMenu_size {
    width: 25%; /* グローバルナビ4つの場合 */
}

.gMenu_size-staff {
    width: 20%; /* グローバルナビ5つの場合 */
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

    .menu > li.gMenu_link-level1 {
        position: relative;
    }

/* ロゴスタイル */
.cont_logo-size90 {
    height: 90px;
    margin-top: 5px;
}

.cont_logo-size120 {
    height: 120px;
}

.cont_logo-size200 {
    height: 200px;
}

/* アイコンスタイル */
.cont_icon-size15 {
    height: 15px;
    width: 15px;
}

.cont_icon-size18 {
    height: 18px;
    width: 18px;
}

.cont_icon-size25 {
    height: 25px;
    width: 25px;
}

.cont_icon-size30 {
    height: 30px;
    width: 30px;
}

.cont_icon-size32 {
    height: 32px;
    width: 32px;
}

.cont_icon-size40 {
    height: 40px;
    width: 40px;
}

.cont_icon-size50 {
    height: 50px;
    width: 50px;
}

.gMenu_icon-ja {
    height: 50px;
    width: 87px;
}

/* --------------------------------------------------
    コンテンツ
   --------------------------------------------------*/
.contents {
    background: #FFF;
    margin: 30px auto 40px auto;
    max-width: 1300px;
    padding: 40px;
    text-align: center;
}

    .contents > h2 {
        font-size: 22px;
        text-decoration: underline;
    }

    .contents > p {
        margin: 0px auto 30px;
    }

.cont_txt-topM {
    margin-top: 30px !important;
}

/* メッセージのスタイル */
.error,
.compMsg {
    /*margin: 0px auto 10px auto;*/
    white-space: pre-wrap;
}

/* エラー（赤文字） */
.error {
    color: #ff0000;
}

/* --------------------------------------------------
    共通スタイル
   --------------------------------------------------*/

/* テキスト個別スタイル */
/* 縦中央揃え */
.cont_txt-middle {
    vertical-align: middle;
}

/* 横中央揃え */
.cont_txt-center {
    text-align: center !important;
}

/* 左寄せ */
.cont_txt-left {
    text-align: left;
}


/* 赤色文字 */
.cont_txt-red {
    color: red;
}

/* 青色文字 */
.cont_txt-blue {
    color: #0026ff;
}

/* リンク（緑文字 */
.linkColor {
    color: #21963B;
}

    .linkColor:hover {
        text-decoration: underline;
    }

/* --------------------------------------------------
    ステップバー
   --------------------------------------------------*/

.temp_proce-sp {
    display: none;
}

.temp_proce-pc {
    display: flex;
    justify-content: center;
}

    .temp_proce-pc .item {
        align-items: center;
        background: #F5F5F5;
        color: #999999;
        justify-content: center;
        line-height: 1.5;
        position: relative;
        text-align: center;
        width: 200px;
    }

        .temp_proce-pc .item:not(:last-child)::before,
        .temp_proce-pc .item::after {
            bottom: 0;
            border: 24px solid transparent;
            border-left: 20px solid #F5F5F5;
            content: '';
            left: 100%;
            margin: auto;
            position: absolute;
            top: 0;
            z-index: 2;
        }

        .temp_proce-pc .item:not(:last-child)::before {
            border-left-color: #FFF;
            margin-left: 1px;
        }

@media screen and (max-width: 767px) {
    .temp_proce-pc .item {
        font-size: 11px;
        line-height: 1.4;
        padding: 10px 0;
    }

        .temp_proce-pc .item:not(:last-child)::before,
        .temp_proce-pc .item:not(:last-child)::after {
            border-width: 25px;
            border-left-width: 12px;
        }
}

/* active */

.temp_proce-pc .item.active {
    background: #00C614;
    color: #FFF;
    z-index: 1;
}

    .temp_proce-pc .item.active:not(:last-child)::after {
        border-left-color: #00C614;
    }

    .temp_proce-pc .item.active:not(:last-child)::before {
        border-left: none;
    }

    .item.active::after {
        border-left: 24px solid #00C614 !important;
    }

.complete {
    background: #ECFFEE !important;
}

.complete::after {
    border-left: 24px solid #ECFFEE !important;
}

/* --------------------------------------------------
    お問い合わせ番号
   --------------------------------------------------*/
.temp_inqNum {
    margin: 0 auto;
    text-align: center;
    width: 400px;
}

.temp_inqNum-inp {
    border: 1px solid #A8A8A8;
    font-size: 18px;
    margin: 0px 0px 5px 0px;
    padding: 10px;
    text-align: center;
}

    .temp_inqNum-inp:hover {
        cursor: pointer;
    }

    .temp_inqNum-inp:focus {
        background: #ECFFEE;
        border: 1px solid #00C614;
    }


/* --------------------------------------------------
    ボックスデザイン
   --------------------------------------------------*/
.cont_box {
    border: solid 3px #56bf56;
    border-radius: 8px;
    margin: 2em auto 0 auto;
    padding: 20px 30px;
    position: relative;
    text-align: left;
    width: 900px;
}

.cont_box-title {
    background: #FFF;
    color: #56bf56;
    display: inline-block;
    font-size: 19px;
    font-weight: bold;
    line-height: 1;
    padding: 0 9px;
    position: absolute;
    top: -13px;
}

.cont_box p {
    margin: 0;
    padding-left: 1em;
    text-indent: -1em;
}

.cont_box li {
    list-style: disc;
    margin: 5px 0 5px 20px;
}

/* --------------------------------------------------
    利用規約への同意
   --------------------------------------------------*/
.cont_checkBox-txt {
    margin: 0 10px;
    vertical-align: middle;
}

.cont_checkBox-txt:hover {
    cursor: pointer;
}

#check:disabled {
    background: #ECFFEE; /* ボタン色を非活性色にする */
    color: #A8A8A8;
}

#check:enabled {
    background: #56BF56; /* ボタン色を活性色にする */
    color: #FFF;
}

/* --------------------------------------------------
    複数コンテンツのスタイル
   --------------------------------------------------*/
/* 各コンテンツボックス */
.contents_multi {
    background: #FFF;
    margin: 30px auto;
    max-width: 1300px;
    padding: 30px;
}

/* 説明文 */
.contMult_txt {
    margin: 0 0 20px 200px;
    text-align: left;
}

.contMult_txt.-center {
    margin: 20px auto 0 !important;
    text-align: center !important;
}

    /* --------------------------------------------------
    ページトップへのリンク
   --------------------------------------------------*/
    #pageTop {
    background: url(../img/img/top1.png);
    background-size: 80px 137px;
    bottom: 10px;
    height: 137px;
    position: fixed;
    right: 10px;
    width: 80px;
    z-index: 3;
}

    #pageTop:hover {
        background: url(../img/img/top2.png);
        background-size: 80px 137px;
    }

/* --------------------------------------------------
    フッター 
   --------------------------------------------------*/
footer {
    background: url(../img/img/footer.jpg);
    color: #FFF;
    height: 242px;
    padding: 20px 0;
    text-align: center;
}

.cont_footer-pc ul {
    display: inline-block;
    margin: 40px 0 0 30px;
    text-align: left;
    vertical-align: top;
}

    .cont_footer-pc ul li {
        margin: 0 0 10px 0;
    }

        .cont_footer-pc ul li a:hover {
            text-decoration: underline;
        }
