@charset "UTF-8";
/* CSS Document */
/*===================================================
    土台作成用CSS
===================================================*/
/*//////////////////////////////////////////////////
    Base set
///////////////////////////////////////////////////*/

* {
            box-sizing: border-box;
        -ms-box-sizing: border-box;
       -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html, body {
    width: 100%;
    min-width: 1020px;
    height: 100%;
}

body {
    font-family: Hiragino Kaku Gothic Pro,"ヒラギノ角ゴシック Pro", Osaka,Meiryo,"メイリオ",MS PGothic,"ＭＳ Ｐゴシック",sans-serif;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
    text-align: left;
    color: #000000;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    /* -webkit-text-stroke: 0.1px; */
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

/* --------------------------------------------------------
    clearfix
-------------------------------------------------------- */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

/* --------------------------------------------------
    リンク
-------------------------------------------------- */
a {
    color: #000000;
    text-decoration: none;
}

.linkBlank {
    display: inline-block;
    padding-right: 15px;
    color: #004896;
    background: url("../image/common/blank_icon.png") right center no-repeat;
    background-size: 10px auto;
}
/* --------------------------------------------------
    画像
-------------------------------------------------- */
img {
    width: 100%;
    vertical-align: middle;
}

/* --------------------------------------------------
    マウスオーバーPCのみ
-------------------------------------------------- */
@media (min-width: 641px) {

    #pagetop:hover {
        opacity: 0.7;
        -ms-filter: "alpha(opacity=70)";
    }

}
/* --------------------------------------------------
    改行
-------------------------------------------------- */
.spBreak {
    display: none;
}
/*//////////////////////////////////////////////////
    Base layout
///////////////////////////////////////////////////*/
/* --------------------------------------------------
    ヘッダー(header)
-------------------------------------------------- */
header {
    padding: 0 10px;
}
header .headTop {
    max-width: 1000px;
    margin: 0 auto;
}
    header .headTop p {
        line-height: 48px;
    }
        header .headTop p img {
            display: inline-block;
            width: 87px;
            margin-right: 20px;
        }
        header .headTop p span {
            display: inline-block;
            width: 260px;
            font-family: 'Noto Sans Japanese';
            font-weight: 500;
            font-size: 12px;
            color: #ffffff;
            text-align: center;
            line-height: 24px;
            letter-spacing: 0.1em;
            border-radius: 20px;
            background: #004896;
        }
/* --------------------------------------------------
    flow
-------------------------------------------------- */
#flowList {
    padding: 10px;
    background: url("../image/common/pattern_paw.png") #e5f2fb;
}
    #flowList ul {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }
    #flowList ul:before {
        content: '';
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        height: 4px;
        z-index: 1;
        background: #a8dcff;
    }
        #flowList ul li {
            position: relative;
            float: left;
            width: 13%;
            padding: 10px 0;
            line-height: 1.5;
            text-align: center;
            z-index: 2;
            border-radius: 6px;
            background: #ffffff;
        }
        #flowList ul li + li {
            margin-left: 2%;
        }
            #flowList ul li p em {
                display: inline-block;
                padding-left: 20px;
                font-family: 'Noto Sans Japanese';
                font-weight: 500;
                color: #004896;
                background: url("../image/common/flow_paw.png") left center no-repeat;
                background-size: 16px auto;
            }
            #flowList ul li p span {
                display: block;
                font-size: 10px;
                font-weight: bold;
            }

@media only screen and (min-width : 641px) {

    #flowList ul li.current {
        width: 25%;
        background-image: url("../image/step/flow_current_cat.png"),url("../image/step/flow_current_dog.png");
        background-repeat: no-repeat;
        background-position: left 10px bottom, right 10px bottom;
        background-color: #a8dcff;
    }

}

/* --------------------------------------------------
    モーダルウインドウ
-------------------------------------------------- */
.modalOverlay {
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.modalContent {
    display: none;
    width: 100%;
    height: 90%;
    overflow: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    margin: auto;
    padding: 70px 40px 30px;
    max-width:640px;
    border-radius: 6px;
    background: #FFFFFF;
    z-index: 10000;
}
.modalContent .btnSubmit {
    width: 240px;
    height: 54px;
    margin: 0 auto 20px;
    line-height: 54px;
}
.modalContent #btnCancel {
    position: relative;
    width: 110px;
    height: 36px;
    padding-left: 1.4em;
    text-align: center;
    font-size: 12px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    line-height: 36px;
    border-radius: 40px;
    cursor: pointer;
    transition:0.5s;
    background: #EEEEEE;
}
.modalContent #btnCancel:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 18px;
    width: 6px;
    height: 11px;
    background: url("../image/step/arrow_left.png") center no-repeat;
    background-size: 6px auto;
    transition:0.5s;
}
@media only screen and (min-width : 641px) {

    .modalContent #btnCancel:hover {
        opacity: 0.6;
    }
    .modalContent #btnCancel:hover:before {
       left: 15px;
    }

}
.modalContent #btnClose {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
/* --------------------------------------------------
    フッター(footer)
-------------------------------------------------- */
footer {
    width: 100%;
    padding: 25px 10px 20px;
    text-align: center;
    background: #fafafa;
}
    footer .logo {
        display: inline-block;
        margin-bottom: 12px;
    }
        footer .logo img {
            display: inline-block;
            width: 87px;
            line-height: 1;
        }
        footer .logo span {
            display: block;
            width: 300px;
            margin-top: 10px;
            font-family: 'Noto Sans Japanese';
            font-weight: 500;
            color: #ffffff;
            text-align: center;
            line-height: 28px;
            letter-spacing: 0.15em;
            border-radius: 20px;
            background: #004896;
        }
    footer .copy {
        font-size: 10px;
    }

