<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ***************************************************
ヒーリングっどプリキュア
------------------------------------------------------
ファンレター用CSS
------------------------------------------------------
・640pxまでをスマホとする
・641pxからタブレット／PCととする
・1000pxはPC専用とする
*************************************************** */


/* =============================================
  共通 ボタン
============================================= */
/* ピンク大ボタン */
.btn {
	text-align: center;
}
.btn a {
	width: 300px;
	padding: 0.60em 0 0.75em;
	font-family: "Shuei MaruGo B";
	font-size: 2.4rem;
	text-align: center;
	border-radius: 26px;
	color: #fff;
	line-height: 1;
	
	margin: 25px auto;
	text-decoration: none;
	background-color: #ed539b;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f073ae), color-stop(#ed539b), to(#ea3388));
	background-image: -webkit-linear-gradient(top, #f073ae, #ed539b, #ea3388);
	background-image: linear-gradient(180deg, #f073ae, #ed539b, #ea3388);
	border: 1px solid #ea3388;
}
.btn a:after {
	content: "";
	display: inline-block;
	margin-left: 20px;
	width: 14px;
	height: 14px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn a:hover, .btn a:focus, .btn a:active {
	-webkit-transform: scale(1.025);
	transform: scale(1.025);
}
/* ピンク小ボタン */
.btn_s {
	margin: 0 auto;
	text-align: center;
}

.btn_s a {
	padding: 0.75em 2.25em 0.75em 1.25em;
	margin: 0 auto;
	position: relative;
	display: inline-block;
	font-family: "Shuei MaruGo B";
	font-size: 1.4rem;
	text-align: center;
	color: #fff;
	line-height: 1;
	text-decoration: none;
	background-color: #ed539b;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f073ae), color-stop(#ed539b), to(#ea3388));
	background-image: -webkit-linear-gradient(top, #f073ae, #ed539b, #ea3388);
	background-image: linear-gradient(180deg, #f073ae, #ed539b, #ea3388);
	border: 1px solid #ea3388;
	border-radius: 100px;
}
.btn_s a:after {
	content: "";
	display: inline-block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 8%;
}
.btn_s a:hover {
	-webkit-transform: scale(1.025);
	transform: scale(1.025);
}
.btn_next {
	text-align: right;
}
.btn_prev {
	text-align: left;
}
.btn_prev a {
	padding: 0.75em 1.25em 0.75em 2.25em;
}
.btn_prev a:after {
	transform: rotate(225deg);
	right: inherit;
	left: 8%;
}
@media screen and (min-width:641px) {
	.btn_s a {
		font-size: 1.6rem;
	}
}

/* 下層共通 コンテンツボックス
---------------------------------------- */
.contents.bg_white{
	background-color: rgba(255, 255, 255, 0.8);
	position: relative;
}
.contents.bg_white:after{
	display: block;
    content: "";
    background: url(../img/common/bg_white_line.png) repeat-x bottom center;
    background-size: contain;
    width: 100%;
	height: 5vw;
    position: absolute;
    bottom: -2.5vw;
    left: 0;
}
@media screen and (min-width:641px){
	.contents.bg_white:after{
		background: url(../img/common/bg_white_line.png) repeat-x bottom center;
		bottom: -15px;
		height: 30px;
	}
}


/* =============================================
 下層＜ファンレターを読む＞
============================================= */

/* 一覧ボックスCSS */
.letter_list li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 2em 1.5em;
	position: relative;
	text-align: left;
	display: table;
	z-index: 1;
}
.letter_list li:after {
	content: "";
	width: 100%;
	height: 1.7vw;
	background: url(../img/common/fan_letter/bg_line.png) center no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: -0.8vw;
}
.letter_list li:last-child:after {
	content: none;
}
.letter_list dt {
	padding: 10px 0.5em 10px 2.8em;
	margin-bottom: 2.5%;
	background: url(../img/common/fan_letter/bg_flwp.png) #fcecf3;
	background-size: 30px;
	line-height: 1.4;
	position: relative;
	color: #891085;
}
.letter_list dt:before {
	content: "";
	width: 3.120em;
	height: 2.1em;
	background: url(../img/common/fan_letter/ico_letter.png) no-repeat center center;
	background-size: 100% auto;
	display: block;
	position: absolute;
	top: 0.3em;
	left: -0.6em;
}
.letter_list dt span {
	display: inline-block;
	color: #e5005e;
	font-weight: bold;
	padding-right: 1%;
}
.letter_list dd {
	line-height: 1.6;
}
.letter_list .pict {
	float: left;
	width: 30%;
	padding-right: 2%;
}
/* 二番目にあるddにクラスを付加 */
.letter_list dd + dd {
	float: right;
	width: 68%;
}
/* リンクありボックス */
.letter_list a {
	text-decoration: none;
	display: block;
}
.letter_list a dl {
	width: 100%;
}
.letter_list a dd {
	text-decoration: underline;
}
.letter_list a:hover dd {
	text-decoration: none;
}
.btn_send{
	text-align:right;
}
/* 進む戻る無効用小ボタン */
.btn_s.off a {
	background-color: #bbb;
	background-image: -webkit-linear-gradient(top, #bbb, #aaa);
	background-image: linear-gradient(180deg, #bbb, #aaa);
	border: 1px solid #aaa;
}
.pager {
	margin-top: 6%;
	position: relative;
	z-index: 1;
}
.pager_btn:after {
	content: "";
	display: block;
	clear: both;
}
.pager_btn li {
	float: left;
	width: 50%;
}
.pager_btn li:nth-of-type(2) {
	float: right;
	width: 50%;
}
.pager_list {
	margin-top: 4%;
	font-size: 0;
}
.pager_list:after {
	content: "";
	display: block;
	clear: both;
}
.pager_list li {
	display: inline-block;
	color: #e95098;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
}
.pager_list li a {
	width: 2.5em;
	height: 2.5em;
	margin: 0 2px 10px;
	background: #FFF;
    border: 1px solid #ff80b5;
	border-radius: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #e5005e;
	font-weight: normal;
	text-decoration: none;
}
.pager_list li a:hover {
	color: #FFF;
	background: #e5005e;
}
.pager_list li.thispage span {
	width: 2.5em;
	height: 2.5em;
	margin: 0 2px 10px;
	background: #e5005e;
	border-radius: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
}
@media screen and (min-width:641px){
	.letter_list li:after {
		height: 7px;
		background: url(../img/common/fan_letter/bg_line_pc.png) center no-repeat;
		bottom: -3.5px;
	}
}
@media screen and (min-width:1000px){
	.btn_send{
		margin-top: -1.5em;
	}
}


/* =============================================
 フォーム
============================================= */
/* 05：フォーム関連
---------------------------------------- */
.formpage_wrap {
	margin-top: 4%;
	background: #fff;
	border: 3px solid #e95098;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}
.formbg {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%), url(../img/common/fan_letter/bg_box_thanks.jpg) top center no-repeat;
	background-size: cover;
}
.fan_letter-thanks .formbg {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.5) 100%), url(../img/common/fan_letter/bg_box_thanks.jpg) top center no-repeat;
	background-size: cover;
}
.formbg:after {
	content: ""
}
.formpage_wrap .sub_title {
	padding: 2% 0;
	background: rgba(255, 255, 255, 0.7);
	position: relative;
}
.formpage_wrap .sub_title:before {
	content: "";
	width: 100%;
	height: 2.1vw;
	background: url(../img/common/fan_letter/bg_line.png) center no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: -1vw;
}
.formpage_wrap .sub_title img {
	width: 71%;
	max-width: 440px;
	padding-right: 4%;
}
@media screen and (min-width:641px) {
	.formpage_wrap .sub_title:before {
		height: 11px;
		background: url(../img/common/fan_letter/bg_line_pc.png) center no-repeat;
		background-size: contain;
		bottom: -5.5px;
	}
}
.entry_form {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 4%;
	padding: 0 3% 3%;
	position: relative;
	text-align: left;
}
.entry_form dl {
	border: none;
}
.entry_form dl dt {
	padding: 4% 2% 4% 2%;
	background: url(../img/common/fan_letter/bg_flwp.png);
	background-size: 30px;
	color: #e81b6f;
	font-weight: bold;
	text-align: center;
}
.entry_form dl dd {
	padding: 2%;
	line-height: 1.7;
}
.entry_form dl dd span {
	color: #995c67;
}
.entry_form dl dd .girl {
	color: #e81b6f;
	font-weight: bold;
	font-size: 1.8rem; /* 18pt */
}
.entry_form dl dd .boy {
	color: #25a9e7;
	font-weight: bold;
	font-size: 1.8rem; /* 18pt */
}
.button_area {
	margin-top: 30px;
	padding: 0px 10px 30px 10px;
}
.limited {
	display: block;
	font-size: 20px;
	font-weight: bold;
	margin-top: 10px;
}
label {
	padding: 0 5px 0 0;
	cursor: pointer;
}
input[type="text"] {
	width: 96%;
	padding: 7px 5px;
	font-size: 15px;
	border: 1px solid #DDD;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-appearance: none;
	font-size: 2.2rem; /* 22pt */
}
input[type="radio"], input[type="checkbox"] {
	vertical-align: middle;
}
input[type="checkbox"] {
	margin: 0 5px 0 0;
}
input[type="button"] {
	font-size: 1.8rem; /* 18pt */
	border: none;
	cursor: pointer;
	padding: 2%;
	color: #fff;
	background-color: #e5005e;
	behavior: url(http://cipher.asahi.co.jp/toraban_comment/js/PIE.htc);
	position: relative;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
}
select {
	font-size: 14px;
	padding: 3px;
}
textarea {
	width: 96%;
	height: 100px;
	padding: 5px 5px;
	font-size: 15px;
	border: 1px solid #DDD;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-appearance: none;
}
.w50 {
	width: 50px !important;
}
.w100 {
	width: 100px !important;
}
@media screen and (min-width:641px) {
	.entry_form dl {
		border: none;
		display: table;
		width: 100%;
		font-size: 1.6rem;
		background: #fff;
		border-bottom: 1px dotted #AAA;
		padding-bottom: 6px;
		margin-bottom: 6px;
	}
	.entry_form dl dt {
		padding: 2% 0;
		width: 160px;
		display: table-cell;
		float: none;
		vertical-align: middle;
		line-height: 1.4;
	}
	.entry_form dl dt:before {
		width: 10%;
		left: 5%;
	}
	.entry_form dl dd {
		display: table-cell;
		min-height: 20px;
		height: auto !important;
		height: 20px;
		padding: 10px;
		background-color: #fff;
		float: none;
	}
	.entry_form dl dd span.sub {
		display: inline-block;
		margin-top: 0;
		vertical-align: top;
		width: 70px;
	}
	#buttonArea {
		padding: 20px 0;
		display: table;
		text-align: center;
		margin: 0 auto;
	}
	#buttonArea input {
		margin: 0 10px;
		font-size: 16px;
		font-weight: bold;
	}
	.limited {
		display: block;
		font-size: 20px;
		font-weight: bold;
		margin-top: 10px;
	}
}
/**/

/* プリキュアからのメッセージ
--------------------------------------------- */
/*.note:after{
	content: "";
	display: block;
	clear: both;
}*/
.note{
	display: table;
	padding-left: 3%;
	margin: -1em auto 0;
	text-align: left;
	position: relative;
}
.note_txt{
	padding-top: 1em;
	display: table-cell;
	font-size: 4vw;
	line-height: 1.4;
	vertical-align: middle;
}
.note_img{
	width: 45%;
	box-sizing: border-box;
	display: table-cell;
	text-align: right;
}
.note p a{
	margin-top: 0.5em;
}
.txt_limit{
	width: 10em;
	margin: 0 auto;
	background: #fff774;
	margin: 0 auto;
	padding: 2%;
	display: block;
	text-align: center;
	color: #000;
	font-size: 1.6rem;
	font-weight: bold;
}
.txt_limit em{
	font-size:2.2rem; /* 22pt */
	font-style: normal;
	color: #e5005e;
}
@media screen and (min-width:444px){
	.note_txt{
		font-size: 1.6rem;
	}
}
@media screen and (min-width:641px){
	.note_img{
		width: 250px;
	}
	.txt_limit{
		padding:1%;
	}
}
@media screen and (min-width:800px){
	.note{
		margin: -2em auto 0;
	}
}

/* エラーパネル
--------------------------------------------- */
.error_panel{
 	display:none;
	z-index:9999;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	text-align:center;
	background:url("../img/common/fan_letter/bg_modal.png");
	background-size: 70px;
	cursor: pointer;
}
.panel {
	display:none;
	position:relative;
	width: 80%;	
	margin:25% auto;
	background: url(../img/common/fan_letter/bg_flwy.png) #fcf2c2;
	background-size: 30px;
	border:4px solid #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);		
}
.panelInner {
	text-align:left;
	padding: 4%;
	margin: 0 auto;
	cursor: auto;
	z-index: 5;
}
.error_panel .txt {
	margin: 2% 0 2% 10%;
	color: #e5005e;
	text-align: left;
}
.error_panel .txt li {
	margin-bottom: 10px;
	list-style-type: disc;
}
.error_panel img{
	width:80%;
	margin:0 auto 4%;
}
.error_panel p{
	margin: 0 auto;
	text-align: center;
}
.error_panel p.btn_s{
	margin-top:6%;
}
.error_panel p.btn_s a{
	margin:0 auto;
	padding:3% 14%;
}
@media screen and (min-width:641px){
	.panel {
		width: 500px;
		margin:20% auto;
	}
	.error_panel p.btn_s a{
		margin:0 auto;
		padding:0.5em 14%;
		font-size:1.8rem; /* 18pt */
	}
}

/* 送信ボタン */
.submit_send {
	border: none;
	background: none;
	cursor: pointer;
}
.form_btn{
	text-align:center;
}
.form_btn span{
	display: inline-block;
	color: #e5005e;
	line-height: 1.2;
}
/**/
.form_btn button{
	padding: 0.75em 2.25em 0.75em 1.25em;
	font-family: "Shuei MaruGo B";
	font-size: 4.5vw;
	text-align: center;
	border-radius: 3em;
	color: #fff;
	line-height: 1;
	margin: 10px auto 0;
	position: relative;
	text-decoration: none;
	background-color: #ed539b;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f073ae), color-stop(#ed539b), to(#ea3388));
	background-image: -webkit-linear-gradient(top, #f073ae, #ed539b, #ea3388);
	background-image: linear-gradient(180deg, #f073ae, #ed539b, #ea3388);
	border: 1px solid #ea3388;
	transition: .3s;
}
.form_btn button:after{
	content: "";
	display: inline-block;
    margin-top: -0.6rem;
    width: 1.2rem;
    height: 1.2rem;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 8%;
}
.form_btn button:hover{
	-webkit-transform: scale(1.025);
	transform: scale(1.025);
}
.form_btn{
	border-top: 1px dotted #CCC;
	padding-top: 4%;
    margin-top: 4%;
	margin-bottom: 0;
}
@media screen and (min-width:641px){
	.form_btn{
		padding-top: 0;
		border-top: none;
	}
	.form_btn button{
		font-size: 2.4rem;
	}
	.submit_send{
		width: 400px;
	}
}

/* thanksページ
--------------------------------------------- */
@media screen and (min-width:641px){
	.detailbox{
		padding:0 3% 5%;
		background-image: none;
		background-repeat: no-repeat, no-repeat;
		background-position: top center, bottom center;
		background-size: 100% auto, 100% auto;
	}
	.detail_title.txt {
		color:#e5005e;
		font-size:2.2rem;
		line-height:1.4;
		font-weight:bold;
		text-align:center;
		margin: 5% 0 2%;
	}
}
@media screen and (max-width:640px){
	.detailbox{
		padding:0 0 7%;
		background-image: none;
		background-repeat: no-repeat, no-repeat;
		background-position: top center, bottom center;
		background-size: 100% auto, 100% auto;
	}
	.detail_title.txt {
		color:#e5005e;
		font-size:1.8rem;
		line-height:1.4;
		font-weight:bold;
		text-align:center;
		margin: 7% 0 2%;
	}
}


/*2022追記*/
/* ピンク小ボタン */
.btn_s {
	margin: 0 auto;
	text-align: center;
}

.btn_s span {
	padding: 0.75em 1.25em;
	margin: 0 auto;
	position: relative;
	display: inline-block;
	font-family: "Shuei MaruGo B";
	font-size: 1.4rem;
	text-align: center;
	color: #fff;
	line-height: 1;
	text-decoration: none;
	background-color: #ed539b;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f073ae), color-stop(#ed539b), to(#ea3388));
	background-image: -webkit-linear-gradient(top, #f073ae, #ed539b, #ea3388);
	background-image: linear-gradient(180deg, #f073ae, #ed539b, #ea3388);
	border: 1px solid #ea3388;
	border-radius: 100px;
}
@media screen and (min-width:641px) {
	.btn_s span {
		font-size: 1.6rem;
	}
}

.textR{
    text-align: right !important;
}</pre></body></html>