@charset "UTF-8";

    /* パフュームカテゴリ */
    .title-top {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .text-top {
        margin-bottom: 2rem;
    }

    .bottom {
        margin-bottom: 2rem;
    }

    .flex {
        display: flex;
    }

    .flexpart {
        display: flex;
        border: 1px solid #cccccc;
        margin: 0 auto;
    }

    .flex .num01 {
        margin-right: 3.75rem;
    }

    .flex .num02 {
        margin-left: 3.75rem;
    }

    .flexpart .image {
        width: 50%;
        height: 50%;
        max-width: 125px;
        margin: 0;
        padding: 0;
        overflow: visible;
        position: relative;
    }

    .flexpart .right {
        width: 155px;
        height: 125px;
        margin: 0;
        padding: 15px 10px 0 10px;
        font-size: 12px;
    }

    .flexpart .title {
        font-weight: bold;
        padding-bottom: 10px;
    }

    /* ボタンエリア */
    .btn--navy_tips {
        color: #fff;
        background: #2c2e33;
        display: block;
        width: 600px;
        cursor: pointer;
        text-align: center;
        border-radius: 4px;
        margin: auto;
        margin-top: 2em;
        padding: 12px 50px;
        position: relative;
    }

    .btn--navy_tips::after {
        position: absolute;
        top: 50%;
        right: 16px;
        width: 12px;
        height: 12px;
        margin-top: -6px;
        content: '';
        -webkit-transform: rotate(0deg) translate(-50%, -50%);
        transform: rotate(0deg) translate(-50%, -50%);
        border-top: solid 1px #fff;
        border-right: solid 1px #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .btn--navy_tips:hover {
        color: #fff;
        transition: .5s;
        opacity: .8;
    }

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

        /* パフュームカテゴリ */
        .flex {
            display: block;
        }

        .bottom {
            margin-bottom: 0;
        }

        .flexpart {
            margin: 0 auto 10px;
        }

        .flex .num01 {
            margin-right: 0;
        }

        .flex .num02 {
            margin-left: 0;
        }

        .flexpart .right {
            width: 100%;
            height: 100px;
            padding: 20px 15px 0 15px;
        }

        /* ボタンエリア */
        .btn--navy_tips {
            display: block;
            width: 100%;
        }

    }