/*//////////////////////////////////////////////////
    TOP
///////////////////////////////////////////////////*/
/* --------------------------------------------------
    kv
-------------------------------------------------- */
#top #kv {
    margin-bottom: 100px;
    height: 520px;
    background: url("../image/top/pc/kv_bg.png") center no-repeat;
    background-size: cover;
}
#top #kv > div {
    position: relative;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    padding: 100px 35px 0;
     background: url("../image/top/pc/kv_shop.png") right bottom no-repeat;
}
    #top #kv .kvBox {
        width: 360px;
        text-align: center;
    }
        #top #kv .kvBox h1 {
            font-family: 'Noto Sans Japanese';
            font-weight: 700;
            font-size: 48px;
            color: #004896;
            letter-spacing: 0.05em;
        }
        #top #kv .kvBox h1 + p {
            width: 300px;
            margin: 30px auto 0;
            line-height: 50px;
            border-radius: 40px;
            background: url("../image/common/arrow_down_blue.png") 50px center no-repeat #ffffff;
            background-size: 10px auto;
        }
            #top #kv .kvBox h1 + p a {
                display: block;
                font-size: 16px;
                font-weight: bold;
                color: #004896;
                text-indent: 1em;
            }
    #top #kv .dogcat {
        position: absolute;
        left: 115px;
        bottom: -30px;
        width: 202px;
        text-align: center;
    }
        #top #kv .dogcat p {
            display: inline-block;
            margin-bottom: 20px;
            padding: 0 20px;
            font-weight: bold;
            color: #004896;
            background: url("../image/top/pc/kv_slash_01.png") left center no-repeat,url("../image/top/pc/kv_slash_02.png") right center no-repeat;
        }
/* --------------------------------------------------
    メイン
-------------------------------------------------- */
#top article > section {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 10px;
}
/* --------------------------------------------------
    ご予約までの流れ
-------------------------------------------------- */
#top #flow {
    margin-bottom: 100px;
    text-align: center;
}
#top #flow > div {
    position: relative;
    margin-bottom: 20px;
    padding: 50px 10px 40px;
    background: #fafafa;
}
    #top #flow h2 {
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 24px;
        color: #004896;
    }
    #top #flow h2 + p {
        margin-bottom: 40px;
        font-size: 16px;
    }

#top #flow .stepList {
    max-width: 760px;
    margin: 0 auto;
}
    #top #flow .stepList dl dt {
        margin-bottom: 8px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 16px;
        color: #004896;
        line-height: 28px;
        border-radius: 2px;
        background: #a8dcff;
    }
    #top #flow .stepList dl dd p {
        margin-top: 10px;
        text-align: left;
    }
        #top #flow .stepList dl dd span {
            font-size: 12px;
        }
@media only screen and (min-width : 641px) {

    #top #flow .stepList li {
        float: left;
        width: 240px;
    }
    #top #flow .stepList li + li {
        position: relative;
        margin-left: 20px;
    }
    #top #flow .stepList li + li:before {
        content: '';
        position: absolute;
        top: 12px;
        left: -20px;
        width: 20px;
        height: 4px;
        background: #a8dcff;
    }

}
#top #flow aside {
    font-size: 12px;
    text-align: right;
}
    #top #flow aside p {
        position: relative;
        display: inline-block;
        padding-left: 1em;
        width: 100%;
        text-align: left;
    }
    #top #flow aside p:before {
        content: '※';
        position: absolute;
        top: 0;
        left: 0;
    }
/* --------------------------------------------------
    店舗リストから店舗を選
-------------------------------------------------- */
#top #shopList {
    margin-bottom: 60px;
}
    #top #shopList h2 {
        margin-bottom: 20px;
        padding-left: 35px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 18px;
        background: url("../image/top/icon_map.png") left 2px no-repeat;
        background-size: 18px auto;
    }
