main {
	background: #f4faff;
}

.content {
	width: 100%;
	font-family: 'Noto sans JP', sans-serif;
}

.lp_content {
	width: 100%;
	overflow: hidden;
}


.lp_breadcrumb {
	background-color: #f4faff;
	font-size: 1.8rem;
	width: 1200px;
	max-width: 100%;
	margin: auto;
	padding: 5px;
}

@media screen and (min-width: 1024px) {
	.main-header {
		margin-bottom: 0 !important;
	}
}

/* トップバナ�? */
.mv-wrap {
	overflow: hidden;
	width: 100%;
	position: relative;
	padding: 0;
	display: block;
}

.mv-wrap {
	width: 100%;
	position: relative;
	padding: 0;
	display: flex;
	margin: auto;
	justify-content: center;
	align-items: center;
}

.mv-wrap img {
	vertical-align: middle;
}

.mv-wrap .mv_back {
	width: 100%;
	max-height: 20vh;
	object-fit: cover;
}

@media screen and (min-width: 768px) {
	.mv-wrap .mv_back {
		max-height: 50vh;
	}
}

.mv-wrap img {
	vertical-align: middle;
}

.mv-wrap .logo_pc {
	display: none;
}

.mv-wrap .logo_pc {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 35%;
}

/* トップ下テキス�? */
.category_explanation_tenjikai {
	font-size: 15px;	
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.category_explanation_tenjikai {
		font-size: 18px;
		text-align: center;
		margin: 50px 0 50px;
	}
}


/* CSS variables for consistency */
:root {
    --body-bg: #f3f4f6;
    /* �?��グレーを排除 */
    --primary-color: #3092d4;
    /* メインカラー (Cyan-500) */
    --dark-color: #0071bd;
    /* バ�?/強調色 (Cyan-600) */
    --accent-color: #0071bd;
    /* コード点線色 (Cyan-700) */
    --text-color: #ffffff;
    /* 白�?�? */
    --text-dark-color: #374151;
    /* �?��グレー�?�? */

    /* ボタンカラー */
    --button-bg-default: #ff6183;
    /* gray-600 */
    --button-bg-hover: #374151;
    /* gray-700 */
    --button-bg-success: #10B981;
    /* green-500 */
    --button-bg-success-hover: #059669;
    /* green-600 */
}

/* 2. クーポンコン�?�� */
.coupon-border {
    position: relative;
    overflow: hidden;
    width: 700px;
    max-width: 100%;
    margin: auto;
    border-radius: 0.75rem;
    display: flex;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* 2.1. �?��取り線�?半�? (変更な�?) */
.coupon-border::before,
.coupon-border::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #f4faff;
    border-radius: 50%;
    z-index: 20;
}

.coupon-border::before {
    left: -15px;
}

.coupon-border::after {
    right: -15px;
}


/* 3. 左側: メインコン�?���?��リア */
#coupon-main-content {
    /* �?��100%に変更 */
    width: 100%; 
    background-color: var(--primary-color);
    padding: 1.5rem;
    position: relative;
    /* 全体に角丸を適用 */
    border-radius: 0.75rem; 
    /* 右側の点線�?削除 */
    border-right: none; 
    /* border-top-left-radius: 0.75rem; */
    /* border-bottom-left-radius: 0.75rem; */
    /* border-r-4 border-dashed border-white */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 4. 右側: バ�?エリア (非表示) */
#coupon-right-bar {
    display: none;
}

/* 4.1. 縦書きテキス�? (非表示) */
.vertical-text {
    display: none;
}

/* 5. 割引情報 (変更な�?) */
.discount-info {
    text-align: center;
    margin-bottom: 1rem;
    /* margin-top: 1.5rem; */
}

.discount-title {
    color: var(--text-color);
    font-size: 2.25rem;
    font-weight: bold;
    /* margin-top: 1.5rem; */
    line-height: 1.2;
}

@media (min-width: 768px) {

    /* md:text-5xl */
    .discount-title {
        font-size: 3rem;
    }
}

