@charset "utf-8";

/* =======================
　　　SP・共通部分
======================= */

main{
    padding-top: 70px;
}
section{
    margin: 70px auto;
    padding: 0 10px;
}

.greeting_ttl{
    margin-top: 80px;
    text-align: center;
}
.greeting_ttl h1{
    font-size: 24px;
    letter-spacing: 0.3em;
}

.greeting_flex{
    margin-bottom: 60px;
}

.greeting_img_wrap{
    width: 70%;
    max-width: 400px;
    margin: 0 auto 50px;
}

.name_wrap{
    width: 80%;
    margin: 0 auto;
}
.comp_name{
    margin-bottom: 30px;
}
.direc_name{
    font-size: 14px;
    margin-bottom: 10px;
}
.presi_name{
    font-weight: bold;
}
.presi_name span:first-child{
    display: inline-block;
    margin-right: 20px;
    font-size: 24px;
}
.presi_name span:last-child{
    font-size: 12px;
}

.greeting_txt{
    font-size: 14px;
    line-height: 2.5em;
}
.greeting_txt p{
    margin-bottom: 40px;
}


/* =======================
　　　      PC
======================= */

@media screen and (min-width:769px) {

.greeting_ttl h1{
    font-size: 32px;
}

.greeting_flex{
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 60px;
}

.greeting_img_wrap{
    margin-bottom: 0;
}
.name_wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.greeting_txt{
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}


}