#top #shopList #areaSelect {
    margin-bottom: 40px;
    padding: 10px 30px;
    border-radius: 6px;
    background: url("../image/common/pattern_paw.png") #f7f4e7;
}
#top #shopList #areaSelect ul {
    margin: 0 0 0 -25px;
}
    #top #shopList #areaSelect ul li {
        display: inline-block;
        margin: 0 0 0 25px;
        padding: 10px 0;
    }
    #top #shopList #areaSelect ul li:first-child {
        width: 100%;
        border-bottom: 1px solid #cfcfce;
    }
    #top #shopList #areaSelect ul li > label {
        display: inline-block;
        width: 28px;
        height: 28px;
        margin-right: 5px;
        vertical-align: middle;
        background: url("../image/common/check_off.png") left center no-repeat;
        background-size: 28px auto;
    }
    #top #shopList #areaSelect ul li > label.checked {
        background: url("../image/common/check_on.png") left center no-repeat;
        background-size: 28px auto;
    }
    #top #shopList #areaSelect ul li input[type="radio"],
    #top #shopList #areaSelect ul li input[type="checkbox"] {
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }
    #top #shopList #areaSelect ul li > span label {
        cursor: pointer;
    }
/* --------------------------------------------------
    店舗情報一覧
-------------------------------------------------- */
#top #shopList h3 {
    margin-bottom: 40px;
    font-family: 'Noto Sans Japanese';
    font-weight: 500;
    font-size: 28px;
    color: #004896;
}
#top #shopList #areaBox > section + section {
    margin-top: 60px;
}
#top #shopList #areaBox > section section + section {
   margin-top: 30px;
}
#top #shopList h4 {
    padding-bottom:10px;
    font-family: 'Noto Sans Japanese';
    font-weight: 500;
    font-size: 20px;
    border-bottom: 1px solid #cccccc;
}
#top #shopList h4 + a {
    display: block;
    transition:0.6s;
}

@media only screen and (min-width : 641px) {
    #top #shopList h4 + a:hover {
        opacity: 0.6;
    }
}

#top #shopList #areaBox dl {
    padding: 20px;
    border-bottom: 1px solid #cccccc;
    background: #fafafa;
}
    #top #shopList #areaBox dl dt {
        margin-bottom: 10px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 16px;
        color: #004896;
    }
        .pcHvr #top #shopList #areaBox dl dt a:hover {
            text-decoration: underline;
        }
    #top #shopList #areaBox dl dd {
        overflow: hidden;
    }
        #top #shopList #areaBox dl dd > p {
            float: left;
            width: 45%;
            font-family: 'Noto Sans Japanese';
            font-weight: 500;
        }
        #top #shopList #areaBox dl dd > ul {
            float: right;
            width: 50%;
            text-align: right;
        }
            #top #shopList #areaBox dl dd > ul > li {
                display: inline-block;
                width: 35%;
            }
            #top #shopList #areaBox dl dd > ul > li:nth-child(2) {
                width: 30%;
            }
            #top #shopList #areaBox dl dd > ul > li span {
                display: inline-block;
                margin-right: 10px;
                color: #8B909A;
                font-weight: bold;
            }
                #top #shopList #areaBox dl dd > ul > li span img {
                    width: 18px;
                }

/*//////////////////////////////////////////////////
    予約画面
///////////////////////////////////////////////////*/
/* --------------------------------------------------
    メイン
-------------------------------------------------- */
/*article*/
.reserve {
    max-width: 1020px;
    margin: 0 auto;
    padding: 40px 10px;
}
    .reserve h1 {
        margin-bottom: 20px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 18px;
    }
        .reserve h1 > .attentionMessage {
            font-size: 18px;
            color: #ff0000;
        }
/*お申込み内容*/
.applyBox {
    margin-bottom: 20px;
    padding: 40px;
    border-radius: 4px;
    background: url("../image/common/pattern_paw.png") #f4f4f4;
}
    .applyBox h2 {
        margin-bottom: 10px;
        padding-left: 42px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 18px;
        background: url("../image/step/check_icon.png") left center no-repeat;
        background-size: 26px auto;
    }
    .applyBox table {
        width: 100%;
        border-top: 1px solid #cccccc;
    }
        .applyBox table tr {
            border-bottom: 1px solid #cccccc;
        }
        .applyBox table th,
        .applyBox table td {
            padding: 10px 20px;
            vertical-align: middle;
        }
        .applyBox table th {
            width: 120px;
            color: #004896;
            font-weight: bold;
            background: #e5f2fb;
        }
        .applyBox table td {
            background: #ffffff;
        }
            .applyBox table td span {
                display: inline-block;
                margin-left: 20px;
            }
