@charset "UTF-8";

/*-------------------------------------------
 基本設定
-------------------------------------------*/
.cp_main{
	/* max960で 960以下で左右に入れたい余白の数値 */
	/* 基本的にヘッダーなどに合わせ 3% */
	--size-rl-padding: 3%;

	/* （自動計算用） */
	--size-rl-padding-plus: calc( var(--size-rl-padding) + 2);

	/* ボタン 背景色 */
	--btn-bg: #cc0033;

	/* ボタン影 色 */
	--btn-shadow: #750000;

	/* transition */
	--hover-transition: all .3s ease-out;

	/* テキストリンク */
	--col-txt-link: #0064D9;
	
	/* docomo red */
	--col-d-red: #cc0033;

	/* docomo green */
	--col-d-green: #009141;

	/* light gray(border.etc.) */
	--col-d-gray: #D9D9D9;

	/* コンテンツの余白 */
	--gap-base: min(4%, 50px);

	/* 最大幅 */
	--maxwidth: 870px;

}



/*-------------------------------------------
 ページ調整
-------------------------------------------*/
.cp_main {
  font-size: 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  background: #FFF;
}

.cp_main__inner {
	margin: 0 auto;
  }

/* h系設定リセット */
.cp_main h1, .cp_main h2, .cp_main h3, .cp_main h4, .cp_main h5, .cp_main h6 {
	font-weight: bold;
	margin-bottom: 0;
	max-width: initial;
}

/* 横幅MAX960 */
.cont960{
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

/* 横幅MAX960プラス中のコンテンツに左右余白 */
.cont960__margin{
	max-width: 960px;
	padding-left: 3%;
	padding-right: 3%;
	margin-left: auto;
	margin-right: auto;
}
@media all and (min-width: 1000px) {
	.cont960__margin{
		width: 960px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}
}

.cp_main img{
	max-width: 100%;
}

/* setting a テキスト */
.cp_main a{
	color: var(--col-txt-link);
}

.cp_main a:link{
	text-decoration: underline;
}

.cp_main a:hover{
	text-decoration: none;
}

@media (min-width: 769px){
	.cp_main a img,
	.cp_main .arrow:before,
	.cp_main .arrow:after,
	.cp-btn__large,
	.cp-btn__middle,
	.cp-btn__small{
		transition: var(--hover-transition);
		opacity: 1;
	}
}


/*-------------------------------------------
 display
-------------------------------------------*/
.cp_main .disp__inline-block {
	display: inline-block;
  }

/*-------------------------------------------
 余白調整
-------------------------------------------*/
/* マージン */
.cp_main .mt1e{ margin-top: 1em !important;}
.cp_main .mt1-5e{ margin-top: 1.5em !important;}
.cp_main .mt2e{ margin-top: 2em !important;}
.cp_main .mt30{ margin-top: 30px !important;}
.cp_main .mt40{ margin-top: 40px !important;}

/* パディング */
.cp_main .pt1e{ padding-top: 1em !important;}
.cp_main .pt1-5e{ padding-top: 1.5em !important;}
.cp_main .pt2e{ padding-top: 2em !important;}
.cp_main .pt30{ padding-top: 30px !important;}
.cp_main .pt40{ padding-top: 40px !important;}

/*-------------------------------------------
 テキスト
-------------------------------------------*/
/* 汎用*/
.cp_main .txt01{ font-size: clamp(12px , 2.6vw , 14px); line-height: 1.4;}
.cp_main .txt02{ font-size: clamp(14px , 2.8vw , 16px); line-height: 1.4;}
.cp_main .txt03{ font-size: clamp(14px , 2.8vw , 18px); line-height: 1.4;}

/* 固定 */
.cp_main .txt12{ font-size: 12px;line-height: 1.4; }

/* パーセント */
.cp_main .txt80 { font-size: 80%;}
.cp_main .txt90 { font-size: 90%;}
.cp_main .txt110 { font-size: 110%;}
.cp_main .txt120 { font-size: 120%;}
.cp_main .txt130 { font-size: 130%;}
.cp_main .txt140 { font-size: 140%;}
.cp_main .txt150 { font-size: 150%;}

/* ウェイト */
.cp_main .txt-bold { font-weight: bold;}
.cp_main .txt-normal { font-weight: normal;}

/*-------------------------------------------
 ボタン
-------------------------------------------*/
/* ボタン large */
.cp_main .cp-btn__large{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(18px , 2.8vw ,22px);
	font-weight: bold;
	background: var(--btn-bg);
	height: 60px;
	padding: 12px;
	border-radius: 100px;
	margin: auto;
	position: relative;
	line-height: 1.2;
}

/* ボタン middle -ボタンリンク- */
.cp_main .cp-btn__middle {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--btn-bg);
	color: #fff;
	padding: 12px;
	border-radius: 30px;
	font-weight: bold;
	text-align: center;
	margin: auto;
	font-size: clamp(16px , 2.8vw ,22px);
	line-height: 1.2;
	position: relative;
}
  
