@charset "utf-8";

html,body,header,main,footer,span,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
}

ol,ul,li,dl,dt,dd{
	margin: 0;
	padding: 0;
	list-style: none;
}

a{
	color: #333;
}

a:hover{
	opacity: 0.7;
}

hr{
	border: none;
	border-bottom: dashed 1px #D9D9D9;
}

/* -------------------------
margin・padding・border
------------------------- */
.co_mt12{
	margin-top: 12px !important;
}

.co_mt24{
	margin-top: 24px !important;
}

.co_mb0{
	margin-bottom: 0px !important;
}

.co_mb4{
	margin-bottom: 4px !important;
}

.co_mb12{
	margin-bottom: 12px !important;
}

.co_mb40{
	margin-bottom: 40px !important;
}


.co_pb4{
	padding-bottom: 4px !important;
}

/* -------------------------
基本設計
------------------------- */
body{
	min-width: 1080px;
	width: 100%;
	margin: 0 auto;
	font-size: 14px;
	color: #333;
	background-color: #F5F5F5;
	-webkit-text-size-adjust: 100%;
	text-justify: auto;
	font-family:"Noto Sans JP", "MS Pゴシック", sans-serif;
	letter-spacing: 0.28px;
}

input, select, button, textarea {
	font-family: inherit;
}

.container{
	overflow: hidden;
	max-width: 690px;
	width: 90%;
	margin: 0 auto;
}

.container_light{
	overflow: hidden;
	width: 90%;
	margin: 0 auto;
	background: #C9C9C9;
}

.pc_hidden{
	display: none;
}

.sp_hidden{
	display: block;
}

header{
	min-width: 1080px;
	width:100%;
	margin: 0 auto;
}

main{
	background-color: #F5F5F5;
	width: 100%;
	overflow: hidden;
}

footer{
	background-color: #F5F5F5;
	width: 100%;
}

/* -------------------------
見出し・テキスト
------------------------- */
h1,h2{
	color: #333333;
	font-weight: 700;
}

h1{
	font-size: 32px;
	line-height: 1.3em;
	text-align: center;
}

h2{
	font-size: 24px;
	text-align: center;
}

h3{
	font-size: 16px;
	text-align: center;
	color: #000;
}

h4{
	font-size: 20px;
}

p{
	line-height: 1.7em;
}

dt{
	font-size: 12px;
}

.small{
	font-size: 12px;
	text-align: left;
}

.highlight{
	background: linear-gradient(transparent 70%, var(--main-bg-color) 70%);
}

.red{
	color: #DD2E44;
}

/* -------------------------
btn
------------------------- */
.btn{
	display: block;
	width: 75%;
	max-width: 400px;
	margin: 0 auto;
	text-decoration: none;
	background-color: var(--sub-color);
	color: var(--main-color);
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	padding: 12px 30px;
	font-size: 20px;
	font-weight: 900;
	border-radius: 50px;
	text-align: center;
}

.fixed_btn_container{
	display: block;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.25);
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 1;
}

.fixed_btn{
	display: block;
	width: 60%;
	max-width: 400px;
	margin: 0 auto;
	text-decoration: none;
	background-color: var(--sub-color);
	color: var(--main-color);
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	padding: 10px 50px;
	font-size: 20px;
	font-weight: 900;
	border-radius: 50px;
}

.entry_fixed_btn::before{
	content: "簡単５秒で完了！ ";
	display: block;
	width: 100%;
	height: 1px;
	margin: 0 auto;
	font-size: 12px;
	padding: 0 0 14px 0;
}

.calendar_btn_g{
	display: block;
	width: 80%;
	max-width: 400px;
	margin: 20px auto;
	text-decoration: none;
	background-color: #DD2E44;
	color: #fff;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	padding: 12px 14px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 50px;
}

.howto_btn{
	display: block;
	width: 75%;
	max-width: 400px;
	margin: 30px auto 60px;
	text-decoration: none;
	background-color: var(--sub-color);
	color: var(--main-color);
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	padding: 14px 30px;
	font-size: 18px;
	font-weight: 900;
	border-radius: 50px;
	text-align: center;
	position: relative;
}

.howto_btn_before{
    content: "ここから条件達成でエントリー完了！ ";
    display: block;
    margin: 0 auto;
    font-weight: 800;
    font-size: 11px;
    color: #000;
    background: #fff;
    pointer-events: none;
    border-radius: 15px;
    padding: 2px 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -16px;
    width: 200px;
    max-width: none;
    border: var(--sub-color) solid 1.5px;
	filter: drop-shadow(0px 2px 0px rgba(0, 0, 0, 0.25));
}

.howto_btn_before::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    z-index: 2;
	filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.25));
}

.howto_btn_before::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid var(--sub-color);
    z-index: 1;
	filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.25));
}

.howto_btn::after{
	font-family: 'FontAwesome';
	content: "\f08e";
	font-weight: 900;
	color: var(--main-color);
	background: none;
	pointer-events: none;
	padding: 0 0 0 6px;
}

