body {
    background-color: black;
    color: white;
    font-family: 'Zen Antique', serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/background.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    /* 透明度を設定 */
    z-index: -1;
    /* 背景として表示 */
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.business-section {
    margin-bottom: 100px;
}

.business-title {
    font-size: 32px;
    font-weight: 500;
}

.business-subtitle {
    font-size: 16px;
    color: grey;
    font-weight: 500;
}

.business-description {
    font-size: 16px;
    color: grey;
    font-weight: 500;
}

.business-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}


/* ホバー時に下線を表示 */
.custom-hover:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.navbar-toggler {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-toggler-icon {
    width: 20px;
    /* アイコンの幅 */
    height: 20px;
    /* アイコンの高さ */
    margin: 0;

}

.custom-drawer {
    position: fixed;
    top: 60px;
    /* ナビバーの高さ分だけ下に配置 */
    right: -300px;
    /* 初期状態で画面外に配置 */
    width: 300px;
    height: calc(100% - 60px);
    /* ナビバーの高さを引いた残りの高さ */
    background-color: rgba(0, 28, 65, 0.9);
    color: white;
    transition: right 0.3s ease-in-out;
    /* スライドアニメーション */
    z-index: 1050;
    overflow-y: auto;
}

.custom-drawer.open {
    right: 0;
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.bordered-text {
    font-weight: bold;
    font-size: 20px;
    -webkit-text-stroke: 1px white;
    color: transparent;
}

.drawer-links a {
    color: white;
    display: block;
    margin: 5px 0;
}

.social-icons img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* フッターのスタイル */
.footer {
    background-color: white;
    border-top: 2px solid black;
    padding: 20px 0 100px;
    margin-top: 100px;
}

.footer-title {
    font-size: 28px;
    text-decoration: underline;
    color: black;
}

.footer-link {
    font-size: 16px;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}