@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%;
}

html {
    overflow-y: scroll;
}

body {
    font-family: Hiragino Kaku Gothic Pro,"ヒラギノ角ゴシック Pro",Meiryo,"メイリオ", Osaka,MS PGothic,"ＭＳ Ｐゴシック",sans-serif;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
    text-align: left;
    color: #3f3f3f;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
}

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

/* --------------------------------------------------------
    clearfix
-------------------------------------------------------- */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

/* --------------------------------------------------
    画像
-------------------------------------------------- */
img {
    width: 100%;
    vertical-align: middle;
}

/* --------------------------------------------------
    補足テキスト（※付き）
-------------------------------------------------- */
aside > p.supplementary {
    padding-left: 1.1em;
    font-size: 1em;
    position: relative;
}
aside > p.supplementary::before {
    content: "※";
    position: absolute;
    left: 0;
}

/* --------------------------------------------------
    改行
-------------------------------------------------- */
@media (min-width: 769px) {

    .spBreak {
        display: none;
    }

}
/*//////////////////////////////////////////////////
    Base layout
///////////////////////////////////////////////////*/
/* --------------------------------------------------
    ヘッダー(header)
-------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
#headBox {
    overflow: hidden;
    background: #ffffff;
    box-shadow: 1px 2px 6px 0 rgba(0, 0, 0, 0.1);
}

/* pc----------------------------------------------*/
@media (min-width: 769px) {

    header {
        min-width: 1000px;
    }
    #headBox {
        height: 70px;
        padding: 0 0 0 5%;
    }
        #headBox h1 {
            float: left;
            max-width: 255px;
            width: 25%;
            margin-top: 15px;
        }
        #headBox #menuBtn {
            display: none;
        }

}
/* /pc---------------------------------------------*/

/* --------------------------------------------------
    ナビ(nav)
-------------------------------------------------- */
nav > ul > li > a {
    position: relative;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
}
.setOs nav > ul > li > a {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
nav > ul > li.current > a {
    background: #fee6e9;
}
nav > ul > li.current > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 20px;
    height: 4px;
    margin: 0 auto;
    border-radius: 6px;
    background: #fb8393;
}
/*petplusへ*/
nav .linkPetplus img {
    width: 115px;
}
/* pc----------------------------------------------*/
@media (min-width: 769px) {

nav {
    overflow: hidden;
    float: right;
    width: 73%;
}
    nav > ul {
        display: table;
        width: 100%;
        max-width: 940px;
        padding: 10px 180px 10px 0;
        text-align: right;
    }
    nav > ul > li {
        display: table-cell;
        width: 16%;
        padding: 0 5px;
        font-size: 15px;
        text-align: center;
    }
        nav > ul > li > a {
            display: block;
            line-height: 50px;
        }
        nav > ul > li.current > a {
            border-radius: 4px;
        }
        nav > ul > li.current > a:after {
            bottom: 10px;
        }
        nav > ul > li:hover > a {
            border-radius: 4px 4px 0 0;
            border-bottom: 10px solid #fee6e9;
            background: #fee6e9;
        }
        nav > ul > li:hover > a:after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 10px;
            width: 20px;
            height: 4px;
            margin: 0 auto;
            border-radius: 6px;
            background: #fb8393;
        }
        
    /*サブメニュー*/
    nav .subMenu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        text-align: left;
        z-index: 1;
        background: #fee6e9;
    }
    nav .subMenu:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.4;
        z-index: -1;
        background: url("../image/common/pattern_pad.png");
        background-size: 97px auto;
    }
        nav .subMenu > div {
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 0;
        }
            nav .subMenu > div > p {
                float: left;
                width: 284px;
            }
            nav .subMenu > div > dl {
                float: left;
                width: 630px;
                padding: 5px 30px 10px;
            }
                nav .subMenu > div > dl dt {
                    width: 270px;
                    margin-bottom: 15px;
                    padding-bottom: 5px;
                    font-family: Meiryo,"メイリオ";
                    font-weight: bold;
                    font-size: 20px;
                    color: #f86984;
                    background: url("../image/common/list_circle_pink.png") left bottom repeat-x;
                    background-size: 7px auto;
                }
                .setOs nav .subMenu > div > dl dt {
                    font-family: 'Rounded Mplus 1c';
                    font-weight: 700;
                }
                nav .subMenu > div > dl dd {
                    overflow: hidden;
                }
                    nav .subMenu > div > dl dd ul {
                        float: left;
                        width: 270px;
                        font-size: 14px;
                    }
                    nav .subMenu > div > dl dd ul + ul {
                        margin-left: 30px;
                    }
                    nav .subMenu > div > dl dd ul li {
                        background: url("../image/common/icon_arrow_pink.png") 245px center no-repeat;
                        background-size: 8px auto;
                        transition:0.6s;
                    }
                    nav .subMenu > div > dl dd ul li:hover {
                        background: url("../image/common/icon_arrow_pink.png") 255px center no-repeat;
                        background-size: 8px auto;
                    }
                    nav .subMenu > div > dl dd ul li + li {
                        margin-top: 10px;
                    }
                        nav .subMenu > div > dl dd ul li a {
                            display: block;
                        }

    /*petplusへ*/
    nav .linkPetplus {
        position: absolute;
        top: 0;
        right: 0;
        width: 180px;
        text-align: center;
        background: #ebf1f6;
    }
        nav .linkPetplus a {
            display: block;
            padding-left: 10px;
            line-height: 70px;
        }

}
/* /pc---------------------------------------------*/