/* ボタン small -ボタンリンク- */
.cp_main .cp-btn__small {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--btn-bg);
	color: #fff;
	padding: 12px;
	border-radius: 30px;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	position: relative;
	padding: 0.5em;
	margin: auto;
}
  
/* ボタン　テキスト */
.cp_main a.cp-btn__large,
.cp_main a.cp-btn__middle,
.cp_main a.cp-btn__small,
  .cp_main a.entry-block__btn{
	color: #fff;
	text-decoration: none;
}

/* ボタン　テキスト */
.cp_main a.cp-btn__large:hover,
.cp_main a.cp-btn__middle:hover,
.cp_main a.cp-btn__small:hover,
.cp_main a.entry-block__btn:hover{
	color: #fff;
	text-decoration: none;
}
  
/* ボタン　＞ */
.cp_main .arrow:before{
	position: absolute;
	content: " ";
	right: 15px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
}
  
/* ボタン影 */
.cp_main .btn-shadow{
	box-shadow: 0px 3px 0 var(--btn-shadow);
	transition: var(--hover-transition);
	transform: translateY(0);
}

.cp_main .btn-shadow3{
	box-shadow: 3px 5px 0 var(--btn-shadow);
	transition: var(--hover-transition);
}

@media only screen and (min-width: 769px) {
	/* PC */
	.cp_main .cp-btn__large{
		font-size: 24px;
		height: 90px;
		padding: 15px;
		border-radius: 100px;
		max-width: 600px;
	}

	.cp_main .arrow:before{
		right: 20px;
		width: 16px;
		height: 16px;
		border-top: 3px solid #fff;
		border-right: 3px solid #fff;
		right: 28px;
	}

	.cp_main .btn-shadow,
	.cp_main .btn-shadow3{
		box-shadow: 0px 3px 0 var(--btn-shadow);
	}

	.cp_main .btn-shadow:hover,
	.cp_main .btn-shadow3:hover{
		box-shadow: none !important;
		transform: translateY(3px);
	}
}


/*-----------------------------------
 テキスト　＼ ／
------------------------------------*/
/* テキスト */
.cp_main .txt__deco-slash{
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.7em;
	margin-bottom: min(2% , 8px);
}

.cp_main .txt__deco-slash::before,
.cp_main .txt__deco-slash::after{
	content: "";
	height: 2em;
	width: 2px;
	background: #000;
	vertical-align: bottom;
}

