/*-------　リセットCSS　-------*/
body,
menu,

.bottom div {
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
}

.top-logo{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 120px;
    height: auto;
    z-index: 1000;
}

body {
    background-color: #ffe3ec;
    padding: 20px 0;
    font-family: "Rounded M+ 1c", "Rounded M+ 1m", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    overflow-x: hidden;
    position: relative;
}

.strawberry-fall-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.strawberry {
    position: absolute;
    top: -12%;
    animation: strawberry-fall var(--strawberry-duration, 12s) linear infinite;
    opacity: 0.9;
}

.strawberry:nth-child(odd) {
    --strawberry-duration: 13s;
}

.strawberry:nth-child(even) {
    --strawberry-duration: 15s;
}

.page-container {
    max-width: 1080px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}


@keyframes strawberry-fall {
    0% {
        transform: translate3d(0, -10vh, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 112vh, 0) rotate(360deg);
        opacity: 0.8;
    }
}

.page-container {
    max-width: 1080px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

header {
    background-color: #ffffff;
    position: relative;
}

.header {
    background-color: rgb(255, 255, 255);
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.external-link {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-block;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    color: #4d192f;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(197, 50, 88, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.external-link:hover {
    background: #fff0f5;
}


.header img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}



menu {
    background-color:#C53258;
}

.menu {
    background-color: #C53258;
    margin: auto;
    display: flex;

}

.menu a {
    display: block;
    flex: 1;
    text-align: center;
    background-color: rgb(204, 48, 74);
    color: white;
    text-decoration: none;
    padding: 14px 12px;
    font-size: 1.05rem;
}


.menu a:hover {
    background-color: rgb(141, 4, 4);
    transition-duration: 0.3s;
}

.menu-style-box {
    background-color: #fff0f5;
    border: 1px solid #f6c1d6;
    border-radius: 14px;
    padding: 20px;
    margin-top: 24px;
    text-align: left;
}

.menu-style-box p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.menu-style-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.menu-style-list li {
    background-color: #ffe8f2;
    border: 1px solid #f2bdd4;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.menu-style-list li strong {
    color: #b5053b;
}

.menu-description {
    text-align: left;
    margin-left: 34px;
    margin-right: 0;
    padding-left: 0;
}

.highlight-custom {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 1.18rem;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: rgba(181, 5, 59, 0.08);
    border: 1px solid rgba(181, 5, 59, 0.18);
    color: #8b0029;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.content-section {
    background-color:rgb(255, 255, 255);
}

.large-photo {
    width: 100%;
    height: auto;
    display: block;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin: 20px auto 0 auto;
    max-width: 760px;
}

.photo-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.tips-box {
    display: grid;
    gap: 16px;
    margin: 20px auto 0 auto;
    max-width: 760px;
    text-align: left;
}

.tip-item {
    position: relative;
    padding: 20px 20px 18px 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff3f8 0%, #ffe3ec 100%);
    border: 1px solid rgba(197, 50, 88, 0.18);
    box-shadow: 0 14px 24px rgba(197, 50, 88, 0.08);
}

.tip-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #c53258;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.tip-item p {
    margin: 0;
    line-height: 1.8;
    color: #4d192f;
}

.tip-note {
    margin: 20px auto 0 auto;
    max-width: 760px;
    padding: 14px 18px;
    border-radius: 14px;
    background-color: #fff0f5;
    border: 1px solid #f2bdd4;
    color: #8b0029;
    font-weight: 700;
    text-align: left;
}

.info-card {
    margin: 20px auto;
    max-width: 760px;
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff6f9 0%, #ffe3ec 100%);
    border: 1px solid rgba(197, 50, 88, 0.18);
    box-shadow: 0 14px 24px rgba(197, 50, 88, 0.08);
    text-align: left;
}

.info-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #8b0029;
}

.info-card p {
    margin: 0 0 14px 0;
    line-height: 1.8;
    color: #4d192f;
}

.drink-name {
    font-size: 1.12rem;
    font-weight: 800;
    color: inherit;
}

.photo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px auto;
    max-width: 760px;
}

.photo-row.single {
    grid-template-columns: 1fr;
}

.photo-row img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: contain;
    background-color: #fff;
}

@media (max-width: 640px) {
    .tip-item {
        padding: 18px 16px 16px 18px;
    }

    .tip-number {
        position: static;
        margin-bottom: 12px;
    }
}

.content {
    position: relative;
    text-align: center;
    background-color: #ffe3ec;
    background-image: radial-gradient(circle at 20px 20px, rgba(255,255,255,0.8) 10%, transparent 11%),
                      radial-gradient(circle at 100px 100px, rgba(255,255,255,0.8) 10%, transparent 11%);
    background-size: 160px 160px;
    background-position: 0 0, 0 0;
    width: 100%;
    margin: 0;
    padding: 30px 24px;
    max-width: none;
}

.intro-spacer {
    height: 24px;
}

.content h1,
.content h3,
.content h5,
.content p {
    margin-left: auto;
    margin-right: auto;
}

.content p {
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content h1 {
    margin-bottom: 16px;
}

.content h3,
.content h5 {
    margin-bottom: 12px;
}

