@charset "utf-8";

/*** クリア ***/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin:0;
    outline:0;
    font-size:100%;
    -webkit-appearance: none;
/*  vertical-align:baseline;
    vertical-align:inherit;
    background:transparent;
    text-align: center;*/
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	/*
	border-collapse: separate;
	border-spacing: 2px;
	*/

	border-collapse: collapse;
	border-spacing: 0;
}

/* @import url(//fonts.googleapis.com/earlyaccess/notosansjp.css); */

@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: 400;
 src: url('./fonts/notosans-regular.eot');
 src: local('Noto Sans CJK JP Regular'),
 url('./fonts/notosans-regular.eot?#iefix') format('embedded-opentype'),
 url('./fonts/notosans-regular.woff') format('woff'),
 url('./fonts/notosans-regular.otf') format('opentype')
}

/*** 基本設定 ***/
body {
	font-family:'Noto Sans JP','Droid Sans','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック','MS PGothic','Osaka','sans-serif';
	color:#555555;
/*	font-size: 85%;		*/
	line-height: 1.4em;
	word-wrap: break-word;
	background: #FFF;
	/*text-align: center;*/
}

@media screen and (orientation: landscape) {
   /* 横向きの場合のスタイル */

	body {
	}
}

img , iframe{
	vertical-align:bottom
}