.check_howto_btn{
padding: 6px;
font-size: 16px;
}

.check_howto_btn::before{
	content: "簡単５秒で完了！ ";
	display: block;
	width: 100%;
	height: 2px;
	margin: 0 auto;
	font-size: 10px;
	padding: 0 0 12px 0;
}

/*モーダル*/
.modaal-container{
	width: 500px;
	border-radius: 4px;
}

/* モーダルのスタイル調整 */
.modaal-content-container {
	padding: 0;
	text-align: center;
}

  /* ✕ボタンの位置調整 */
.modaal-close {
	position: absolute;
	top: -4px;
	right: -2px;
}

  /* ✕ボタンの色 */
.modaal-close:after,
.modaal-close:before {
	background:#868686;
	width: 2px;
	height: 18px;
}

.modal_inner{
	padding: 10px;
}

.modal_top{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #5FB4E5;
	margin: 0;
	padding: 0;
	color: #fff;
	border-radius: 4px 4px 0 0;
	font-weight: 600;
}

.modal_top_img{
	width: 24px;
	height: auto;
	margin: 8px 4px 8px 0;
}

.modal_text{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	margin: 12px 0;
	text-align: left;
	line-height: 22px;
}

.modal_img{
	width: auto;
	height: 40px;
}

.modal_text_small{
	font-size: 12px;
	font-weight: 700;
	margin: 0;
}

.modal_text_gray{
	color: #5F5F5F;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}

.modal_text_red{
	color: #DD2E44;
}

.modal_calendar_text_small{
	font-size:11px;
	font-weight: 700;
}

.modal_triangle {
	margin: 12px auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
	border-top: 12px solid #D9D9D9;
	border-bottom: 0;
}

/*ギフトURLのコピー*/
.linkcopy_area {
	margin: 0 0 12px 0;
}

.linkcopy_inner {
	display: block;
	justify-content: center;
	font-family: "Noto Sans JP";
	font-size: 14px;
	margin: 0;
	padding: 0;
}

.linkcopy {
	font-size: 18px;
	height: 30px;
	font-weight: 600;
	width: 70%;
	max-width: 260px;
	margin: 0 0 10px;
	padding:8px 24px;
	text-overflow: ellipsis;
	text-align: center;
	border: solid 1px #000;
	border-radius: 8px;
	resize: none;
}

.linkcopy_btn,.howto_linkcopy_btn{
	display: block;
	max-width: 300px;
	margin: 0 auto;
    background: #5BC020;
    color: #FFF;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	padding: 4px 0px 12px;
	font-size: 15px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
}

.howto_linkcopy_btn::after{
	font-family: 'FontAwesome';
	content: "\f078";
	font-weight: 900;
	font-size: 10px;
	color: #fff;
	position: absolute;
	left: 50%;
	bottom: 3px;
	transform: translateX(-50%);
	background: none;
	pointer-events: none;
}

.linkcopy_btn:hover {
    opacity: 0.8;
}

/*モーダル用のギフトURLのコピー*/
.modal_linkcopy {
	font-size: 18px;
	height: 40px;
	font-weight: 600;
	width: 80%;
	margin: 0 0 10px;
	padding: 4px;
	text-overflow: ellipsis;
	text-align: center;
	border: solid 1px #000;
	border-radius: 8px;
	resize: none;
}

.js-copybtn.disabled {
	background-color: #797979;
	color: #fff;
	padding: 6px 0px 10px;
}

.linkcopy_btn.disabled::after{
	content: none;
}

.calpop_linkcopy_btn{
	max-width: 260px;
	width: 80%;
	margin: 0 auto;
	padding: 6px 0px 10px;
}

/* -------------------------
ヘッダー
------------------------- */
.cp_wrap{
	margin: 0;
	padding: 0;
	background-color: #fff;
}

.header_inner{
	text-align: center;
	background-color: #fff;
	display: flex;
}

.header_sitetitle{
	padding: 8px 0 4px;
	margin: 0 auto;
}
.header_sitetitle_logo img{
	width: auto;
	height: 22px;
}

.header_pr{
	background-color: #fff;
	padding: 0px 4px;
	color: #808080;
	font-size: 12px;
	position: absolute;
	right: 0;
	border-radius: 0 0 0 4px;
	height: 20px;
}

/* -------------------------
タイトル
------------------------- */
.cp{
	background-color: var(--main-bg-color);
	background-image: url(../img/bg.png);
}

/*▼ファーストビュー画像化*/
.cp.firstview{
    background-color: var(--sub-bg-color);
    background-image: none;
}
/*▲ファーストビュー画像化*/

.cp_title_inner{
	display: block;
	margin: 0 auto 20px;
	background-color: #fff;
	border-radius: 8px;
	text-align: center;
}

.cp_title{
	color: #000;
	font-family: "Noto Sans JP";
	font-size: 28px;
	font-weight: 900;
	padding: 8px 6px 0;
	letter-spacing: -0.1px;
	margin:28px 0 8px;
	line-height: 32px;
}

/*firefoxの文字間調整*/
@-moz-document url-prefix() {
	.cp_title{
		letter-spacing: -0.3px;
	}
}

.cp_title_text{
	display: inline-block;
	font-size: 20px;
	padding: 0 6px;
	margin: 0 0 12px 0;
}

.cp_title_count{
	font-family: "Open Sans";
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -1.2px;
	line-height: 40px;
	margin: 0 3px 0 -6px;
	position: relative;
	top: 3px;
}

.cp_title_price{
	color:var(--accent-color) ;
	display: inline-block;
	text-shadow: 3px 2px 0px #000;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: #000;
	font-family: "Open Sans";
	font-size: 90px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: -5px;
	margin: 32px 0 36px;

}

.cp_title_comma{
	color:var(--accent-color) ;
	text-shadow: 3px 2px 0px #000;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: #000;
	font-family: "Open Sans";
	font-size: 48px;
	margin: 0 -12px 0 -10px;

}

/*リボン*/
.ribbon{
	display: inline-block;
	position: relative;
	text-align: center;
	box-sizing: border-box;
	margin: 10px auto 0;
	z-index: 1;
}

.ribbon:before {/*左側のリボン端*/
	content: '';
	position: absolute;
	width: 7px;
	bottom: -10px;
	left: -22px;
	z-index: 0;
	border: 15px solid oklch(from var(--accent-color) calc(l * .90) c h);
	border-left-color: transparent;/*山形に切り抜き*/
}

.ribbon:after {/*右側のリボン端*/
	content: '';
	position: absolute;
	width: 7px;
	bottom: -10px;
	right: -22px;
	z-index: -1;
	border: 15px solid oklch(from var(--accent-color) calc(l * .90) c h);
	border-right-color: transparent;/*山形に切り抜き*/
}

/*▼ファーストビュー画像化*/
.cp_fvimg {
	display: block;
	margin: 0 auto 28px;
	max-width: 100%;
	height: auto;
}
/*▲ファーストビュー画像化*/

.cp_day {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0 10px;
	line-height: 35px;
	font-size: 16px;
	font-weight: 600;
	color: #FFF;
	background-color: var(--accent-color) ;/*真ん中の背景色*/
	min-width: 400px;
}

.cp_day:before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 10px transparent;
	border-right: solid 15px oklch(from var(--accent-color) calc(l * .65) c h);/*左の折り返し部分*/
}

