/* 癒し系の動的グラデーション背景 (ペールグリーン、ターコイズ、ローズピンク、白) */
.bg-moving-gradient {
    background: linear-gradient(-45deg, #e0f2f1, #e8f5e9, #fce4ec, #e0f7fa);
    background-size: 400% 400%;
    animation: gradientMove 20s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ハンバーガーアイコン設定 (視認できる黒色ベタ塗り) */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000000 !important;
    /* 絶対ルールの黒色 */
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 画像共通スタイル */
.img-style {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* セクションの見出し装飾 */
.title-accent {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -5%;
    width: 110%;
    height: 12px;
    background-color: rgba(77, 208, 225, 0.3);
    /* ターコイズの透過 */
    z-index: -1;
    border-radius: 6px;
}

/* 本文のfont size指定 */
p {
    font-size: 14px !important;
}

@media (min-width: 768px) {
    p {
        font-size: 16px !important;
    }
}

/* テキスト選択禁止（コピー防止用） */
body {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* SP用のレイアウト調整 */
@media (max-width: 767px) {
    .px-\[30px\] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .text-4xl {
        font-size: 2.2rem !important;
    }
    
    .p-6, .p-8 {
        padding: 40px 10px !important;
    }
}

/* SP用追加調整（px-4, py-4の左右余白を10pxに） */
@media (max-width: 767px) {
    .py-4, .px-4 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