/* 6. コー�?/ボタンコン�?�� (変更な�?) */
.code-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 6.1. クーポンコード見�?�? (変更な�?) */
.code-label {
    color: var(--text-color);
    font-size: 18px;
    /* text-sm */
    margin-bottom: 0.25rem;
    font-weight: 600;
    /* font-semibold */
    text-align: center;
}

/* 6.2. クーポンコード表示エリア (変更な�?) */
#coupon-area {
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 2px dashed var(--accent-color);
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 384px;
    /* max-w-sm */
}

#coupon-code {
    padding: 0.5rem;
    /* font-family: monospace; */
    /* font-mono */
    font-size: 2.5rem;
    /* text-2xl */
    font-weight: 700;
    /* font-bold */
    color: #1f2937;
    /* text-gray-800 */
    letter-spacing: 0.05em;
    /* tracking-wider */
    cursor: pointer;
    user-select: none;
    /* select-none */
    text-align: center;
}

@media (min-width: 768px) {

    /* md:text-3xl */
    #coupon-code {
        font-size: 30px;
    }
}

/* 6.3. コピ�?ボタン (変更な�?) */
#copy-btn {
    width: 100%;
    max-width: 384px;
    /* max-w-sm */
    color: var(--text-color);
    font-weight: 700;
    /* font-bold */
    font-size: 18px;
    /* text-lg */
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--button-bg-default);
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

#copy-btn:hover {
    background-color: var(--button-bg-hover);
}

/* コピ�?完�?��の緑色??avaScriptで付与�? (変更な�?) */
.copy-success {
    background-color: var(--button-bg-success) !important;
}

.copy-success:hover {
    background-color: var(--button-bg-success-hover) !important;
}

/* 7. 有効期限�?��ス�? (変更な�?) */
.expiry-container {
    text-align: center;
    margin-top: 1.5rem;
}

#expiry-text-combined {
    font-size: 15px;
    /* text-sm */
    font-weight: 500;
    /* font-medium */
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

@media screen and (min-width: 600px) {
    [class*=button]:hover {
        opacity: 1 !important;
    }
}

/* ================================================= */
/* 📱 スマ�?・タブレ�?��縦向き (767px以�?) - 重要な追加部�? */
/* ================================================= */

@media (max-width: 767px) {
    /* クーポンコン�?��: 縦積みを維�? */
    .coupon-border {
        flex-direction: column; 
        padding: 0; 
        margin: 10px auto; 
    }

    /* 左側: メインコン�?���?��リア */
    #coupon-main-content {
        width: 100%; 
        padding: 1rem; 
        border-right: none; 
        /* 下�?の点線も不�? */
        border-bottom: none; 
        /* 角丸を�?体に適用し直�? */
        border-radius: 0.75rem; 
    }

    /* 右側: バ�?エリア (非表示) */
    #coupon-right-bar {
        display: none; 
    }

    /* 縦書きテキス�?: 非表示 */
    .vertical-text {
        display: none;
    }

    /* タイトルサイズ調整 (変更な�?) */
    .discount-title {
        font-size: 2rem; 
    }

    /* �?��取り線�?半�?: 縦積みになった�?で非表示を維�? */
    .coupon-border::before,
    .coupon-border::after {
        display: none;
    }
}



/* 見�?�? */
.heading-16 {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333333;
	font-size: 35px;
	margin-bottom: 20px;
}

.heading-16::before,
.heading-16::after {
	width: 3px;
	height: 40px;
	background-color: #2589d0;
	content: '';
}

.heading-16::before {
	transform: rotate(-35deg);
	margin-right: 30px;
}

.heading-16::after {
	transform: rotate(35deg);
	margin-left: 30px;
}

@media (max-width: 768px) {
	.heading-16 {
		font-size: 22px;
	}
}

/* product_list */
.block-product__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 30px 0 0;
    flex-direction: column;
}

.block-product__list>li {
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
	border-bottom: 1px solid #ccc;
}

.block-items__item__link {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	height: 100%;
	padding: 10px 0;
	transition: all 0.2s;
}

.block-items__item__link:hover {
	opacity: 0.7;
}

.block-items__item__img {
	text-align: center;
	width: 125px;
	padding: 0;
}

.block-items__item__img img {
	position: relative;
	vertical-align: bottom;
}

