/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}
a {
	color:#d32d1f;
}
.sp-hide {
	display: none;
}
/* レスポンシブコンテナ */
.wrapper {
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px; /* PC時の最大幅 */
    background-color: #000; /* デザインのベースカラー */
	padding:40px 0;
}

.section {
    background-color: #fff;
    margin:0 auto;
    text-align: center;
	width:560px;
}
.section:first-child {
    margin-bottom:40px;
}

/* ヘッダー/見出し */
.heading-red {
    background-color: #e60012;
    color: #fff;
    padding: 15px;
    font-size: 1.25rem;
    font-weight: bold;
}

.content-inner {
    padding: 30px 20px;
}

/* 壁紙レイアウト */
.wallpaper-flex {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
}

.wallpaper-item {
    flex: 1;
    max-width: 280px;
}

.img-fluid {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto 40px;
}

/* ボタンデザイン */
.btn-red {
    display: inline-block;
    background-color: #e60012;
    color: #fff;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 50px; /* 角丸 */
    font-weight: bold;
    transition: opacity 0.3s;
}

.btn-wide {
    width: 80%;
    max-width: 400px;
    padding: 12px;
}

.btn-red:hover {
    opacity: 0.8;
}

/* テキスト装飾 */
.info-box {
    margin: 30px 0;
    font-size: 0.9rem;
}

.text-red {
    color: #e60012;
    margin-bottom: 15px;
}

.text-left {
    text-align: left;
    font-size: 0.85rem;
    margin-top: 15px;
}
.caution{
	font-size:80%;
	width:100%;
	margin:20px 0;
}

/* レスポンシブ設定 (800px以下) */
@media screen and (max-width: 800px) {
body {
	background-color: #fff; /* スマホ時は外側のグレーを消す */
}

.container {
	max-width: 100%;
}
.section {
    background-color: #fff;
    margin:0 auto;
    text-align: center;
	width:90%;
}
.heading-red {
    font-size: 1rem;
    font-weight: bold;
}
.wallpaper-flex {
	flex-direction: row; /* 横並び維持（画像サイズにより調整） */
}
.btn-red, .btn-wide {
	font-size:0.8rem;
}
.content-inner {
	padding: 20px 15px;
}
.caution{
	font-size:60%;
}
.sp-hide {
	display: block;
}
}