/*青背景の注意文言*/
.cautionBlue {
    margin-bottom: 40px;
    padding: 20px 10px;
    text-align: center;
    background: url("../image/step/pattern_plus.png") #e5f2fb;
    background-size: 16px auto;
}
    .cautionBlue aside p {
        position: relative;
        display: inline-block;
        padding-left: 1em;
        text-align: left;
    }
    .cautionBlue aside p:before {
        content: '※';
        position: absolute;
        top: 0;
        left: 0;
    }
/*グレー背景の注意文言*/
.cautionGrey {
    margin-bottom: 20px;
    padding: 20px 10px;
    text-align: center;
    background: #f5f5f5;
}
/* --------------------------------------------------
    入力
-------------------------------------------------- */
/*ラジオボタン*/
.radioBox li {
    position: relative;
    font-weight: bold;
    background: #ffffff;
}

@media only screen and (min-width : 641px) {

    .radioBox li {
        width: 340px;
    }

}

.radioBox input[type="radio"] {
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
.radioBox label,
.radioBox dl {
    display: block;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #cccccc;
}

/*テキストボックス・メール・電話*/
.formBox input[type="text"],
.formBox input[type="email"],
.formBox input[type="tel"] {
    width: 100%;
    height: 44px;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background: #ffffff;
    -webkit-appearance:none;
    -moz-appearance: none;
    appearance: none;
}
.formBox input[type="text"] {
    max-width: 340px;
}
.formBox input[type="email"] {
     max-width: 600px;
}
/*テキストエリア*/
.formBox textarea {
    display: inline-block;
    width: 100%;
    height: 200px;
    padding:10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    background: #ffffff;
    resize: none;
}
.formBox input[type="text"]:focus,
.formBox input[type="email"]:focus,
.formBox input[type="tel"]:focus,
.formBox textarea:focus {
    outline: 0;
    border :2px solid #90CEFD;
}

::-webkit-input-placeholder {
    color: #cccccc;
}
:-moz-placeholder {
    color: #cccccc;
}
::-moz-placeholder {
    color: #cccccc;
}
:-ms-input-placeholder {
    color: #cccccc;
}

/* 次へ進む
--------------------------------------*/
.btnSubmit {
    width: 400px;
    height: 60px;
    margin: 0 auto 40px;
    line-height: 60px;
    text-align: center;
}

.btnSubmit > *:before {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 6px;
    height: 11px;
    margin: auto 0;
    background: url("../image/step/arrow_white.png") center no-repeat;
    background-size: 6px auto;
    transition:0.5s;
}
    .btnSubmit input[type="submit"],
    .btnSubmit button {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        font-size: 14px;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        color: #FFFFFF;
        background: #014793;
        transition:0.5s;
        -webkit-appearance:none;
        -moz-appearance: none;
        appearance: none;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: subpixel-antialiased;
    }
    .btnSubmit input[type="submit"][disabled],
    .btnSubmit button[disabled] {
        opacity: 0.4;
        cursor: default;
    }

@media only screen and (min-width : 641px) {

    .btnSubmit > *:hover {
        opacity: 0.6;
    }
    .btnSubmit > *:hover:before {
       right: 15px;
       opacity: 0.6;
    }
    .btnSubmit > *[disabled]:hover:before {
        right: 20px;
        opacity: 1;
    }

}

/* 前へ戻る
--------------------------------------*/
.btnBack {
    position: relative;
    width: 180px;
    height: 40px;
    margin: 20px 0 0;
    line-height: 40px;
    border-radius: 40px;
    cursor: pointer;
    transition:0.5s;
}

.btnBack:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 20px;
    width: 6px;
    height: 11px;
    background: url("../image/step/arrow_left.png") center no-repeat;
    background-size: 6px auto;
    transition:0.5s;
}

    .btnBack input[type="button"] {
        display: block;
        width: 100%;
        height: 100%;
        padding-left: 1em;
        text-align: center;
        font-size: 14px;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        background: #EEEEEE;
        -webkit-appearance:none;
        -moz-appearance: none;
        appearance: none;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: subpixel-antialiased;
    }

@media only screen and (min-width : 641px) {

    .btnBack:hover {
        opacity: 0.6;
    }
    .btnBack:hover:before {
       left: 15px;
    }

}

/*エラー*/
.formBox input.errInput {
    border: 1px solid #ff0000 !important;
    background: #ffe5e5 !important;
}
.formBox .selectBox.errInput {
    border: 1px solid #ff0000 !important;
    background: url("../image/step/icon_arrow_select.png") 96% center no-repeat #ffe5e5 !important;
    background-size: 12px auto !important;
}
.formBox .errMsg {
    font-size: 14px !important;
    font-weight: bold;
    color: #ff0000;
}
.checkBox span.errMsg {
    padding-left: 0 !important;
    font-size: 14px !important;
    font-weight: bold;
    color: #ff0000;
}

