@charset "utf-8";

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
}

/* 共通スタイル */
.add_open_cont {
    position: relative;
    cursor: pointer;
    padding-right: 1.5em; /* アイコン用スペース */
    max-width: initial;
    width: 100%;
}

/* アイコン部分 */
.add_open_cont::after {
    content: "＋"; 
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s;
}

/* 開いているときは「－」に変更 */
.add_open_cont.open::after {
    content: "－";
}

/* PCのときはアイコン非表示 */
@media (min-width: 769px) {
    .add_open_cont::after {
        display: none;
    }
}

.none-cont{
	display: none;
}
.pc_none {
	display: block;
}

.sp_none {
	display: none;
}

.pc_none2 {
	display: block;
}

.sp_none2 {
	display: none;
}

.open_modal_btn{
	margin: 0px auto;
	width: 100%;
	display:none;
}

.add_modal_cont1{
	
grid-area: register;
}



/*-- 固定ここまで --*/


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 1921px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
	


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1921px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


	

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 1200px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
	


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1200px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
	
	
		


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 1000px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1000px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 768px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc_none {
	display: none;
}

.sp_none {
	display: block;
}

.main__grid .l-sidebar--right{
	display: block!important;
	grid-area: maker-cat;
	padding: 16px min(1.5873015873vw, 24px);
	padding-top: 0;
	padding-bottom: 0;
}

 .main__grid .l-sidebar--right .top-side-list-wrap{
	background-color: #FFFDEE;
	padding: 10px min(1.5873015873vw, 24px);
	margin: 0 0 10px;
	border-radius: 8px;
}
	
.top-category__btn{
height: 40px;
}

.add_modal_cont1 {
	display: none; /* 最初は非表示 */
	position: fixed;        /* 画面に固定 */
	top: 0;
	left: 0;
	width: 100vw;           /* ビューポート幅 */
	height: 100vh;          /* ビューポート高さ */
	background: #fff; /* 背景白（必要に応じて変更） */
	z-index: 9999;
	overflow-y: auto;       /* 内容が長い場合スクロール可能 */
	-webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
}

.add_modal_close_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 80px;
	cursor: pointer;
}
    /* 背景スクロール禁止 */
    body.modal_open {
        /* overflow: hidden;
        height: 100%; */
    }
	
.open_modal_btn{
	background: #fff2c0;
	color: #000;
	font-size: 18px;
	height: 60px;
	display: flex;
	align-items: center;
	font-weight: 700;
	padding: 0 5%;
	position: relative;
	justify-content: center;
}
	
.open_modal_btn .small{
	font-size:12px;
	display:block;
}
	
.open_modal_btn img{
	width:20px;
	height: 22px;
	margin-right: 8px;
}
	
	
.open_modal_btn:before{
	content: '';
	width: 10px;
	height: 10px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	position: absolute;
	right: 5%;
	top: 0;
	transform: rotate(45deg);
	bottom:0;
	margin:auto;
}


.add_modal_cont1_div1{
	max-width:500px;
	margin:0 auto;
	width:95%;
	padding: 60px 0;
}

.add_img1{
	margin:37px auto 28px;
}

.top-register{
	width:100%;
	margin:0 auto;
}

.add_title{
	text-align:center;
	color:#707070;
	font-size:27px;
}

.add_top_area .open_modal_btn{
display: flex;
}



.main__grid .l-register{
	display:none;
}

.sidebar__ranking{
	display: none;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 520px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc_none2{
	display: none;
}

.sp_none2 {
	display: block;
}


.top-category__btn{
        font-size: 3.8vw;
height: 33px;
}

.add_modal_close_btn{
	width:60px
}

.sidebar-bnrListWrap__ttl{
	text-align:left;
	padding-left: 0;
}

	.top-section-title.add_open_cont,
	.sidebar-bnrListWrap__ttl{
		font-size:18px;
		margin-bottom: 0;
	}

.top-purpose{
	padding: 10px min(1.5873015873vw, 24px);
	margin: 10px 0;
}

.add_open_cont{
	padding-top:0;
	padding-bottom: 8px;
}

.main__grid .l-sidebar--right{
	padding:0;
}

#category .add_close_cont{
	    padding-top: 16px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 520px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