a { color:#555555; }

h2 {
	font-weight:bold;
	border-left: 7px solid #92cffc;
	padding: 5px 0px 5px 10px;
	margin-bottom: 5px;
}
h2.b_green  { border-left: 7px #D5EEBA solid;}
h2.b_blue   { border-left: 7px #c4e3fa solid;}
h2.b_pink   { border-left: 7px #f7c4fa solid;}
h2.b_yellow { border-left: 7px #fcdb68 solid;}

input[type="checkbox"] {
	margin:5px;
}
input[type="radio"] {
	margin:5px;
}
input[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="number"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="password"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="email"] {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	padding:10px;
	background-color:#DDDDDD;
	border-style: none;
	border-radius: 5px;
}
textarea {
	-webkit-appearance: none;
	appearance: none;
	padding:5px;
	border: solid 1px #ccc;
	box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-moz-box-shadow:rgba(153, 153, 153, 0.3) 0px 0px 1px 1px inset;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*** ユーティリティ ***/

.center { text-align:center; }
.right  { text-align:right; }
.left   { text-align:left; }
.tcenter { text-align:center; }
.tright  { text-align:right; }
.tleft   { text-align:left; }


.bold { font-weight:bold; }

.fclear { clear:both; }
.fleft  { float: left; }
.fright { float: right; }

.pad3  { padding:3px; }
.pad5  { padding:5px; }
.pad8  { padding:8px; }
.pad10 { padding:10px; }

.pad3_w  { padding:0px 3px; }
.pad5_w  { padding:0px 5px; }
.pad8_w  { padding:0px 8px; }
.pad10_w { padding:0px 10px; }

.pad3_h  { padding:3px 0px; }
.pad5_h  { padding:5px 0px; }
.pad8_h  { padding:8px 0px; }
.pad10_h { padding:10px 0px; }

.margin3  { margin:3px; }
.margin5  { margin:5px; }
.margin10 { margin:10px; }

.red    { color: #e13333; }
.green  { color: #1c9652; }
.orange { color: #e14833; }
.blue   { color: #4356b9; }
.pink   { color: #de7791; }
.purple { color: #b646df; }
.aqua   { color: #41c1e8; }
.yellow { color: #fda005; }

.btn_area{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}
.btn_orange ,.btn_green ,.btn_blue{
	color: #FFFFFF;
	font-size: 1.1em;
	line-height: 1.2em;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-weight: bold;
	padding: 8px 36px 8px 8px ;
	text-decoration: none;
	margin: 3px auto;
	background: url(../images/baseline_navigate_next_white_18dp.png) no-repeat 100% 50%;


}

.btn_orange ,.btn_green ,.btn_blue{
	background-color: #FF7E60;
}

.btn_green {
	background-color: #51B416;
}

.btn_blue {
	background-color: #658eec;
}

.btn_orange:active ,.btn_green:active,.btn_blue:active{
	filter:alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
	-moz-opacity: 0.7;
	opacity: 0.7;
}

.hide { display: none; }
.show { display: block; }

.text_s_w {
	text-shadow:
	1px 1px 0px #FFFFFF,
	-1px 1px 0px #FFFFFF,
	1px -1px 0px #FFFFFF,
	-1px -1px 0px #FFFFFF,
	1px 0px 0px #FFFFFF,
	-1px 0px 0px #FFFFFF,
	0px -1px 0px #FFFFFF,
	0px 1px 0px #FFFFFF;
}

.comment {
	font-size: small;
	color: #999999;
	font-weight: normal;
}

.tcenter p {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}

/* aタグボタン */
.a_button01 {
	width: 80%;
	margin: auto;
}
.a_button01 a {
	color:#444;
	font-size:90%;
	text-align:center;
	text-decoration: none;
}
.a_button01 a p {
	line-height:1em;
	padding: 10px;
	background-color:#DDD;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.a_button01 a p:hover {
	color: #444;
	opacity:0.7;
	filter:alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
.a_button01 a p.bc_green  { background-color:#D5EEBA !important;}
.a_button01 a p.bc_blue   { background-color:#c4e3fa !important;}
.a_button01 a p.bc_pink   { background-color:#f7c4fa !important;}
.a_button01 a p.bc_yellow { background-color:#fcdb68 !important;}

/* バナー */
.banner {
	text-align: center;
	padding: 5px 0px 5px 0px;
}
.banner img { width: 100%; }

/* 引用 */
.reference {
	color: #999999;
	font-size: small;
}

/*** 見出し ***/

/* 左青線 */
.headline01 {
	font-weight:bold;
	padding: 15px;
	background-color:#F0F0F0;
	text-align:center;
	line-height: 1.6em;
}
/* 水色背景 */
.headline02 {
	font-weight:bold;
	padding: 8px 0px 8px 12px;
	color: #FFFFFF;
	background-color: #59b4d9;
	border-radius: 5px;
}
/* 緑背景 */
.headline03 {
	font-weight:bold;
	padding: 8px;
	color: #FFFFFF;
	background-color:#7BCD44;
	border-radius: 5px;
}
/* 水色背景 */
.headline04 {
	font-weight:bold;
	padding: 8px;
	color: #FFFFFF;
	background-color:#46A0EC;
	border-radius: 5px;
}
/* 水色背景 */
.headline_table01 {
	padding: 0px 5px;
	color:#FFFFFF;
	text-align:left;
	background-color: #59b4d9;
	background-size:30px 100%;
	border-radius: 5px;
}
.headline_table01 table {
	width: 100%
}
.headline_table01 td {
	vertical-align: middle;
	padding: 8px 0px;
}
.headline_table01_img { height: 25px; }
.headline_table01_body {
	font-weight: bold;
	color: #FFFFFF;
	text-align: left;
}
.headline_table01_link { text-align: right; }
.headline_table01_link a {
	background-color: #FFFFFF;
	color: #59b4d9;
	font-size: small;
	border-radius: 5px;
	padding: 3px 8px;
	margin-right: 5px;
	text-decoration: none;
}



/* インフォ */
.info_01 {
	text-align:center;
	font-size:small;
	font-weight:normal;
	border-radius:8px;
	padding:5px 8px;
	background-color:#EEEEEE;
	color:#666666;
}

/* 灰色背景タイトル */
.title01 {
	font-weight:bold;
	padding: 10px 0px 10px 10px;
	background-color:#DDDDDD;
}

/* エリアOPEN */
.area_open01 {
	font-size:small;
	font-weight:normal;
	border-radius:8px;
	padding:8px;
	background-color:#EEEEEE;
	color:#333333;
}
/* エリアClose */
.area_close01 {
	font-size:small;
	font-weight:normal;
	border-radius:8px;
	padding:8px;
	background-color:#EEEEEE;
	color:#333333;
}

/* 写真風の枠 */
.photo_frame {
	text-align: center;
	margin:5px auto;
	background: #FFFFFF;
	padding: 8px;
	box-shadow:rgba(233, 233, 233, 0.8) 2px 2px 2px 2px;
	-webkit-box-shadow:rgba(233, 233, 233, 0.8) 2px 2px 2px 2px;
	-moz-box-shadow:rgba(233, 233, 233, 0.8) 2px 2px 2px 2px;
}
/* 円 */
.circle_01 {
	display: inline-block;
	width: 2.0em;
	height: 2.0em;
	border-radius: 50%;
	background-color: #137cc3;
	color: #ffffff;
	vertical-align: middle;
	text-align: center;
	line-height: 2.0em;
}

/* ボタン */
.button01 {
	font-weight:bold;
	margin: 10px 0px 15px 0px;
	padding: 10px 5px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background: #92cffc;
	color: #FFFFFF;
	text-align: center;
	text-decoration:none;
	display: block;
}

/* ボタン */
.button02 {
	font-weight:bold;
	margin: 10px 0px 15px 0px;
	padding: 10px 5px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background: #d84a38;
	color: #FFFFFF;
	text-align: center;
	text-decoration:none;
	display: block;
}

/* ページャー */
/*
#pager {
	padding: 8px 0px;
	text-align:center;
}
#pager a {
	border: 1px solid #CCCCCC;
	background-color: #EEEEEE;
	color: #555555;
	padding: 8px 12px;
	text-decoration: none;
	border-radius:5px;
}
*/
/*** ページ ***/

#header {
	background-color:#ffffff;
	border-bottom: 2px solid #0069b3;
	text-align: center;
}
#header table {
	width: 100%;
}
#header td {
	vertical-align: middle;
}
#contents {
	background-color:#FFFFFF;
	padding: 5px;
}

#contents_maxwidth {
	background-color:#FFFFFF;
}

#contents_maxwidth img{
	max-width: 100%;
	height: auto !important;
}

#contents_begin_maxwidth img{
	max-width: 100%;
	height: auto !important;
}

#contents_end_maxwidth img{
	max-width: 100%;
	height: auto !important;
}

#contents2 {
}

.contents_area {
	border: 2px solid #c0c0c0;
	background-color:#FFFFFF;
	padding: 10px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}


.contents_area_head {
	border: 2px solid #c0c0c0;
	border-top: 0px solid #c0c0c0;
	background-color:#FFFFFF;
	padding: 10px;
	border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	background-image: url('../images/bg_content_head.png');
	background-size: 5px 100%;
	margin: 0px 5px;
}

.contents_area_body {
	border: 2px solid #c0c0c0;
	border-top: 0px solid #c0c0c0;
	background-color:#FFFFFF;
	padding: 0px 10px;
	border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-webkit-border-radius: 0px 0px 10px 10px;
	margin: 0px 5px;
}

.contents_area_body-link{
	border-bottom: 1px dashed #c0c0c0;
	padding: 5px 0px;
}

.contents_area_body-link:first-child{

}

.contents_head_arrow{
	display: block;
	text-align: left;
	background-position: left;
	padding: 0px  0px 0px 18px;
	text-decoration: none;
	font-size: 1.2em;
}

.contents_head_arrow_green{
	background: url(../images/arrow_green.png) left center no-repeat;
}

.contents_head_arrow_blue{
	background: url(../images/arrow_blue.png) left center no-repeat;
}

.contents_head_arrow_orange{
	background: url(../images/arrow_orange.png) left center no-repeat;
}

.contents_head_arrow_red{
	background: url(../images/arrow_red.png) left center no-repeat;
}

.contents_head_arrow_pink{
	background: url(../images/arrow_pink.png) left center no-repeat;
}

.contents_head_arrow_gray{
	background: url(../images/arrow_gray.png) left center no-repeat;
}

.link_arrow_gray{
	display: block;
	background: url(../images/arrow_gray.png) left center no-repeat;
	background-position: right center;
	padding: 0px 18px 0px 0px;
	text-decoration: none;
	color:#555555;
}

/* ページトップへ */
#page-top {
	position: fixed;
	text-align: right;
	padding-bottom: 20px;
	width:60px;
	bottom: 0px;
	right: 5px;
}

/* フッター */
#footer {
	position: relative;
	border-top: 0px solid #2b96e4;
	border-top: 2px solid #b1c2ce;
	padding-top:0px;
	text-align:center;
	background: #FFF;

}
#footer .link {
	padding:5px;
	font-size:small;
}
#footer .link a { color: #666666; }
#footer .copyright {
	padding:10px 0px;
	background-color:#004ca2;
	color: #FFFFFF;
}

.footer-area {
	padding: 5px 0px;
	margin-left:auto;
	margin-right:auto;
	border-top: 0px solid #c0c0c0;
	border-bottom: 1px solid #c0c0c0;
	background-image: url(../../images/bg_footerback.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #c9d6de;
	background-size: 100% auto;
}

.footer-list{
	margin: 5px 0px;
}

.footer-area a {
	color: #0056b8;
	text-decoration: none;
}
.footer-area a:hover {
	color: #5f9500;
}
.footer-area a:visited {
	color: #0056b8;
}
.footer-area a:visited:hover {
	color: #5f9500;
}


#footer-area2 {
	background-color:#ffffff;
	padding: 5px;
}
.footer-area2-in {

}
#footer-area3 {
	background-color:#afd3fb;
	padding: 5px;
}
.footer-area3-in {
	text-align: left;
}

.footer-logo{
	padding: 5px;
}
/* 前へ 次へ ボタン */
#btn_pagenation {
	text-align: center;
}
#btn_pagenation a {
	background-color: #DDDDDD;
	color: #555555;
	padding: 10px;
	text-decoration: none;
	border-radius:5px;
}

.youtube{
	position:relative;
	padding-bottom: 56.25%;
	height:0;
	overflow:hidden;
	margin-bottom:5px;
}
.youtube iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.youtube_play_btn{
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
}

.youtube_play_btn img{
	width: 64px;
}

.imag_width img {
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}


.click_img:hover { /* マウスオーバーで画像を明るく */
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.qr_submitbtn,.register_only,.register_all{
	-webkit-appearance: none;
	width: 250px;
	padding: 10px 15px;
	font-size: 1.2em;
	border-style: none;
	background-color: #e50012;
	color: #ffffff;
	font-weight: bold;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}
.naniha_answer{
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.naniha_label{
	display:inline-block;
	padding:0.8rem 1rem;
	margin-top:5px;
	width:80%;
	color:#ffffff;
	font-size:1.5rem;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	transition: all .2s;
}

.naniha_answer:checked + .naniha_label{
/*	background: #e50012 !important;*/
	color:#fff;
	text-shadow: 0 0 1px rgba(0,0,0,.7);
}
.naniha_answer:checked + .naniha_label:before{
	color:#fff;
	content:"●　";
}
.naniha_answer:not(checked) + .naniha_label:before{
	color:#fff;
	content:"○　";
}
/*
#episode{
	width:95%;
}
*/
#episode1{
	width:80%;
}

#keyword_naniha {
  display:inline-block;
  width:98%;
  font-size:2rem;
  padding: 0.4em 0em;/*文字の上下 左右の余白*/
  color: #494949;/*文字色*/
  background: #f4f4f4;/*背景色*/
  border-left: solid 5px #7db4e6;/*左線*/
  border-bottom: solid 3px #d7d7d7;/*下線*/
  line-height:1.1;
}




/*Android用*/
.cp_iptxt {
	position: relative;
	width: 90%;
	margin: 40px 3% 0px;
}
.cp_iptxt input[type='text'],
.cp_iptxt input[type='tel'],
.cp_iptxt input[type='email'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
}
.cp_iptxt select{
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
}

.cp_iptxt input[type='text']:focus,
.cp_iptxt input[type='tel']:focus,
.cp_iptxt input[type='email']:focus {
	outline: none;
}

.cp_iptxt select:focus {
	outline: none;
}

.ef {
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid #1b2538;
	background-color: transparent;
}
.ef ~ .focus_line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	transition: 0.4s;
	background-color: #da3c41;
}
.ef:focus ~ .focus_line,
.cp_iptxt.ef ~ .focus_line {
	width: 100%;
	transition: 0.4s;
}
.ef ~ label {
	position: absolute;
	z-index: -1;
	top: 4px;
	left: 0;
	width: 100%;
	transition: 0.3s;
	letter-spacing: 0.5px;
	color: #aaaaaa;

	font-size: 15px;
	top: -16px;
	transition: 0.3s;
}
.ef:focus ~ label, .cp_iptxt.ef ~ label {
	font-size: 15px;
	top: -16px;
	transition: 0.3s;
	color: #da3c41;
}

/* 必須マーク */
.must {
	background: #FF1A00;
}

/* 任意マーク */
.free {
	background: #999;
}

.must,
.free {
	color: #FFF;
	border-radius: 3px;
	font-size: 12px;
	margin-right: 10px;
	padding: 1px 10px;
	letter-spacing: 0.2em;
	vertical-align: top;
}

/* エラーメッセージ */
.err_caution{
	margin: 5px 3% 0;
	padding: 3px;
	border: 3px solid #ffbdbd;
	color: #FF1A00;
	font-size: 15px;
}
.err_msg{
	margin: 0 3%;
	width: 90%;
}
/* エラーメッセージ(氏名) */
.err_name{
	display: none;
}
.err_name > div{
	width: 40%;
	display: inline-block;
	vertical-align: top;
}
/* エラーメッセージ吹き出し */
.err_balloon{
	position: relative;
	margin-top: 11px;
	color: #3a3a3a;
	border-radius: 5px;
	font-size: 14px;

	padding: 9px 10px 9px 45px;
	background: url('./caution.png') no-repeat;
	background-color: #ffbdbd;
	background-size: 28px 28px;
	background-position: 10px center;
}
.err_balloon:before{
	content: '';
	position: absolute;
	top: -19px;
	left: 14px;
	border: 10px solid transparent;
	border-bottom: 10px solid #ffbdbd;
}
.err_border{
	border: 1px solid #ff3434;
	background-color: #ffbdbd;
}
.between{
	display: inline-block;
	text-align: center;
}
/* inline-blockの隙間対策 */
.block3{
	font-size: 0;
}
.block3 .between{
	font-size: 15px;
	margin: 0 3%;
}

/* TeNYさん用のヘッダー部 */
.s-h2 {
    position: relative;
    background: #eaf6ff;
}
.s-h2 .s-h2-inner {
    position: relative;
    display: flex;
    align-items: center;

    margin: 0 auto;
    justify-content: flex-start;
    max-width: 480px;
    min-height: 80px;
    padding: 10px 0px 10px 30px;
}

.s-h2 .s-h2-inner:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: auto;
    right: 15px;
    width: 44px;
    height: 39px;

    background: url(/view/images/tetto.svg) 50% 50% / contain no-repeat, transparent;
}

.s-h2 .s-h2-inner h2 {
	color: #077ddc;
    font-size: 28px;
    text-align: left;

	border-left: none;
	padding: 0;
	margin-bottom: 0;
}

.f-page-top {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 100;
}
.f-page-top a {
    display: block;
    width: 49px;
    height: 80px;
    background: url(/view/images/page_top.svg) 50% 50% / contain no-repeat, transparent;
}