/* --------------------------------------------------
    STEP1
-------------------------------------------------- */
#step1 {
    min-height: 100vh;
}
#step1 .wrap {
    height: 100%;
}
#step1 .reserve {
    min-height: calc(100% - 256px);
}
#step1 .reserve .selectForm {
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
    #step1 .reserve .selectForm > dt {
        margin-bottom: 10px;
        padding: 5px 10px;
        background: #f4f4f4;
    }
    #step1 .reserve .selectForm > dt + dd {
        padding: 20px 10px;
        text-align: center;
        background: #f4f4f4;
    }
    #step1 .reserve .selectForm > dt + dd .radioBox input[type="radio"]:checked + label,
    #step1 .reserve .selectForm > dt + dd .radioBox input[type="radio"]:checked + dl {
        border: 1px solid #a8dcff;
        background: #a8dcff;
    }

@media only screen and (min-width : 641px) {

    /*お客様選択*/
    #step1 .reserve .selectForm > dt + dd .radioBox li {
        display: inline-block;
        line-height: 60px;
    }
    #step1 .reserve .selectForm > dt + dd .radioBox li + li {
        margin-left: 35px;
    }
    /*カテゴリー選択*/
    #step1 .reserve .selectForm .category.show {
        display: block;
    }
    #step1 .reserve .selectForm .category > dl {
        display: table;
        width: 100%;
        border-bottom: 1px solid #cccccc;
    }
    #step1 .reserve .selectForm .category > dl:first-child {
        border-top: 1px solid #cccccc;
    }
        #step1 .reserve .selectForm .category > dl > dt {
            display: table-cell;
            width: 180px;
            font-weight: bold;
            text-align: center;
            vertical-align: middle;
            background: url("../image/common/pattern_paw.png") #f4f4f4;
        }
        #step1 .reserve .selectForm .category > dl > dd {
            display: table-cell;
            padding: 10px;
            vertical-align: middle;
        }
        #step1 .reserve .selectForm .category .radioBox li {
            display: inline-block;
            width: 260px;
            vertical-align: middle;
        }
        /*来店予約*/
        #step1 .reserve .selectForm .category .radioBox .radioComingReservation {
            text-align: center;
            line-height: 100px;
            text-indent: 2.5em;
        }
            #step1 .reserve .selectForm .category .radioBox .radioComingReservation label {
                height: 100px;
                background: url("../image/step/shop_icon.png") 40px center no-repeat;
                background-size: 56px auto;
            }
            #step1 .reserve .selectForm .category .radioBox .radioComingReservation input[type="radio"]:checked + label {
                background: url("../image/step/shop_icon.png") 40px center no-repeat #a8dcff;
                background-size: 56px auto;
            }
        /*ご契約済みのお客様*/
        #step1 .reserve .selectForm #coming .radioBox li dl {
            height: 100px;
            padding: 10px 10px 0 100px;
        }
        #step1 .reserve .selectForm #coming .radioBox .radioPetReservation dl {
            background: url("../image/step/dogcat_icon.png") 10px center no-repeat;
            background-size: 80px auto;
        }
        #step1 .reserve .selectForm #coming .radioBox .radioPetReservation input[type="radio"]:checked + dl {
            background: url("../image/step/dogcat_icon.png") 10px center no-repeat #a8dcff;
            background-size: 80px auto;
        }
        #step1 .reserve .selectForm #coming .radioBox .radioOptionReservation dl {
            background: url("../image/step/option_icon.png") 25px center no-repeat;
            background-size: 46px auto;
        }
        #step1 .reserve .selectForm #coming .radioBox .radioOptionReservation input[type="radio"]:checked + dl {
            background: url("../image/step/option_icon.png") 25px center no-repeat #a8dcff;
            background-size: 46px auto;
        }
             #step1 .reserve .selectForm #coming .radioBox li dl dt {
                margin-bottom: 15px;
                font-size: 12px;
                text-align: center;
                line-height: 20px;
                background: #e5f2fb;
             }
                #step1 .reserve .selectForm #coming .radioBox li dl dt span {
                    font-weight: normal;
                }

}

/*イベント参加予約のお客様*/
#step1 .reserve .selectForm #event .radioBox li {
    text-align: center;
}
    #step1 .reserve .selectForm #event .radioBox li dl {
        padding: 10px 10px 15px;
    }
        #step1 .reserve .selectForm #event .radioBox li dl dt {
            margin-bottom: 15px;
            font-size: 12px;
            text-align: center;
            line-height: 20px;
            background: #e5f2fb;
        }
            #step1 .reserve .selectForm #event .radioBox li dl dt span {
                font-weight: normal;
            }