/* --------------------------------------------------
    メイン
-------------------------------------------------- */
.cntnt {
    padding:0 0 120px; 
}
.contBox {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 10px;
}

/* --------------------------------------------------
    キービジュアル
-------------------------------------------------- */
.kv {
    display: table;
    width: 100%;
    text-align: center;
}
    .kv h2 {
        font-family: Meiryo,"メイリオ";
        font-weight: bold;
        color: #ffffff;
        letter-spacing: 0.1em;
    }
    .setOs .kv h2 {
        font-family: 'Rounded Mplus 1c';
        font-weight: 700;
    }
/* pc----------------------------------------------*/
.kv {
    margin:70px 0 0; 
    height: 240px;
}
    .kv h2 {
        display: table-cell;
        font-size: 38px;
        vertical-align: middle;
    }
/* /pc---------------------------------------------*/

/* --------------------------------------------------
    ぱんくずリスト
-------------------------------------------------- */
.topicPath {
    margin: 20px 0 50px;
}
    .topicPath ul {
        overflow: hidden;
        max-width: 1020px;
        margin: 0 auto;
        padding: 0 10px;
        font-size: 12px;
    }
        .topicPath ul li {
            float: left;
            margin-right: 10px;
            padding-right: 15px;
            line-height: 1;
            background: url("../image/common/icon_topic_arrow.png") right center no-repeat;
        }
        .topicPath ul li:first-child {
            padding: 0 15px;
            background: url("../image/common/icon_topic_home.png") left top no-repeat,url("../image/common/icon_topic_arrow.png") right center no-repeat;
        }
        .topicPath ul li:last-child {
            margin-right: 0;
            background: none;
        }
            .topicPath ul li a:hover {
                text-decoration: underline;
            }

/* --------------------------------------------------
    各下層ページトップのメニュー一覧
-------------------------------------------------- */
.indexMenu {
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    text-align: center;
}
.setOs .indexMenu {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
    .indexMenu li {
        position: relative;
        z-index: 1;
        border-radius: 4px;
        background: #fee6e9;
    }
    .indexMenu li:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        z-index: -1;
        background: url("../image/common/pattern_pad.png");
        background-size: 97px auto;
    }
        .indexMenu li a {
            display: block;
        }
            .indexMenu li a .imgBox {
                display: table;
                width: 100%;
                border-radius: 4px;
                background: #ffffff;
            }
                .indexMenu li a .imgBox span {
                    display: table-cell;
                    vertical-align: middle;
                }
/* pc----------------------------------------------*/
@media (min-width: 769px) {

    .indexMenu {
        overflow: hidden;
        margin: -20px 0 0 -20px;
    }
        .indexMenu li {
            float: left;
            width: 320px;
            height: 235px;
            margin: 20px 0 0 20px;
            transition:0.6s;
        }
        .indexMenu li:hover {
            opacity: 0.6;
        }
            .indexMenu li a {
                padding: 20px;
                font-size: 18px;
            }
                .indexMenu li a .imgBox {
                    height: 160px;
                    margin-bottom: 15px;
                }
}
/* /pc----------------------------------------------*/

