*{
    margin: 0;
    box-sizing: border-box;
}
  
body {
    font-family: 'Quicksand', sans-serif;
    box-sizing: border-box;
    line-height: 1.4;
    height: 100%;
    background-color: #111;
}

main {
    min-height: calc(100vh - 345px);
}

h1, h2, h3, h4, p, a, i {
    color: #fff;
}
h1 {
    font-size: 26px;
}
a {
    text-decoration: none;
}
ul, li {
    list-style: none;
}

main div.container {
    padding: 125px 2vw 2vw 2vw;
}
/* TEL */
@media screen and (max-width: 1250px) {
    main div.container {
        padding: 135px 5.5vw 2vw 5.5vw;
    }
}

/* Banner */
.banner {
    background-size: cover;
    background-position: center center;
    color: white;
    object-fit: contain;
    height: 448px;
}
.banner__contents {
    margin-left: 30px;
    padding-top: 145px;
    height: 190px;
}
.banner__title {
    font-size: 2.5rem;
    font-weight: 800;
    padding-bottom: 10px;
    margin-bottom: -5px;
}
.banner__description {
    width: 45rem;
    line-height: 1.3;
    padding-top: 1rem;
    font-size: 0.8rem;
    max-width: 360px;
    height: 180px;
}
.banner__button {
    cursor: pointer;
    color: #fff;
    outline: none;
    border: none;
    font-weight: 700;
    border-radius: 0.2vw;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(51, 51, 51, 0.5);
}
a.banner__button {
    font-size: 13px;
}
.banner__button:hover {
    color: #000;
    background-color: #e6e6e6;
    transition: all 0.3s;
}
.banner--fadeBottom {
    margin-top: 140px;
    height: 7.4rem;
    background-image: linear-gradient(180deg, transparent, rgba(37, 37, 37, 0.61), #111);
}