@charset "utf-8";

/*--------------------------------------------
常に表示する「くじを購入する」ボタンの
ページ最下部表示時のフッター余白に対応@2022-08-12
--------------------------------------------*/

body {
	padding-bottom: 70px;
}

/*------------------------------------------*/


main {
	background-position: calc(50% + 190px) -260px;
	background-repeat: no-repeat;
	background-size: 1220px auto;
}

/* レイアウトへ */
/* リンク一覧メニュー */
.main .menu {
	margin-bottom: 43px;
}

/*--------------------------------------------
メイン　カラム
--------------------------------------------*/

.main {
	padding: 45px 30px 70px;
}

.main .wrap_column {
	display: flex;
	justify-content: center;
	max-width: 1255px;
	margin: 0 auto;
}

.main .column1 {
	padding-right: 25px;
	width: 100%;
}

.main .column2 {
	max-width: 235px;
	width: 100%;
	min-width: 172px;
}

/*--------------------------------------------
メイン　スライドショー
--------------------------------------------*/

.main .wrap_slideshow {
	position: relative;
	width: calc(100% - 50px);
}

.main .wrap_slideshow:before {
	content: "";
	display: block;
	/* padding-top: 64%; */
	padding-top: 66.66%;
}

.main .slideshow {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 150px;
	overflow: hidden;
	z-index: 1;
}

/*--------------------------------------------
メイン 要素
--------------------------------------------*/

.main .title {
	position: relative;
	margin-right: 120px;
	margin-top: -50%;
	z-index: 10;
}

.main .overview {
	width: 100%;
	margin-top: 32px;
}

.main .logo {
	margin-bottom: 40px;
}

.main .singup_btn {
	margin-bottom: 17px;
}

.main .start_btn {
	margin-top: 25px;
}

.main .price_circle {
	margin: 45px auto;
}

/*--------------------------------------------
情報エリア（販売価格や期間など）
--------------------------------------------*/

.info_area {
	margin-bottom: 100px;
}

/*--------------------------------------------
商品エリア
--------------------------------------------*/

.item_area {
	/* margin: 75px 0 0; */
	/* padding: 75px 0 0; */
	padding: 69px 0;
	/* padding-bottom: 60px; */
	/* background-color: #fff; */
	/* 2022-09-08 StudioSEIA 無効 */
}

.rank_item {
	width: 100%;
	padding: 55px 30px 0;
	min-height: 916px;
	/* min-height: 1150px; */
	margin: 0 0 35px;
}

.item_area .wrap_rank {
	max-width: 1162px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 55px;
}

.item_area .volume {
	transform: translateY(7.5%);
}

.item_area .wrap_column {
	max-width: 1162px;
	display: flex;
	margin: 0 auto;
}

.item_area .column1 {
	margin-right: 55px;
	max-width: 350px;
	flex: .5;
}

.item_area .column2 {
	flex: 1;
}

.item_area .item_bg1 {
	background-repeat: no-repeat;
	background-position: calc(50% - 30px) 0;
	background-size: 1900px auto;
	margin: 0 0 90px;
}

.item_area .item_bg2 {
	background-repeat: no-repeat;
	/* background-position: center top 110px; */
	background-position: center top 50px;
	background-size: 1900px auto;
	padding-top: 0;
}

/*--------------------------------------------
くじ購入
--------------------------------------------*/

#sticky_btn {
	position: fixed;
	bottom: 40px;
	z-index: 100;
}

#sticky_note {
	position: fixed;
	bottom: 0;
	width: 100% !important;
	animation-duration: .3s;
	animation-fill-mode: forwards;
	z-index: 99;
}

#sticky_note p {
	animation-duration: .3s;
	animation-fill-mode: forwards;
}

/*------------
上部トリガー処理
-------------*/
/* 背景表示アニメーション */
.sticky_top_on {
	animation-name: stickyAnime1On0;
}

.sticky_top_off {
	animation-name: stickyAnime1Off0;

}

@keyframes stickyAnime1On0 {
	from {
		/* bottom: 5px; */
		padding: 0 15px;
		background-color: rgba(255, 255, 255, 0);
	}

	to {
		/* bottom: 0; */
		padding: 35px 20px 10px;
		background-color: rgba(255, 255, 255, 1);
	}
}

