@charset "UTF-8";

body {
    font-family: "FOT‑Chiaro Std B", sans-serif;
    font-weight: 700;
}

/* 全体 */
.container {
    width: 1300px;
    height: 768px;
    max-width: 100%;
    margin: 0 auto;
}

/* ヘッドスクロールバナー */
.header {
    width: 100%;
    height: 47px;
    padding: 0 55px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #feb7de;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* スクロール画像 */
.scroll-img {
    position: absolute;
    left: -200px;
    width: 130px;
    height: auto;
    animation: moveRight 10s linear infinite;
}

/* スクロールアニメーション */
@keyframes moveRight {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        transform: translateX(120vw);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

main {
    height: 400px;
    height: 768px;
    margin: 7px 50px;
}

/* ロゴ */
.rogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 7px;
}

.left-ue {
    padding-bottom: 5px;
}

.left-group {
    display: flex;
    /* font-size: 25px; */
    font-family: fot-chiaro-std, sans-serif;
    font-style: normal;
    font-weight: bold;
    /* line-height: 25px; */
    letter-spacing: -0.06em;
}

.left-group {
    font-size: 25px;
    line-height: 25px;
}

/* スマホ用：画面幅が600px以下なら文字を小さく */
@media (max-width: 768px) {
    .left-group {
        font-size: 12px;
    }
}

.left-group img {
    margin-right: 10px;
}

.right-ue {
    padding-bottom: 5px;
}

/* メニューアイコン */
.menu-container {
    position: relative;
    display: inline-block;
}

/* プルダウンメニュー */
.menu-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 8px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    min-width: 120px;
    white-space: nowrap;
}

.menu-container:hover .menu-links {
    display: block;
}

.menu-links a {
    display: block;
    padding: 8px 16px;
    color: #e4007f;
    text-decoration: none;
}

.menu-links a:hover {
    background-color: #f0f0f0;
}

/* コンテンツ*/
.strawberry-img {
    display: flex;
    gap: 10px;
}

/* コンテンツバナー画像 */
.strawberry-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* フッター */
.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 50px;
    text-align: center;
}

.footer-nav p {
    color: rgb(141, 124, 133);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 10px;
}

.footer-links a {
    color: #ff81ea;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: rgb(170, 115, 254);
}