@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
.wrap {
    width: 1300px;
    margin: 0 auto;
}
a {
    color: #000;
}
html {
    scroll-behavior: smooth;
}
/* header */
header {
    width: 1300px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    display: flex;
    width: 700px;
    justify-content: space-between;
}
nav ul a {
    color: #5b3626;
    transition: 0.5s;
}
nav ul a:hover {
    opacity: 0.5;
}
h1 img {
    width: 280px;
}
/* main */
.top-img img{
    height: 500px;
    object-fit: cover;
}
h2{
    position: relative;
    top: -250px;
    left: 350px;
    font-size: 40px;
    letter-spacing: 0.5em;
    color: #5b3626;
}


     










/* circle02 */
.band-clip02 {
    position: relative;
    height: 120px;
    align-items: center;
    overflow: visible;
}
.circle02 {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    background-image: url(../img/back-koi_l.jpg);
    border-radius: 50%;
    clip-path: inset(0 0 50% 0);
    z-index: -999;
}
.coffee {
    width: 100px;
    position: absolute;
    top: 60px;
    left: 710px;
}
/* contact */
.contact {
    padding: 50px 0 0 0;
    background-image: url(../img/back-koi_l.jpg);
}
.contact p {
    color: #fff;
    font-size: 30px;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 40px 0 40px;
}
.contact-box {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding-bottom: 30px;
}
.contact-btn a {
    color: #5b3626;
    display: block;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    transition: 0.7s;
}
.contact-btn a:hover {
    opacity: 0.7;
}
/* footer */
footer {
    text-align: center;
    background-image: url(../img/back-koi_l.jpg);
}
.footer-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
}
.icon img {
    width: 30px;
}
footer img {
    width: 200px;
}
ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
ul a {
    color: #5b3626;
    transition: 0.5s;
}
ul a:hover {
    opacity: 0.7;
}
.copylight p {
    padding: 15px 0 10px;
}
/* topへ戻る */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: block;
}
.back-to-top img {
    width: 80px;
    height: 80px;
    transition: 0.5s;
}
.back-to-top img:hover {
    opacity: 0.8;
}