body {
    background-color: #fffff5;
}

.dz {
    border: dashed !important;
    border-color:  #ccc !important;
    border-radius: 10px !important;
}

.dz:hover {
    background-color:  aliceblue !important;
}

/* ナビゲーション */
.mybrand {
    font-size: 32px;
}

.navbar-brand:hover {
    opacity: 0.5;
    transition:all .3s;
}

.bg-custom {
    background-color: #fffff5;
}

/* 一覧ページへのリンク */
.mybtn_to_list {
    text-align: right;
}

/* 見出し */
/* h2 大見出しデザイン */
h2 {
    margin: 30px auto;
    padding: 20px 30px;
    color: #4b3621; /* ダークブラウン */
    background-color: #f8f4e3; /* 落ち着いたベージュ */
    text-align: center;
    font-weight: 700;
    font-size: 1.8em;
    border-radius: 10px; /* 角丸で柔らかさを追加 */
    max-width: 600px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* 控えめな影で立体感 */
    letter-spacing: 1px;
}

/* h3 見出しのデザイン */
h3 {
    font-size: 1.2em; 
    font-weight: bold;
    color: #5C4747;
    border-left: 4px solid #D26466; /* アンダーラインの代わりに左側にライン */
    padding: 0.2em 0 0.2em 1.2em;
    position: relative;
    margin-bottom: 1em;
    background-color: #f9f9f9; /* 優しい背景色 */
    box-shadow: inset 4px 0px 0px #D26466; /* 内側の左ラインに影を追加 */
    border-radius: 4px;
}


h3:before {
    background: #d48789;
    position: absolute;
    left: -16px; /* アイコン風の配置に調整 */
    height: 14px;
    width: 14px;
    border-radius: 50%;
    content: "";
    top: 0.1em;
}

h3:after {
    background: #d26466;
    position: absolute;
    left: -10px; /* 左に調整 */
    height: 8px;
    width: 8px;
    border-radius: 50%;
    content: "";
    top: 1.2em;
}


/*
h2 {
    margin: 30px auto 20px;
    padding: 12px;
    color: #158b2b; 
    text-align: center;
    border-top: 1px solid #158b2b;
    border-bottom: 1px solid #158b2b;
    max-width: 500px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
}
*/

/* 管理者表示 */
.to-staff {
    color: red;
}
.to-superuser {
    color: red;
    background-color: pink;
}

/* ボタンのCSSをリセット 連絡一覧の園児名に使用 */
.my-btn {
    border:none;
    background-color: none;
}
.my-btn:hover {
    color: #0069c2;
    text-decoration:underline;
    text-decoration-color:#0069c2;
    border: none;
}

/* サムネ */
.mythumbnail-in-card {
    height: 300px;
    width: 100%;
    object-fit: cover;
}



/* 各 */
.message-area {
    background-color: #fffff5;
    min-height: 5em;
}

