/* 全体的なスタイル */
body {
    font-family: 'M PLUS Rounded 1c', sans-serif; /* 本文 */
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Shippori Mincho B1', serif; /* 見出し */
    color: #191970;
    /* ダークブルー */
}

/* ナビゲーションバー */
.navbar {
    background-color: rgba(169, 166, 166, 0.532)
    /* ダークブルー */
}

.navbar-brand {
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #ffffff;
    /* 白 */
    margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #f9ec00;
    /* イエロー */
}

/* メインビジュアル */
#home {
    background-color: #ffffff;
    /* 水色 */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    /* 白 */
    text-align: center;
    position: relative;
    /* 相対配置 */
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel {
    width: 100%;
}
.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px; /* テキスト周囲の余白を追加 */
    z-index: 10;
}

.carousel-caption h1 {
    color: #ffffff; /* テキストを白に */
    background-color: rgba(0, 0, 0, 0.6); /* 背景の透明度を上げる */
    border-radius: 5px; /* 角を丸くする */
    display: inline-block; /* テキスト周囲に背景をフィットさせる */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* テキストに影を追加 */
    font-size: 4rem;
    margin: 0; /* テキストの余白をリセット */
}

/* セクション共通 */
section {
    padding: 4rem 0;
}

/* 私たちについて */
#about {
    background-color: #f8f9fa;
    /* 薄いグレー */
}

/* サービス */
#services .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#services .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* カレンダー */
.calendar-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.calendar-container iframe {
    width: 100%;
    height: 600px;
}

/* お問い合わせ */
#contact {
    background-color: #f8f9fa;
    /* 薄いグレー */
}

.social-icons img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
}

/* フッター */
footer {
    background-color: #191970;
    /* ダークブルー */
}