/*モーダルウインドウ*/
#step1 #modalConfirm {
    height: 360px;
}
#step1 #modalConfirm .ttl {
    margin-bottom: 30px;
}
    #step1 #modalConfirm .ttl strong {
        font-family: 'Noto Sans Japanese';
        font-size: 18px;
        font-weight: 500;
    }
#step1 #modalConfirm aside {
    margin-bottom: 30px;
}
    #step1 #modalConfirm aside p {
        position: relative;
        padding-left: 1em;
        font-size: 12px;
    }
    #step1 #modalConfirm aside p:before {
        content: '※';
        position: absolute;
        top: 0;
        left: 0;
    }
    #step1 #modalConfirm aside p.cautionMessage {
        color: #ff0000;
        font-weight: bold;
    }
/*
#step1 footer {
    position: absolute;
    bottom: 0;
}
*/
/* --------------------------------------------------
    STEP2
-------------------------------------------------- */
#step2 .dateBox {
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #d2d2d2;
}
    #step2 .dateBox .head,
    #step2 .dateBox .foot {
        overflow: hidden;
        padding: 10px;
    }
        #step2 .dateBox ul {
            overflow: hidden;
        }
        #step2 .dateBox .prev {
            float: left;
            width: 240px;
            height: 40px;
        }
        #step2 .dateBox .next {
            float: right;
            width: 240px;
            height: 40px;
        }
            #step2 .dateBox ul li {
                width: 100px;
                height: 40px;
            }
            #step2 .dateBox ul li.prevM,
            #step2 .dateBox ul li.prevW,
            #step2 .dateBox ul li.nextM,
            #step2 .dateBox ul li.nextW {
                font-weight: bold;
                line-height: 40px;
                cursor: pointer;
                border-radius: 20px;
                background: #f4f4f4;
                transition: 0.5s;
            }
@media only screen and (min-width : 641px) {

    #step2 .dateBox ul li:hover {
        opacity: 0.6;
    }
    #step2 .dateBox .prev .prevM:hover {
        background-position: left 10px center;
    }
    #step2 .dateBox .prev .prevW:hover {
        background-position: left 15px center;
    }
    #step2 .dateBox .next .nextM:hover {
        background-position: right 10px center;
    }
    #step2 .dateBox .next .nextW:hover {
        background-position: right 15px center;
    }
}
            #step2 .dateBox ul li a {
                display: block;
                border-radius: inherit;
            }
            #step2 .dateBox .prev li {
                float: left;
                margin-right: 20px;
                text-indent: 1em;
            }
            #step2 .dateBox .next li {
                float: right;
                margin-left: 20px;
                text-indent: -1em;
            }
            #step2 .dateBox .prev .prevM {
                background: url("../image/step/arrow_left2.png") left 15px center no-repeat #f4f4f4;
                background-size: 12px auto;
            }
            #step2 .dateBox .prev .prevW {
                background: url("../image/step/arrow_left.png") left 20px center no-repeat #f4f4f4;
                background-size: 6px auto;
            }
            #step2 .dateBox .next .nextM {
                background: url("../image/step/arrow_right2.png") right 15px center no-repeat #f4f4f4;
                background-size: 12px auto;
            }
            #step2 .dateBox .next .nextW {
                background: url("../image/step/arrow_right.png") right 20px center no-repeat #f4f4f4;
                background-size: 6px auto;
            }
    #step2 .dateBox h2 {
        display: inline-block;
        font-weight: bold;
        line-height: 40px;
    }

/*カレンダー*/
#step2 .dateBox table {
    width: 100%;
    font-size: 16px;
    border-top: 1px solid #d2d2d2;
}
    #step2 .dateBox table thead tr {
        border-bottom: 3px solid #d2d2d2;
    }
    #step2 .dateBox table thead th {
        width: 11.5%;
        padding: 10px 0;
        font-size: 14px;
        text-align: center;
        vertical-align: middle;
        border-left: 1px solid #d2d2d2;
    }
    #step2 .dateBox table thead th:first-child {
        width: 20.2%;
        font-size: 16px;
        border-left:none;
    }
    #step2 .dateBox table thead th:nth-child(2) {
        color: #e71f19;
        background: #ffbfbf;
    }
    #step2 .dateBox table thead th:last-child {
        color: #207de5;
        background: #d7ecfd;
    }
        #step2 .dateBox table thead th span {
            font-size: 16px;
        }
    #step2 .dateBox table tbody tr {
        border-bottom: 1px solid #d2d2d2;
    }
    #step2 .dateBox table tbody th {
        padding: 7px 0;
        text-align: center;
        background: #f4f4f4;
    }
    #step2 .dateBox table tbody tr:nth-child(even) th {
        font-weight: bold;
    }
    #step2 .dateBox table tbody td {
        text-align: center;
        border-left: 1px solid #d2d2d2;
    }
    #step2 .dateBox table .impossible,
    #step2 .dateBox table .close {
        background: #f4f4f4;
    }
        #step2 .dateBox table tbody td a {
            display: block;
            padding: 7px 0;
        }
        #step2 .dateBox table .possible img {
            width: 20px;
        }
        #step2 .dateBox table .impossible img {
            width: 14px;
        }
        #step2 .dateBox table .close img {
            width: 14px;
        }

