@charset "utf-8";

/* ***************************************************
ＨＵＧっと！プリキュア
------------------------------------------------------
サイト共通／トップ／下層共通 CSS
------------------------------------------------------
・640pxまでをスマホとする
・641pxからタブレット／PCととする
・1000pxはPC専用とする
*************************************************** */

/* =============================================
 共通 リセット
============================================= */
#cm-header{
	z-index: 100 !important;
}
.wrap-menu .wrap-fixed {
	position: absolute !important;
}
html,body{
	font-size: 16px;
	overflow-x: hidden;
	line-height: 1;
}
body{
	margin: 0;
	padding: 0;
	font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','Osaka',sans-serif;
	color:#000;
}
img{
	border: none;
	display: inline-block;
	vertical-align:middle;
	width: 100%;
}
a{
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color:#e5005e;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
dl,dt,dd{
	padding: 0;
	margin: 0;
}
p{
	margin: 0;
	padding: 0;
	line-height: 1.7;
}
blockquote {
	margin: 0;
	padding: 20px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
h1,h2,h3,h4,h5{
	margin: 0;
	line-height: 1;
	font-weight:normal;
}
@media screen and (max-width:640px) { 
	.onlyPC{
		display: none !important;
	}
	.onlySP{
		display: block;
	}
}
@media screen and (min-width:641px) { 
	.onlyPC{
		display: block;
	}
	.onlySP{
		display: none !important;
	}
}

/* =============================================
 ★animation 設定
適用したいクラスに下記のように設定する
animation: zoom 10s infinite;
============================================= */
/* ズームアクション */
@-webkit-keyframes zoom {
  100% {
    -webkit-transform: scale(1.05);
  }
}
@-moz-keyframes zoom {
  100% {
    -webkit-transform: scale(1.05);
  }
}
@keyframes zoom {
  100% {
    transform: scale(1.05);
  }
}
/* 少しあがる動き */
@-webkit-keyframes topMove {
  50% {
    -webkit-transform: translate3d(0,-10px,0);
  }
}
@-moz-keyframes topMove {
  50% {
    -webkit-transform: translate3d(0,-10px,0);
  }
}
@keyframes topMove {
  50% {
    transform: translate3d(0,-10px,0);
  }
}
/* 点滅 */
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/* =============================================
 WRAP
============================================= */
.wrap{
	width: 100%;
	text-align: center;
}
.wrap_inner{
	width: 100%;
	background-image: url("../img/smp/bg.jpg");
	background-position: top center;
	background-repeat: repeat-y;
	-webkit-background-size:100% auto;
	-moz-background-size:100% auto;
	background-size:100% auto;
	padding-top:8%; 
}
.nobnr .wrap_inner{
	padding-top:3%; 
}

@media screen and (min-width:641px) { 
	.wrap_inner{
		padding-top: 5%; 
	}
	.nobnr .wrap_inner{
		padding-top:5%; 
		margin-top: -5%;
	}
}
@media screen and (min-width:1000px) { 
	.wrap_inner{
		background-image: url("../img/pc/bg.jpg");
		background-position: top center;
		background-repeat: no-repeat;
 		background-attachment: fixed;
		background-size: cover;
		padding-top: 50px; 
	}
	.nobnr .wrap_inner{
		padding-top:50px; 
		margin-top: -50px;
	}
	
}
/* =============================================
 共通 ヘッダー
============================================= */
h1.logo{
	width: 100%;
}
h1.logo img{
	display: block;
	width: 100%;
}
@media screen and (min-width:641px) {
	.header{
		width: 100%;
		background-image: url("../img/pc/visual_tbl.jpg");
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100% auto;
		position: relative;
		padding-top:53.6%; 
	}
	.nobnr .header{
		background-image: url("../img/pc/visual_tbl.png");
	}
	
	h1.logo{
		position: absolute;
		top: 4%;
		left: 0;
		width: 44.5%;
	}
}
@media screen and (min-width:1000px) { 
	.header{
		height: 536px;
		overflow: hidden;
		background-image: url("../img/pc/visual.jpg");
		background-position: top center;
		background-repeat: no-repeat;
		background-size: auto auto;
		position:relative;
		padding-top: 0;
	}
	.nobnr .header{
		background-image: url("../img/pc/visual.png");
	}
	h1.logo{
		position: absolute;
		top: 32px;
		left: 50%;
		margin-left: -504px;
		width: 454px;
	}
}

@media screen and (max-width:640px) { 
	.oatime{
		background-image: url("../img/common/bg_kirapink.jpg");
		background-position: top center;
		position: relative;
		padding: 4%;
	}
	.oatime:before{
		display: block;
		content: "";
		background: url("../img/common/line_lace.png") repeat-x top left;
		background-size: 60px auto;
		width: 100%;
		height: 22px;
		-webkit-transform: scale(1, -1);
		-moz-transform: scale(1, -1);
		-ms-transform: scale(1, -1);
		-o-transform: scale(1, -1);
		transform: scale(1, -1);
		position: absolute;
		top:-20px;
		left:0;
	}
	.oatime:after{
		display: block;
		content: "";
		background: url("../img/common/line_lace.png") repeat-x top left;
		background-size: 60px auto;
		width: 100%;
		height: 22px;
		position: absolute;
		bottom:-20px;
		left:0;
	}	
}
@media screen and (min-width:641px) { 
	.oatime{
		position: absolute;
		bottom: 30%;
		left: 7%;
		width: 32%;
	}
}
@media screen and (min-width:1000px) { 
	.oatime{
		position: absolute;
		top: 244px;
		left: 50%;
		margin-left: -430px;
		width: 320px;
	}
}

/* =============================================
  共通 メニュー
============================================= */
/* スマホ用ハンバーガーメニュー */
.navi_btn {
	background: url(../img/smp/btn_navi_op.png) no-repeat 0 0;
	background-size: 100% auto;
	display: block;
	width:16%;
	height: 12%;
	position: absolute;
	top:60px;
	right:2.5%;
	cursor: pointer;
	z-index: 200;
}
.navi_close {
	background: url(../img/smp/btn_navi_cl.png) no-repeat 0 0;
	background-size: 100% auto;
	display: block;
	width:16%;
	height: 12%;
	position: fixed;
	top:60px;
	right:2.5%;
	cursor: pointer;
	z-index: 300;
}
.navi_drawr {
	display: none;
	background: url(../img/common/bg_kirapink.jpg);
	position: fixed;
	top: 50px;
	right:0;
	width:100%;
	height: 100%;
	z-index: 200;
}
.navi_smp li {
	width:100%;
	white-space: nowrap;
	position: relative;
	border-bottom: 1px solid #ddc3d4;
}
.navi_smp li:before{
	content: "";
	width:40px;
	height: 40px;
	background: url(../img/common/ico_arrow_rd.png) no-repeat left center;
	background-size: 20% auto;
	position: absolute;
	top:18px;
	left: 20px;
}
.navi_smp li a {
	color:#e5005e;
	font-weight: bold;
	display: block;
	padding: 30px 30px 30px 40px;
	text-align: left;
	text-decoration: none;
}
.wrapfixed{
  position: fixed;
  width: 100%;
  height: 100%;	
}

/* PC用メニュー */
@media screen and (min-width:641px){
	.navi_box{
		width: 100%;
		position: absolute;
		bottom:5%;
		background: url(../img/common/bg_lace.png) repeat-x center center;
	}
	.navi_pc:after{
		content: "";
		display: block;
		clear: both;
	}
	.navi_pc{
		font-size: 0;
		text-align: center;
	}	
	.navi_pc li{
		font-size: 1rem;
		display: inline-block;
		width:16%;
		padding: 0 0.3%;
		position:relative;
	}
	.navi_pc li span{
		position:absolute;
		line-height: 1;
		top:-50%;
		right:0;
		z-index:10;
		font-size:0.625rem; /* 10pt */
		font-weight:bold;
		color:#e5005e;
		background:url("../img/pc/bg_update.png") no-repeat center center;
		background-size: 44px;
		width: 44px;
		height: 44px;
		padding-top:27px;
	}
}
@media screen and (min-width:680px) and (min-width:699px){
	.navi_pc li span{
		top:-44%;
	}
}
@media screen and (min-width:700px) and (min-width:719px){
	.navi_pc li span{
		top:-42%;
	}
}
@media screen and (min-width:720px) and (min-width:739px){
	.navi_pc li span{
		top:-40%;
	}
}
@media screen and (min-width:740px) and (min-width:759px){
	.navi_pc li span{
		top:-38%;
	}
}
@media screen and (min-width:760px) and (min-width:779px){
	.navi_pc li span{
		top:-36%;
	}
}
@media screen and (min-width:780px) and (min-width:799px){
	.navi_pc li span{
		top:-34%;
	}
}
@media screen and (min-width:800px) and (min-width:819px){
	.navi_pc li span{
		top:-32%;
	}
}
@media screen and (min-width:820px) and (min-width:839px){
	.navi_pc li span{
		top:-30%;
	}
}
@media screen and (min-width:840px) and (min-width:859px){
	.navi_pc li span{
		top:-28%;
	}
}
@media screen and (min-width:860px) and (min-width:879px){
	.navi_pc li span{
		top:-26%;
	}
}
@media screen and (min-width:880px) and (min-width:899px){
	.navi_pc li span{
		top:-24%;
	}
}
@media screen and (min-width:900px){
	.navi_pc li span{
		position:absolute;
		line-height: 1;
		top:-26%;
		right:0;
		z-index:10;
		font-size:0.750rem; /* 12pt */
		font-weight:bold;
		color:#e5005e;
		background:url("../img/pc/bg_update.png") no-repeat center center;
		background-size: 50px;
		width: 50px;
		height: 50px;
		padding-top:28px;
	}
}
@media screen and (min-width:1000px){
	.navi_pc{
		width: 1000px;
		margin: 0 auto;
	}
}

/* =============================================
 スライドバナー(ヘッダー)　※TOPのみ使用
============================================= */
/* スマホはスライダー */
@media screen and (max-width:640px){ 
	.hd_bnr_smp{
		background: url("../img/common/bg_strye.png");
		background-size: 10px 10px;
		border: 2px solid #d5aa59;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		padding: 1.5%;
		margin: 0 3% 3%;
		z-index:100000;
	}
	.hd_bnr_smp .bnr_list_top li{
		margin-bottom: 0;
	}
}
/* PC・タブレットは並べて表示 */
@media screen and (min-width:641px){ 
	.hd_bnr_pc{
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 1% 4% 0;
		margin: -6% auto 0;
		background: url(../img/common/bg_strye.png);
		position: relative;
		z-index:1000;
	}
	.hd_bnr_pc:before{
		display: block;
		content: "";
		background: url(../img/common/bg_bnr.png) repeat-x top left;
		background-size: 40px auto;
		width: 100%;
		height: 10px;
		position: absolute;
		top: -10px;
		left: 0;
	}
	.hd_bnr_pc:after{
		display: block;
		content: "";
		background: url("../img/common/bg_bnr.png") repeat-x top left;
		background-size: 40px auto;
		-webkit-transform: scale(1, -1);
		-moz-transform: scale(1, -1);
		-ms-transform: scale(1, -1);
		-o-transform: scale(1, -1);
		transform: scale(1, -1);
		width: 100%;
		height: 10px;
		position: absolute;
		bottom:-10px;
		left:0;
	}	
	.hd_bnr_pc .bnr_list_top{
		text-align: center;
		font-size: 0;
	}
	/* タブレットは常に2個表示 */
	.hd_bnr_pc .bnr_list_top li{
		width: calc(49% - 2px);
		margin: 0 0.5% 1%;
		display: inline-block;
		border: 1px solid #c9b542;
	}
}
@media screen and (min-width:1000px){

	/* 2個で表示させる時 */
	.hd_bnr_pc{
		margin-top: -56px;
		padding: 12px 30px 0;
	}
	.bnr_list_top{
		width: 950px;
		margin: 0 auto
	}
	.bnr_list_top li{
		width: 462px;
		margin: 0 12px 12px 0;
	}
	.bnr_list_top li:nth-of-type(2n){
		margin-right: 0;
	}
	
	/* 3個表示*/
	.hd_bnr_pc.three{
		margin-top: -56px;
		padding: 12px 30px 0;
	}
	.hd_bnr_pc.three .bnr_list_top li{
		width: 305px;
		margin: 0 12px 12px 0;
	}
	.hd_bnr_pc.three .bnr_list_top li:nth-of-type(3n){
		margin-right: 0 !important;
	}
}

/* =============================================
  共通 ボタン
============================================= */
/* 赤い大ボタン */
.btn,
.btn_s,
.btn_s_off{
	line-height: 1;
}
.btn a{
	display: block;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	background: -webkit-linear-gradient(top, #ec4086, #e5005e);
	background: -moz-linear-gradient(top, #ec4086, #e5005e);
	background: -ms-linear-gradient(top, #ec4086, #e5005e);
	background: -o-linear-gradient(top, #ec4086, #e5005e);
	background: linear-gradient(to bottom, #ec4086, #e5005e);
	box-shadow: 0 0 0 2px #fef4ba, 0 0 0 3px #d5aa59;
	text-align: center;
	padding: 5.5% 0;
	position: relative;
	color: #FFF;
	text-decoration: none;
	font-size:1.125rem; /* 18pt */
}
.btn a:hover{
	background: -webkit-linear-gradient(top, #e5005e, #ec4086);
	background: -moz-linear-gradient(top, #e5005e, #ec4086);
	background: -ms-linear-gradient(top, #e5005e, #ec4086);
	background: -o-linear-gradient(top, #e5005e, #ec4086);
	background: linear-gradient(to bottom, #e5005e, #ec4086);
}
.btn a:after{
	display:block;
	content: "";
	width: 98%;
	height: 100%;
	background: url("../img/common/ico_arrow_wh.png") no-repeat 97% center;
	background-size: 4%;
	position: absolute;
	top: 0;
	right: 0;
	margin: auto 0;
}
@media screen and (min-width:641px) { 
	.btn a{
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		box-shadow: 0 0 0 2px #fef4ba, 0 0 0 3px #d5aa59;
		padding: 2% 0;
		width: 48.92%;
		margin: 0 auto;
	}
	.btn a:after{
	}
}

/* 紫小ボタン */
.btn_s {
	text-align: center;
	margin: 0 auto;
}
.btn_s a{
	display: inline-block;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
	background: -webkit-linear-gradient(top, #b00da5, #9b0c95);
	background: -moz-linear-gradient(top, #b00da5, #9b0c95);
	background: -ms-linear-gradient(top, #b00da5, #9b0c95);
	background: -o-linear-gradient(top, #b00da5, #9b0c95);
	background: linear-gradient(to bottom, #b00da5, #9b0c95);
	box-shadow: 0 0 0 2px #fef4ba, 0 0 0 3px #d5aa59;
	text-align: center;
	padding: 3% 6% 3% 3%;
	margin: 0 auto;
	position: relative;
	font-size: 0.875rem;
	color: #FFF;
	text-decoration: none;
}
.btn_s a:after{
	display:block;
	content: "";
	width: 100%;
	height: 100%;
	background: url("../img/common/ico_arrow_wh.png") no-repeat right center;
	background-size: 7%;
	position: absolute;
	top: 0;
	right: 5%;
	margin: auto 0;
}
.btn_s a:hover{
	background: -webkit-linear-gradient(top, #9b0c95, #b00da5);
	background: -moz-linear-gradient(top, #9b0c95, #b00da5);
	background: -ms-linear-gradient(top, #9b0c95, #b00da5);
	background: -o-linear-gradient(top, #9b0c95, #b00da5);
	background: linear-gradient(to bottom, #9b0c95, #b00da5);
}

/* BBS進む戻る無効用小ボタン */
.btn_s_off {
        text-align: center;
        margin: 0 auto;
}
.btn_s_off a{
        display: inline-block;
        -moz-border-radius: 100px;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        background: -webkit-linear-gradient(top, #bbb, #aaa);
        background: -moz-linear-gradient(top, #bbb, #aaa);
        background: -ms-linear-gradient(top, #bbb, #aaa);
        background: -o-linear-gradient(top, #bbb, #aaa);
        background: linear-gradient(to bottom, #bbb, #aaa);
        box-shadow: 0 0 0 2px #fef4ba, 0 0 0 3px #d5aa59;
        text-align: center;
        /*padding: 3% 6% 3% 3%;*/
        margin: 0 auto;
        position: relative;
        font-size: 0.875rem;
        color: #FFF;
        text-decoration: none;
}
.btn_s_off a:after{
        display:block;
        content: "";
        width: 100%;
        height: 100%;
        background: url("../img/common/ico_arrow_wh.png") no-repeat right center;
        background-size: 7%;
        position: absolute;
        top: 0;
        right: 5%;
        margin: auto 0;
}

@media screen and (min-width:641px) { 
	.btn_s a{
		box-shadow: 0 0 0 2px #fef4ba, 0 0 0 3px #d5aa59;
	}
	.btn a:after{
	}
}





/* =============================================
  共通 コンテンツ
============================================= */
/* CONTBOX ボックス ※TOPのみ使用
---------------------------------------- */
.contbox{
	padding: 8% 0 12%;
}
/* 半透明で白の背景、パールの区切りのあるボックス */
.contbox_white{
	background: url("../img/common/bg_strwh.png");
	background-size: 2%;
	position: relative;
}
.contbox_white:before{
	display: block;
	content: "";
	background: url("../img/common/line_pearl.png") repeat-x top center;
	background-size: 6%;
	width: 100%;





	height: 6%;
	position: absolute;
	top:-0.3%;
	left:0;
}
.contbox_white:after{
	display: block;
	content: "";
	background: url("../img/common/line_pearl.png") repeat-x bottom center;
	background-size: 6%;
	width: 100%;
	height: 6%;
	position: absolute;
	bottom:-0.3%;
	left:0;
}
.contbox_white .inner{
	padding: 10% 0 12%;
}
.contbox .txt,
.contbox_white .txt{
	margin: 0 6%;
}
@media screen and (min-width:641px){ 
	.contbox{
		padding: 4% 0 5%;
		background-image:url("../img/pc/deco_ttl.png");
		background-repeat:no-repeat;
		background-position:center top;
		background-size:96.6% auto;
	}
	.contbox_white:before{
		background-size: 3%;
		width: 100%;
		height: 3%;
		top:-1%;
		left:0;
	}
	.contbox_white:after{
		background-size: 3%;
		width: 100%;
		height: 3%;
		bottom:-1%;
		left:0;
	}
	.contbox_white .inner{
		padding: 3.5% 0 4.5%;
	}
}
@media screen and (min-width:1000px){ 
	.contbox{
		width: 1000px;
		margin: 0 auto;
		padding:50px 0 70px;
	}
	.contbox.news{
		padding:40px 0 70px;
	}
	.contbox_white:before{
		background-size: 30px auto;
		height: 30px;
	}
	.contbox_white:after{
		background-size: 30px auto;
		height: 30px;
	}
	.contbox_white .inner{
		width: 1000px;
		margin: 0 auto;
		padding: 50px 0 60px;
	}
}

/* 共通部分　 ボックス
---------------------------------------- */
/* innerはclearfixいれている */
.inner:after{
	content: "";
	display: block;
	clear: both;
}

/* 共通部分　タイトル
---------------------------------------- */
/* 大タイトル */
.title{
	margin: 0 0.4% 4%;
	line-height: 1;
}
@media screen and (min-width:641px){ 
	.title{
		width: 49.8%;
		margin: 0 auto 3%;
	}
}
/* 共通部分　テキストボックス
---------------------------------------- */
.txt{
	text-align: left;
}

/* 文章のボックス内の強調 */
.txt span{
	color: #e5005e;
	font-weight: bold;
}

/* 共通部分　テキストスタイル
---------------------------------------- */
.txtPink{
	color:#e5005e;
}
.txtPurple{
	color:#891085;
}
.txtBlue{
	color:#004fdf;
}
.txtGreen{
	color:#21ae60;
}
.txtYellow{
	color:#b39204;
}
.txtBold{
	font-weight: bold;
}
.txtL{
	font-size:1.125rem; /* 18pt */
	line-height: 1.6;
}
.txtLL{
	font-size:1.375rem; /* 22pt */
	line-height: 1.8;
}
.txtS{
	font-size:0.875rem; /* 14pt */
	line-height: 1.6;
}
.txtSS{
	font-size:0.750rem; /* 12pt */
	line-height: 1.4;
}
.txtCenter{
	text-align: center !important;
}

/* 共通部分　間隔あける
---------------------------------------- */
.pb30{
	padding-bottom: 3%;
}
.mb30{
	margin-bottom: 3%;
}
.pt30{
	padding-top: 3%;
}
.mt30{
	margin-top: 3%;
}
.pl30{
	padding-left: 3%;
}
.ml30{
	margin-left: 3%;
}
.pr30{
	padding-right: 3%;
}
.mr30{
	margin-right: 3%;
}


/* 共通部分　アニメーション
---------------------------------------- */
/* 点滅 */
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}

/* 共通部分　フロート
---------------------------------------- */
.fltR{
	float:right !important;
}
.fltL{
	float:left !important;
}

/* キャラクターポップアップ(ティザーのみ)
magnific-popup を上書き
---------------------------------------- */
.mfp-chara .mfp-iframe-scaler iframe {
	box-shadow:none;
	background: #FFF;
}
.mfp-chara .mfp-container {
	padding: 0;
}
.mfp-chara .mfp-iframe-holder {
	padding-top: 0;
	padding-bottom: 0;
}
.mfp-chara .mfp-iframe-holder .mfp-content {
	width: 100%;
	height: 100%;
	padding: 0;
}
.mfp-chara .mfp-iframe-holder .mfp-close {
	top: 0;
	padding-right: 20px;
	color: #e5005e;
}
.mfp-chara .mfp-arrow-right:after {
	border-left: none; 
	margin-left: 40px;
}
.mfp-chara .mfp-arrow-left:after {
	border-right: none; 
	margin-right: 31px;
}
.mfp-chara .mfp-arrow:before {
	border-top-width: 15px;
	border-bottom-width: 15px;
	margin-left: 60px;
}
.mfp-chara .mfp-arrow-left:before {
	margin-left: 0;
}

@media screen and (min-width:641px){
	.mfp-chara .mfp-iframe-holder .mfp-content {
		width: 100%;
		max-width: 640px;
		height: 90%;
	}
}
@media screen and (min-width:700px){
	.mfp-chara .mfp-arrow-left {
    		left: 50%;
		margin-left: -360px;
	}
	.mfp-chara .mfp-arrow-right {
    		right: 50%;
		margin-right: -360px;
	}
}

/* 共通部分　動画
---------------------------------------- */
.video {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
	margin-bottom: 4%;
    height: 0;
    overflow: hidden;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width:641px){
	.video{
		width: 50%;
		padding-top: 28.25%;
		float: right;
		margin-bottom:1%
	}
}

/* =============================================
 トップ
============================================= */
/* 01：ニュース
---------------------------------------- */
.news_list{
	padding:1% 3% 3%;
	text-align: left;
	line-height: 1.7;
}
.news_list li{
	padding-bottom:2%;
	margin-bottom: 1%;
	border-bottom:1px dotted #b09553;
}
.news_list dl:after{
	content: "";
	display: block;
	clear: both;
}
.news_list dt{
	float:left;
	width: 105px;
	color: #891085;
	position: relative;
}
.news_list dd{
	float:right;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: calc(100% - 105px);
	position: relative;
}
@media screen and (max-width:640px){
	.news_list dl.new dt:after{
		display: block;
		content: "";
		background: url("../img/common/ico_new.png") no-repeat;
		background-size: 100% auto;
		width: 50px;
		height: 10px;
		padding: 5px 0;
		position: absolute;
		top:1.6em;
		left:0;
		-webkit-animation:blink 1s infinite alternate;
		-moz-animation:blink 1s infinite alternate;
		animation:blink 1s infinite alternate;
	}
	.news_list dl.new dt{
		padding-bottom:20px;
	}
}
@media screen and (min-width:641px){
	.news_list dl.new dd:before{
		display: block;
		content: "";
		background: url("../img/common/ico_new.png") no-repeat;
		background-size: 100% auto;
		width: 50px;
		height: 10px;
		padding: 5px 0;
		position: absolute;
		top:0;
		left:0;
		-webkit-animation:blink 1s infinite alternate;
		-moz-animation:blink 1s infinite alternate;
		animation:blink 1s infinite alternate;
	}
	.news_list dl.new dd{
		padding-left:60px;
	}
}

@media screen and (max-width:640px){
	.news .btn{
		margin: 0 3%;
	}
}
@media screen and (min-width:641px){
	.news_list{
		position:relative;
		margin: 0 3% 3%;
		padding: 4% 12%;
		background-color: rgba(255,255,255,0.5);
		z-index: 1;
	}
	.news_list:before{
		display: block;
		content: "";
		background: url("../img/common/deco_news.png") no-repeat top center;
		background-size: 100% auto;
		width: 102%;
		height: 60%;
		position: absolute;
		top:-2%;
		left:-1%;
		z-index: -1;
	}
	.news_list:after{
		display: block;
		content: "";
		background: url("../img/common/deco_news.png") no-repeat top center;
		background-size: 100% auto;
		width: 102%;
		height: 60%;
		position: absolute;
		bottom:-2%;
		left:-1%;
		-webkit-transform: scale(1, -1);
		-moz-transform: scale(1, -1);
		-ms-transform: scale(1, -1);
		-o-transform: scale(1, -1);
		transform: scale(1, -1);
		z-index: -1;
	}
}
@media screen and (min-width:1000px){
	.news_list{
		margin: 0 0 3%;
	}
}

/* 02：次回予告
---------------------------------------- */
.contbox_white.next{
	z-index:2;
}
.next_inner{
	margin: 0 3%;
}
.next_inner .story_title{
	padding: 2% 0 2%;
	margin-bottom: 6%;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background:url("../img/common/bg_next.png") repeat-y center top;
	background-size:100% auto;
	box-shadow: 0 0 0 1px #d5aa59, 0 0 0 3px #fef4ba, 0 0 0 4px #d5aa59;
}
.story_title p{
	color: #891085;
}
.story_title p span.num{
	color: #e5005e;
	font-size:1.125rem;
	font-weight: bold;
}
.story_title p span.date{
	font-size:0.875rem; /* 14pt */
}
.story_title h3{
	color: #e5005e;
	font-size:1.125rem; /* 18pt */

	line-height: 1.3;
	font-weight: bold;
	padding: 0 6%;
}
.story_txt{
	text-align: left;
	margin-bottom: 4%;
}
.story_txt span{
	color: #e5005e;
	font-weight: bold;
	background-color:#FFF; 	
}
.contbox_white.next .btn{
	margin: 12% 3% 0;
}
/* タイトル以外 原稿なし */
.comingsoon{
	color:#891085;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 3%;
}

@media screen and (min-width:641px){
	.next_inner{
		position: relative;
	}
	.next_inner:after{
		content:"";
		display:block;
		clear:both;
	}
	.next_inner .story_title{
		padding: 1.5% 0;
		margin-bottom: 3%;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		background:url("../img/common/bg_next_pc.png") repeat-y center top;
		background-size:100% auto;
		box-shadow: 0 0 0 1px #d5aa59, 0 0 0 3px #fef4ba, 0 0 0 4px #d5aa59;
	}
	.story_txt{
		width:45%;
		float:left;
		margin-bottom: 3%;
	}
	.story_txt.one{
		float:none;
		width:100%;
		text-align: center;
	}
	.story_pict_wrap{
		width: 50%;
		float:right;
	}
	.story_pict li{
		width: 50%;
		float:left;
		margin:0 0 2%;
		position:relative;
	}
	.story_pict li:nth-of-type(n+3){
		margin-top:-6%;
	}
	.story_pict li a img{
		background:url("../img/pc/btn_zoom.png") no-repeat center bottom;
		background-size:80% auto;
		padding-bottom:28%;
	}
	.story_pict li a{
		display: block;
		position: relative;
		z-index: 1;
		padding:12% 0 15%;
		margin:0 1% 0;
	}
	/* 画像の大きさがバラバラなので微調整対応 */
	.story_pict.story4 li a{
		padding:11% 0 13%;
	}
	.story_pict li a:before{
		display: block;
		content: "";
		background: url("../img/common/bg_lace2.png") no-repeat top center;
		background-size: 100% auto;
		width: 100%;
		height: 10%;
		position: absolute;
		top:0%;
		left:0%;
		-webkit-transform: scale(1, -1);
		-moz-transform: scale(1, -1);
		-ms-transform: scale(1, -1);
		-o-transform: scale(1, -1);
		transform: scale(1, -1);
		z-index: -1;
	}
	.story_pict li a:after{
		display: block;
		content: "";
		background: url("../img/common/bg_lace2.png") no-repeat top center;
		background-size: 100% auto;
		width: 100%;
		height: 14%;
		position: absolute;
		bottom:23%;
		left:0%;
		z-index: -1;
	}
	.contbox_white.next .btn{
		margin: 0;
	}
}
@media screen and (min-width:1000px){
	.next_inner{
		margin:0;
	}
}
/* 03：スペシャルムービー
---------------------------------------- */
.contbox_spmovie{
	background: url("../img/common/bg_kirapink.jpg")  center top ;
	position: relative;
	z-index:1;
}
.contbox_spmovie:after{
	display: block;
	content: "";
	background: url("../img/common/line_pearl.png") repeat-x bottom center;
	background-size: 6%;
	width: 100%;
	height: 6%;
	position: absolute;
	bottom:-0.5%;
	left:0;
	z-index:2;
}
.contbox_spmovie .inner{
	padding: 8% 3% 12%;

}
.contbox_spmovie .title{
	margin-bottom:2%;
}
.contbox_spmovie .video{
	margin-bottom:0;
}
@media screen and (min-width:641px){
	.contbox_spmovie .title{
		width:45%;
		max-width: 385px;
		padding: 2% 0 0 3%;
		float:left;
	}
	.contbox_spmovie:after{
		background-size: 3%;
		height: 6%;
		bottom:-1%;
		left:0;
	}
	.contbox_spmovie .inner{
		padding: 5% 3%;
	}
}
@media screen and (min-width:1000px){
	.contbox_spmovie .title{
		padding: 4% 0 0 6%;
	}	
	.contbox_spmovie:after{
		background-size: 30px auto;
		height: 30px;
	}
	.contbox_spmovie .inner{
		width:1000px;
		padding: 60px 0;
		margin:0 auto;
	}
}

/* 03：キャラクター（ティザー＆本サイト共通）
---------------------------------------- */
.contbox.chara{
	margin: 0 auto;
}
/* 大タイトル */
@media screen and (min-width:641px){ 
	.contbox.chara .title{
		width: 49.8%;
		margin: 0 auto 0.8%;
	}
}
/* プリキュアのリストタイトル */
.chara_sub_title{
	width: 41.6%;
	margin: 0 auto;
}
/* はぐたん＆ハリーのリストタイトル */
.chara_sub_title.hughar{
	width: 56.6%;
	margin: 0 auto;
}
/* 敵のリストタイトル */
.chara_sub_title.enemy{
	width: 56.6%;
	margin: 0 auto;
}
/* とりまく人々のリストタイトル */
.chara_sub_title.people{
	width: 56.6%;
	margin: 0 auto;
}
/* 共通（プリキュア）のリスト */
.chara_list{
	margin: 0 1% 7%;
}
.chara_list:last-of-type{
	margin-bottom: 0;
}
.chara_list:after{
	content: "";
	display: block;
	clear: both;
}
.chara_list li{
	width: 48%;
	margin-top:-5%; 
	padding: 0 1%;
	float: left;
}
/* はぐたん＆ハリーのリスト */
.chara_list.hughar{
	margin-top:6%; 
}
/* 敵のリスト 1列 */
.chara_list.enemy{
	margin-top:6%; 
}
.chara_list.enemy li{
	width: 100%;
}
/* とりまく人々のリスト 1列 */

.people_link{
	width:40%;
}

.chara_list.people{
	margin-top:6%; 
}
.chara_list.people li{
	width: 100%;
}
/* エール・アンジュだけmargin-topとる*/
.chara_list li:nth-of-type(1),.chara_list li:nth-of-type(2){
	margin:0; 
}

.chara_list li{
	margin:3% 0 0 0; 
}

.chara_list li:nth-of-type(5){
	margin:3% 0 0 25%; 
}

/* SMP（2列）の時のボタン */
.chara_list li .btn_s a{
	margin-top:3%;
	padding: 6% 12% 6% 8% ;
}
/* SMP（例外の1列）の時のボタン */
.chara_list.enemy li .btn_s a,
.chara_list.people li .btn_s a{
	margin-top:3%;
	padding: 3% 6% 3% 3%;
}
/* マウスオーバーアクション */
.chara_list li a.popup-chara01:hover{
	-webkit-animation:zoom  1s 1;
	-moz-animation:zoom  1s 1;
	animation: zoom 1s 1;
}

@media screen and (min-width:641px){ 
	/* プリキュアのリストタイトル */	
	.chara_sub_title{
		width: 24.4%;
		margin: 0 auto;
	}	
	/* はぐたんのリストタイトル */
	.chara_sub_title.hughar{
		width: 33%;
		margin: 0 auto;
	}
	/* 敵のリストタイトル */
	.chara_sub_title.enemy{
		width: 33%;
		margin: 0 auto;
	}
	/* とりまく人々のリストタイトル */
	.people_link{
	width:40%;
}
	
	.chara_sub_title.people{
		width: 33%;
		margin: 0 auto;
	}
	.chara_list{
		margin: -2% 1% 4%;
	}
	.chara_list:after{
		content: "";
		display: block;
		clear: both;
	}
	.chara_list li{
		width: 33%;
		margin-top:0; 
		padding: 0;
		float: left;
	}
	.chara_list.hughar,
	.chara_list.enemy,
	.chara_list.people{
		width:64%;
		margin: 1.5% auto 4%;
	}
	
	.chara_list.hughar li{
		width: 50%;
		margin-top:0; 
	}
	.chara_list li:nth-of-type(4),.chara_list li:nth-of-type(5){
		margin:0 -17% 0 17%; 
	}
	/* 最後のグループは下マージン消す */	
	.chara_list:last-of-type{
		margin-bottom: 0;
	}
	/* PC（3列）の時のボタン */
	.chara_list li .btn_s a{
		padding: 4% 10% 4% 6% ;
	}
	/* PC（1列例外）の時のボタン */
	.chara_list.enemy li .btn_s a,
	.chara_list.people li .btn_s a{
		padding: 2% 5% 2% 3%;
	}
}
@media screen and (min-width:1000px) { 
	.contbox.chara{
		width: 1000px;
		margin:  0 auto;
	}
}

/* 04：あらすじ（ティザー＆本サイト共通）
---------------------------------------- */
.summary .txt span{
	background-color: #FFF;
}
@media screen and (min-width:641px){ 
	.summary .txt{
		line-height:2.2;
	}
}
@media screen and (min-width:1000px){ 
	.summary .inner{
		width: 1000px;
		margin:  0 auto;
	}
	.summary .txt{
		padding: 0 80px;
		width:840px;
		margin: 0 auto;
	}
}


/* =============================================
 フッター
============================================= */
.footer{
	display: block;
	clear: both;
	padding-top:8%;
}
@media screen and (min-width:641px){ 
	.footer{
		padding-top:6%;
	}
}
@media screen and (min-width:1000px){ 
	.footer{
		padding-top:60px;
	}
}


/* 01：アプリ＆有料コンテンツバナー
---------------------------------------- */
.md_bnr{
	padding: 0 3% 6%;
}
.bnr_list_middle {
	text-align: left;
}
.bnr_list_middle li{		
	margin-bottom: 2%;
	border: 1px solid #c9b542;
}
@media screen and (min-width:641px){ 
	.md_bnr{
		padding: 0 3% 3%;
		margin: 0 auto;
	}
	.bnr_list_middle li{
		width: calc(49% - 2px);
		margin: 0 0.5% 1%;
		display: inline-block;
		border: 1px solid #c9b542;
	}
}
@media screen and (min-width:1000px){ 
	.md_bnr{
		width: 950px;
		padding: 0 auto 30px;
	}
	.bnr_list_middle li{
		width: 462px;
		margin: 0 12px 12px 0;
	}
	.bnr_list_middle li:nth-of-type(2n){
		margin-right: 0;
	}
	/*	3個で表示させる時 */
	.md_bnr.three{
		padding: 0 30px 80px;
	}
	.md_bnr.three .bnr_list_bottom li{
		width: 305px;
		margin: 0 12px 12px 0;
	}
}

/* 02：SNS
---------------------------------------- */

/* スマホだけのCSS ※最下部に横並びに並べるのみ */
@media screen and (max-width:640px){ 
	.ft_sns:after{
		content: "";
		display: block;

		clear: both;
	}
	.sns_list{
		text-align: center;
		padding: 0 0 8%;
	}
	.sns_list li{
		display: inline-block;
		width: 51px;
		margin: 0 4px;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		box-shadow: 0 0 0 2px #fff, 0 0 0 3px #d5aa59;
	}
	.sns_list li img{
		vertical-align:middle;
	}
}

/* タブレット・PCのCSS ※横にFIXさせる */
@media screen and (min-width:641px){
	.ft_sns{
		position: fixed;
		top: 50%;
		right: 10px;
		transform: translate(0, -50%);
		z-index: 10000000;
	}
	.sns_list{
		width:78px;
		height:150px;
		position:relative;
		background:url("../img/pc/bg_sns.png") no-repeat center center;
		z-index:10;
	}
	.sns_list li{
		position:absolute;
		left:14px;
	}
	.sns-facebook{
		top:14px;
	}
	.sns-twitter{
		bottom:14px;
	}
}


/* 03：注意文
---------------------------------------- */
.ft_caution{
	padding: 0 3% 6%;
	font-size: 0.8125rem;
	line-height: 1.8;
	color: #995c67;
}
.ft_caution dl{
	margin:0;
}
.ft_caution dd{
	text-align: left;
	margin-left:0;
}
@media screen and (min-width:641px){ 
	.ft_caution{
		padding: 0 3% 4%;
		margin: 0 auto;
	}
	.ft_caution dd{
		text-align:center;
	}
}
@media screen and (min-width:1000px){ 
	.ft_caution{
		width:1000px;
		padding: 0 0 45px;
		margin: 0 auto;
	}
	.ft_caution dd{
		text-align:center;
	}
}

/* 04：関係サイトバナー
---------------------------------------- */
.ft_bnr{
	padding: 0 3% 8%;
}
.bnr_list_bottom li{		
	margin-bottom: 2%;
	border: 1px solid #c9b542;
}
@media screen and (min-width:641px){ 
	/* タブレットは2個表示 */
	.ft_bnr{
		padding: 0 3% 5%;
		margin: 0 auto;
	}
	.ft_bnr .bnr_list_bottom li{
		width: calc(49% - 2px);
		margin: 0 0.5% 1%;
		display: inline-block;
		border: 1px solid #c9b542;
	}
}
@media screen and (min-width:1000px){ 

	/* 2個で表示させる時 */
	.ft_bnr{
		width: 950px;
		padding: 0 auto 48px;
	}
	.ft_bnr .bnr_list_bottom li{
		width: 462px;
		margin: 0 12px 12px 0;
	}
	.ft_bnr .bnr_list_bottom li:nth-of-type(2n){
		margin-right: 0;
	}
	/*	3個で表示させる時 */
	.ft_bnr.three{
		padding: 0 30px 80px;
	}
	.ft_bnr.three .bnr_list_bottom li{
		width: 305px;
		margin: 0 12px 12px 0;
	}
	.ft_bnr.three .bnr_list_bottom li:nth-of-type(3n){
		margin-right: 0 !important;
	}

}

/* 05：コピーライト
---------------------------------------- */
.ft_copy{
	margin: 0 auto;
	padding: 10px 0;
	background: #e5005e;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.ft_copy{
	color: #FFF;
	font-size: 0.875rem;
}

/* 06：ページトップ
---------------------------------------- */
.pageTop{
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 10;
}
.pageTop img{
	width: 80px;
}
@media screen and (min-width:1000px){ 
	.pageTop img{
		width: 101px;
	}
}
.pageTop a{
	display: inline-block;
	position: relative;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.pageTop a:hover{
	-webkit-transform: translate(0,-10px);
	-ms-transform: translate(0,-10px);
	-o-transform: translate(0,-10px);
	transform: translate(0,-10px);
	
	/*animation: boundAnime 0.3s ease-out;
	transform-origin: 50% 50%;
	*/
}

/* =============================================
 広告
============================================= */
div.header_ad {
	border-bottom: 1px solid #ccc;
}
div.ad_banner_super {
	width: 728px;
	height: 90px;
	margin: 10px auto;
	background-color: #f9f9f9;
}
div.ad_banner_rectangle {
	width: 300px;
	height: 250px;
	background-color: #f9f9f9;
}

/* =============================================
 ティザーの下層(キャストのコメントのみ)
============================================= */
.header_pre{
	position: relative;
}
.subpage_pre h1.logo{
	background-image: url("../img/smp/bg_sub_header.png");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	box-shadow: 0 0 0 1px #e7bdc3;
}
.subpage_pre h1.logo img{
	display: block;
	width: 42%;

}
.btn_gotop{
	position: absolute;
	right:1%;

	top:30%;
	width: 30%;
}
.subpage_pre .wrap_inner{
	padding-top:3%; 
}

@media screen and (min-width:641px) {
	.subpage_pre h1.logo{
		padding-top:19%; 
	}
	.subpage_pre h1.logo img{
		width: 44%;
		top:0;
	}
	.btn_gotop{
		position: absolute;
		right:1%;
		top:40%;
		width: 20%;
	}
}
@media screen and (min-width:1000px) { 
	.subpage_pre h1.logo{
		background-image: url("../img/pc/bg_sub_header.png");
		background-size: auto;
		height:150px; 
		padding-top: 0;
	}
	.subpage_pre h1.logo img{
		width: 270px;
		top:10px;
	}
	.btn_gotop{
		position: absolute;
		right:50%;
		top:54px;
		width: 150px;
		margin-right: -500px;
	}
}

/* =============================================
 下層共通
============================================= */

/* 01：下層共通 ヘッダー
---------------------------------------- */
.subpage .wrap_inner{
	margin-top:-1%;
	padding-top:0;
}

.header_subpage{
	background-image: url("../img/smp/bg_header.png");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top:25%;
	position:relative;
}
.header_subpage .logo_subpage{
	display: block;
	position:absolute;
	top:0;
	left:0;
	width: 42%;
}
.header_subpage .wrap_inner{
	padding-top:3%; 
}


@media screen and (max-width:640px) {

	/* スマホ用ハンバーガーメニュー */
	.subpage .navi_btn {
		height: 100%;
		top:10px;
	}
	.subpage .navi_close {
		position: absolute;
		height: 100%;
/*		top:60px;
*/	}
	
}

@media screen and (min-width:641px) {
	
	.header_subpage{
		background-image: url("../img/pc/bg_header_tbl.png");
		padding-top:26%; 
	}
	.header_subpage .logo_subpage{
		width: 32%;
		top:-2%;
		z-index: 20;
	}
	.header_subpage .oatime_subpage{
		width: 30%;
		position:absolute;
		top:12%;
		left:auto;
		right:0;		
	}
	.header_subpage .btn_gotop{
		position: absolute;
		right:1%;
		top:38%;
		width: 14%;
		z-index: 20;

	}
}
@media screen and (min-width:1000px) { 
	.header_subpage {
		position:relative;
		background-image: url("../img/pc/bg_header.png");
		background-size: auto;
		padding-top: 0;
	}
	.header_subpage .header_inner{
		position:relative;
		width:1000px;
		height:260px;
		margin:0 auto;
	}
	.header_subpage .logo_subpage{
		width: 320px;
		top:-6px;
		z-index: 20;
	}
	.header_subpage .oatime_subpage{
		position:absolute;
		top:30px;
		left:auto;
		right:0;
	}
	.header_subpage .btn_gotop{
		position: absolute;
		top:102px;
		right:0;
		width: 150px;
		margin-right:0;
	}
	.header_subpage .navi_box{
		bottom:4%;
	}
}


/* 02：下層共通 フッター
---------------------------------------- */
.subpage .footer{
	display: block;
	clear: both;
	padding-top:10%;
}
@media screen and (min-width:641px){ 
	.subpage .footer{
		padding-top:10%;
	}
}
@media screen and (min-width:1000px){ 
	.subpage .footer{
		padding-top:100px;
	}
}

/* 02：下層共通 コンテンツボックス
---------------------------------------- */
.subpage .contents{
	padding: 4% 3% 0;
}
@media screen and (min-width:1000px){ 
	.subpage .contents{
		width: 1000px;
		margin: 0 auto;
		padding: 50px 0 0;
	}
}

/* 03：下層共通 タイトル
---------------------------------------- */
@media screen and (min-width:641px){ 
	.subpage .title{
		width:66%;
		margin-bottom:3%
	}
}
@media screen and (min-width:1000px){ 
	.subpage .title{
		width:600px;
		margin-bottom:30px
	}
}
/* 中タイトル */
.sub_title{
	margin: 0 0.4% 2%;
	line-height: 1;
}
@media screen and (min-width:641px){ 
	.sub_title{
		width: 60%;
		margin: 0 auto 2%;
	}
}

/* 04：下層共通 一覧ページ
(ニュース／ストーリー／ファンレター)
---------------------------------------- */
.listpage{
	margin-top:4%;
}
@media screen and (min-width:641px){ 
	.listpage{
		margin-top:3%;
	}
}

/* 一覧ボックスCSS */
.listbox li{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	margin: 0 0 4%;
	padding:3.5% 3% 3%;
	background-color:#FFF;
	position:relative;
	text-align:left;
	display:table;
}


.listbox li:before{
	display: block;
	content: "";
	background: url("../img/common/line_chain.png") repeat-x top center;
	background-size: 100% auto;
	width: 100%;
	height: 8%;
	position: absolute;
	top:-1%;
	left:0;
}
.listbox li:after{
	display: block;
	content: "";
	background: url("../img/common/line_chain.png") repeat-x top center;
	background-size: 100% auto;
	width: 100%;
	height: 8%;
	position: absolute;
	bottom:-8%;
	left:0;
}
.listbox li:last-of-type{
	margin-bottom: 0;
}
.listbox dl{
}
.listbox dt{
	background:url("../img/common/bg_oblpi2.png");
	background-size:20px;
	padding:10px 0 10px 34px;
	margin-bottom:2.5%;
	line-height:1.4;
	position:relative;
}
.listbox dt:before{
	display: block;
	content: "";
	background: url("../img/common/ico_heartpi.png") no-repeat center center;
	background-size: 100% auto;
	width: 18px;
	height: 18px;
	position: absolute;
	top:11px;
	left:10px;
}
.listbox dt span{
	display:inline-box;
	color:#e5005e;
	font-weight:bold;
	padding-right:1%;
}
.listbox dd{
	line-height:1.6;
}
.listbox .pict{
	float: left;
	width:30%;
	padding-right:2%;
}
/* 二番目にあるddにクラスを付加 */
.listbox dd + dd{
	float: right;
	width:68%;
}
/* リンクありボックス */
.listbox a {
	text-decoration:none;
	display:block;
}
.listbox a dl{
	width:100%;
}
.listbox a dd{
	text-decoration:underline;
}
.listbox a:hover dd{
	text-decoration:none;
}

@media screen and (min-width:641px){ 
	.listbox li{
		width:100%;
		margin: 0 0 4%;
		padding:2.5% 2% 2%;
	}
	.listbox dt{
		margin-bottom:2%;
	}
	.listbox .pict{
		width:15%;
	}
	/* 二番目にあるddにクラスを付加 */
	.listbox dd + dd{
		width:83%;
	}
}

/* 一覧 ページ遷移 ボタン */
.pager{
	margin-top: 6%;
	
}
.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%;	
}
.btn_next{
	text-align:right;
}
.btn_next a{
	padding: 6% 10% 6% 6%;
}
.btn_prev{
	text-align:left;
}
.btn_prev a {
	padding: 6% 6% 6% 10%;
}
.btn_prev a:after{
	display:block;
	content: "";
	width: 100%;
	height: 100%;
	background: url("../img/common/ico_arrow_wh.png") no-repeat left center;
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	transform: scale(-1, 1);
	background-size: 7%;
	position: absolute;
	top: 0;
	right: 90%;
	margin: auto 0;
}
@media screen and (min-width:641px){ 
	.btn_next a{
		padding: 3% 6% 3% 3%;
	}
	.btn_prev a {
		padding: 3% 3% 3% 6%;
	}
}

/* 一覧 ページ遷移 ページ数 */
.pager_list{
	margin-top:4%;
	font-size:0;
}
.pager_list:after{
	content: "";
	display: block;
	clear: both;	
}
.pager_list li{
	display:inline-block;
	font-size:1rem;
	font-weight:bold;
	color:#e5005e;
}
.pager_list li a{
	padding:10px;
	margin:0 2px 10px;
	color:#e5005e;
	background:#FFF;
	font-weight:normal;
}
.pager_list li a:hover{
	color:#FFF;
	background:#e5005e;
}
.pager_list li.thispage{
	padding:10px;
	margin:0 2px 10px;
	color:#FFF;
	background:#e5005e;
}

/* 04：下層共通 詳細ページ
(ニュース／ストーリー）
---------------------------------------- */
.detailpage{

}
.detailbox{
	background-color:#FFF;
	background-image: url("../img/common/bg_detail.png"),url("../img/common/bg_detail_btm.png");
	background-repeat: no-repeat, no-repeat;
	background-position: top center, bottom center;
	background-size: 100% auto, 100% auto;
	padding:8% 3% 16%;
}
.detail_title.txt {
	color:#e5005e;
	font-size:1.125rem;
	line-height:1.4;
	font-weight:bold;
	text-align:center;
	margin-bottom:2%;
}

@media screen and (min-width:641px){ 
	.detailbox{
		padding:8% 3% 8%;
	}
	.detail_title.txt {
		color:#e5005e;
		font-size:1.375rem;
		line-height:1.4;
		font-weight:bold;
		text-align:center;
		margin-bottom:2%;
	}	
	
}

/* =============================================
 フォーム
============================================= */
/* 05：フォーム関連
---------------------------------------- */
.formpage{
	margin-top:4%;
}
@media screen and (min-width:641px){ 
	.formpage{
		margin-top:3%;
	}
}
.entry_form{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	margin: 4% 0 4%;
	padding:3.5% 3% 3%;
	background-color:#FFF;
	position:relative;
	text-align:left;
}
.entry_form:before{
	display: block;
	content: "";
	background: url("../img/common/line_chain.png") repeat-x top center;
	background-size: 100% auto;
	width: 100%;
	height: 2%;
	position: absolute;
	top:0%;
	left:0;
}
.entry_form:after{
	display: block;
	content: "";
	background: url("../img/common/line_chain.png") repeat-x top center;
	background-size: 100% auto;
	width: 100%;
	height: 2%;
	position: absolute;
	bottom:-2%;
	left:0;
}
.entry_form dl {
	border: none;
}

.entry_form dl dt {
	padding: 4% 2% 4% 8%;
	font-weight:bold;
	background: url("../img/common/bg_oblpi2.png");
	background-size:20px auto;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	color:#e5005e;
	position: relative;
}
.entry_form dl dt:before{
	display: block;
	content: "";
	background: url("../img/common/ico_heartpi.png") no-repeat center center;
	background-size: 100% auto;
	width: 5%;
	height: 100%;
	position: absolute;
	top:0;
	left:2%;
}
.entry_form dl dd {
	padding: 2% ;
	line-height: 1.7;
}
.entry_form dl dd span{
	color:#995c67;
}
.entry_form dl dd .girl{
	color:#e5005e;
	font-weight:bold;
	font-size:1.125rem; /* 18pt */
}
.entry_form dl dd .boy{
	color:#004fdf;
	font-weight:bold;
	font-size:1.125rem; /* 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;
}
@media screen and (min-width:641px){ 
	.entry_form dl {
		border: none;
		display:table;
		width:100%;
		font-size:1rem;
		background:#fff;
		border-bottom:1px dotted #AAA;
		padding-bottom:6px;
		margin-bottom:6px;
	}

	.entry_form dl dt {
		padding: 2% 0 2% 5%;
		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;
	}
}
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:1.375rem; /* 22pt */
}
input[type="radio"],
input[type="checkbox"] {
	vertical-align: middle;
}
input[type="checkbox"] {
	margin: 0 5px 0 0;
}
input[type="button"]{
	font-size:1.125rem; /* 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;
}

/* OA時間変更のお知らせ　*/

.oa_news{
	padding:10% 0 5% 0;
	margin-bottom:1%;
	font-weight:bold;
	line-height:1.5;
}

@media screen and (min-width:641px){ 
.oa_news{
	padding:2%;
	margin-bottom:1%;

}
}


@media screen and (min-width:1000px) { 
.oa_news{
	padding:1.5%;
}
}

/* 　終了対応
------------------------------------ */

.data_end{
	font-size:23px;
	color:#ff0000;
	font-weight: bold;
	text-align: center;
	border:2px double #ff0000;
	padding: 10px;
	margin:20px auto 40px;
}

/* 　バトンタッチ動画
------------------------------------ */

.twinkle_inner{
	margin-top:40px;
}


@media screen and (min-width:641px){

.twinkle_inner{
	margin-top:0px;
}
	.video.twinkle{
		width: 50%;
		padding-top: 28.25%;
		float: none;
		margin:0 auto;
	}
}