.block-items__item__info {
	display: flex;
	flex-direction: column;
	width: calc(100% - 135px);
}

.block-items__item__name {
	margin-top: 0;
	line-height: 1.4;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: bold;
}

.block-items__item__price {
	display: flex;
	align-items: baseline;
	justify-content: start;
	gap: 10px;
	margin: 0;
}

.block-items__item__price--unit {
	font-size: 1.8rem;
}

.block-items__item__price--count {
	font-size: 1.2rem;
}

.block-product__list>li .block-items__item__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	gap: 5px;
}

.block-product__list>li .block-items__item__tag {
	font-size: 1.1rem;
	color: #222;
	border-radius: 50px;
	padding: 5px 10px 5px 21px;
	align-items: center;
	line-height: 1;
	border: 1px solid #ccc;
	margin: 0;
}

.block-product__list>li .block-items__item__tag:before {
	width: 13px;
	height: 11px;
	left: 8px;
}

.block-product__desc {
	color: #888888;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	line-height: 1.5;
	font-size: 1.2rem;
	margin-top: auto;
	margin-bottom: 5px;
}

.block-product__link-btn {
	display: none;
}

@media (min-width: 768px) {
	.block-product__list>li {
		width: calc((100% - 60px) / 4);
		border-bottom: none;
		border: 1px solid #ccc;
        border-radius: 10px;
	}

	.block-product__list>.col_2 {
		width: calc((100% - 30px) / 2);
	}

    .block-product__list {
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

	.block-items__item__link {
		flex-direction: column;
		padding: 15px;
	}

	.block-items__item__img {
		width: 100%;
	}

	.col_2 img {
		width: 70%;
	}

	.col_2 .block-items__item__name {
		font-size: 1.7rem;
	}

	.col_2 .block-items__item__price--unit {
		font-size: 2.4rem;
	}

	.col_2 .block-product__link-btn {
		font-size: 1.8rem;
	}

	.block-items__item__info {
		width: 100%;
	}

	.block-items__item__name {
		display: block;
		/* height: 5rem; */
		word-break: break-word;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		font-size: 1.5rem;
	}

	.block-items__item__price {
		display: flex;
		gap: 10px;
	}

	.block-items__item__price--unit {
		font-size: 1.7rem;
	}

	.block-items__item__price--count {
		font-size: 1.3rem;
	}

	.block-product__desc {
		-webkit-line-clamp: 4;
	}

	.block-product__link-btn {
		width: 90%;
		display: block;
		position: relative;
		background: #1e6fa8;
		margin: auto auto 0;
		padding: 5px 10px;
		text-align: center;
		border-radius: 50px;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
	}

	.block-product__link-btn:after {
		content: "";
		position: absolute;
		top: 46%;
		right: 15px;
		width: 7px;
		height: 7px;
		border-bottom: 3px solid;
		border-right: 3px solid;
		border-color: #fff;
		transform: rotate(-45deg) translate(0, -50%);
	}
}

/* 別ペ�?ジリンクボタン */
.all-item_btn {
	margin-bottom: 100px;
}

.all-item_btn a {
	display: flex;
	justify-content: center;
	position: relative;
	padding: 20px 30px 20px 15px;
	border: 3px solid #ff800f;
	border-radius: 5px;
	color: #222;
	font-size: 1.6rem;
	font-weight: bold;
	max-width: 600px;
	margin: auto;
}

.all-item_btn a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 10px;
	height: 10px;
	transform: rotate(-45deg) translate(0, -50%);
	border-bottom: 3px solid #ff800f;
	border-right: 3px solid #ff800f;
}

.all-item_btn a:hover {
	opacity: 0.7;
}

/* セクション */
.section-navi,
.supervisor__sct {
	width: 1000px;
	margin: auto;
	margin-top: -100px;
	padding-top: 110px;
	padding-bottom: 50px;
}

@media (max-width: 1400px) {
.section-navi,
.supervisor__sct {
	width: 960px;
}	
}

@media (max-width: 768px) {
.section-navi,
.supervisor__sct {
	width: 100%;
}	
}