.cp_day:after {
	position: absolute;
	content: '';
	top: 100%;
	right: 0;
	border: none;
	border-bottom: solid 10px transparent;
	border-left: solid 15px oklch(from var(--accent-color) calc(l * .65) c h)/*右の折り返し部分*/
}

.cp_requirement_inner{
	display: block;
	margin: 0 auto 20px;
	padding: 20px 0 8px;
	background-color: #fff;
	border-radius: 8px;
	text-align: center;
}

.cp_requirement_step{
	display: flex;
	justify-content: center;
	margin: 0 0 12px 0;
}

.step_list{
	position: relative;
	width: 62px;
	height: 34px;
	background: #D9D9D9;
	color: #fff;
	padding: 8px 0 8px 8px;
	line-height: 16px;
	font-size: 11px;
	margin: 0 10px 0 0;
}

.step_list:first-child{
	position: relative;
	width: 62px;
	height: 34px;
	background: #DD2E44;
	color: #fff;
	padding: 8px 0 8px 8px;
	line-height: 16px;
	font-size: 11px;
	margin: 0 10px 0 0;
}

.step_list:before {
	content: "";
	position: absolute;
	right: 39px;
	top:0;
	color:#fff;
	border-left: 20px solid;
	border-top: 25px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 25px solid transparent;

}

.step_list:first-child:before {
	content: "";
	position: absolute;
	right: 30px;
	top:0;
	color:#DD2E44;
	border-left: 20px solid;
	border-top: 25px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 25px solid transparent;
	z-index: -1;
}

.step_list:after {
	content: "";
	position: absolute;
	right: -40px;
	top:0;
	color:#D9D9D9;
	border-left: 20px solid;
	border-top: 25px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 25px solid transparent;
	z-index: 2;
}

.step_list:first-child:after {
	content: "";
	position: absolute;
	right: -40px;
	top:0;
	color:#DD2E44;
	border-left: 20px solid;
	border-top: 25px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 25px solid transparent;
	z-index: 2;
}

/*firefoxの余白調整*/
@-moz-document url-prefix() {
	.step_list:after {
		right: -39px;
	}
	.step_list:first-child:after {
		right: -39px;
	}
}

.cp_requirement_box{
	display: block;
	margin: 0 auto;
	width: 90%;
	height: auto;
	border-radius: 4px;
	border: solid 1px #4D4C4C;
	background-color: #fff;
}

.cp_requirement_title{
	font-size: 14px;
	font-weight: 700;
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 26px;
	border-radius: 2px 2px 0px 0px;
	background-color: #4D4C4C;
	color: #FFF;
}