@keyframes stickyAnime1Off0 {
	from {
		/* bottom: 0; */
		padding: 35px 20px 10px;
		background-color: rgba(255, 255, 255, 1);
	}

	to {
		/* bottom: 5px; */
		padding: 0 15px;
		background-color: rgba(255, 255, 255, 0);
	}
}

/* 文字サイズアニメーション */
.sticky_top_on p {
	animation-name: stickyAnime2On;
}

.sticky_top_off p {
	animation-name: stickyAnime2Off;
}

@keyframes stickyAnime2On {
	from {
		font-size: 1rem;
	}

	to {
		font-size: 0.875rem;
	}
}

@keyframes stickyAnime2Off {
	from {
		font-size: 0.875rem;
	}

	to {
		font-size: 1rem;
	}
}

/*--------------------------------------------
ブロマイドサンプル表示
--------------------------------------------*/

.puromaido_sample {
	max-width: 715px;
	width: 90%;
	border-radius: 18px;
	margin: 0 auto;
	/* border: 1px solid #000; */
	padding: 5px;
}

@media (max-width: 1024px) {

	/*--------------------------------------------
	メイン　要素
	--------------------------------------------*/

	.main {
		padding: 45px 30px 26px;
	}

	.main .column1 {
		padding-right: 30px;
	}

	.main .column2 {
		max-width: 172px;
	}

	.main .wrap_slideshow {
		position: relative;
		width: calc(100% - 25px);
	}

	.main .slideshow {
		border-radius: 70px;
	}

	h1.title {
		font-size: 26px;
		padding: 14px 25px 14px 15px;
		margin-top: -4% !important;
		margin-right: 50px !important;
	}

	.overview {
		padding: 30px 35px 30px 15px;
		border-radius: 0 47px 47px 0;
	}

	.main .singup_btn {
		margin-bottom: 12px;
	}

	.main .start_btn {
		margin-top: 12px;
	}

	.main .price_circle {
		margin: 30px auto;
	}

	/*--------------------------------------------
	情報エリア
	--------------------------------------------*/

	.info_area {
		margin-bottom: 79px;
	}

	/*--------------------------------------------
	商品エリア
	--------------------------------------------*/

	.item_area .wrap_rank {
		margin: 0 auto 65px;
	}

	.item_area .volume {
		transform: translateY(35%);
	}

	.item_area .column1 {
		margin-right: 35px;
		max-width: 200px;
	}

	.rank_item {
		padding: 0 30px 0;
		/* min-height: 640px; */
		min-height: 650px;
		/* margin: 0 0 0; */
	}

	.item_area .item_bg1 {
		background-repeat: no-repeat;
		background-position: calc(50% + 30px) 0;
		background-size: 1400px auto;
		margin: 0 0 50px;
	}

	.item_area .item_bg2 {
		background-repeat: no-repeat;
		background-position: center top 50px;
		background-size: 1400px auto;
	}

}

/*--------------------------------------------
KUJI555のデザインに対応@2026-02-05 StudioSEIA
--------------------------------------------*/
#progress-bar {
	background: #DE5854 !important
}

.main {
	padding: 0 0 1em;
}

.main .wrap_column {
	align-items: center;
	flex-direction: column-reverse;
	max-width: 100%;
	/* background-color: tomato; */
	width: 100%;
	position: relative;
}

.main .column1 {
	padding-right: 0;
	/* max-width: 1255px; */
	max-width: 1000px;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	flex-direction: column;
	padding-top: 2em;
}

.main .column2 {
	max-width: 100%;
	width: 100%;
	min-width: 0;
}

.main .wrap_slideshow {
	/* width: 80%; */
	width: 100% !important;
	filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.2));
	margin: 0 auto;
}

.main .slideshow {
	border-radius: 10px !important;
}

.main .title {
	margin-right: 0px;
	margin-top: 1em;
	/* padding-top: .75em; */
	/* border-top: #00000039 1px solid; */
}

.main .overview {
	margin-top: 1em;
}

h1.title {
	padding: 0;
	border-radius: 0;
	margin-left: 0px;
}

.overview {
	padding: 0;
	border-radius: 0;
	margin-left: 0px;
}

