@charset "utf-8";

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

* { 
    margin: 0px; 
    padding: 0px; 
}
body {
    font-family: "Noto Sans JP",
        "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
  }
.logo-area {
    width: 294px;
    margin: 0 auto;
    padding: 40px 0;
}
.text-content {
    margin-top: 5px;
    text-align: center;
}
h1 {
    font-size: 12px;
    font-weight: normal;
}
.hero-content {
    height: 495px;
    background-image: url(img/bg_img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.enter-wrapper {
    padding: 90px 0;
    background: #000;
    color: #fff;
}
.enter-button a {
    width: 300px;
    display: block;
    padding: 15px;
    margin: 0 auto;
    background-color: #bc9501;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    transition: all 0.25s;
}
.enter-button a:hover {
    background-color: #fff;
    color: #bc9501;
    animation: 0.5;
    transition: all 0.25s;
}
.attention-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 565px;
    margin: 30px auto 0;
}
.attention-img img {
    display: block;
    width: 48px;
}
.attention-text {
    font-size: 12px;
}
.attention-text a {
    color: #fff;
}
.attention-text a:hover {
    text-decoration: none;
}
.tel-time-wrapper {
    padding: 30px 0;
    background: #0b1544;
    border-top: 1px solid #4f4f4f;
    color: #fff;
}
.tel-time-content {
    width: 520px;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
}
.time-content .time {
    font-size: 40px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-left: 0.1em;
}
.tel-content .tel {
    font-size: 40px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-left: 0.1em;
}
.footer-content {
    background: #000;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    border-top: 1px solid #4f4f4f;
}

/* SP */
@media (max-width: 600px) {
    .logo-area {
        padding: 15px 0;
    }
    .logo-content {
        text-align: center;
    }
    .logo-content img {
        width: 165px;
        height: auto;
    }
    .hero-content {
        height: 250px;
    }
    .enter-wrapper {
        padding: 45px 0;
    }
    .enter-button a {
        width: 70%;
    }
    .attention-content {
        width: 85%;
    }
    .attention-text {
        margin-left: 10px;
    }
    .tel-time-content {
        width: 90%;
    }
    .time-content .time, .tel-content .tel {
        font-size: 28px;
    }
}