@charset "UTF-8";

/* 下部追従ボタン */
.studio-sticky-area {
    position: fixed;
    bottom: 0;
    left: 0;
	right: 0;
    padding: 12px 15px; /* 上下を少し広げてタップしやすく */
    background: rgba(255, 255, 255, 0.98); /* 白背景を少しだけ濃くして高級感を */
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08); /* 影をふんわりさせて浮遊感を */
    z-index: 999999;
}
.sticky-btn {
    display: flex;
	width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px 10px;
    color: #fff !important;
    text-align: center;
	justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px; /* 少し大きくして視認性アップ */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1); /* 軽い立体感 */
}

.sticky-btn::after {
    content: '\f35d'; /* FontAwesomeの別窓アイコン */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
    font-size: 0.9em;
    opacity: 0.8;
}

.sticky-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

/* ページ内のどこかに .studio-sticky-area が存在する場合、
   そのページの footer.footer-custom に padding をつける */
body:has(.studio-sticky-area) footer.footer-custom {
    padding-bottom: 80px !important;
}

@media screen and (max-width: 400px){
	.studio-sticky-area {
		padding: 12px 0;
	}
}