.main #logo_menu {
	/* background-color: turquoise; */
	background-color: #fff;
	width: 100%;
	height: 60px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.main #login_price_itemlink {
	/* max-width: 150px; */
	/* max-width: 100%; */
	max-width: auto;
	width: auto;
	position: absolute;
	right: 20px;
	top: 0px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 1em;
	/* background-color: cadetblue; */
	height: 60px;
}

.main #login_price_itemlink .wrap {
	/* max-width: 100%; */
	width: auto;
	/* display: flex; */
	display: flex;
	align-items: flex-start;
	gap: 1em;
}

.main .btn_main.t1 {
	margin-bottom: 0;
	background-color: #de5853 !important;
	color: #fff !important;
	border: 1px solid #de5853 !important;
}

.main .start_btn {
	margin-top: 0;
}

.main #logo_menu > img,
.main a:has(.logo) {
	width: 120px;
	display: inline-block;
	vertical-align: top;
}

.main .logo {
	margin-bottom: 0;
	width: 100%;
	vertical-align: top;
	line-height: 0;
}

.menu.header {
	position: absolute;
	/* background-color: violet; */
	background-color: #fff;
	border-top: #00000039 1px solid;
	border-bottom: #00000039 1px solid;
	top: 60px;
	left: 0;
	/* display: none; */
	width: 100%;
	padding: 0px 20px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* filter: drop-shadow(0px 10px 10px rgba(0,0,0,0.6)); */
}

.menu_list {
	display: flex;
	/* flex-direction: column; */
	flex-wrap: wrap;
}

.menu_list li:not(:last-child) {
	margin-bottom: 0px;
	/* margin-right: 4em; */
	margin-right: min(4vw, 4em);
}

.menu_list li a {
	display: flex;
	align-items: center;
}

.menu_list li a::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	/* background-color: #de5853; */
	margin-right: 5px;
}

.menu_list li:has(a[href*="info"]) a::before {
	background-image: url("../../img/common/icon-menu-1.svg");
}

.menu_list li:has(a[href*="my_page"]) a::before {
	background-image: url("../../img/common/icon-menu-2.svg");
}

.menu_list li:has(a[href*="collection"]) a::before {
	background-image: url("../../img/common/icon-menu-3.svg");
}

.menu_list li:has(a[href*="payment_history"]) a::before {
	background-image: url("../../img/common/icon-menu-4.svg");
}

.menu_list li:has(a[href*="delivery"]) a::before {
	background-image: url("../../img/common/icon-menu-5.svg");
}

.menu_list li:has(a[href*="hand_over"]) a::before {
	background-image: url("../../img/common/icon-menu-6.svg");
}

.menu_list li:has(a[href*="logout"]) a::before {
	background-image: url("../../img/common/icon-menu-7.svg");
}

.btn_main {
	width: fit-content;
	height: auto;
	line-height: 1rem;
	/* font-weight: bold; */
	font-weight: 500;
	border-radius: 10px;
	display: block;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	font-size: .9rem;
	text-decoration: none !important;
	text-align: center;
	padding: 7px 15px;
	border: 1px solid #00000043 !important;
}

.btn_main.small {
	height: auto;
}

#login_price_itemlink .wrap:last-child .btn_main,
.start_btn {
	background-image: none;
	display: flex;
	align-items: center;
	margin-top: 0 !important;
}

#login_price_itemlink .wrap:last-child .btn_main::before,
.start_btn::before {
	content: "";
	display: inline-block;
	width: 11px;
	height: 16px;
	background-image: url("../../img/common/beginner_mark.svg");
	background-size: 11px auto;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 1em;
}

main {
	background-image: none !important;
}

@media (max-width: 820px) {
	main {
		background-image: none !important;
	}
}

.info_area {
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 auto;
	/* justify-content: flex-start; */
	/* background-color: turquoise; */
	width: auto;
	padding-bottom: 1.5em;
	margin-bottom: 2em;
	/* border-top: #00000039 1px solid;
	padding-top: 1.5em;
	margin-top: .5em; */
}

.info_area>*:not(:last-child) {
	margin-right: 0px;
	margin-bottom: 1em;
}

.info_area .box {
	/* display: inline-block !important; */
	padding: 0;
	max-width: none;
	width: auto !important;
	border-radius: 0px;
	text-align: left;
	display: flex;
	background-color: transparent !important;
	align-items: center;
}