.cp_requirement_img{
	padding: 4px 0;
	display: block;
	margin: 0 auto;
	height: 100%;
	width: auto;
	max-width: 468px;
}

.cp_requirement_detail{
	display: block;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 700;
}

/*▼ファーストビュー画像化*/
.cp_requirement_detail.firstview{
	display: block;
	margin: 4px 0 0;
	font-size: 16px;
	font-weight: 700;
}
/*▲ファーストビュー画像化*/

.cp_requirement_text_small{
	display: block;
	margin: 0 auto;
	padding: 2px 0 6px 0;
	color: #333;
	text-align: center;
	font-size: 10px;
	font-weight: 700;
}

.cp_requirement_text{
	display: block;
	margin: 2px auto 0;
	color: #818181;
	font-size: 9px;
	font-weight: 400;
}

.cp_triangle {
	display: block;
	width: 100%;
	padding-top: 50px;
	position: relative;
	overflow: hidden;
	background-color: var(--sub-bg-color);
}

.cp_triangle:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	left: 50%;
	border-top: 30px solid var(--main-bg-color);
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	transform: translateX(-50%);
}

/*▼ファーストビュー画像化*/
.cp_triangle.firstview{
	display: block;
	width: 100%;
	padding-top: 50px;
	position: relative;
	overflow: hidden;
	background-color: var(--sub-bg-color);
	padding: 0;
}
.cp_triangle.firstview:after {
	display: none;
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	left: 50%;
	border-top: 30px solid var(--main-bg-color);
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	transform: translateX(-50%);
}
/*▲ファーストビュー画像化*/


/* -------------------------
結果
------------------------- */
.cp_result_inner{
	display: block;
	margin: 0 auto 20px;
	padding: 14px 0;
	background-color: #fff;
	border-radius: 8px;
	text-align: center;
}

.cp_result_box{
	display: block;
	margin: 0 auto;
	width: 90%;
	height: auto;
	border-radius: 4px;
	background-color: #fff;
}

.cp_result_title{
	padding: 0;
	margin: 12px auto;
	font-size: 14px;
	font-weight: 700;
}

.cp_result_contents,.cp_result_number{
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
}

.cp_result_contents{
	margin: 20px 0 0 0;
}

.cp_result_contents_count{
	font-size: 80px;
	line-height: 64px;
}

.cp_result_text_small{
	font-size: 10px;
	font-weight: 700;
	margin: 16px 0 0 0;
}

.cp_result_text_small_center{
	font-size: 10px;
	font-weight: 500;
	margin: 12px 0 12px 0;
}

.cp_result_img{
	max-width: 200px;
	height: auto;
}

/* -------------------------
カンタン！ギフトをもらう方法
------------------------- */
#howtostep{
	background-color:rgb(from var(--sub-bg-color)  r g b / calc(alpha /2.5 ));
}

.howtostep_box{
	display: block;
	text-align: center;
	border-radius: 8px;
	margin: 48px 0 0 0;
}

.howtostep_title{
	font-size: 16px;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	width: 100%;
	background-color: var(--main-bg-color);
	border: 1px solid var(--main-bg-color);
}

.howtostep_title_box{
	display: flex;
	align-items: center;
    justify-content: center;
}

.howtostep_title_img{
	margin: 0 0 0 8px;
}

.howtostep_list_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.howtostep_inner{
	background-color: #fff;
}

.howtostep_list{
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
	margin: 0 auto;
	padding: 12px 0;
}

.howtostep_list_box{
	width: 33%;
	height: 130px;
	border-right: solid 1px #D9D9D9;
}

.howtostep_list_box:last-child {
    border-right: none;
}

.howtostep_list_inner_box{
	width: 80%;
}

.howtostep_img {
    display: block;
    max-width: 120px;
    width: 120px;
    height: auto;
    margin: 0 auto 12px;
}

.howtostep_list_box:nth-child(2) .howtostep_img,
.howtostep_list_box:nth-child(3) .howtostep_img {
    max-width: 60px;
    width: 60px;
}

.howtostep_text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
    margin: 0 auto 8px;
	line-height: 28px;
	font-weight: 600;
}

.howtostep_text_small{
	line-height: 14px;
	font-size: 10px;
}

/* -------------------------
ACCESSGIFTとは
------------------------- */
#about_ag{
	background-color: var(--sub-bg-color);
	padding:0 0 60px;
}

#about_url{
	background-color: rgb(from var(--sub-bg-color)  r g b / calc(alpha /2.5 ));
	padding: 0 0 60px;
}

.about_ag_text{
	color: #333;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	max-width: 690px;
	margin: 12px auto;
}

.about_ag_img_box{
	text-align: center;
	margin: 24px 0 0 0;
}

.about_ag_img{
	display: inline-block;
	width: 28%;
	max-width: 182px;
	height: auto;
	margin: 12px 10px 0 0;
}

.aboutcircle_ag_img{
	width: 100%;
	max-width: 500px;
	height: auto;
	margin: 8px 0;
}

