@charset "utf-8";
/* 
base style 
*/
body{
    font-family: 'Noto Sans JP', sans-serif, "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5ef;
}

/*
computer style
*/


.title-image{
    position: relative;
    width: 100%;
    height: auto;
}

.icon-profile{
    position: absolute;
    top: 25%;
    left: 15%;
    z-index: 1;
    width: 20%;
    height: auto;
}

.title-rogo{
    position: absolute;
    top: 25%;
    left: 50%;
    z-index: 1;
    display: flex;
    text-align: center;
    color: blue;
    flex-direction: column;
    align-items: stretch;
}

.title-rogo button{
    flex: 1;
}

.title-first{
    font-size: 80px;
    font-weight: bolder;
    margin: 0;
    padding: 0;
}

.title-second{
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}


.button{
    color: white;
    border: 3px solid white;
    font-size: 40px;
    background-color: transparent;
}

h1.headline{
    text-align: center;
    font-size: 56px;
    margin: 0;
    padding: 0;
}

.profile-content{
    text-align: center;
    display: flex;
    align-items: center;
}

.profile-area01{
    width: 40%;
    height: auto;
    margin-left: 50px;
    padding: 5%;
}

.text {
    font-size: 20px;
    font-weight: bold;
    max-width: 40%;
    padding: 5%;
}

.link-article{
    text-align: center;
    font-size: 32px;
    margin: 0;
    padding: 0;
}

.comment-Form{
    text-align: center;
}

.comment-headline{
    font-size: 32px;
    font-weight: bold;
}

.comment-name{
    width: 33%;
    height: 40px;
    border: 2px solid black;
}

.comment-message{
    width: 33%;
    height: 200px;
    border: 2px solid black;
}

.comment-submit{
    width: 15%;
    height: 40px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    background-color: #999999;
    border: 2px solid white;
    border-radius: 15px;
}

/*
phone style
*/


@media (max-width: 900px) {
    .icon-profile{
        position: absolute;
        top: 15%;
        left: 40%;
        z-index: 1;
        width: 20%;
        height: auto;
    }
    
    .title-rogo{
        position: absolute;
        top: 30%;
        left: 30%;
        z-index: 1;
        display: flex;
        text-align: center;
        color: blue;
        flex-direction: column;
        align-items: stretch;
    }
    
    .title-rogo button{
        flex: 1;
    }
    
    .title-first{
        font-size: 30px;
        font-weight: bolder;
        margin: 0;
        padding: 0;
    }
    
    .title-second{
        font-size: 11.2px;
        font-weight: bold;
        margin: 0;
        padding: 0;
    }
    
    
    .button{
        color: white;
        border: 3px solid white;
        font-size: 11px;
        background-color: transparent;
    }
    
    h1.headline{
        text-align: center;
        font-size: 56px;
        margin: 0;
        padding: 0;
    }
    
    .profile-content{
        text-align: center;
        align-items: center;
        display: flex;
        flex-flow: column;
    }
    
    .profile-area01{
        width: 80%;
        height: auto;
        margin-left: 50px;
        padding: 5%;
    }
    
    .text {
        font-size: 20px;
        font-weight: bold;
        max-width: 80%;
        padding: 5%;
    }
    
    .comment-Form{
        text-align: center;
    }
    
    .comment-headline{
        font-size: 32px;
        font-weight: bold;
    }
    
    .comment-name{
        width: 70%;
        height: 40px;
        border: 2px solid black;
    }
    
    .comment-message{
        width: 70%;
        height: 200px;
        border: 2px solid black;
    }
    
    .comment-submit{
        width: 40%;
        height: 40px;
        font-size: 22px;
        font-weight: bold;
        color: white;
        background-color: #999999;
        border: 2px solid white;
        border-radius: 15px;
    }
        
}