/* 関連特�? */
.feature_list {
	display: flex;
	flex-wrap: wrap;
	gap: 32px 24px;
	padding-bottom: 40px;
	margin-top: 30px;
}

.feature_list>li {
	width: 100%;
	-ms-flex-direction: row;
	flex-direction: row;
}

.feature_list>li a {
	display: flex;
	flex-direction: column;
	color: #333;
}

.feature_list>li a:hover {
	opacity: 0.7;
}

.feature_list>li img {
	width: 100%;
	vertical-align: bottom;
	border-radius: 8px;
	border: 1px solid #ddd;
}

.feature_list>li .name {
	margin: 8px 0;
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: bold;
}

.feature_list>li .comment {
	line-height: 1.4;
	color: #555;
	font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
	.feature_list>li {
		width: calc((100% - 24px) / 2);
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.feature_list>li .name {
		font-size: 1.8rem;
	}

	.feature_list>li .comment {
		font-size: 1.3rem;
	}
}

/* sidenavi */
#side_navi {
	display: none;
}

/*.section-navi{*/
/*    margin-top: -70px;*/
/*    padding-top: 70px;*/
/*    margin-bottom: 70px;*/
/*    padding-bottom: 70px;*/
/*}*/

@media screen and (min-width: 1400px) and (min-height: 550px) {

	/* 初期表示はサイドメニューが表示された状�? */
	#side_navi {
		position: fixed;
		display: block;
		z-index: 100;
		right: -130px;
		bottom: 30px;
		transition: all 0.3s ease;
	}

	/* 非表示時�?スタイル */
	#side_navi.hidden {
		right: -130px;
	}

	#side_navi.visible {
		right: -130px;
	}

	#side_navi.visible.hidden {
		right: 0;
	}

	/* トグルボタンのスタイル */
	.toggle-btn {
		position: absolute;
		left: -34px;
		top: 50%;
		transform: translateY(-50%);
		background-color: #efefef;
		border: 1px solid #dfdfdf;
		border-radius: 5px 0 0 5px;
		border-right: none;
		padding: 25px 10px;
		cursor: pointer;
		z-index: 1000;
		transition: all 0.3s ease;
		font-size: 1.4rem;
	}

	#side_navi .toggle-btn {
		opacity: 0;
		cursor: default;
	}

	#side_navi.visible .toggle-btn,
	#side_navi.visible.hidden .toggle-btn {
		opacity: 1;
		cursor: pointer;
	}

	.item_navi {
		position: relative;
		border-radius: 10px 0 0 10px;
		width: 130px;
		padding: 15px 10px;
		text-align: center;
		background: #efefef;
		border: 1px solid #dfdfdf;
		border-right: none;
	}

	.snav li {
		margin-top: 5px;
		position: relative;
	}

	.snav li a {
		display: flex;
		align-items: center;
		position: relative;
		color: #222;
		padding: 2px 2px 2px 14px;
		min-height: 15px;
		border: 1px solid #b3b3b3;
		border-radius: 5px;
		background: #fff;
		line-height: 1.3;
		font-size: 1rem;
		font-weight: bold;
		text-align: left;
		transition: all 0.2s;
	}

	.snav li a:before {
		content: "";
		position: absolute;
		top: 39%;
		left: 5px;
		color: #bf0000;
		border-style: solid;
		border-color: transparent;
		border-width: 0.35em 0.5em;
		border-right-color: currentColor;
		border-left: 0;
	}

	.snav li a:hover {
		color: #fff;
		background: #bf0000;
	}

	.snav li a.active {
		color: #fff;
		background: #bf0000;
	}

	/*.section-navi{*/
	/*    margin-top: -100px;*/
	/*padding-top: 110px;*/
	/*margin-bottom: 100px;*/
	/*    padding-bottom: 100px;*/
	/*}*/
}

@media screen and (min-width: 1500px) and (min-height: 650px) {
	#side_navi {
		right: -150px;
	}

	/* 非表示時�?スタイル */
	#side_navi.hidden {
		right: -150px;
	}

	#side_navi.visible {
		right: -150px;
	}

	.item_navi {
		width: 150px;
		padding: 15px 10px;
	}

	.snav li {
		margin-top: 5px;
	}

	.snav li a {
		padding: 10px 5px 10px 17px;
		min-height: 15px;
		font-size: 1.2rem;
	}
}