.cp_main  .txt__deco-slash::before {
	-webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

.cp_main .txt__deco-slash::after {
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}


/*-------------------------------------------
 リスト頭出し
-------------------------------------------*/
.cp_main .list__normal li{
	padding-left: 1em;
	text-indent: -1em;
}


/*-------------------------------------------
 下コンテンツのスマホの調整　ボーター入れる
-------------------------------------------*/

.cp_main .btm-border__sp{
	margin-bottom: 6%;
	border-bottom: 1px solid var(--col-d-gray);
	padding-bottom: 3%; 
}

@media (min-width: 769px){
	.cp_main .btm-border__sp{
		margin-bottom: 0;
    	border-bottom: none;
		padding-bottom: 1%;
	}
}

/*-------------------------------------------
close対応　
-------------------------------------------*/
/* ページ上テキスト */
.cp_attention__txt {
    border: 2px solid;
    color: #cc0033;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0;
    padding: 3% 30px;
    text-align: center;
    background: #fff;
    line-height: 1.75;
}

.cp_attention__txt p{
    line-height: 1.7;
}

/*----------------------------------------------------------------------------
---------------------------------------------------------------------------
 個別css
 ---------------------------------------------------------------------------
----------------------------------------------------------------------------*/

/*-------------------------------------------
 基本色設定
-------------------------------------------*/
.cp_main{
	--col-deep-green: #009141;
	--col-light-green: #35AB21;
	--col-pink: #EE2E5E;
	--col-yellow: #FFE327;
}


/* text color */
.cp_main .txt-red{
	color: var(--col-d-red);
}

.cp_main .txt-pink{
	color: var(--col-pink);
}

.cp_main .txt-green{
	color: var(--col-deep-green);
}

/* text line */
.cp_main .txt-uline{
	background: linear-gradient(transparent 70%, var(--col-yellow) 30%);
}

/*-------------------------------------------
 hover
-------------------------------------------*/
@media (min-width: 769px) {
	.cp_main .bw_sakuyomi_about a:hover,
	.cp_main a.otherlp-block__btn:hover {
		opacity: .7;
	}
}

/*-------------------------------------------
 block 共通setting
-------------------------------------------*/

/* コンテンツの余白 */
.cp_main .cont__padding{
	padding: var(--gap-base);
}

/* sectionの中にcont__padding　があった場合 */
.cp_main section .cont__padding{
	max-width: calc(var(--maxwidth) + calc(var(--gap-base) * 2));
}

/* コンテンツの余白左右のみ */
.cp_main .cont__padding-only-rl{
	padding: 0 var(--gap-base);
}

/* コンテンツの余白上下のみ */
.cp_main .cont__padding-only-tb{
	padding: var(--gap-base) 0;
}

/* コンテンツの余白全てなし */
.cp_main .cont__padding-none{
	padding: 0;
}

.cp_main .block-inner{
	max-width: var(--maxwidth);
	margin-left: auto;
	margin-right: auto;
}


/*-------------------------------------------
 メインビジュアル
-------------------------------------------*/
/* 背景 */
.cp_main h1 {
	background: url(../img/mv_bg.png);
}

/* img */
.cp_main h1 img{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	display: block;
	/*
	image-rendering: -webkit-optimize-contrast;
	*/
}

/*-------------------------------------------
 エントリー　STEP
-------------------------------------------*/
/* 背景 */
.cp_main .entry-block{
	background: url(../img/bg_cont.png) #DAF9F5;
	text-align: center;
}

/* タイトル */
.cp_main .entry-block h2{
	background: var(--col-light-green);
	color: #FFF;
	font-size: clamp(20px , 2.8vw , 32px);
	padding: min(2% , 16px);
}

/* タイトル img */
.entry-block h2 img{
	width: min(550px, 90%);
}

/* steplist */
.cp_main .list-step{
    margin: 20px auto 0 auto;
}

/*  step  */
.cp_main .step01,
.cp_main .step02{
	border-radius: 10px;
	background: #FFF;
	margin-bottom: min(4%, 40px);
	position: relative;
	border: 2px solid var(--col-light-green);
	border-radius: 10px;
	border-bottom-width: 5px;
}

/*  step1　との余白調整  */
.cp_main .step02{
	margin-top: 36px;
}

/* stepタイトル */
.cp_main .list-step h3{
	position: relative;
	top: 0;
	left: 50%;
	width: min(80%,270px);
	background: var(--col-light-green);
	padding: min(1.5%, 10px);
	transform: translate(-50%, -50%);
	text-align: center;
}

/* stepタイトル img */
.cp_main .list-step h3 img{
	width: min(60%,100px);
}


/* stepタイトル リボン左右 */
.cp_main .list-step h3::before,
.cp_main .list-step h3::after {
	background: var(--col-light-green);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 90% 50%);
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	width: 16px;
  }

.cp_main .list-step h3::before{
	left: -15px;
}

.cp_main .list-step h3::after {
	right: -15px;
	transform: scale(-1, 1);
}

/* stepリスト メインエリア */
.cp_main .list-step_main{
	padding: 0 5% 5% 5%;
}

/* stepリスト step2 */
.cp_main .step02 .list-step_main{
	align-items: center;
    display: flex;
    flex-direction: column;
    height: calc(100% - 49px);
    justify-content: center;
    margin: 0 auto;
    max-width: 500px;
    row-gap: 16px;
}

/* stepリスト step2　img */
.cp_main .step02 .list-step_main img{
	width: min(30% , 98px);
}

/* stepテキスト */
.cp_main .list-step_main,
.cp_main .list-step_main p
{
	font-size: clamp(14px, 3vw, 18px);
	text-align: center;
	line-height: 1.4;
}

/* 注意テキスト */
.cp_main .list-step_main p.txt02
{
	font-size: clamp(12px, 1.7vw, 16px);
	text-align: center;
	line-height: 1.4;
}

