@charset "UTF-8";

body {
    color: rgb(80, 80, 80);
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.8;
    word-wrap: break-word;
    font-feature-settings: "pkna"1;
    letter-spacing: 0.06em;
}

p {
    text-align: justify;
}

a {
    color: rgb(80, 80, 80);
    text-decoration: none;
}

input:focus,
textarea:focus {
    outline: 0;
    border: 2px solid rgb(250, 145, 165);
}

button:focus {
    outline: 0;
    border: 0;
}

#menu {
    width: 220px;
    height: 100vh;
    padding: 40px 20px;
    background-color: rgb(250, 145, 165);
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
}

#menu > a.logo {
    width: 50%;
    margin: 0 auto 30px;
    display: block;
}

#menu > ul {
    margin-bottom: 30px;
}

#menu > ul > li {
    margin-bottom: 15px;
}

#menu > ul > li:last-child {
    margin-bottom: 0;
}

#menu > ul > li > a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

#menu > ul > li > a:hover {
    margin-left: 8px;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

#menu > ul > li.sell {
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}

#menu > ul > li.buy {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

#menu > a.logout {
    padding: 15px 0;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    display: block;
}

#menu > a.logout:hover {
    color: rgb(250, 145, 165);
    background-color: #fff;
}

#menu > a.toppage {
    width: 180px;
    padding: 15px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    color: rgb(250, 145, 165);
    background-color: #fff;
    text-decoration: none;
    display: block;
    position: fixed;
    left: 20px;
    bottom: 25px;
}

#menu > a.toppage:hover {
    opacity: 0.8;
}

#menu > a.toppage.out {
    margin-top: 15px;
    position: static;
    left: 0;
    bottom: 0;
}

/*マイページのコンテンツ*/

#content {
    padding: 2% 4% 6%;
    margin-left: 220px;
}

#content > h2 {
    padding-bottom: 1.5%;
    border-bottom: 2px solid rgb(250, 145, 165);
    margin-bottom: 3%;
    font-size: 20px;
    line-height: 1;
    color: rgb(250, 145, 165);
}

/*===============================
//
MAXWIDTH / 480
//
===============================*/

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

    #toggle_menu_btn {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 1000;
    }

    #toggle_menu_btn > button {
        width: 36px;
        height: 27px;
        border-top: solid 2px rgb(100, 100, 100);
        border-bottom: solid 2px rgb(100, 100, 100);
        background: none;
        cursor: pointer;
        display: block;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }

    #toggle_menu_btn :after {
        content: '';
        width: 100%;
        height: 2px;
        margin-top: -1px;
        background-color: rgb(100, 100, 100);
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
    }

    #menu {
        width: 100%;
        height: 100%;
        padding: 40px 20px 20px;
        text-align: center;
        display: none;
        z-index: 500;
    }

    #menu > a.logo {
        width: 80px;
        margin: 0 auto 30px;
    }

    #menu > ul {
        margin-bottom: 15px;
    }

    #menu > ul > li {
        margin-bottom: 15px;
    }

    #menu > ul > li:last-child {
        margin-bottom: 0;
    }

    #menu > ul > li > a {
        padding: 18px 0;
        border: 1px solid #fff;
        font-size: 16px;
        line-height: 1;
        text-align: center;
        display: block;
    }

    #menu > ul > li > a:hover {
        margin-left: 0;
    }

    #menu > ul > li.sell {
        padding-bottom: 0;
        border-bottom: none;
    }

    #menu > ul > li.buy {
        padding-top: 0;
        padding-bottom: 0;
        border-top: none;
        border-bottom: none;
    }

    #menu > a.logout {
        padding: 18px 0;
        border: 1px solid #fff;
        margin-bottom: 60px;
        border-radius: 0;
        font-size: 16px;
        line-height: 1;
        text-align: center;
        display: block;
    }

    #menu > a.logout:hover {
        color: rgb(250, 145, 165);
        background-color: #fff;
    }

    #menu > a.toppage {
        width: auto;
        padding: 0;
        margin: 0 auto;
        border-radius: 0;
        text-align: center;
        font-size: 14px;
        color: #fff;
        background: none;
        text-decoration: underline;
        display: inline;
        position: static;
        left: auto;
        bottom: auto;
    }

    #menu > a.toppage:hover {
        opacity: 0.8;
    }

    /*マイページのコンテンツ*/

    #content {
        padding: 60px 2% 35px;
        margin-left: 0;
    }

    #content > h2 {
        padding-bottom: 3%;
        border-bottom: 2px solid rgb(250, 145, 165);
        margin-bottom: 9%;
        font-size: 20px;
        line-height: 1;
        color: rgb(250, 145, 165);
    }

}