@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

body {
    font-family: 'Varela Round', sans-serif;
    background-color: #fffaf0;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.zenbu {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.ue {
    text-align: center;
    padding: 20px 0;
    background-color: #ffff88;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #ff69b4;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.ue p {
    font-size: 1.1em;
    color: #666;
}

.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    background-color: #ffff88;
    padding: 10px;
    border-radius: 10px;
}

.menu a, .dropdown > a {
    text-decoration: none;
    color: #333;
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #fff;
    transition: all 0.3s ease;
    border: 2px solid #ffdb4d;
}

.menu a:hover, .dropdown > a:hover {
    background-color: #ff69b4;
    color: #fff;
    border-color: #ff69b4;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: #333;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 0.8em;
    border: none;
}

.dropdown-content a:hover {
    background-color: #ffff88;
    color: #333;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.main {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.piyoimg {
    flex: 0 0 auto;
    width: 40%;
    padding: 10px;  /* 余白を追加 */
}

.piyoimg img {
    max-width: 100%;
    border-radius: 50%;  /* 円形にする */
    border: 3px solid #ffff88;
    box-shadow: 0 0 10px rgba(255, 255, 136, 0.5);  /* 柔らかい影を追加 */
}

.text-content {
    flex: 1 1 auto;
}

.meintext {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.textarea {
    margin-top: 20px;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffff88;
    border-radius: 10px;
    resize: vertical;
    font-family: 'Varela Round', sans-serif;
    font-size: 0.9em;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #ffff88;
    border-radius: 10px;
    color: #666;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .piyoimg {
        width: 100%;
        margin-bottom: 20px;
    }
}