.about_ag_img:last-child{
	margin: 0;
}

/*スライダー*/
.slider_box{
	display: block;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	margin: 32px 0 24px;
}

.slider_box::-webkit-scrollbar {
	display: none;
	height: 0 !important;
}

.slider{
	display:flex;
	width: 100%;
	max-width: 690px;
	margin: 0 auto 24px;
	padding: 0 0 12px 0;
	border-radius: 8px;
}

.slider_inner_box{
	width: 32%;
	background-color: #fff;
	text-align: center;
	padding: 0 0 4px 0;
	margin: 24px auto 8px;
	border-radius: 12px;
}

.slider_title_top{
	background-color: var(--main-bg-color);
	padding: 4px 0;
	border-radius: 8px 8px 0 0;
	font-size: 16px;
	text-align: center;
	margin: 0;
}

.slider_title{
	background-color:#dfdfdf;
	margin: 0;
	padding: 4px 0;
	font-size: 14px;
	text-align: center;
}

.slide_img_box{
	display: flex;
	justify-content: center;
	margin: 8px 0 0 0;
}

.slider_img{
	width: 80%;
	height: auto;
	padding: 4px 12px;
	margin: 0 0 4px 0;
}

.slider_text_top{
	display: block;
	font-size:12px;
	margin: 20px;
	padding:0;
	line-height: 16px;
	text-align: left;
}

.slider_text{
	display: block;
	font-size:12px;
	margin: 12px;
	padding:0;
	line-height: 16px;
	text-align: left;
}

.slider_text_small{
	font-size:10px;
	text-align: left;
	margin: 8px 16px;
}

.slider_text_bold{
	display: block;
	font-size:12px;
	font-weight: 700;
	margin: 8px auto;
	text-align: center;
	border: none;
}

/* -------------------------
キャンペーンの参加方法
------------------------- */
#howto{
	background-color: var(--sub-bg-color);
	text-align: center;
	padding: 10px 0 0;
}

.howto_box{
	display: block;
	background-color: #fff;
	text-align: center;
	border-radius: 8px;
}

.howto_inner{
	padding: 24px 0 0;
	background-color: #fff;
	border-radius: 8px;
}

.howto_title{
	font-size: 20px;
	display: block;
	margin: 0 auto;
	padding: 0 0 8px 0;
	width: 100%;
}

.how_to_img{
	margin:0 0 -4px;
	height: auto;
}

.howto_fukidashi{
	display: block;
	max-width:240px ;
	padding: 0 8px 6px;
	margin: 0 auto 16px;
	text-align: center;
	font-size: 20px;
	background-color: #5FB4E5;
	position: relative;
	border-radius: 4px;
}

.howto_fukidashi:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 10px solid #5FB4E5;
}

.howto_fukidashi_text{
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 0px;
}

.howto_fukidashi_text_small{
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 0px;
}

.howto_step_title{
	font-size: 20px;
	font-weight: 700;
	margin: 4px auto;
	padding: 0;
	color: #000;
}

.howto_text{
	font-size: 12px;
	font-weight: 700;
	color: #000;
	margin: 0;
}

.howto_text_small{
	font-size: 11px;
	font-weight: 700;
	color: #000;
	margin: 4px 0;
}

.howto_text_small_gray{
	max-width:300px;
	margin: 0 auto 14px;
	font-size: 11px;
	font-weight: 500;
	color: #4E4E4E;
	line-height: 16px;
	text-align: justify;
}

.howto_btnarea{
	border: #797979 solid 1px;
	width: 300px;
	height: 84px;
	margin: 12px auto 0;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	position: relative;
}

.howto_btnarea::before {
	content: "";
	position: absolute;
	top: -17px;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-bottom: 10px solid #FFF;
	z-index: 2;
}

.howto_btnarea::after {
	content: "";
	position: absolute;
	top: -16px;
	left: 50%;
	margin-left: -8px;
	border: 8px solid transparent;
	border-bottom: 8px solid #797979;
	z-index: 1;
}

.howto_btnarea_text{
	font-size: 13px;
	font-weight: 700;
	color: #000;
	margin: 10px auto 8px;
	text-align: center;
}

.howto_text_day{
	font-weight: 700;
	text-align: center;
	font-size: 20px;
	margin: 0 auto 12px;
}

.howto_text_day_number{
	font-size: 40px;
}

.text_highlight_yellow{
	display: inline-block;
	background: #FFD100;
	color: #000;
	font-size: 10px;
	padding: 0 10px ;
	position: relative
}

.howto_caution{
	width: 22px;
	height: auto;
	position: absolute;
	top: -2px;
	left: -12px;
}

.calendar_btn{
	display: block;
	margin: 12px auto 0;
	text-decoration: none;
	width: 160px;
	height: 33px;
	flex-shrink: 0;
	border-radius: 86px;
	background: #000;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	font-weight: 900;
	line-height: 30px;
	color: #fff;
}