/* --------------------------------------------------
    ページメニューリスト上部
-------------------------------------------------- */
.pageMenuListTop {
    margin: 0 auto 60px;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    letter-spacing: 0.1em;
}
.setOs .pageMenuListTop {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
    .pageMenuListTop li {
        display: inline-block;
        color: #3f3f3f;
        border-radius: 20px;
        background: #fee6e9;
    }
    .pageMenuListTop li + li {
        margin: 0 0 0 20px;
    }
    .pageMenuListTop li.current {
        background: #f86984;
    }
        .pageMenuListTop li a {
            display: block;
            padding: 0 15px;
        }
        .pageMenuListTop li.current a {
            color: #ffffff;
            pointer-events:none;
        }
/* --------------------------------------------------
    ページメニューリスト下部
-------------------------------------------------- */
.pageMenuListBottom {
    background: url("../image/common/pattern_ami.png");
}
.pageMenuListBottom ul {
    max-width: 1020px;
    margin: 0 auto;
    padding: 40px 10px 60px;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    font-size: 14px;
    text-align:right;
    line-height: 40px;
    letter-spacing: 0.1em;
}
.setOs .pageMenuListBottom ul {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
    .pageMenuListBottom ul li {
        display: inline-block;
        color: #3f3f3f;
        border-radius: 20px;
        background: #fee6e9;
    }
    .pageMenuListBottom ul li + li {
        margin: 0 0 0 20px;
    }
    .pageMenuListBottom ul li.current {
        background: #f86984;
    }
        .pageMenuListBottom ul li a {
            display: block;
            padding: 0 15px;
        }
        .pageMenuListBottom ul li.current a {
            color: #ffffff;
            pointer-events:none;
        }
/* --------------------------------------------------
    下層ページタイトル
-------------------------------------------------- */
.ttlType1 {
    margin: 0 0 20px;
    padding: 0 0 10px 0;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.1em;
    background: url("../image/common/list_circle_pink.png") left bottom repeat-x;
    background-size: 7px auto;
}
.setOs .ttlType1 {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
/*犬*/
.ttlTypeDog {
    margin: 0 0 20px;
    padding: 20px 0 20px 70px;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.1em;
    background: url("../image/common/icon_dog_ttl.svg") left center no-repeat,url("../image/common/list_circle_pink.png") left bottom repeat-x;
    background-size: 50px auto,7px auto;
}
.setOs .ttlTypeDog {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
.ttlDog {
    margin: 0 0 20px;
    padding: 0 0 0 70px;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 50px;
    background: url("../image/common/icon_dog_ttl.svg") left center no-repeat;
    background-size: 50px auto;
}
.setOs .ttlDog {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
/*猫*/
.ttlTypeCat {
    margin: 0 0 20px;
    padding: 20px 0 20px 70px;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.1em;
    background: url("../image/common/icon_cat_ttl.svg") left center no-repeat,url("../image/common/list_circle_pink.png") left bottom repeat-x;
    background-size: 50px auto,7px auto;
}
.setOs .ttlTypeCat {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
.ttlCat {
    margin: 0 0 20px;
    padding: 0 0 0 70px;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 50px;
    background: url("../image/common/icon_cat_ttl.svg") left center no-repeat;
    background-size: 50px auto;
}
.setOs .ttlCat {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
.ttlCat span {
    display: inline-block;
    padding-left: 1em;
    font-family: Hiragino Kaku Gothic Pro,"ヒラギノ角ゴシック Pro",Meiryo,"メイリオ", Osaka,MS PGothic,"ＭＳ Ｐゴシック",sans-serif;
    font-size: 14px;
    font-weight: normal;
}
/* pc----------------------------------------------*/
@media (min-width: 769px) {

    /*犬猫*/
    .ttlTypeDogCat {
        margin: 0 0 20px;
        padding: 20px 0 20px 130px;
        font-family: Meiryo,"メイリオ";
        font-weight: bold;
        font-size: 24px;
        letter-spacing: 0.1em;
        background: url("../image/common/icon_dog_ttl.svg") left center no-repeat,url("../image/common/icon_cat_ttl.svg") 60px center no-repeat,url("../image/common/list_circle_pink.png") left bottom repeat-x;
        background-size: 50px auto,50px auto,7px auto;
    }
    .setOs .ttlTypeDogCat {
        font-family: 'Rounded Mplus 1c';
        font-weight: 700;
    }
}
/* /pc---------------------------------------------*/
/* --------------------------------------------------
    マーカー(16px)
-------------------------------------------------- */
.marker {
    font-weight: bold;
    line-height: 16px;
    background: linear-gradient(transparent 20%, #ffe2a3 20%);
    background-repeat: no-repeat;
    background-size: 100% 90%;
}
.markerHalf {
    font-weight: bold;
    line-height: 16px;
    background-image: linear-gradient(transparent 20%,#ffe2a3 20%);
    background-repeat: no-repeat;
    background-size: 50% 90%;
    background-position: 0 top;
}
.markerHalfRight {
    font-weight: bold;
    line-height: 16px;
    background-image: linear-gradient(transparent 20%,#ffe2a3 20%);
    background-repeat: no-repeat;
    background-size: 50% 90%;
    background-position: 100% top;
}
/* --------------------------------------------------
    petplus公式サイトへ
-------------------------------------------------- */
.ohpLink {
    background: url("../image/common/pattern_ohplink.png") #ebf1f6;
    background-size: 6px auto;
}
    .ohpLink .ohpBox {
        max-width: 800px;
        margin: 0 auto;
    }
.ohpLink .ohpBox .linkBtn {
    position: relative;
    width: 210px;
    line-height: 30px;
    font-size: 14px;
    font-family: Meiryo,"メイリオ";
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    transition: 0.5s;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
}
.setOs .ohpLink .ohpBox .linkBtn {
    font-family: 'Rounded Mplus 1c';
    font-weight: 700;
}
.ohpLink .ohpBox .linkBtn:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: url("../image/common/icon_target_white.png") center no-repeat #014793;
    background-size: 10px auto;
}
.ohpLink .ohpBox .linkBtn:hover {
    opacity: 0.6;
}
    .ohpLink .ohpBox .linkBtn a {
        display: block;
        color: #FFFFFF;
        border-radius: 40px;
        background: #014793;
    }
/* pc----------------------------------------------*/
@media (min-width: 769px) {

    .ohpLink {
        position: relative;
        padding: 40px 10px 50px;
    }
        .ohpLink .ohpBox {
            position: relative;
            height: 240px;
            padding: 40px 60px 40px 340px;
            background: #ffffff;
        }
            .ohpLink .ohpBox dt {
                margin-bottom: 10px;
                font-size: 16px;
                font-weight: bold;
                color: #144794;
            }
            .ohpLink .ohpBox .bnrBox {
                margin-bottom: 20px;
            }
            .ohpLink .ohpBox .ohpBnr {
                position: absolute;
                top: 40px;
                left: 60px;
                width: 240px;
                height: 150px;
                pointer-events:none;
            }
            
}
/* /pc----------------------------------------------*/

/* --------------------------------------------------
    pagetop
-------------------------------------------------- */
#pagetop {
    position: fixed;
    right: 80px;
    bottom: 40px;
    width: 54px;
    cursor: pointer;
    z-index: 99;
}

/* --------------------------------------------------
    フッター(footer)
-------------------------------------------------- */
footer {
    position: relative;
    background: #fffaef;
}
footer:before {
    content: '';
    position: absolute;
    top: -16px;
    width: 100%;
    height: 32px;
    background: url("../image/common/footer_wave.png") repeat-x;
    background-size: auto 32px;
}
    footer section {
        max-width: 1020px;
        margin: 0 auto;
        padding: 50px 10px 20px;
    }
    footer h3 {
        width: 255px;
        margin-bottom: 40px;
    }
    footer .footNav dl dt {
        font-family: Meiryo,"メイリオ";
        font-weight: bold;
        font-size: 13px;
        background: url("../image/common/list_circle_pink.png") left bottom repeat-x;
        background-size: 7px auto;
    }
    .setOs footer .footNav dl dt {
        font-family: 'Rounded Mplus 1c';
        font-weight: 700;
    }
    footer .footNav dl dd ul li {
        padding-left: 8px;
        line-height: 2;
        background: url("../image/common/icon_disc_grey.png") left 7px no-repeat;
        background-size: 4px auto;
    }
    footer .company {
        margin-bottom: 20px;
        background: url("../image/common/list_circle_pink.png") left bottom repeat-x;
        background-size: 7px auto;
    }
        footer .company dl {
            font-size: 10px;
        }
            footer .company dl dt {
                margin-bottom: 5px;
                font-size: 12px;
                font-weight: bold;
            }
        /*sns*/
        footer .company ul li {
            display: inline-block;
            width: 32px;
        }
        footer .company ul li + li {
            margin-left: 10px;
        }
    footer .company + p {
        margin-bottom: 10px;
        font-size: 10px;
        text-align: center;
    }
    footer .company + p + p {
        margin-bottom: 20px;
        padding: 10px 70px;
        font-size: 10px;
        background: #ffffff;
    }
    footer .company + p + p + p {
        font-size: 10px;
        text-align: center;
    }

/* pc----------------------------------------------*/
@media (min-width: 769px) {

    footer .footNav {
        overflow: hidden;
        margin: -20px 0 30px -2%;
    }
        footer .footNav dl {
            float: left;
            width: 23%;
            min-height: 110px;
            margin: 20px 0 0 2%;
        }
            footer .footNav dl dt {
                padding: 0 0 5px 0;
            }
            footer .footNav dl dd {
                padding: 5px 0 0 0;
                font-size: 10px;
            }
                footer .footNav dl dd ul li a:hover {
                    text-decoration: underline;
                }
    footer .company {
        overflow: hidden;
    }
        footer .company dl {
            float: left;
            padding-bottom: 15px;
        }
        footer .company ul {
            float: right;
            line-height: 68px;
        }
        footer .company ul li:last-child {
            display: none;
        }
}



