/* 水彩画風のメッセージスタイル */
.message-section {
    background-color: #fff;
    position: relative;
}

.message-card {
    background-color: white;
    border-radius: 0;
    padding: 2.5rem 2rem;
    box-shadow: none;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border: none;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .message-card {
        padding: 1.5rem 1rem;
    }
}

.message-author {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.message-author-img {
    margin-right: 2rem;
}

.message-author-img img {
    width: 120px; /* Larger image */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.message-author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-author-info h3 {
    font-size: 1.8rem; /* Larger name */
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.message-author-info p {
    margin-bottom: 0;
    color: #666;
    font-size: 1.1rem; /* Larger title */
}

.message-text h2 {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    color: #8B5CF6; /* 紫色 */
    transform: rotate(-0.5deg);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.message-text p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

/* 水彩画風の要素 */
.paint-splash {
    position: absolute;
    width: 300px;
    height: 300px;
    left: 10%;
    top: 20%;
    background-color: rgba(144, 238, 144, 0.2);
    border-radius: 50% 60% 50% 40% / 40% 50% 60% 50%;
    z-index: 0;
    opacity: 0.7;
}

/* 緑のハイライト効果 */
mark.highlight-green {
    display: inline;
    background-color: transparent;
    position: relative;
    padding: 0 1px;
    color: inherit;
    font-weight: inherit;
}

mark.highlight-green::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    background-color: rgba(96, 210, 170, 0.4);
    border-radius: 1px;
    z-index: -1;
}

/* 赤のハイライト効果（Rally用） */
mark.highlight-red {
    display: inline;
    background-color: transparent;
    position: relative;
    padding: 0 1px;
    color: inherit;
    font-weight: inherit;
}

mark.highlight-red::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    background-color: rgba(255, 105, 180, 0.3);
    border-radius: 1px;
    z-index: -1;
}

/* 大きな見出し効果 - 手書き風に拡大 */
.big-question {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 3.5rem 0;
    line-height: 1.4;
    color: #3B82F6; /* 青色 */
    transform: rotate(-1deg);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

/* 縦書きタイトルスタイル */
.vertical-title {
    position: absolute;
    right: 15%;
    top: 30%;
    writing-mode: vertical-rl;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    padding: 30px 15px;
    border: 3px solid #000;
    background-color: white;
}

/* 手書き風のテキスト - 緑色 */
.handwritten {
    font-family: 'Comic Sans MS', cursive;
    color: #4CAF50; /* 緑色 */
    font-size: 2.5rem;
    text-align: center;
    margin: 3.5rem 0;
    transform: rotate(-2deg);
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

/* 手書き風のテキスト - 青色 */
.handwritten-blue {
    font-family: 'Comic Sans MS', cursive;
    color: #3B82F6; /* 青色 */
    font-size: 2.5rem;
    text-align: center;
    margin: 3.5rem 0;
    transform: rotate(1deg);
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

/* 手書き風のテキスト - 紫色 */
.handwritten-purple {
    font-family: 'Comic Sans MS', cursive;
    color: #8B5CF6; /* 紫色 */
    font-size: 2.5rem;
    text-align: center;
    margin: 3.5rem 0;
    transform: rotate(-1deg);
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

/* 手書き風のテキスト - 赤色 */
.handwritten-red {
    font-family: 'Comic Sans MS', cursive;
    color: #FF0000; /* 赤色 */
    font-size: 2.5rem;
    text-align: center;
    margin: 3.5rem 0;
    transform: rotate(1.5deg);
    line-height: 1.4;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

/* 飾り罫線 */
.fancy-border {
    border-left: 4px solid #76c893;
    padding-left: 20px;
    margin-left: 20px;
}

/* グレーの小見出し */
.side-title {
    transform: rotate(90deg);
    position: absolute;
    left: -60px;
    color: #aaa;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