/* --------------------------------------------------
    STEP3
-------------------------------------------------- */
#step3 .privacy {
    margin-bottom: 40px;
}
    #step3 .privacy .policy {
        overflow-y:auto;
        height: 600px;
        margin-bottom: 10px;
        padding: 55px 40px;
        border: 1px solid #cccccc;
    }
    #step3 .privacy h2 {
        margin-bottom: 30px;
        padding: 0 10px 30px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 24px;
        color: #024894;
        text-align: center;
        border-bottom: 1px solid #dddddd;
    }
    #step3 .privacy h2 + p {
        margin-bottom: 60px;
    }

#step3 .privacy section + section {
    margin-top: 60px;
}
#step3 .privacy h3 {
    margin-bottom: 15px;
    font-family: 'Noto Sans Japanese';
    font-weight: 500;
    font-size: 20px;
}
#step3 .privacy p + p,
#step3 .privacy .privacyList {
    margin-top: 1em;
}
#step3 .privacy .privacyList li {
    position: relative;
    padding-left: 30px;
    counter-increment: section;
}
#step3 .privacy .privacyList li:before {
    content: "("counter(section)") ";
    position: absolute;
    left: 0;
}
#step3 .privacy .privacyList li + li {
    margin-top: 0.5em;
}
#step3 .privacy .window dt {
    margin-top: 1em;
    font-size: 16px;
    font-weight: bold;
}

#step3 .agreement {
    padding: 20px 0 15px;
    text-align: center;
    border-radius: 4px;
    background: #f4f4f4;
}
    #step3 .agreement p {
        display: inline-block;
        height: 40px;
    }
    #step3 .agreement .checkBox > label {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: url("../image/step/check_off.png") no-repeat;
        background-size: 40px auto;
    }
    #step3 .agreement .checkBox > label.checked {
        background: url("../image/step/check_on.png") no-repeat;
        background-size: 40px auto;
    }
        #step3 .agreement .checkBox > label input {
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }
    #step3 .agreement span {
        display: inline-block;
        margin-left: 20px;
        font-weight: bold;
        line-height: 40px;
        vertical-align: top;
    }
        #step3 .agreement span label {
            cursor: pointer;
        }
/* --------------------------------------------------
    STEP4
-------------------------------------------------- */
#step4 .formBox {
    padding: 40px 0 20px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
#step4 .formBox + section,
#step4 #seminar + section {
    border-top: none;
}
    #step4 .formBox h2 {
        margin-bottom: 15px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 18px;
        color: #004896;
    }
    #step4 .formBox h2 + p{
        margin-bottom: 10px;
    }
@media only screen and (min-width : 641px) {

    #step4 .formBox > dl {
        display: table;
        width: 100%;
    }
    #step4 .formBox > dl + dl {
        margin-top: 10px;
    }
        #step4 .formBox > dl > dt {
            display: table-cell;
            position: relative;
            width: 24%;
            padding: 20px 10px 20px 60px;
            vertical-align: middle;
            background: url("../image/common/pattern_paw.png") #f4f4f4;
        }
            #step4 .formBox > dl > dt em {
                position: absolute;
                top: calc(50% - 10px);
                left: 10px;
                width: 40px;
                height: 20px;
                font-family: 'Noto Sans Japanese';
                font-weight: 500;
                line-height: 20px;
                font-size: 12px;
                color: #FFFFFF;
                text-align: center;
                vertical-align: middle;
                background: #ff0000;
            }
            #step4 .formBox > dl > dt em.any {
                background: #7d7d7d;
            }
            #step4 .formBox > dl > dt em + span {
                font-family: 'Noto Sans Japanese';
                font-weight: 500;
            }
            #step4 .formBox > dl > dt span + span {
                display: block;
                font-size: 12px;
            }
        #step4 .formBox > dl > dd {
            display: table-cell;
            padding: 0 0 0 10px;
            vertical-align: middle;
        }
            #step4 .formBox > dl > dd aside {
                margin-bottom: 3px;
            }
                #step4 .formBox > dl > dd aside p {
                    font-size: 12px;
                }

}

/*人数*/
#step4 .formBox > dl > dd > p {
    margin-bottom: 3px;
    font-size: 12px;
}
#step4 .formBox .numList {
    overflow: hidden;
}
    #step4 .formBox .numList li {
        float: left;
    }
    #step4 .formBox .numList li + li {
        margin: 0 0 0 30px;
    }
        #step4 .formBox .numList li > * {
            display: inline-block;
        }
        #step4 .formBox .numList li input {
            width: 70px;
            margin: 0 10px;
            text-align: center;
        }

