@charset "UTF-8";

/*toppage
----------------------------------------------------*/
#greet b {
    font-size: 1.5em;
    color: #2d9629;
	font-family: "Zen Maru Gothic", serif;
}

#philosophy p.intro {
    font-size: 1.2em;
    font-weight: 500;
	font-family: "Zen Maru Gothic", serif;
    margin-bottom: 2em;
}

#top .img_text .img {
    margin-top: 1em;
    text-align: center;
}

#top .img_text .img img {
    border-radius: 1.5em;
}

#top .img_text .img.round img {
    border-radius: 50%;
}

#link_banner ul li {
    text-align: center;
    margin-bottom: 1em;
}

#link_banner a {
    display: block;
    background: #fff;
    border-radius: 1.5em;
    padding: 1em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

#link_banner a:hover {
    opacity: 0.7;
}



/*media Queries
----------------------------------------------------*/
@media only screen and (min-width: 800px) {
    
    #greet .box_white::after {
        width: 100px;
        height: 100px;
    }

    #top .img_text {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #top .img_text.left {
        flex-direction: row-reverse;
    }

    #top .img_text .img {
        width: 40%;
    }

    #top .img_text .text {
        width: 55%;
    }

    #link_banner ul {
        display: flex;
        justify-content: space-between;
        gap: 1em;
    }

    #link_banner ul li {
        flex-grow         : 1;
    }

}

/*media Queries
----------------------------------------------------*/
@media only screen and (min-width: 1400px) {	

}

