@charset "utf-8";


/*基本設定-----------------------------------------*/
/* 隙間なく表示させるおまじない */
html, body {
    margin: 0px;
    padding: 0px;
 }

/* ページ内全体の文字の設定と背景の設定 */
body {
    font-family: "Yuji Mai", serif; 
    font-size: 16px;
    color: #3E3333;
    line-height:1.8em;
    background-color: #bc7c42;
    
}

/* ページ内全体のリンクの文字色 */
a{text-decoration: none;}
a:link {color: #3E3333;} 

#container {
    background-color: #bc7c42;
    background-image: url(img/shadow.png);
    background-attachment: fixed;
    margin: 0 auto;
    width: 100%;
    max-width: 390px;
    background-size: contain;
    text-align: left;
}

header {
    width: 100%;
    top: 0;
    position: sticky;
    z-index: 20;
}

main {
    height: auto;
}

#userprofile {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.icon-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid #8f5e32;
    overflow: hidden;
    position: relative;
    margin-top: 0%;
}

.icon-circle img{
    width: 100%;
    height: auto;
    margin: auto;
}

.username {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

#maintext {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    width: 70%;
    height: 25%;
    text-align: center;
    margin: 0 auto;
}

#maintext .text_left {
    text-align: left;
    display: inline-block;
}

#follow {
    position: relative;
}

.follow_text {
    font-size: 28px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E9E0D8;
}

#line {
    text-align: center;
}

.line_text {
    font-size: 20px;
    margin: 0 auto;
}

#post {
    position: relative;
    width: 300px;
    margin: 0px auto;
}

.result1, .result2, .result3 {
    background-color: #a16a38;
    text-align: center;
    margin: 10px
}

.result1 img, .result2 img, .result3 img {
    vertical-align: bottom;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.result2 {
    opacity: 0.9;
}

.result3 {
    opacity: 0.7;
}

footer {
    width: 100%;
    height: 60px;
    position: sticky;
    bottom: 0;
    padding: 0px 0px;
    display: flex;
    justify-content: space-around;
}

.hude_footer {
    width: 100%;
    height: 100%;
}