/* セミナー
--------------------------------------*/
#step4 #seminar {
    padding: 40px 0 20px;
    border-bottom: 1px solid #cccccc;
}
    #step4 #seminar h2 {
        margin-bottom: 5px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 18px;
        color: #004896;
    }
    #step4 #seminar h2 + p {
        margin-bottom: 10px;
    }
    #step4 #seminar > dl + dl {
        margin-top: 20px;
    }
        #step4 #seminar > dl > dt {
            padding: 20px 40px;
            font-family: 'Noto Sans Japanese';
            font-weight: 500;
            background: url("../image/common/pattern_paw.png") #f4f4f4;
        }
            #step4 #seminar > dl > dt span {
                display: inline-block;
                margin-right: 22px;
            }
        #step4 #seminar > dl > dd {
            padding: 10px 80px;
            border: 1px solid #cccccc;
        }
    #step4 #seminar ul.checkBox {
        overflow: hidden;
    }
    #step4 #seminar div.checkBox {
        padding: 10px 0;
    }
    #step4 #seminar .checkBox li {
        display: inline-block;
        margin: 0 60px 0 0;
    }
/*    #step4 #seminar .checkBox li + li {
        margin: 0 0 0 60px;
    }*/
    #step4 #seminar .checkBox div {
        display: table;
        width: 100%;
    }
    #step4 #seminar .checkBox div p {
        display: table-cell;
        width: 40px;
        height: 40px;
        vertical-align: middle;
    }
    #step4 #seminar .checkBox p label {
        display: block;
        width: 40px;
        height: 40px;
        background: url("../image/step/check_off.png") no-repeat;
        background-size: 40px auto;
    }
    #step4 #seminar .checkBox p label.checked {
        background: url("../image/step/check_on.png") no-repeat;
        background-size: 40px auto;
    }
        #step4 #seminar .checkBox p label input {
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }
    #step4 #seminar .checkBox span {
        display: table-cell;
        padding-left: 20px;
        vertical-align: middle;
    }
        #step4 #seminar .checkBox span label {
            cursor: pointer;
        }

/* ペットの情報入力
--------------------------------------*/
/*セレクトボックス*/
.formBox .selectBox {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 340px;
    width: 100%;
    height: 44px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    background: url("../image/step/icon_arrow_select.png") 96% center no-repeat #ffffff;
    background-size: 12px auto;
}
    .formBox .selectBox label {
        position: absolute;
        top:10px;
        left: 20px;
    }
    .formBox .selectBox select {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        font-size: 16px;
        border-radius: 2px;
        -ms-filter: "alpha(opacity=0)";
        -webkit-appearance:none;
        -moz-appearance: none;
        appearance: none;
    }
#step4 .infoPet h2 span {
    display: block;
    margin-top: 5px;
    font-family: Hiragino Kaku Gothic Pro,"ヒラギノ角ゴシック Pro", Osaka,Meiryo,"メイリオ",MS PGothic,"ＭＳ Ｐゴシック",sans-serif;
    font-size: 12px;
    color: #000000;
}
#step4 .petAge input {
    display: inline-block;
    width: 70px;
    margin-right: 10px;
    text-align: center;
}

#step4 .cautionGrey {
    margin-top: 20px;
}

/* --------------------------------------------------
    STEP5
-------------------------------------------------- */
#step5 .confirmBox {
    margin-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}
#step5 .applyBox + section h2 {
    padding: 0;
    background: none;
}
#step5 .applyBox .comment {
    border-top: none;
}
#step5 .applyBox table th {
    font-weight: bold;
    color: #004896;
}
#step5 .applyBox + section table th {
    width: 20%;
}
#step5 .applyBox .txtAgree {
    padding: 10px 20px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    background: #ffffff;
}
#step5 .cautionBlue {
    padding: 30px 10px;
}

/* --------------------------------------------------
    STEP6
-------------------------------------------------- */
#step6 {
    min-height: 892px;
}
#step6 .complete {
    max-width: 720px;
    margin: 0 auto;
    padding: 110px 10px 80px;
    text-align: center;
}
    #step6 .complete h1 {
        margin-bottom: 50px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 38px;
        color: #024894;
    }
    #step6 .complete h1 + p {
        width: 268px;
        margin: 0 auto 60px;
    }
    #step6 .complete h1 + p + p {
        margin-bottom: 30px;
        font-family: 'Noto Sans Japanese';
        font-weight: 500;
        font-size: 18px;
    }
    #step6 .complete .telBox {
        padding: 15px 0;
        border-radius: 4px;
        background: #f4f4f4;
    }
#step6 footer {
    position: absolute;
    bottom: 0;
}













