/* 共通スタイル（画面サイズに関わらず適用されるスタイル） */
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

header {
    width: 100%;
    background-color: #cd4629;
    background-image: url("../img/jazzbird2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}

.logo {
    position: relative;
    top: 5px;
    left: 10px;
    margin: 0;
}

nav {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: space-around;
}

nav ul li {
    list-style: none;
    display: inline-block;
    width: 15%;
    text-decoration: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

main {
    flex: 1;
    text-align: center;
    padding: 10px 30px;
    min-height: 300px;
    background-color: #fff;
    overflow-y: auto;
}

.info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-decoration: none;
}

.info h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.info h4 a {
    text-decoration: none;
    color: #000; /* または color: black; */
}

.info p {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.schedule-text {
    margin-bottom: 00px;
}

.schedule-text p {
    font-size: 18px;
    font-weight: bold;
    line-height: 0.5;
}

.calender-image {
    width: 100%;
    max-width: 500px;
    height: auto;
	padding-bottom: 20px;
}

footer {
    text-align: center;
    width: 100%;
    height: auto;
    background-color: #b3aba9;
    position: relative;
}

footer .text {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

/* 767pxより大きい画面に適用されるスタイル */
@media screen and (min-width: 767px) {
    header {
        height: 180px;
    }

    .logo {
        width: 300px;
    }
}

/* 767px以下の画面に適用されるスタイル */
@media screen and (max-width: 767px) {
    header {
        height: 120px;
    }

    header h2 {
        font-size: 20px;
    }

    .logo {
        width: 160px;
    }

    .schedule-text {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }
}