.info_area .box h5 {
	margin-bottom: 0px;
}

.info_area .box h6:nth-of-type(2) {
	margin-top: 0;
}

.info_area .box .small {
	margin-top: 0px;
	margin-left: .5em !important;
	border: 1px solid #ff0000;
	padding: .25em .5em;
	line-height: 1.25em;
	color: #ff0000;
}

.h_box {
	/* font-weight: 500; */
	border-radius: 0;
	/* display: inline-block; */
	padding: 0;
	/* font-size: 1rem; */
	background-color: transparent !important;
	color: #000 !important;
	font-weight: bold;
}

.h_box::before {
	content: "【";
}

.h_box::after {
	content: "】";
}

.info_area .box br,
.info_area .box h6 {
	display: none;
}

.info_area .box h6:last-of-type+p::before {
	content: "〜";
	margin-left: .5em;
	margin-right: .5em;
}

.heading {
	min-height: 61px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	/* padding: 15px 20px; */
	padding: 3em 0 0;
	font-size: 1.75rem;
	font-weight: bold;
	background-color: #00000010;
	display: none;
}

.item_area {
	/* background-color: #00000010; */
	/* background-color: #faeded; */
	background-color: #ffecec;
	padding: clamp(3em, 5vw, 5em) 2.5vw;
}

.item_bg1 {
	background-image: none !important
}

.item_bg2 {
	background-image: none !important
}

@media (max-width: 820px) {

	.item_bg1 {
		background-image: none !important
	}

	.item_bg2 {
		background-image: none !important
	}
}

.rank_item {
	background-color: #fff;
	max-width: 1300px;
	margin: 0 auto !important;
	min-height: 0;
	padding: 0 !important;
	border-radius: 20px;
	position: relative;
}

.rank_item:first-child {
	/* padding-top: 5em !important; */
	/* border-top: #00000050 1px solid; */
}

.rank_item {
	/* padding-top: 4em !important;
	padding-bottom: 5em !important; */
	padding: clamp(1.5em, 4vw, 4em) min(4vw, 4em) clamp(3em, 5vw, 5em) !important;
	/* border-bottom: #00000050 1px solid; */
}

.rank_item:not(:last-child) {
	margin-bottom: clamp(3em, 5vw, 5em) !important;
}

.wrap_rank {
	position: absolute;
	align-items: center;
}

.rank_item:nth-child(7n+1) .rank {
	background-color: #DE5854;
}

.rank_item:nth-child(7n+1) .volume {
	border: 1px solid #DE5854 !important;
	color: #DE5854 !important;
}

.rank_item:nth-child(7n+2) .rank {
	background-color: #5492DE;
}

.rank_item:nth-child(7n+2) .volume {
	border: 1px solid #5492DE !important;
	color: #5492DE !important;
}

.rank_item:nth-child(7n+3) .rank {
	background-color: #6BD62E;
}

.rank_item:nth-child(7n+3) .volume {
	border: 1px solid #6BD62E !important;
	color: #6BD62E !important;
}

.rank_item:nth-child(7n+4) .rank {
	background-color: #54DEC5;
}

.rank_item:nth-child(7n+4) .volume {
	border: 1px solid #54DEC5 !important;
	color: #54DEC5 !important;
}

.rank_item:nth-child(7n+5) .rank {
	background-color: #DEC954;
}

.rank_item:nth-child(7n+5) .volume {
	border: 1px solid #DEC954 !important;
	color: #DEC954 !important;
}

.rank_item:nth-child(7n+6) .rank {
	background-color: #DE54A3;
}

.rank_item:nth-child(7n+6) .volume {
	border: 1px solid #DE54A3 !important;
	color: #DE54A3 !important;
}

.rank_item:nth-child(7n+7) .rank {
	background-color: #9254DE;
}

.rank_item:nth-child(7n+7) .volume {
	border: 1px solid #9254DE !important;
	color: #9254DE !important;
}

.rank_item .volume {
	/* display: none; */
	/* border-radius: none !important; */
	/* border: none !important; */
	width: auto !important;
	height: auto !important;
	line-height: 1em !important;
	/* border: 1px solid #DE5854 !important; */
	border-radius: 0;
	padding: 4px 10px 5px !important;
	font-size: 15px !important;
	font-weight: bold !important;
	/* color: #DE5854 !important; */
	margin-left: 17px;
	transform: none !important;
}

