@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@600&display=swap');
body,html {
    margin: 0;
    scroll-behavior: smooth;
    font-family: yu-mincho-pr6, sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}
a {
    color: #A48B78;
}

header {
    font-family: 'Bodoni Moda', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 8em;
}
.furigana {
    display: block;
    font-size: 1rem;
}
header h1 {
    margin: 2em 0 1em;
}
header > a {
    text-align: center;
    margin: 2em 0 0;
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    transition: opacity 0.3s ease-out;
}
.alcohol-active .to-alcohol, .non-alcohol-active .to-non-alcohol {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.slider{
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-out;
    padding-bottom: 8em;
}
.non-alcohol-active .slider {
    transform: translateX(-100vw);
}
.alcohol-menu, .non-alcohol-menu {
    width: 100vw;
    flex-shrink: 0;
}
.sec-ttl {
    background-color: #A48B78;
    color: #fff;
    text-align: center;
    line-height: 1em;
    font-weight: normal;
    padding: 1em 0;
    font-size: 1.7rem;
}
.fixed-scroll {
    position: fixed;
    top: 20vh;
    padding: 1.5em 0.2em;
    height: 7em;
    text-align: center;
    background-color: #A48B78;
    color: #fff;
    writing-mode: vertical-rl;
    transition: transform 0.5s ease-out;
    z-index: 10;
}
.alcohol {
    right: 0;
}
.non-alcohol {
    right: -2.45em;
}
.non-alcohol-active .fixed-scroll {
    transform: translateX(-100vw);
}

.drinks-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5em;
}
.drink {
    margin: 0 0 5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.img-wrap {
    width: 60vw;
    max-width: 400px;
    height: 60vw;
    max-height: 400px;
    overflow: hidden;
    border-radius: 50%;
    border: solid 1px #A48B78;
}
.drink-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cat {
    margin-top: 3em;
    color: #A48B78;
    text-align: center;
}
.cat > a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
.prod-ttl {
    font-size: 1.2rem;
    line-height: 1.7em;
    text-align: center;
}
.drink > p {
    font-size: 0.8rem;
    text-align: center;
    margin: 0 0 1em;
}
.other-drinks .prod-ttl {
    margin: 0;
}
.other-drinks .cat {
    margin-bottom: 1.5em;
}
.other-drinks > p {
    margin: 0 0 2em;
}

footer {
    padding: 6em 1em;
    text-align: center;
    color: #fff;
    background-color: #333;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
footer a {
    color: #fff;
}
.copyright {
    font-size: 0.8rem;
    margin-top: 3em;
}
.to-top {
    width: 30px;
    height: 30px;
    padding: 20px;
    transform: rotateZ(-90deg);
    position: fixed;
    bottom: 2em;
    right: 1em;
    border-radius: 50%;
    border: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}
.to-top:hover {
    opacity: 1;
}
.to-top > img {
    filter: invert(1);
}
.sns-link {
    display: flex;
    align-items: center;
}
.sns-icon {
    margin-left: 1.2em;
    filter: invert(1);
}
.sns-icon:hover {
    opacity: 0.5;
}
.privacy-link, .sns-link {
    margin-bottom: 2em;
}
.privacy-link > a {
    margin-right: 1em;
}
