body {
    font-family: 'Zen Antique', serif;
}

body {
    background-image: url('../assets/background.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 300px;
    background-attachment: fixed;
    /* 適宜サイズを調整 */
}

.navbar-brand {
    font-size: 1.4rem;
    text-decoration: underline;
}

.nav-link:hover {
    text-decoration: underline;
}

.btn-contact {
    font-weight: bold;
}

.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);
}

.image-container {

    /* 長方形の高さを指定 */
    overflow: hidden;
    /* はみ出た部分を隠す */
}

.image-container img {
    object-fit: cover;
    /* 画像を親要素にフィットさせる */
    height: 100%;
    /* 親要素の高さに合わせる */
    width: 100%;
    /* 親要素の幅に合わせる */
}

.employee-description {
    font-size: 16px;
    color: black;
    font-weight: 400;
}

.employee-description-title {
    font-size: 20px;
    color: black;
    font-weight: 500;
    text-decoration: underline;
}

.employee-section {
    margin-bottom: 50px;
    margin-top: 50px;
}

.employee-title {
    font-size: 36px;
    font-weight: 500;
}

.employee-subtitle {
    font-size: 16px;
    color: black;
    font-weight: 500;
}

.footer {
    border-top: 2px solid black;
    margin-bottom: 100px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: underline;
}

.footer-link {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link: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;
}