.rank_item .volume br {
	display: none;
}

.rank_item .rank {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	width: 98px;
	height: 98px;
	text-align: center;
	/* background-color: #DE5854; */
	border: none;
	color: #fff;
}

.item div.rank {
	letter-spacing: .05em;
	/* font-size: 35px; */
	font-size: clamp(1.5em, 3vw, 35px);
	/* top: 1%; */
	/* left: auto; */
	/* right: 2%; */
	top: auto;
	bottom: 1%;
	left: 2%;
	background-color: #fff;
	padding: 0px 3px 0px 6px;
	/* line-height: 35px !important; */
	line-height: clamp(1.5em, 3vw, 35px) !important;
}

.rank svg {
	width: 34px;
	margin: 0px;
	line-height: 1em;
	margin-bottom: 5px;
}

.rank svg text {
	font-size: 49px;
	stroke: transparent;
	font-weight: bold;
}

.rank span {
	margin-left: 0;
	font-size: 38px;
	font-weight: 500;
	font-weight: bold;
	margin-top: 3px;
	margin-bottom: 5px;
}

.rank svg text.foreground {
	fill: #fff !important;
}

.rank svg text.background {
	stroke-width: 0;
	stroke-linejoin: round;
	line-height: 1em;
	stroke: #2F2F2F;
	stroke: none;
}

.rank_info h3 {
	padding-bottom: .3em;
	margin-top: .3em;
	margin-bottom: .3em;
}

.rank_info h3::after {
	display: none;
}

.item_area .wrap_column {
	max-width: none;
}

.item_area .column1 {
	padding-top: calc(150px - 1em);
}

.item_area .column2 {
	/* margin-top: -150px; */
}

.item {
	position: relative;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	list-style-type: none;
	background-color: #fff;
	border: none !important;
	filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.2));
}

.item img {
	/* 2022-09-13 StudioSEIA 変更 */
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 0;
	object-fit: cover;
}

.item p.name {
	padding: 15px 15px;
	/* font-weight: 500; */
	/* font-size: .85rem; */
	border-radius: 0;
	/* line-height: 1em; */

	background-color: transparent !important;
	color: #000;
	border-top: none !important;
}

.item::after {
	top: 2%;
	right: 2%;
	width: 25px;
	height: 25px;
}

#sticky_trigger_top {
	height: 0px !important;
}

.note_area {
	padding: clamp(3em, 5vw, 5em) 2.5vw;
	/* background-color: #de59549f !important; */
	background-color: rgb(243, 243, 243) !important;
}

.note_area .note {
	background-color: #fff !important;
	padding: clamp(1em, 4vw, 2em);
	border-radius: 20px;
}

.note_area .note:not(:last-child) {
	margin-right: 2.5vw;
}

.note_area .note h4 {
	font-size: 18px;
	padding-bottom: 30px;
	border-bottom: none;
	margin-bottom: 0px;
}

.note_area .container {
	max-width: 1300px;
}

.stripe::before {
	display: none;
}

footer {
	padding: 2rem 30px;
	/* background-color: #de5854; */
	background: none;
	/* color: #fff; */
	text-align: center;
}

footer h1 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

footer nav ul {
	display: flex;
	justify-content: center;
}

footer nav ul li {
	float: none;
	margin-bottom: .5rem;
}

footer nav ul li:not(:last-child) {
	margin-right: 0px;
}

footer nav ul li:not(:last-child)::after {
	content: "|";
	margin: 0 1rem;
}

footer nav ul li a {
	text-decoration: underline;
}

footer .copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	opacity: 1;
	font-size: .6rem;
}

.onepoint::after {
	background-image: none !important;
}

#sticky_btn {
	/* max-width: 500px; */
	border-radius: 100px !important;
	background-color: #fff !important;
	bottom: 1em !important;
	z-index: 10;
}

#sticky_btn .btn_main {
	height: 80px !important;
	border-radius: 100px;
	color: #fff !important;
	font-size: 27px;
	font-weight: bold !important;
	border: none !important;
	line-height: normal !important;
	padding-top: .25em !important;
}

#sticky_btn .btn_main.t1 {
	background-color: #DE5854;
}

#sticky_note {
	bottom: 1em;
}