.cp_main .list-step_main p.txt02 span{
	display: inline-block;
}

/* twitterリンクボタン */
.cp_main .btn-twt{
	height: auto;
	background: url(../img/icon_twitter.png) #1d9bf0 no-repeat 20px;
	background-size: auto 26%;
	box-shadow: 0px 5px 0 #006cb5;
	padding: 22px;
	border-radius: 100px;
	margin: 5% auto;
	line-height: 1.3;
	font-size: clamp(16px, 4.2vw, 22px);
}

/* 応募完了　上　矢印設定 */
.cp_main .entry-block__arrow{
	position: relative;
	text-align: center;
	margin: min(4%,26px) auto;
}

.cp_main .entry-block__arrow img{
	width: min(20% ,94px);
}

/* 応募完了　 */
.cp_main .oubo-kanryo{
	position: relative;
	text-align: center;
}


.cp_main .oubo-kanryo img{
	width: min(80%, 350px);
}


@media all and (min-width: 769px) {

	/* step下の空き */
	.cp_main .step01,
	.cp_main .step02{
		margin-bottom: 20px;
		border-width: 3px;
		border-bottom-width: 6px;
	}

	/* stepリストメインエリア */
	.cp_main .list-step_main{
		padding: 0 7% 7% 7%;
		height:calc( 100% - 41px );
	}

	/* step各要素 */
	.cp_main .list-step{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.cp_main .step01,
	.cp_main .step02{
		width: min(48% ,410px);
		margin-bottom: 0;
	}

	.cp_main .step02{
		margin-top: 0;
	}

}

/*-------------------------------------------
 サク読み LP
-------------------------------------------*/
/* 大枠設定 */
.cp_main .otherlp-block .block-inner{
	border: 2px solid var(--col-light-green);
	overflow: hidden;
	border-radius: 15px;
	background: var(--col-yellow);
}
/* ボタン */
.cp_main .otherlp-block .otherlp-block__btn{
	width: min(90%,350px);
	font-weight: bold;
	background: var(--col-light-green);
	padding: min(4%, 20px);
	border-radius: 100px;
	margin: auto;
	position: relative;
	line-height: 1.2;
	margin: min(4%,13px) auto;
}

@media all and (min-width: 769px) {
	.cp_main .otherlp-block .block-inner{
		border-width: 4px;
	}
}

/*-------------------------------------------
 サク読み info/sakuyomiticket ※流用
-------------------------------------------*/
.sakuyomi-block{
	background: var(--col-light-green);
}

/* ----------
SAKUYOMI
---------- */

.sakuyomi-block .pc-ib { display: inline-block !important;}
.sakuyomi-block .sp-ib { display: none !important;}
.sakuyomi-block .notes { font-size: 1.2rem;}
@media screen and (max-width: 768px){
  .sakuyomi-block .pc-ib { display: none !important;}
  .sakuyomi-block .sp-ib { display: inline-block !important;}
}

.bw_sakuyomi {
	margin: 0 auto;
	text-align: center;
	}
  .bw_sakuyomi_wrap {
	background: var(--col-light-green);
	margin: 0 auto;
	box-sizing: border-box;
  }
  .bw_sakuyomi h2 {
	text-align: center;
	color: #009141;
	font-size: 1.7rem;
	font-weight: bold;
	overflow: initial;
	text-indent: -1em;
  }
  .bw_sakuyomi h2 span.sub {
	display: inline-block;
	font-size: 1.2rem;
	padding-top: .7em;
	margin-top: .7em;
	border-top: dashed 2px #35ab22;
	width:76%;
	text-indent: 1em;
  }
  .bw_sakuyomi h2 .h2_icon {
	width: 4rem;
	margin-right: 0;
	margin-top: -.5rem;
  }
  .bw_sakuyomi h3 {
	color: #009141;
	font-weight: bold;
	font-size: 1.6rem;
	margin: 5% 0 3%;
  }
  .bw_sakuyomi p.notes {
	text-align: left;
	line-height: 1.5;
	font-size: 1.2rem;
	max-width: min(80%,500px);
	margin: 0 auto 3%;
	}

@media all and (min-width: 769px) {
	.bw_sakuyomi h2 {
	  font-size: 2.4rem;
	}
	.bw_sakuyomi h2 span.sub {
	  font-size: 1.6rem;
	  width: 60%;
	}
	.bw_sakuyomi h2 .h2_icon {
		width: 5.5rem;
		margin-right: .5rem;
		margin-top: -1rem;
	}
	.bw_sakuyomi h3 {
	  font-size: 2.4rem;

	}
	.bw_sakuyomi p.notes {
		text-align: center;
	}
  }
  
  /* ABOT */
  .bw_sakuyomi .bw_sakuyomi_about {
	background: #fff;
	width: 100%;
	box-sizing: border-box;
	padding: 11% 0 4% 0;
	background-image: linear-gradient(135deg, #ffe327 30px, transparent 0);
	}
  .bw_sakuyomi p.bw_sakuyomi_about_p {
	
	font-size: 1.4rem;
	  text-align: left;
	  padding: 0 9%;
  }
  .bw_sakuyomi .bw_sakuyomi_about ul {
	display: flex;
	justify-content: center;
	;margin: 2% 6.52%;

  }
  .bw_sakuyomi .bw_sakuyomi_about ul li {
	padding: 2%;
  }


/* btn-sakuyomi */
.cp_main .btn-sakuyomi{
	background: var(--col-yellow);
	color: var(--col-d-green) !important;
	max-width: min(80%, 430px);
}

.cp_main .btn-sakuyomi.arrow::before {
    border-color: var(--col-light-green);
}

@media all and (min-width: 769px) {
	.bw_sakuyomi .bw_sakuyomi_about {
		padding: 70px 55px 55px;
		background-image: linear-gradient(135deg, #ffe327 50px, transparent 0);
	}
	.bw_sakuyomi p.bw_sakuyomi_about_p {
		font-size: 1.8rem;
		text-align: center;
	}
	.bw_sakuyomi .bw_sakuyomi_about ul {
		margin: 2% 0
	}
}



/*-------------------------------------------
 概要
-------------------------------------------*/
.cp_main .outline-block{
	background: #FFF;
}

.cp_main .outline-block h2{
	text-align: center;
	font-size: clamp(18px , 4vw ,26px);
	background: var(--col-light-green);
	padding: .5em;
	color: #FFF;
	border-radius: 10px;
	margin-bottom: 3%;
}

.cp_main .outline-block dl{
	background: #fff;
	border-radius: 0 0 15px 15px;
}

.cp_main .outline-block dt{
    border: 2px solid var(--col-light-green);
	text-align: center;
    border-radius: 5px;
    color: var(--col-light-green);
    font-size: clamp(12px , 2.6vw, 18px);
    padding: .5em .5em .3em .5em;
    margin-bottom: 2%;
}

.cp_main .outline-block dt h3{
	font-weight: normal;
	font-size: clamp(14px , 2.6vw ,18px);
	font-weight: 700;
}

.cp_main .outline-block dt + dd {
    margin: 0 0% 2%;
    font-size: clamp(12px ,2.8vw ,16px);
    line-height: 1.8;
    text-align: left;
}

.cp_main .outline-block dt + dd:last-child {
  margin-bottom: 0;  
}

@media (min-width: 769px) {
	.cp_main .outline-block dt {
		padding: .3em;
		margin-bottom: 2%;
	}

	.cp_main .outline-block h2{
		padding: 24px;
	}
}


/*----------------------------------------------------------------------------
---------------------------------------------------------------------------
 最終的に上書き用　*一番最後に記載*
 ---------------------------------------------------------------------------
----------------------------------------------------------------------------*/

/* ボタン用 
------------------------*/
/* ボタンの色 */
 .cp_main .cp-end{
	pointer-events: none;
	background-color: #c8c8c8 !important;
	border: none !important;
	color: #FFF !important;
	box-shadow: none;
  }

/* 影 */
.cp_main .cp-end.btn-shadow3 {
    box-shadow: none !important;
}

/* 矢印 */
.cp_main .cp-end.arrow:before{
	border-color: #FFF;
}

/* 画像 */
.cp_main .cp-btn__large.cp-end img,
.cp_main .cp-btn__middle.cp-end img,
.cp_main .cp-btn__small.cp-end img{
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

/* 画像直接用 
------------------------*/
.cp_main .cp-end .cp-end__img{
	-webkit-filter: grayscale() ;
	filter: grayscale();
	opacity: .5;
}

/* チェックボックス削除 */
.cp_main .cp_check-box.cp-end{
	background: none !important;
    border: none;
    margin: 0;
    padding: 0;
    height: 10px;
}