html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Noto Serif JP', sans-serif;
    scroll-behavior: smooth;
}

.serif-font {
    font-family: 'Noto Serif JP', serif;
}

.sticky-note {
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.sticky-note:nth-child(even) {
    transform: rotate(1.5deg);
}

.sticky-note:hover {
    transform: rotate(0deg) translateY(-5px);
}

.InlineLink {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(35, 78, 92, 0.5);
}

.InlineLink:hover {
    opacity: 0.8;
}

/* CTAボタンのテキスト配置 */
/* スマホ版フローティングボタン: 改行しない */
@media (max-width: 767px) {
    .fixed.bottom-0 a {
        white-space: nowrap;
    }
}

/* その他のCTAボタン: 縦に並べる */
.bg-primary.text-white.inline-flex {
    flex-direction: column;
    align-items: center;
}

.bg-primary.text-white.inline-flex span {
    display: block;
}