* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #444;
}

body {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Hiragino Kaku Gothic Pro,"ヒラギノ角ゴシック Pro",Meiryo,"メイリオ", Osaka,MS PGothic,"ＭＳ Ｐゴシック",sans-serif;
}

.pc-width {
    max-width: 1140px;
}

/* header start */
header {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    padding: 1.2rem 0;
    background: none;
    transition: all 0.5s ease;
}

header:hover{
    background-color: rgba(255, 255, 255, 0.3);
}

#menu-box {
    margin: 0 auto;
}

#logo-box {
    display: inline-block;
    max-width: 100px;
    margin-left: 15px
}

#logo {
    height: 100%;
    width: 100%;
    vertical-align: middle;
}

nav {
    float: right;
}

#menu-pc ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

#menu-pc ul li {
    display: inline-block;
}

#menu-pc ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    margin-left: 20px;
    font-size: 1.1rem;
    border-bottom: none;
    position: relative;
}
#menu-pc ul li a::after {
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    background-color: rgb(255, 117, 124);
    left: 0;
    bottom: 0;
}
#menu-pc ul li a:hover::after {
    height: 3px;
}
#menu-pc ul li:first-child a {
    margin-left: 0;
}
#menu-pc ul li:last-child a {
    margin-right: 15px;
}

#menu-sp {
    display: none;
}
/* header end */

/* banner start */
#banner-bg {
    position: relative;
    height: 100vh;
    background-image: url("../img/64989.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#banner-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
/* menu end */

/* footer start */
footer {
    padding-top: 50px;
    background-color: #292929;
}

#footer-box {
    margin: 0 auto;
}


#footer-box div {
    color: #fff !important;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
}

.footer-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px;
}

.footer-item li {
    list-style-type: none;
    width: 200px;
    margin: 0 0 0 auto;
}

.footer-item a {
    text-decoration: none;
    display: block;
    color: #fff;
    padding: 5px 0;
}

#info-1 h4 {
    padding-bottom: 10px;
}

#copyright {
    font-size: 0.8rem;
    text-align: center;
    padding: 15px 0;
}
/* footer end */