/*
Theme Name: Swell Child
Theme URI: http://ssnorkel.com/1fr-9bih0f68/wp-content/swell-child/
Discription: swell-child Theme
Template: swell
*/
.post_content h2{
	font-size:1.1em;
	padding:0.2em 1em;
}
.post_content a:hover{
	text-decoration:underline;
}

#fix_bottom_menu .menu-item span{
	font-size:1.2em;
	padding:6px;
	
}

/* ==============================================
   ローディング画面のスタイル（予約送信時）
   ============================================== */
#loading-overlay {
    display: none; /* 最初は隠す */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 背景を半透明の黒に */
    z-index: 99999; /* 最前面に表示 */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* くるくる回るスピナー */
.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db; /* 青色 */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* 回転アニメーション定義 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* メッセージのスタイル */
.loading-message {
    font-size: 18px;
    font-weight: bold;
    padding: 0 20px;
    line-height: 1.5;
}