@charset "UTF-8";

/*bese*/
*{
    font-family: "A1 Mincho";
    letter-spacing: .1em;
    line-height: 1.3em;
}
body{
    background-color: antiquewhite;
    color: #c5a28e;
}
h1{
    font-size: 120%;
    text-align: center;
}
h2{
    font-size: 150%;
    text-align: center;
}
p{
    margin: 30px;
    padding: 0;
}
img{
    border-radius: 1px;
}
::selection {
    background-color: antiquewhite;
}

/*common class*/
.button{
    display: inline-block;
    padding: 10px 25px;
    border-radius: 900px;
    border: 1px solid #c5a28e;
    color: #c5a28e;
}

/*header*/
.header{
    background-color: #c5a28e;
    color: #fff;
    text-align: center;
    padding: 55px;
}
.header-catchcopy{
    font-size: 160%;
    margin: 55px;
}
.header-nav{
    margin: 55px 0;
}
.header-nav ul{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.header-nav li a.button{
    border: 1px solid #fff;
    color: #fff;
}

/*section*/
.section{
    background-color: #fff;
    text-align: center;
    padding: 55px;
}
.section-content{
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 100%;
    max-width: 980px;
}

.top-work ul{
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}
.top-work ul li{
    width: 24.25%;
    height: auto;
    margin-bottom: 50px;
}
.top-work ul li a{
    display: block;
}
.overview-top-work-inner{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}
.overview-top-work img{
    width: 100%;
    height: 100%;
    transition: 5s;
}
.overview-top-work:hover img{
    transform: scale(1.05);
}
.overview-top-work-caption{
    margin-top: 15px;
}

.overview-top-about{
    display: block;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    border-radius: 15px;
}
.overview-top-about img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 5s;
}
.overview-top-about:hover img{
    transform: scale(1.05);
}

.top-blog dl{
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: scroll;
}
.top-blog-article{
    position: relative;
    width: 480px;
    height: auto;
    flex-shrink: 0;
    margin-bottom: 30px;
    overflow: hidden;
}
.top-blog-article:first-child{
    border-radius: 15px 0 0 15px;
}
.top-blog-article:last-child{
    border-radius: 0 15px 15px 0;
}
.top-blog-article dd{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: left;
}
.top-blog-article dd a{
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 30px;
}
.top-blog-article .blog-title{
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 150%;
    margin-bottom: 10px;
}
.overview-top-blog-article{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.overview-top-blog-article img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 5s;
}
.top-blog-article:hover .overview-top-blog-article img{
    transform: scale(1.05);
}

/*footer*/
.footer{
    text-align: center;
}