@charset "utf-8";

/* header/footerの設定 */

/* 全体の設定 */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
ul{list-style: none;}

/* headerの設定 */
.gnav-wrap{
    background: #ff99aa;
}
.gnav-inner{
    margin-inline: auto;
    padding: 0.5em 1.5em;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gnav-logo{
    font-size: 2em;
    font-weight: bold;
    color: #fff;
}
.gnav-list{
    text-align: center;
    background: #ff99aa;
    padding: 0;
    display: flex;
    gap: 3em;
}
.gnav-list li a{
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
.gnav-list li span{
    font-size: 12px;
    display: block;
}

.top-img{
    display: block;
    margin-inline: auto;
    max-width: 1000px;
}

/* footerの設定 */
footer{
    width: 100%;
    background: #ff99aa;
    padding: 60px 0;
    text-align: center;
    color: #504543;
}
.footer-inner{
    width: 90%;
    background: #fff;
    margin-inline: auto;
    padding: 60px;
}
.apply-object-fit{
    object-fit: cover;
    max-width: 500px;
}
address{
    margin-bottom: 20px;
    font-style: normal;
    font-size: 14px;
}
.footer-inner nav{
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.footer-inner nav ul li{
    display: inline-block;
}
a{
    display: inline-block;
    padding: 0.5em;
    /* text-decoration: none; */
    color: #ff99cc;
}