/*花子�??右�?*/
#imageContainer {
	/* width: 300px; */
	cursor: pointer;
}

/* お問�?��わせセクション全�? */
.contact-section {
	width: 1200px;
	max-width: 100%;
	margin: auto;
	background-color: #2589d0;
	padding: 0 20px 20px;
	border-radius: 8px;
}

/* ヘッ�?ー?��?�お問い合わせ�?こちら�?��? */
.contact-header {
	text-align: center;
	color: white;
	font-size: 28px;
	font-weight: bold;
	padding: 15px 0;
}

/* 白�?��の部�? */
.contact-content {
	background-color: white;
	padding: 20px;
	/* �?��の周り�?余白 */
	border-radius: 10px;
	/* 下�?の角だけ丸�? */
}

/* メール専用ボックス?�左側の�?��を削除したため、中央�?��に近い表示になります�? */
.contact-box.email-only {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* 中央�?�� */
	text-align: center;
}

/* ラベル�?��ス�? */
.contact-label {
	font-size: 20px;
	color: #333;
	margin-bottom: 15px;
}

/* お問�?��わせボタン */
.contact-button {
	display: inline-block;
	background-color: #fe6283;
	/* オレンジ色のボタン */
	color: white;
	text-decoration: none;
	font-size: 25px;
	font-weight: bold;
	padding: 12px 30px;
	border-radius: 5px;
	transition: background-color 0.3s;
	box-shadow: 0 5px 0 #f44165;
	/* 立体感を�?すため�?影 */
	margin-bottom: 10px;
}

.contact-button:hover {
	background-color: #f44165;
	/* ホバーで少し暗く */
}

/* 受付時�?/�?�� */
.contact-info {
	font-size: 15px;
	color: #222;
	margin: 0;
	padding-top: 5px;
}

@media (max-width: 768px) {
.contact-header {
    font-size: 23px;
}
.contact-label {
    font-size: 18px;
}
.contact-button {
    font-size: 22px;
}
.contact-info {
    font-size: 13px;
}
}

/* 全体的なコン�?��のスタイル */
.coupon-section {
	width: 100%;
	/* �?��に応じて�?��調整 */
	max-width: 600px;
	/* �?大�?��設�? */
	margin: 20px auto;
	/* 中央�?�� */
}

/* details要素?�開閉可能な領域全体）�?スタイル */
.coupon-details {
	border: 1px solid #dcdcdc;
	/* �?��グレーの罫�? */
	border-radius: 5px;
	/* �?��丸みのある�? */
	background-color: #fff;
	/* 白�?��景 */
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	/* 軽�?�� */
}

/* summary要素?��?�クーポンの利用方法�?��?タン部�?���?スタイル */
.coupon-summary {
	display: flex;
	/* Flexboxを使って�?��を中央�?�� */
	justify-content: center;
	/* 水平方向�?中央�?�� */
	align-items: center;
	/* 垂直方向�?中央�?�� */
	padding: 15px 20px;
	font-weight: bold;
	font-size: 1.1em;
	color: #333;
	/* �?��色 */
	background-color: #f5f5f5;
	/* ボタンの背景色 */
	cursor: pointer;
	list-style: none;
	/* �?��ォルト�?マ�?カー?�三角）を非表示にする */
	position: relative;
	border-radius: 5px;
	/* 角丸を適用 */
	transition: background-color 0.2s ease-in-out;
	/* ホバー時�?トランジション */
}

/* �?��ォルト�?マ�?カーを非表示にする?�ブラウザ対応用?? */
.coupon-summary::-webkit-details-marker {
	display: none;
}

/* 独自の開閉アイコン?��?ラス・マイナス?�を追加 */
.coupon-summary::after {
	content: "+";
	/* 閉じたとき�?アイコン */
	position: absolute;
	right: 20px;
	/* 右端からの位置 */
	font-size: 1.5em;
	/* アイコンのサイズ */
	line-height: 1;
	/* 行�?高さを調整 */
	color: #666;
	/* アイコンの色 */
	transition: transform 0.2s ease-in-out;
	/* 開閉時�?アニメーション */
}

