@charset "EUC-JP";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	background-color: #ffffff;
}

/* ラッパー：PC・スマホともに画面幅いっぱい */
#wrapper {
	width: 100%;
}

#image-area {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.full-image {
	display: block;
	width: 100%;
	height: auto;
}

/* 上画像の下：PC 60px */
.img-top {
	margin-bottom: 60px;
}

/* 下画像の下：PC 100px */
.img-under {
	margin-bottom: 100px;
}

#button-area {
	width: 100%;
	text-align: center;
	padding: 0 15px 100px;
	background-color: #ffffff;
}

/* ボタン：PC基準は480px幅でセンター合わせ */
.apply-button {
	display: inline-block;
	width: 580px;
	max-width: 100%;
	padding: 18px 20px;
	font-size: 46px;
	font-weight: bold;
	color: #ffffff;
	background-color: #e6521f;
	border-radius: 8px;
	text-decoration: none;
	box-shadow: 0 4px 0 #b8410f;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.apply-button:hover {
	background-color: #ff6a2e;
}

.apply-button:active {
	transform: translateY(4px);
	box-shadow: 0 0 0 #b8410f;
}

/* ===== スマホ（〜768px）：ボタン幅は60%、余白調整 ===== */
@media screen and (max-width: 768px) {
	.img-top {
		margin-bottom: 30px;
	}

	.img-under {
		margin-bottom: 30px;
	}

	#button-area {
		padding: 0 12px 30px;
	}

	.apply-button {
		width: 80%;
		padding: 16px 16px;
		font-size: 16px;
	}
}

/* ===== PC（769px〜）：最低幅900px ===== */
@media screen and (min-width: 769px) {
	#wrapper {
		min-width: 900px;
	}
}
