@charset "utf-8";

/* -----------------------------
	txt-area
-------------------------------- */

.top-txt-area {
	background: var(--beige04);
	margin: 100px auto 50px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: 50px 100px;
	width: 1000px;
}

.top-txt-area .image {
	width: 336px;
}

.top-txt-area .image img {
	width: 100%;
}

.top-txt-area .copy {
	font-family: var(--basefont-jp);
	font-size: 3.0rem;
	font-weight: 400;
	color: var(--gold02);
	padding: 0 0 10px;
}

@media screen and (max-width:768px){

	.top-txt-area {
		margin: 0 auto 30px;
		display: block;
		padding: 50px 20px;
		width: 90%;
	}

	.top-txt-area .image {
		margin: 0 auto;
	}


	.top-txt-area .copy {
		font-family: var(--basefont-jp);
		font-size: 2.5rem;
		font-weight: 400;
		color: var(--gold02);
		padding: 20px 0 10px;
	}
	
}