.check_note {
	background-color: transparent !important;
	z-index: 1000;
	pointer-events: none;
	/* padding: 0 1.5em 0 2.5em; */
	padding: 0;
	padding-left: 2.5em !important;
	padding-right: 2em !important;
	align-items: center;
}

.check_note p {
	color: #fff !important;
	font-size: 12px !important;
	line-height: 1.15em !important;
	/* margin-top: 2px !important; */
}

.check_note label {
	border: none !important;
}

.check_note label,
.check_note a {
	pointer-events: auto;
	cursor: pointer;
}

input[type="checkbox"]+span {
	border: none !important;
}

.invalid {
	-webkit-filter: none !important;
	-moz-filter: none !important;
	-ms-filter: none !important;
	filter: none !important;
	opacity: .5 !important;
}

.drawer .area {
	background-color: #ffd3d3 !important;
	max-width: 250px;
}
.drawer .menu {
	margin-top: 120px !important;
}
.drawer .area {
	border-radius: 0 !important;
}
.drawer ul li {
	margin-right: 0 !important;
	font-size: 17px !important;
	letter-spacing: .05em !important;
}
.drawer ul li:not(:last-child) {
	margin-bottom: 1.5em !important;
}

/*--------------------------------------------
レスポンシブ
--------------------------------------------*/

@media (max-width: 820px) {

	main {
		background-position: calc(50% + 277px) -226px;
		background-size: 601px auto;
	}

	/*--------------------------------------------
	メイン　要素
	--------------------------------------------*/

	.main {
		padding: 25px 0 26px;
	}

	.main .wrap_column {
		display: block;
		max-width: none;
	}

	.main .column1 {
		padding-right: 0;
	}

	.main .column2 {
		max-width: none;
	}

	/* ロゴ・メニュー */
	#logo_menu {
		display: flex;
		justify-content: space-between;
		padding: 0 23px 0 18px;
		margin-bottom: 25px;
	}

	.main .logo {
		width: 137px;
		margin-bottom: 0;
	}

	.menu_btn {
		display: inline-block;
	}

	.menu.header {
		display: none;
	}

	/* スライドショー */
	.main .wrap_slideshow {
		width: calc(100%);
	}

	.main .slideshow {
		border-radius: 47px;
	}

	/* タイトル */
	h1.title {
		font-size: 26px;
		padding: 15px 25px 15px 15px;
		margin-top: -4% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	/* ログインボタン・価格サークル・商品一覧リンク */
	#login_price_itemlink {
		padding: 22px 15px 0;
		max-width: 615px;
		margin: 0 auto;
	}

	#login_price_itemlink .wrap {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.singup_btn {
		flex: 1;
		margin-bottom: 0 !important;
		margin-right: 1%;
	}

	.login_btn {
		flex: 1;
		margin-left: 1%;
	}

	.main .price_circle {
		flex: 1;
		margin: 25px auto;
		max-width: 128px;
		max-height: 128px;
	}

	.main .price_circle>div {
		transform: scale(.80);
	}

	.for_itemlist {
		flex: 1;
		margin-left: 6%;
	}

	/* 概要・情報 */
	.overview {
		/* width: auto !important; */
		width: 93% !important;
		padding: 20px 20px 20px 15px;
		border-radius: 0 47px 47px 0;
		margin-top: 25px !important;
		margin-left: 0 !important;
		/* margin-right: 7%; */
	}

	/*--------------------------------------------
	商品エリア
	--------------------------------------------*/

	.item_area {
		/* margin: 50px 0 0 0; */
		/* padding-bottom: 35px; */
		padding: 35px 0;
	}

	.rank_item {
		padding: 0 10px 0;
		min-height: none;
		margin: 0 0 65px;
	}

	.item_area .wrap_rank {
		margin: 0 auto 20px;
	}

	.item_area .volume {
		transform: translateY(45%);
	}

	.item_area .wrap_column {
		max-width: none;
		display: inline-block;
	}

	.item_area .column1 {
		margin-right: 0;
		max-width: none;
		margin-top: 45px;
		margin-bottom: 35px;
	}

	/* 背景柄 */
	.item_area .item_bg1 {
		background-position: calc(50%) 0;
		background-size: 582px auto;
		/* margin: 0 0 90px; */
	}

	.item_area .item_bg2 {
		background-position: calc(50%) 0;
		background-size: 582px auto;
	}

	/*--------------------------------------------
	くじ購入
	--------------------------------------------*/
	#sticky_btn {
		width: 90%;
	}

}