.calendar_btn_red,.get_btn_red{
	display: block;
	margin: 20px auto 8px;
	text-decoration: none;
	width: 250px;
	height: 50px;
	flex-shrink: 0;
	border-radius: 86px;
	background: #E30000;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	font-size: 20px;
	font-weight: 700;
	line-height: 48px;
	color: #fff;
}

.calendar_btn,.line_btn{
	display: inline-block;
	width: 132px;
	height: 30px;
	text-decoration: none;
	border-radius: 86px;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
	font-size: 12px;
	font-weight: 600;
	line-height: 28px;
	margin: 0 4px 4px;
}

.btn_white{
	background: #fff;
	color: #000;
	border: solid 1px #000;
}

.btn_darkgray{
	background: #4f4f4f;
	color: #fff;
	border: solid 1px #4f4f4f;
}

.btn_linecolor{
	background: #5BC020;
	color: #fff;
}

.howto_triangle{
	display: block;
	width: 100%;
	padding-top: 50px;
	position: relative;
	overflow: hidden;
	background-color: var(--sub-bg-color);
}

.howto_triangle:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	left: 50%;
	border-top: 30px solid #fff;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	transform: translateX(-50%);
}

/* -------------------------
ギフト獲得条件＜詳細＞
------------------------- */
#requirement_detail{
	margin: 24px 0;
}

.requirement_detail_title{
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	width: 100%;
	background-color: #dfdfdf;
	border: 1px solid #dfdfdf;
}

.requirement_detail_box{
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
	border: 1px solid #dfdfdf;
	padding: 0 3%;
}

.requirement_detail_box_dt{
	font-size: 14px;
	font-weight: 700;
	margin: 12px 0 0;
	padding: 0;
}

.requirement_detail_box_dd{
	font-size: 12px;
	margin: 0;
	padding: 4px 0 12px;
	border-bottom: dashed 1px #D9D9D9;
}

.requirement_detail_box_dd:last-child{
	border-bottom: 0;
	margin: 0 0 4px 0;
}

.text_highlight_red{
	display: inline-block;
	background: #DD2E44;
	color: #fff;
	padding: 0 4px;
	position: relative
}


/* -------------------------
お問い合わせについて
------------------------- */
#contact{
	margin: 0 0 24px 0;
}

.contact_title{
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	width: 100%;
	background-color: #dfdfdf;
	border: 1px solid #dfdfdf;
}

.contact_box{
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
	border: 1px solid #dfdfdf;
	padding: 0 3% 3%;
}

.contact_box_dt{
	font-size: 14px;
	font-weight: 700;
	margin:12px 0 0;
	padding: 12px 0 4px;
	border-top: dashed 1px #D9D9D9;
}

.contact_box_dt:first-child{
	border: 0;
	margin: 0;
}

.contact_box_dt_small{
	font-size: 12px;
	margin:12px 0 0;
	padding: 12px 0 0;
	border-top: dashed 1px #D9D9D9;
}

.contact_box_dt_small:nth-of-type(2){
	border: 0;
	margin: 0;
}

.contact_box_dd{
	font-size: 12px;
	margin: 0;
	padding: 0;
}

.contact_box_dd:last-child{
	padding: 0 0 12px;
	margin: 0 0 4px 0;
}

.contact_box_closearea_wrapper .contact_box_closearea_wrapper_is_disable {
	display: none;
	margin: 0;
}

.contact_box_closearea_wrapper .contact_box_closearea_wrapper_is_active {
	display: block;
	margin: 0;
}

.contact_box_closearea {
	position: relative;
	background-color: #fff;
}

.contact_box_text{
	font-size: 12px;
	margin: 8px 0 0 0;
	padding: 0;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;
}

.contact_box_text:after {
	content: "もっと見る";
}

.contact_box_text.is_active:after{
	content: "詳細を閉じる";
}

.label{
	display: inline-block;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	margin: 2px 0;
	padding: 1px 12px;
}

/*classがactiveのときは濃いグレーになる*/
.active{
	background-color: #808080;
}

.nonactive{
	background-color: #E0E0E0;
}

/* -------------------------
よくある質問
memo:アコーディオンのアニメーションはhttps://www.accesstrade.ne.jp/faqで使用しているものと同じjsを使用。
------------------------- */
.faq_inner{
	margin: 0;
}

.faq_acc_wrapper .faq_content_ttl{
	cursor: pointer;
}

.faq_content_ttl{
	position: relative;
	color: #fff ;
	font-weight: bold;
	font-size: 16px;
	padding: 10px 12px 9px 24px;
	background-color: #808080;
}

.faq_content_ttl:after {
	font-family: 'FontAwesome';
	position: absolute;
	right: 24px;
	content: "\f078";
}

.faq_acc_wrapper .faq_content_ttl.is_active:after{
	font-family: 'FontAwesome';
	content: "\f077";
}

.faq_acc_wrapper .faq_is_disable {
	display: none;
	margin: 0;
}

.faq_acc_wrapper .is_active {
	display: block;
	margin: 0;
}

.faq_wrapper {
	position: relative;
	background-color: #fff;
}

