@charset "UTF-8";

/*-----------------------------------

	header

-----------------------------------*/
@media screen and (max-width: 640px) {
}

/*-----------------------------------

	headline

-----------------------------------*/
#headline {
    width: 100%;
    height: 300px;
    position: relative;
}
#headline h1 {
    font-size: 36px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    padding-bottom: 43px;
    letter-spacing: 0.1em;
    line-height: 1;
}
#headline h1::after {
    font-size: 24px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin:auto;
}
@media screen and (max-width: 840px) {
    #headline {
        height: 0;
        padding-top: 25.4237%;
    }
    #headline h1 {
        font-size: 30px;
        padding-bottom: 28px;
    }
    #headline h1::after {
        font-size: 18px;
    }
}
@media screen and (max-width: 640px) {
    #headline {
        padding-top: 34%;
    }
    #headline h1 {
        font-size: 26px;
        padding-bottom: 24px;
    }
    #headline h1::after {
        font-size: 14px;
    }
}
/*-----------------------------------

	breadcrumb

-----------------------------------*/
#breadcrumb {
    padding: 20px 0;
    margin-bottom: 60px;
}
#breadcrumb ul {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
#breadcrumb ul li {
    color: #707070;
    line-height: 1;
}
#breadcrumb ul li::after {
    content: ">";
    margin: 0 10px;
}
#breadcrumb ul li:last-child::after {
    content: "";
    margin: 0;
}
#breadcrumb ul li a {
    color: #707070;
}
@media screen and (max-width: 640px) {
    #breadcrumb {
        padding: 10px 0;
        margin-bottom: 30px;
    }
}