@media (max-width: 500px) {

	#sticky_btn {
		bottom: 50px;
	}
}

/*--------------------------------------------
KUJI555のデザインに対応@2026-02-05 StudioSEIA
--------------------------------------------*/

@media (max-width: 1024px) {

	.main .wrap_slideshow {
		width: calc(100% - 4vw) !important;
	}

	h1.title {
		font-size: 26px;
		padding: 0 2vw !important;
		margin-top: 1rem !important;
		margin-right: 0 !important;
		/* background-color: turquoise !important; */
	}

	.overview {
		padding: 0 2vw !important;
		border-radius: 0;
		/* background-color: rgb(224, 64, 195) !important; */
		margin: 0 !important;
		margin-top: .5rem !important;
		width: 100% !important;
	}


	.info_area {
		/* background-color: rgb(130, 238, 207); */
		padding: 1rem 2vw 0;
	}

	.info_area>*:not(:last-child) {
		margin-bottom: .25rem !important;
	}

	.info_area>* {
		margin: 0 !important;
	}

	.info_area .box {
		flex-wrap: wrap;
	}

	.info_area .box>* {
		margin: .1rem 0 !important;
	}

	.info_area {
		margin-bottom: 2rem;
	}

	.item_area {
		padding-left: 2vw;
		padding-right: 2vw;
	}

	/* .rank_item {
		padding-top: 10vw !important;
		padding-bottom: 10vw !important;
		min-height: none;
	} */
	.item_area .column1 {
		/* margin-top: 0;
		margin-bottom: 7vw;
		padding-top: 70px; */
		max-width: none;
	}

	.rank_item:not(:last-child) {
		/* margin-bottom: 10vw !important; */
	}

	.item p.name {
		line-height: 1.25em;
	}

	/* .note_area {
		padding: 10vw 2vw;
	} */
	.note_area .note {
		/* padding: 5vw; */
	}

	.note_area .note:not(:last-child) {
		/* margin-bottom: 10vw; */
	}

	footer nav ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	footer nav ul li:not(:last-child)::after {
        content: "";
        margin: 0 .75rem;
    }
}

@media (max-width: 820px) {

	/*--------------------------------------------
	メイン　要素
	--------------------------------------------*/

	.main {
		padding: 0;
	}

	.main .column1 {
		padding-top: 0em;
	}

	.main #logo_menu {
		background-color: #fff;
		height: 40px;
		padding: 1vw 2vw 0;
		margin-bottom: 50px;
		border-bottom: 1px solid #00000039;
	}

	.main .wrap_slideshow {
		margin-top: 1em;
	}

	.main #login_price_itemlink {
		width: 100%;
		right: auto;
		top: 40px;
		justify-content: center;
		gap: 2vw;
		height: 50px;
		padding: 0 2vw;
		max-width: none;
		border-bottom: 1px solid #00000039;
	}

	.main #login_price_itemlink .wrap:first-child {
		width: 100%;
		display: flex;
		align-items: flex-start;
		gap: 2vw;
	}

	.main #logo_menu > img,
	.main a:has(.logo) {
		width: auto;
		height: 30px;
	}

	.main .logo {
		width: auto;
		height: 100%;
	}

	.menu_btn {
		width: 20px !important;
		height: 20px !important;
	}

	.singup_btn {
		margin-right: 0;
	}

	.login_btn {
		margin-left: 0;
	}

	#login_price_itemlink .wrap:last-child .btn_main,
	.start_btn {
		font-size: 0 !important;
	}

	.rank_item {}

	.item_area .column1 {
		padding-top: calc(70px);
		margin-bottom: 1.5em;
	}

	.note_area .note:not(:last-child) {
		margin-bottom: 2em;
	}

	#sticky_btn {
		width: 95%;
	}
}

@media (max-width: 500px) {
	#sticky_btn .btn_main {
		padding-top: .15em !important;
		font-size: 25px;
	}

	.check_note {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		height: 45px !important;
	}

	.check_note p {
		/* letter-spacing: .001em !important; */
	}
}