.faq_box{
	display: block;
	margin: 0 auto;
	border: 1px solid #808080;
}

.faq_text{
	padding: 0px 24px 16px;
	font-size: 14px;
}

.faq_text_small{
	font-size: 12px;
	text-align: center;
	margin: 0 0 12px 0;
}

.faq_btn{
	width:200px;
	display: block;
	margin: 30px auto 60px;
	color:#808080;
	font-size: 18px;
	font-weight: 700;
	border-radius: 30px;
	border: 2px solid #808080;
	background-color: #FFF;
	box-shadow: 0px 4px 0px 0px rgba(167, 167, 167, 0.8);
	padding: 12px 40px;
	text-align: center;
	text-decoration: none;
}

.faq_img{
	width: 100%;
	max-width: 300px;
	margin: 12px 0;
	height: auto;
}

/* -------------------------
お問い合わせ
------------------------- */
.contact_inner{
	margin: 0;
}

.contact{
	text-align: center;
}

.contac_text{
	font-size: 14px;
}

.contact_textbox{
	margin: 0 0 40px 0;
	text-align: left;
}

.contact_text_small{
	margin: 4px 0 0 0;
	padding: 0;
	font-size: 12px;
	line-height: 18px;
}

.contact_text_10{
	margin: 0;
	padding: 0;
	font-size: 10px;
}

.contact_btn{
	width:200px;
	display: block;
	margin: 30px auto 60px;
	color:#fff;
	font-size: 18px;
	font-weight: 700;
	border-radius: 40px;
	background-color: #000;
	padding: 12px 40px;
	text-align: center;
	text-decoration: none;
}

.contact_btn:before{
	content: "下記内容に同意して";
	font-size: 10px;
	color: #fff;
	display: block;
	font-weight: 400;
}

/*--フォーム------------- */
/* iOS_safari対応*/
input,textarea,label{
    -webkit-appearance: none;
}

.form_wrapper{
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 0;
}

input::placeholder{
	color: #C9C9C9;
}

fieldset{
	border: none;
	margin: 0 auto;
	padding: 0;
}

.form_column{
	margin: 0 auto;
	padding: 0 0 24px 0;
	text-align: center;
}

.form_label{
	font-weight:700 ;
	text-align: left;
}

.form_label_wrapper{
	text-align: left;
}

.form_input_wrapper{
	margin: 4px 0 0 0;
	text-align: left;
}

.form_text_default{
	width: 92%;
	display: block;
	padding: 8px;
	margin: 0;
	border: solid 1px #000;
	text-align: left;
}

/*フォームエラー時の赤枠*/
.form_text_default_error{
	width: 92%;
	display: block;
	padding: 8px;
	margin: 0;
	border: solid 1px#DD2E44;
	text-align: left;
}

.form_text_default_half{
	max-width: 140px;
	width: 40%;
	display: inline-block;
	padding: 8px;
	border: solid 1px #000;
	text-align: left;
	margin: 0 4px 0 0;
}

.form_tag{
	background-color: #FF8E25;
	padding: 2px 4px;
	margin: 0 0 0 4px;
	font-size: 10px;
	color: #fff;
	font-weight: 400;
}

/*フォームエラーメッセージ*/
.form_error_box{
	border: #DD2E44 1px solid;
	padding: 12px;
	text-align: left;
	color: #DD2E44;
	margin: 0 0 24px 0;
}

.form_error_ul{
	margin: 8px;
}

.form_error_li{
	color: #DD2E44;
	list-style:disc;
	font-weight: 400;
	margin: 0 0 0 20px;
	padding: 2px 0;
	font-size: 12px;
}

.infomation_wrap{
	width:100%;
	text-align: left;
	font-size: 12px;
}

.infomation_wrap dt{
	margin: 8px 0 0 0;
	font-weight: 600;
}

.infomation_wrap dd{
	margin: 0;
}


/*--送信完了------------- */
.contact_finish{
	text-align: center;
}

.contact_finish_text{
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	line-height: 20px;
	margin: 0 0 32px 0;
}

.contact_finish_textbox{
	margin: 0 0 40px 0;
	text-align: left;
}

.contact_finish_text_small{
	margin: 0 0 8px 0;
	padding: 0;
	font-size: 12px;
}

/* -------------------------
エラーページ
------------------------- */
.errorpage_text{
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	line-height: 20px;
	margin: 0 0 32px 0;
}

/* -------------------------
フッター
------------------------- */
.cp_footer{
	background-color: var(--main-bg-color);
}

.footer_contents{
	font-size: 12px;
	color: #000;
	padding: 24px 0 40px;
	text-align: center;
	max-width: 690px;
	width: 90%;
	margin: 0 auto;
}

.footer_detail{
	padding: 12px;
	margin: 0 0 40px 0;
	background-color: var(--sub-bg-color);
}

.footer_detail_li{
	text-align: left;
	line-height: 18px;
}

