@charset "utf-8";
* {
    padding: 0;
    margin: 0;
    list-style: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
/* common */
main h3 {
    background-color: aquamarine;
}
.wrap {
    background-image: url(../img/Firefly_コーヒーカップが画像いっぱいに余白がなくあるイラスト\ 447551.jpg);
    background-repeat: no-repeat;
}
.wrap01 {
    background-image: url(../img/Firefly_コーヒーカップが画像いっぱいに余白がなくあるイラスト\ 447551.jpg);
    background-repeat: no-repeat;
}
/* header */
header {
    background-color: rgb(229, 143, 97);
    text-align: center;
}
header h1 {
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px #000;
    color: #fff;
    text-align: center;
}
header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
    transition: color 0.8s linear;
}
header nav ul :hover {
    color: #808080;
}

nav ul a {
    display: block;
    position: relative;
}
nav ul a::before {
    content: "";
    background-image: url(../img/home.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -25px;
}
.navi2::before {
    background-image: url(../img/Firefly_コーヒーカップが画像いっぱいに余白がなくあるイラスト\ 158810.jpg);
}
.navi3::before {
    background-image: url(../img/icon_gourmet.png);
}

.navi4::before {
    background-image: url(../img/access.png);
}
@media (min-width: 767px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        position: fixed;
        width: 100%;
        z-index: 999;
    }
    header nav ul {
        margin-left: 100px;
        padding: 10px;
    }
    header h1 {
        margin-left: 60px;
        color: #fff;
    }
}
.hero {
    position: relative;
}
.hero p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    padding: 10px;
    text-shadow: 5px 5px 1px #000;
}
.pc-hero {
    display: none;
}
@media (min-width: 767px) {
    .hero p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 50px;
        text-align: center;
        color: #fff;
        text-shadow: 5px 5px 1px #000;
    }
    .sp-hero {
        height: 80vh;
    }
}
/* main */
.cst {
    margin-top: 20px;
    margin-bottom: 100px;
}
.cst h2 {
    text-align: center;
    margin-bottom: 20px;
}
.flex-box {
    display: flex;
    margin-top: 50px;
}
.flex-box img {
    width: 170px;
    height: 170px;
    padding: 10px;
    object-fit: cover;
}
.flex-item h2 {
    text-align: center;
    margin-bottom: 10px;
}
.flex-box:nth-child(2) {
    flex-direction: row-reverse;
}
@media (min-width: 767px) {
    .flex-box img {
        width: 300px;
    }
    .cst p {
        margin-left: 30px;
    }
}
/* footer */
footer {
    text-align: right;
    margin-top: 150px;
    background-color: rgb(229, 143, 97);
    padding: 20px;
}

/* drink */

/* main */
section {
    height: 150px;
    background-color: aliceblue;
}
section h2 {
    margin-bottom: 20px;
    padding: 10px;
}
section ul {
    display: flex;
    padding: 10px;
}
.f-cofe {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
}
.cofe-item img {
    width: 200px;
}
.cofe-item dl {
    text-align: center;
    margin-top: 10px;
}
.cofe-item dl dd {
    background-color: brown;
    color: #fff;
}
.ice {
    width: 100%;
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
}
.ice img {
    width: 300px;
}
.ice-item {
    padding: 30px;
}
.ice-item dl dd {
    margin-bottom: 10px;
}
.ice-item dl dt {
    text-align: right;
}
h3 {
    margin-top: 50px;
}
@media (min-width: 767px) {
    main section {
        margin-bottom: 40px;
    }
    .cofe-item img {
        width: 350px;
        margin-top: 20px;
    }
    .f-cofe {
        margin: auto;
        width: 80%;
        gap: 50px;
    }
    .ice {
        width: 80%;
        justify-content: space-between;
        margin: 0 auto;
    }
    .ice img {
        width: 500px;
    }
    .ice-item {
        font-size: 30px;
    }
}
/* suitu */

/* main */
.sweet {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.sweet-item {
    transition: 0.8s;
}
.sweet-item:hover {
    transform: scale(1.1);
}
.sweet-flex {
    transition: 0.8s;
}
.sweet-flex:hover {
    transform: scale(1.1);
}
.sweet-item img {
    width: 200px;
    margin-top: 20px;
}

.sweet-item dl {
    text-align: center;
    background-color: #000;
    color: #fff;
}
.sweet1 {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.sweet-flex img {
    width: 200px;
    margin-top: 20px;
}
.sweet-flex dl {
    text-align: center;
    background-color: #000;
    color: #fff;
}
@media (min-width: 767px) {
    .sweet {
        gap: 10px;
    }
    .sweet-item img {
        width: 400px;
        margin-top: 20px;
    }
    .sweet1 {
        gap: 10px;
    }
    .sweet-flex img {
        width: 400px;
        margin-top: 20px;
    }
}
/* access */
.szi {
    font-size: 14px;
    margin-top: 50px;
    line-height: 40px;
    margin-left: 20px;
}
.access-item {
    display: flex;
    margin-top: 50px;
}
.rng {
    margin: 0 auto;
}
@media (min-width: 767px) {
    .rng {
        width: 600px;
        height: 600px;
        margin: 0 auto;
    }
    .szi {
        font-size: 20px;
        margin-top: 50px;
        margin-left: 20px;
    }
}
