@charset "UTF-8";

/* mv */
.mv{
	text-align: center;
}
.mv img{border-radius: 40px;}
@media only screen and (max-width: 736px){
	.mv img{border-radius: 20px;}
}
/* キャンペーンのタイトル */
h1.cp_ttl{
	background-color: #eff1f4;
	border-radius: 20px 20px 0 0;
	padding: 2% 0;
	text-align: center;
} 
@media only screen and (min-width: 737px){
	h1.cp_ttl{
		padding: 1% 0;
	}
}

/*アコーディオン*/
.accordion_wrap{
	padding: 2%;
}
.accordion_wrap .accordion_ttl{
	padding: 1em;
}

/*表*/
.table_cp .bg_gry {background: #EFF1F4!important;}
.table_cp .bg_pink {background: #ec6a70!important;}
.table_cp .bg_blue {background: #6ac4e7!important;}
.table_cp .bg_green {background: #9ab611!important;}
.table_cp .bg_orange {background: #f6a229!important;}
.table_cp .fc_white {color: #fff;}

.table_base thead tr:last-child th {
    border-bottom: none;
}
.table_base thead th {
    background: #EFF1F4;
    font-weight: normal;
	text-align: center;
}
.table_base tbody th,
.table_base tbody td{
	text-align: center;
}


/*申込みボタン*/
.btn_base.red a{
	background-color: #c10e2d;
	border: 1px solid #c10e2d;
}

/*同時に使えるキャンペーン・特典*/
.sonota_campaign{
	background-color: #f5f2e2;
	border-radius: 20px;
	padding: 5%;
	text-align: center;
}
.sonota_campaign img{
	border-radius: 20px;
}
@media only screen and (min-width: 737px){
	.sonota_campaign{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.sonota_campaign .bnr{
		width: calc(100% / 2 - 50px);
	}
}
/*ふきだし*/
.sonota_campaign .balloon {
	position: relative;
	display: inline-block;
	margin: 0 0 1em;
	padding: 2% 5%;
	min-width: 120px;
	max-width: 100%;
	color: #fff;
	font-size: 16px;
	background: #AACC03;
	border-radius: 99em;
}
.sonota_campaign .balloon:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -13px;
    border: 13px solid transparent;
    border-top: 8px solid #AACC03;
}
.sonota_campaign .balloon p {
	margin: 0;
	padding: 0;
}


/*注意事項*/
.list_normal{
	margin-left: 10px;
}
.list_normal li {
	text-indent: -5px;
	list-style-type: none;
}
.list_normal li::before {
	margin-right: 0 !important;
}

/*文字下線*/
.under{
	background: linear-gradient(transparent 60%, #ffbbbe 60%);}

/*クーポンコード*/
.coupon{
	background-color: #ffeadd;
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	width: 100%;
	margin: 0 auto;
}

.coupon .cord{
	font-weight: 700;
	font-size: 150%;
	width: 60%;
	margin: 0 auto;
/*	display: flex;
    align-items: center;
    justify-content: center;*/
}
.coupon .cord_nocopy{
	background-color: #fff;
	padding: 1%;
	width: 60%;
	border-radius: 10px;
	margin: 0 auto;
}
.coupon .cord_nocopy p{
	margin-bottom: 0;
	user-select: none;
}
.coupon .cord_nocopy p span{
	border-left: 1px solid #000;
	padding-left: 5%;
	margin-left: 5%;
	font-weight: 700;
}
@media only screen and (max-width: 737px){
	.coupon{
		width: 100%;
	}
	.coupon .cord{
		width: 90%;
		display: block;
	}
	.coupon .cord_nocopy{
		padding: 2%;
		width: 95%;
	}
	.coupon .cord_nocopy p span{
		border-left: none;
		padding-left: 0;
		margin-left: 0;
		border-top: 1px solid #000;
	}
}
/*クーポンコード 「コピーしました！」*/
.copycode {
	position: relative;    /* バルーンを表示するための基準値とする */
	display: block; /* インラインブロック要素にする */
	width: 100%;
	margin-bottom: 10px;
}
.copycode span {
	opacity: 0;            /* 最初は透明にして見えなくする */
	position: absolute;    /* 表示を相対位置にする */
	color: #fff;           /* 文字色を白に指定 */
	background: #ffa80b80;  /* 背景色を半透明の黒にする */
	padding: 5px 15px;             /* 適度な余白を指定 */
	top: 5.8em;
    right: 4em;
	font-size: 60%;
	border-radius: 20px;
}
.copycode input{
	border: none;
	width: 95%;
	text-align: center;
	padding: 3%;
    border-radius: 10px;
}
.copycode input:focus + span {
	animation: fade-out 2s ease-in; /* inputが選択状態になったときにだけアニメーションを1回実行する */
	color: inherit;
}
.copycode + .copycode_btn{
	background-color: #fe7624;
    color: #fff;
    padding: 1.5% 5%;
    border-radius: 99em;
    font-size: 50%;
	display: inline-block;
}
.copycode + .copycode_btn button{
	border: none;
    background: none;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}
@media screen and (max-width:640px) {
	.copycode span {
		top: 7em;
		font-size: 70%;
		padding: 1%;
		left: 50%;
		right: 10px;
		transform: translate(-50%, -50%);
	}
	.copycode input{
		font-size: 100%;
	}
	.copycode + .copycode_btn{
		font-size: 70%;
	}
}
@keyframes fade-out {
  0% {visibility: visible; opacity: 1;}  /* 最初は表示して、 */
  100% {visibility: hidden; opacity: 0;} /* フェードアウトする */
}

/*申込みボタン部分*/
.cta_block {
	display: block;
	max-width: 450px;
	margin: 0 auto;
	text-align: center;
}

/*申込みボタン部分_斜め線見出し*/
h3.cta_txt {
    position: relative;
    padding: .5rem 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
	display: inline-block;
	color: #ea6068;
}
h3.cta_txt::before,
h3.cta_txt::after {
    position: absolute;
    top: 0.8rem;
    height: 1.8rem;
    content: '';
	border-radius: 99em;
	color: #ea6068;
}
h3.cta_txt::before {
    border-left: solid 3px;
    left: 0;
    transform: rotate(-30deg);
}
h3.cta_txt::after {
    border-right: solid 3px;
    right: 0;
    transform: rotate(30deg);
}

/*注意事項部分*/
.border_box .border_box_inner{
	max-height: none;
    overflow: auto;
    overflow-y: auto;
}

/*キャンペーン詳細部分の線*/
.apply_box{
	border-top: 1px dashed #62666a;
    border-bottom: 1px dashed;
    padding: 10px 0;
}