.footer_link{
	font-weight: 700;
	display: flex;
	justify-content: center;
	padding: 24px 0;
	text-decoration: none;
}

.footer_link_li{
	display: flex;
	justify-content: space-around;
	color: #000;
	padding: 0 16px 0 0;
	border-right: #000 solid 1px;
	margin: 0 16px 0 0;
}

.footer_link_li:last-child{
	border: none;
	padding: 0;
	margin: 0;
}

.footer_link_li a{
	color: #000;
	text-decoration: none;
}

.footer_copyright{
	font-weight: 700;
	margin: 0 0 100px;
}


/* -------------------------
sp
------------------------- */
@media only screen and (max-width: 768px){

/* -------------------------
基本設計
------------------------- */
body{
	min-width: 320px;
	width:100%;
}

.pc_hidden{
	display: block;
}

.sp_hidden{
	display: none;
}

section{
	margin:0;
}

header{
	min-width: 320px;
	width:100%;
	margin: 0 auto;
}

/* -------------------------
見出し
------------------------- */
h1{
	color: #000;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4em;
}

h2{
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
}

h3{
	font-size: 17px;
}

/* -------------------------
text
------------------------- */
.small_link{
	margin: 16px 0 0 0;
}

.rightup{
	top: 4px;
}

/*リボン*/
.cp_day {
	min-width: 200px;
}

.cp_requirement_inner{
	padding: 12px 0 4px;
}

/* -------------------------
btn
------------------------- */
.btn{
	display: block;
	width: 90%;
	max-width: 230px;
}
.howto_btn{
	max-width: 260px;
}

/* -------------------------
タイトル
------------------------- */
.cp_requirement_img{
	height: auto;
	width: 90%;
	max-width: 468px;
}

.cp_triangle {
	display: none;
}

.cp_triangle:after {
	display: none;
}

/*▼ファーストビュー画像化*/
.cp_triangle.firstview{
	display: none;
}

.cp_triangle.firstview:after {
	display: none;
}
/*▲ファーストビュー画像化*/

/* -------------------------
結果
------------------------- */
.cp_result_text_small{
	font-size: 10px;
	font-weight: 700;
	text-align: left;
	margin: 16px 0 0 0;
}

/* -------------------------
カンタン！ギフトをもらう方法
------------------------- */
.howtostep_title{
	font-size: 17px;
}

.howtostep_list{
	margin:0 6px;
}

.howtostep_title_img{
	margin: 2px 0 0 6px;
	width: 20px;
	height: 20px;
}

.howtostep_inner{
	background-color: #fff;
	margin: 4px 0;
	padding: 0 0 8px;
}

.howtostep_img {
	max-width:80px;
}

.howtostep_img_wrap {
	width: 80px;
	height: 60px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	margin: 0 auto 12px;
}

/* -------------------------
ACCESSGIFTとは
------------------------- */
.about_ag_img{
	display: block;
	width: 80%;
	max-width: 320px;
	height: auto;
	margin: 12px auto 10px;
}

.about_ag_img:last-child{
	margin: 12px auto 10px;
}

#about_url{
	padding: 20px 0;
}

/*参加方法*/
.howto_inner{
	padding: 16px 0 0;
}

.howto_title{
	font-size: 18px;
}

/*スライダー*/
.slider{
	flex-wrap: nowrap;
	overflow:auto;
	margin: 0 0 24px 0;
	background-color: transparent;
}

.slider_inner_box {
	width: 230px;
	height: auto;
	margin: 4px;
	border: none;
}

.slider_inner_box_top{
	border-radius: 12px;
	display: flex;
	align-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	width: 230px;
	height: auto;
	margin: 4px;
	background-color: var(--main-bg-color);
}

.slider_title_top{
	display: block;
	width: 230px;
	height: auto;
}

.slider_title{
	display: block;
	width: 230px;
	margin: 0 auto;
	border-radius: 8px 8px 0 0;
}

.slider_img{
	display: block;
	width: auto;
	height: 200px;
	margin: 8px auto 0;
	float: none;
}

/*専用リンクのコピー*/
.linkcopy_area{
	margin: 0 0 6px 0;
}

.linkcopy{
	width: 75%;
	text-align: center;
}
/*モーダル*/
.modaal-container{
	width: 300px;
	border-radius: 4px;
}

/*モーダル用の専用リンクのコピー*/
.modal_linkcopy {
	text-align: center;
}
.modal_text_small{
	font-size: 11px;
}

/* -------------------------
よくある質問
memo:アコーディオンのアニメーションはhttps://www.accesstrade.ne.jp/faqで使用しているものと同じjsを使用。
------------------------- */
.faq_wrap{
	display: block;
	margin: 0 auto;
}

.faq_inner{
	margin: 0 auto;
}

.faq_content_ttl{
	font-size: 14px;
	padding: 10px 36px 10px 18px;
}

.faq_content_ttl:after {
	top: 8px;
	right:16px;
}

.faq_text{
	padding: 0 18px 12px;
	font-size: 13px;
}

.small_price{
	font-size: 12px;
}
}