/* TOP画像 */

.top-image {
    background: url(http://cb-ken.com/wp-content/uploads/2022/10/top2022-scaled.jpg) no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 1;
    color:#fff;
   font-size:2em;
  max-height:460px;
  height: calc(460 / 1600 * 100vw);
}

.top-image img {
    position:absolute;
    left:50%;
    bottom:20%;
    transform:translateX(-50%);
}
@media screen and (max-width:1200px){
	.top-image img {
	    bottom:10%;
	}
}

/* スマホ用 */
@media screen and (max-width: 767px) {
	.top-image img {
	    width:60%;
	}
	.fb-container {
		width: 100%;
		max-width: 500px;
	}
}
 
/* PC用 */
@media screen and (min-width: 768px) {
	.fb-container {
		width: 500px;
	}
}