/* summaryホバー時�?スタイル */
.coupon-summary:hover {
	background-color: #eee;
}

/* details要素が開�?��とき�?summary要素?��?タン?��?スタイル */
.coupon-details[open] .coupon-summary {
	background-color: #e0e0e0;
	/* 開いた時のボタンの背景色 */
	border-bottom: 1px solid #dcdcdc;
	/* 下�? */
	border-radius: 5px 5px 0 0;
	/* 下�?角丸をなくす */
}

/* details要素が開�?��とき�?�アイコンを�?イナスに */
.coupon-details[open] .coupon-summary::after {
	content: "�?";
	/* 開いたとき�?アイコンを�?イナスに変更 */
	transform: rotate(0deg);
	/* 回転は不�? */
}

/* 詳細コン�?���?���??スタイル */
.coupon-content {
	padding: 20px;
	background-color: #ffffff;
	/* コン�?���??背景色 */
	border-top: none;
	/* 上�?罫線をなくす */
	border-radius: 0 0 5px 5px;
	/* 下�?角丸を適用 */
}

.coupon-content h3 {
	margin-top: 0;
	font-size: 1em;
	/* 少し小さめに */
	color: #333;
	border-bottom: 1px solid #eee;
	/* タイトルの下�? */
	padding-bottom: 5px;
	margin-bottom: 15px;
}

.coupon-content ol {
	padding-left: 25px;
	margin-bottom: 15px;
	line-height: 1.6;
	color: #555;
}

.coupon-content ol li {
	margin-bottom: 8px;
}

.coupon-content .coupon-note {
	font-size: 0.9em;
	color: #888;
	padding: 10px;
	background-color: #fcfcfc;
	border-left: 3px solid #ddd;
	margin-top: 20px;
}

.category_explanation_coupon {
	width: 700px;
	margin: auto;
	/* margin-bottom: 50px; */
	font-size: 15px;
	font-weight: bold;
	color: #e43040;
	border: 0;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 20px;
	padding-bottom: 20px;

	/* 斜線�?色�?#e43040に変更 */
	background-image:
		repeating-linear-gradient(45deg, #e43040 0px, #e43040 1px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%),
		repeating-linear-gradient(45deg, #e43040 0px, #e43040 1px, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);

	background-size: 8px 8px;

	background-position: top left, bottom left;

	background-repeat: repeat-x;
}


@media screen and (max-width: 768px) {
.category_explanation_coupon {
	width: 100%;
}
}

/* ---------------------------------------------------------------------- */
/* 新規追加・共通スタイル */
/* ---------------------------------------------------------------------- */

/* 開閉ボタンのスタイル */
.flow-toggle-btn {
	padding: 10px 20px;
	font-size: 20px;
	font-weight: bold;
	color: #222;
	border: 3px solid #2589d0;
	/* 基準となる�?ー�?ー */
	background: #fff;
	border-radius: 6px;
	cursor: pointer;
	/* 中央配置の設�? */
	display: block;
	/* blockにしてmargin: autoを有効�? */
	margin-left: auto;
	margin-right: auto;
	/* 上下�?マ�?ジンを統�? */
	margin-top: 40px;
	margin-bottom: 40px;
	transition: background-color 0.2s, color 0.2s;
	/* borderの変更はtransitionから除�? */
	width: 700px;
	max-width: 100%;

	/* ボタン�?��のFlex設定�?中央配置には不要なため削除しました */
}

.flow-toggle-btn:hover {
	background-color: #1e6fa8;
	/* ホバー時�?背景色 */
	color: #fff;
	border: 3px solid #1e6fa8;
}

/* 新規追加: クリ�?��時�?ズレを防止するためのスタイル */
.flow-toggle-btn:active {
	/* 押し込み時�?標準的な移動効果をリセ�?�� */
	transform: translateY(0);
}


/* フローチャート�?体を囲�?ラ�?��ー */
.flowchart-wrapper {
	/* アニメーションのために transition を設�? */
	transition: max-height 0.4s ease-in-out, opacity 0.4s;
	max-height: 2000px;
	/* 表示時�?�?大の高さ (十�?に大きな値) */
	opacity: 1;
	width: 100%;
}

/* 非表示にするためのスタイル??avaScriptでトグルされる�? */
.is-hidden {
	max-height: 0;
	/* 高さをゼロにして非表示 */
	opacity: 0;
	overflow: hidden;
	/* 中身を隠�? */
	margin: 0;
	padding: 0;
}


/* ---------------------------------------------------------------------- */
/* 既存�?フローチャートスタイル?�変更なし�? */
/* ---------------------------------------------------------------------- */

.flowchart-container {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

/* ス�?��プブロ�?��共通スタイル */
.flow-step {
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	margin: 20px 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	/* 修正: 全体を囲�?青い枠線を追加 */
	border: 1px solid #2589d0;
}

/* ヘッ�?ー (STEP 0X) 部�??共通スタイル */
.step-header {
	flex-shrink: 0;
	width: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	/* STEP�?���?白で強調 */
	padding: 10px 0;
	font-weight: bold;
	background-color: #2589d0;
	/* 青色�? #2589d0 に統�? */
	/* 修正: step-contentとの�?��を示す縦線を追加 */
	border-right: 1px solid #2589d0;
}

.step-number {
	font-size: 1.2em;
}

.step-num-bold {
	font-size: 2.2em;
	line-height: 1;
}

/* コン�?���?���??共通スタイル */
.step-content {
	flex-grow: 1;
	padding: 15px 20px;
	background-color: white;
	/* �?��ブロ�?��の背景は白 */
	color: #222;
	/* �?��スト色�? #222 に統�? */
	font-size: 15px;
	line-height: 1.6;
	/* 修正: ボ�?�?ーを親要素に移したので削除 */
	border: none;
}

/* --- ス�?��プごとの固有スタイル?�すべて同じ�?��インになりました?? --- */

/* STEP 01, 02, 03 のスタイルを統�? */
.step-01 .step-content,
.step-02 .step-content,
.step-03 .step-content {
	/* 共通設定を使用 */
	/* 修正: 不要な border-left: none; も削除 */
}

/* --- 区�?��記号?�下向き�?青い矢印?? --- */
.flow-separator {
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.flow-separator::before {
	content: '';
	position: absolute;
	/* CSSで三角形を作る�?��ニック */
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #2589d0;
	/* 青い三角形�? #2589d0 に統�? */
}
/* ス�?���?1と2の小さ�?��像に適用されるスタイル?�既存�?まま?? */
.step-content img {
    height: 3em;
    width: auto;
    vertical-align: middle;
    margin: 0 5px;
}

/* ス�?���?3の大きな画像に適用される新しいスタイル */
.step-content .step-image-large {
    height: auto;
    width: 100%; 
    display: block; 
    margin: 10px auto 0; 
    vertical-align: initial;
    border: solid 1px #ccc;
}

.tekiyou {
    background: #9d0000;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.heading-18 {
    padding: .5em .7em;
    border: 2px solid #2589d0;
    box-shadow: 5px 5px #2589d0;
    color: #2589d0;
    font-size: 27px;
    background: #fff;
    text-align: center;
}

#prizes_01 .block-product__link-btn {
	background:  #6ac459 !important
}

#prizes_02 .block-product__link-btn {
	background: #fe6283 !important;
}

#prizes_03 .block-product__link-btn {
	background: #ff8d25 !important;
}

.block-toc__list_category {
    gap: 30px;
    display: flex;
    justify-content: center;
}

.button-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: #222;
    font-weight: bold;
    font-size: 27px;
    border: 3px solid #2589d0;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.button-2:hover {
    background-color: #d7e7f2;
    opacity: 1;
}

.button-2::after {
    content: '';
    position: absolute;
    right: 15px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #2589d0;
    border-right: 2px solid #2589d0;
    transform: rotate(135deg);
    transition: all 0.2s;
}

/* .button-2:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
} */

@media screen and (max-width: 768px) {
.block-toc__list_category {
	flex-direction: column;
}
.button-2 {
	width: 100%;
}
}