@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;0,700;1,300&display=swap');

/*================================================
 *  一般・共通設定
 ================================================*/

body {
	background-color: #fff;
	font-size:16px;
	font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Helvetica,sans-serif;
	color: #333;
	text-align: justify;
	text-justify: inter-ideograph;
}

a,.linearAnime {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
a.underline {
	text-decoration: underline;
}
a:hover {
	opacity: 0.7;
}
a.underline:hover {
	opacity: 1;
	text-decoration: none;
}
@media screen and (min-width:768.1px) {
	a[href^="tel"] {
		pointer-events: none;
	}
}

img,svg {
	vertical-align: bottom;
}

/*色*/
.color_main {
	color: #8fc220;
}
.color_white {
	color: #fff;
}
.color_gray {
	color: #f2f2f2;
}
.color_link {
	color: #0071bc;
}
.color_yellow {
	color: #fcee21;
}
.color_trial {
	color: #65c7a6;
}


/*背景*/
.bg_main {
	background-color: #8fc220;
}
.bg_white {
	background-color: #fff;
}
.bg_gray {
	background-color: #f2f2f2;
}
.bg_yellow {
	background-color: #fcee21;
}
.bg_trial {
	background-color: #65c7a6;
}


/*線の色*/
.bdc_main {
	border-color: #8fc220!important;
}





/* position */
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}

/* sp/pcの切替 */
.sp,.sp_inline {
	display: none;
}

/*文字揃え*/
.ta-l {
	text-align: justify;
	text-justify: inter-ideograph;
}
.ta-r {
	text-align: right;
}
.ta-c {
	text-align: center;
}
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: center;
}

/*文字種類*/
.ff_opensans {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}
.ff_roboto {
	font-family: 'Roboto', sans-serif;
}

/*文字太さ*/
.fontThin {
	font-weight: 100;
}
.fontExLight {
	font-weight: 200;
}
.fontLight {
	font-weight: 300;
}
.fontRegular {
	font-weight: 400;
}
.fontMedium {
	font-weight: 500;
}
.fontSemiBold {
	font-weight: 600;
}
.fontBold {
	font-weight: 700;
}
.fontExBold {
	font-weight: 800;
}
.fontBlack {
	font-weight: 900;
}

/*文字スタイル*/
.fs_italic {
	font-style: italic;
}


/*文字詰め*/
.ffs_palt {
	-webkit-font-feature-settings: 'palt' 1;
	font-feature-settings: 'palt' 1; /*プロポーショナルメトリクス*/
}
.ffs_halt {
	-webkit-font-feature-settings: 'halt' 1;
	font-feature-settings: 'halt' 1; /*字幅半角メトリクス*/
}


/*Text Crop*/
.textcrop {
	display: block;
}
.textcrop::before,
.textcrop::after {
	content: '';
	display: block;
	height: 0;
	width: 0;
}
.textcrop::before {
	margin-bottom: -0.13em;
}
.textcrop::after {
	margin-top: -0.13em;
}

.ff_opensans.textcrop::before {
	margin-bottom: -0.15em;
}
.ff_opensans.textcrop::after {
	margin-top: -0.09em;
}

/*幅*/
.wrap {
	max-width: 940px;
	margin: 0 auto;
	width: 100%;
}
.wrap_wide {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}
@media screen and (min-width:768.1px) {
	.pc_wrap_pdg {
		padding-left: 30px;
		padding-right: 30px;
	}
}


/*Animate.css用*/
.animated {
	opacity: 0;
}
.animated.move {
	opacity: 1;
}
.animation {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.lazyload {
	opacity: 0;
}

/*object-fit*/
.object-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}


/*******flexbox*******/
[class*="flex_start"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_end"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_between"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_center"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_inline"] {
	display: -webkit-inline-box;
	display: inline-flex;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.align_items_start {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.align_items_center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.align_items_end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.direction_column {
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.row_reverse {
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/*================================================
 *  ヘッダー
 ================================================*/
header,
#header_btn_list,
#top_fixed_list{
	transition: .3s;
}

header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
#top header {
	position: fixed;
}
header .inner {
	height: 80px;
	padding-left: 50px;
}



#header_btn_list {
	position: fixed;
	top: 0;
	left: 260px;
	color: #fff;
	height: 60px;
	z-index: 100;
	margin-top: 35px;
}

body:not(#top) #header_btn_list {
	display: none;
}


/*アカウント突破*/
#header_btn_list #header_account_txt {
	border: 1px solid;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
	min-width: 280px;
	text-align: center;
	padding: 0 0.75em;
}
#header_btn_list.fixed_change #header_account_txt {
	box-shadow: none;
	background-color: #fff;
	color: #666;
}
#header_btn_list #header_account_txt span {
	margin-right: 0.2em;
}

/*LINE友だち登録*/
#header_btn_list #header_line {
	border-radius: 5px;
	font-size: 22px;
	font-weight: bold;
	height: 100%;
	width: 285px;
	margin-left: 35px;
	padding-right: 20px;
}
#header_btn_list #header_line img {
	position: absolute;
	top: -15px;
	left: -16px;
	
}

@media screen and (max-width:1380px) {
	#header_btn_list {
		display: block;
		left: 50px;
		margin-top: 100px;
	}
	#header_btn_list #header_account_txt {
		min-width: 285px;
	}
	#header_btn_list #header_line {
		margin: 25px 0 0;
	}
}



/*================================================
 *  ページタイトル
 ================================================*/
#pageTitle {
	padding: 140px 0 120px;
	text-align: center;
}
#pageTitle h2 span {
	font-size: 78px;
	font-weight: 500;
	letter-spacing: 0.06em;
}
#pageTitle h2 em {
	color: #4d4d4d;
	display: block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.06em;
	margin-top: 1.7em;
}



/*================================================
 *  コンテンツ
 ================================================*/
main {
	overflow: hidden;
}
.contents {
	padding-bottom: 160px;
}



/*******箇条書きリスト*******/
.kome_list li,
.disc_list li,
.circle_list li,
.square_list li,
.indent_list li {
	list-style-position:inside;
	padding-left: 1em;
	text-indent: -1em;
}
/*※箇条書き*/
.kome_list > li:before{
	display: inline;
	content: "\203b";
}
/*・箇条書き*/
.disc_list > li:before{
	display: inline;
	content: "\30fb";
}
/*●箇条書き*/
.circle_list > li:before{
	display: inline;
	content: "\25CF";
}
/*■箇条書き*/
.square_list > li:before{
	display: inline;
	content: "\25A0";
}
/*()数字*/
.number_list {
	counter-reset: cnt 0;
}
.number_list > li{
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: cnt;
}
.number_list > li:before{
	display: block;
	content: "（" counter(cnt) "）";
	width: 2.5em;
	flex-shrink: 0;
	margin-left: -0.7em;
}
.number_list > li:nth-of-type(n+10):before{
	width: 3.2em;
}

/*数字.*/
.decimal_list {
	counter-reset: dcnt 0;
}
.decimal_list > li{
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: dcnt;
}
.decimal_list > li:before{
	display: block;
	content: counter(dcnt) ".";
	width: 1.8em;
	flex-shrink: 0;
}
/*数字）*/
.decimal02_list {
	counter-reset: dcnt02 0;
}
.decimal02_list > li{
	padding-left: 1.23em;
	text-indent: -1.23em;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: dcnt02;
}
.decimal02_list > li:before{
	display: inline;
	content: counter(dcnt02) "）";
}


/******* hover *******/
.hover_scale a:hover {
	opacity: 1;
}
.hover_scale a img {
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.hover_scale a:hover img  {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}


/*ボタン用*/
.hover_btn_anime {
	-webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.hover_btn_anime:hover {
	opacity: 1;
	transform: translate(0,5%);
}


/******* modaal *******/
.modaal-inner-wrapper {
	padding: 50px 25px!important;
}
.modaal-container {
	max-width: 1100px!important;
}

.modaal-close {
	background-color: #8fc220!important;
}
/*
@media screen and (min-width:768.1px) {
	.modaal-wrapper:not(.modaal-video) .modaal-close {
		position: absolute!important;
		top: 0!important;
		right: 0!important;
		transform: translate(50%,-50%);
		-webkit-transform: translate50%,-50%);
	}
}
*/
.modaal-close:after,
.modaal-close:before {
	top: 50%!important;
	left: 50%!important;
}
.modaal-close:before {
    -webkit-transform: translate(-50%,-50%) rotate(-45deg)!important;
    transform: translate(-50%,-50%) rotate(-45deg)!important;
}
.modaal-close:after {
    -webkit-transform: translate(-50%,-50%) rotate(45deg)!important;
    transform: translate(-50%,-50%) rotate(45deg)!important;
}
.modaal-close:focus,.modaal-close:hover {
	background-color: #fff!important;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
    background: #8fc220!important;
}

/*video*/
.modaal-video-wrap {
	margin: auto!important;
}



/*================================================
 *  LINE 友だち登録(Modaal)
 ================================================*/

.line_frend_box {
	padding: 60px;
}
.line_frend_box .inr {
	max-width: 910px;
	width: 100%;
	margin: 0 auto;
}
.line_frend_box .inr h3 {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.55;
	text-align: center;
	margin-bottom: 50px;
}
.line_frend_box .inr h3 img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.line_frend_box .inr h3 span {
	display: inline-block;
}
.line_frend_box .inr h3 span:last-of-type {
	padding: 0 0.45em;
}



.line_frend_box .inr .special_list > div:last-of-type {
	width: 460px;
}
@media screen and (max-width:1040px) {
	.line_frend_box .inr .special_list {
		display: block;
		width: 460px;
		margin: 0 auto;
	}
	.line_frend_box .inr .special_list > div:last-of-type {
		margin-top: 35px;
		width: auto;
	}
}


.line_frend_box .inr .special_list dl,
.line_frend_box .inr .special_list dt {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.line_frend_box .inr .special_list dl + dl {
	margin-top: 35px;
}
.line_frend_box .inr .special_list dl dt {
	border: 2px solid;
	border-radius: 100vh;
	font-size: 20px;
	font-weight: bold;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-shrink: 0;
	text-align: center;
	width: 90px;
	height: 90px;
	margin-right: 0.75em;
	padding-top: 0.2em;
}
.line_frend_box .inr .special_list dl dt span {
	font-size: 155%;
	font-weight: 500;
	margin-top: 0.1em;
}
.line_frend_box .inr .special_list dl dd {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
	margin: -0.25em 0;
}

.line_frend_box .inr .special_list .chara_box {
	margin: 45px 20px 0 15px;
}
.line_frend_box .inr .special_list .chara_box .fuki {
	border-radius: 0.25em;
	background-color: currentColor;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	padding: 0.5em 0 0.5em 20px;
	min-height: 85px;
	width: 320px;
	width: calc(100% - 105px);
	position: relative;
}
.line_frend_box .inr .special_list .chara_box .fuki::after {
	position: absolute;
	content: '';
	top: 50%;
	right: 1px;
	transform: translate(100%,-50%);
	-webkit-transform: translate(100%,-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 13px;
	border-color: transparent transparent transparent currentColor;
	z-index: 1;
}
.line_frend_box .inr .special_list .chara_box .fuki span {
	color: #fff;
}
.line_frend_box .inr .special_list .chara_box img {
	position: absolute;
	bottom: 2px;
	right: 0;
	z-index: 1;
}

.line_frend_box .inr .btn_friend {
	border: 2px solid;
	border-radius: 100vh;
	font-size: 30px;
	font-weight: bold;
	max-width: 460px;
	height: 100px;
	margin: 60px auto 0;
	position: relative;
}
.line_frend_box .inr .btn_friend::after {
	position: absolute;
	content: '';
	top: 50%;
	right: 0.9em;
	width: 0.47em;
	height: 0.47em;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}





/*================================================
 *  ページトップ
 ================================================*/
.pagetop {
	cursor: pointer;
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #fff;
	border-radius: 50%;
	border: 2px solid;
	font-size: 80px;
	height: 1em;
	width: 1em;
	z-index: 1000;
}
.pagetop::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	width: 0.25em;
	height: 0.25em;
	border-top: 2px solid;
	border-left: 2px solid;
	-webkit-transform: translate(-50%,-30%) rotate(45deg);
	transform: translate(-50%,-30%) rotate(45deg);
}








/*================================================
 *  フッター
 ================================================*/
 
footer {
	background-color: #f4f4f4;
}
footer .inner {
	padding-top: 85px;
}



footer .inner .footer_info .info_box .logo {
	display: block;
}
footer .inner .footer_info .info_box .sns_list {
	margin-top: 35px;
}
footer .inner .footer_info .info_box .sns_list li + li {
	margin-left: 20px;
}

footer .inner .footer_info .bnr_partner {
	width: 490px;
}
footer .inner .footer_info .bnr_partner a {
	border: 2px solid;
	display: block;
	padding: 20px 0 20px 115px;
}
footer .inner .footer_info .bnr_partner a em {
	display: block;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.3;
	margin: 0 0 0.15em -1px;
	position: relative;
}
footer .inner .footer_info .bnr_partner a em .arrow {
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 100%;
	background-color: currentColor;
	width: 1em;
	height: 1em;
	font-size: 44px;
}
footer .inner .footer_info .bnr_partner a em .arrow::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 45%;
	width: 0.25em;
	height: 0.25em;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
}
footer .inner .footer_info .bnr_partner a .img_chara {
	position: absolute;
	bottom: 0;
	left: -31px;
	width: 125px;
	height: auto;
}

@media screen and (max-width:1000px) {
	footer .inner .footer_info {
		display: block;
		max-width: 490px;
		margin: 0 auto;
	}
	footer .inner .footer_info .bnr_partner {
		margin-top: 50px;
	}
}


footer .inner nav {
	margin-top: 30px;
}
footer .inner nav ul li {
	color: #646464;
	margin: 30px 1.2em 0;
}


footer .inner .copyright {
	color: #8c8c8c;
	padding: 45px 0 60px;
}



/*================================================
 *  上fixed
 ================================================*/
#top_fixed_list {
	background-color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	height: 110px;
	z-index: 100;
}
body:not(#top) #top_fixed_list {
	display: none;
}
#top_fixed_list li {
	width: 110px;
}
#top_fixed_list li:not(.btn_free) {
	border-left: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}
#top_fixed_list li.btn_free {
	width: 270px;
}
#top_fixed_list li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: 18px;
	height: 100%;
}
#top_fixed_list li.btn_free a span {
	background-color: #fff;
	border-radius: 50%;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.1em;
	height: 74px;
	width: 74px;
}
#top_fixed_list li.btn_free a em {
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.38;
	margin-left: 0.7em;
}



/*================================================================================================
 *  スマートフォン向けデザイン
 ================================================================================================*/
@media screen and (max-width:768px) {

body {
	font-size: 4vw;
}	

img {
	max-width: 100%;
}



/*文字揃え*/
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: justify;
	text-justify: inter-ideograph;
}

/* sp/pcの切替 */
.sp {
	display: block;
}
.sp_inline {
	display: inline;
}
.pc,.sp_none {
	display: none;
}

/*幅*/
.wrap,
.wrap_wide {
	max-width: inherit;
	width: 90vw;
}
.wrap_sp_small {
	max-width: inherit!important;
	width: 80vw!important;
	margin-left: auto!important;
	margin-right: auto!important;
}
.wrap_sp_medium {
	max-width: inherit!important;
	width: 85vw!important;
	margin-left: auto!important;
	margin-right: auto!important;
}

.sp_wid100 {
	width: 100%!important;
}

/*******flexbox*******/
.flex_start_spblock,
.flex_end_spblock,
.flex_between_spblock,
.flex_center_spblock,
.flex_inline_spblock {
	display: block;
}




/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: static;
}
#top header {
	position: absolute;
}

header .inner {
	height: 11vw;
	padding-left: 5.5vw;
}
header .inner .logo img {
	width: 30vw;
}



#header_btn_list {
	position: absolute!important;
	top: 14vw;
	left: 6vw;
	height: auto;
	margin-top: 0;
}

/*アカウント突破*/
#header_btn_list #header_account_txt {
	display: block;
	text-align: center;
	font-size: 3.2vw;
	line-height: 1.25;
	min-width: inherit;
	width: 30vw;
	padding: 0.5em 0;
}
#header_btn_list #header_account_txt span {
	display: block;
	margin: 0;
}

/*LINE友だち登録*/
#header_btn_list #header_line {
	display: none;
}



/*================================================
 *  ページタイトル
 ================================================*/
#pageTitle {
	padding: 17vw 0 12vw;
}
#pageTitle h2 span {
	font-size: 10vw;
}
#pageTitle h2 em {
	font-size: 3.7vw;
	margin-top: 1.2em;
}




/*================================================
 *  コンテンツ
 ================================================*/
.contents {
	padding-bottom: 20vw;
}







/******* modaal *******/
.modaal-container {
	max-width: inherit!important;
}

.modaal-inner-wrapper {
	padding: 10vw 5vw!important;
}

.modaal-close {
	top: 3vw!important;
	right: 3vw!important;
	width: 10vw!important;
	height: 10vw!important;
}
.modaal-close:after,
.modaal-close:before {
	height: 5vw!important;
	width: 1vw!important;
	border-radius: 1vw!important;
}


/*================================================
 *  LINE 友だち登録(Modaal)
 ================================================*/

.line_frend_box {
	padding: 0 6vw 10vw;
}
.line_frend_box .inr {
	max-width: inherit;
}
.line_frend_box .inr h3 {
	font-size: 5.3vw;
	margin-bottom: 8vw;
	padding-top: 10vw;
}
.line_frend_box .inr h3 img {
	top: 4vw;
	left: -2vw;
	transform: none;
	-webkit-transform: none;
	width: 12vw;
	height: auto;
}


.line_frend_box .inr .special_list {
	width: 100%;
}
.line_frend_box .inr .special_list > div:last-of-type,
.line_frend_box .inr .special_list dl + dl {
	margin-top: 5vw;
}

.line_frend_box .inr .special_list dl dt {
	border-width: 1px;
	font-size: 3.7vw;
	width: 16vw;
	height: 16vw;
}
.line_frend_box .inr .special_list dl dt span {
	font-size: 155%;
	font-weight: 500;
	margin-top: 0.1em;
}
.line_frend_box .inr .special_list dl dd {
	font-size: 4.2vw;
}

.line_frend_box .inr .special_list .chara_box {
	margin: 8vw 0 0 1vw
}
.line_frend_box .inr .special_list .chara_box .fuki {
	font-size: 3.7vw;
	padding: 0.5em 0 0.5em 1em;
	min-height: 16vw;
	width: 60vw;
	width: calc(100% - 18vw);
}
.line_frend_box .inr .special_list .chara_box .fuki::after {
	border-width: 1.4vw 0 1.4vw 2.4vw;
}
.line_frend_box .inr .special_list .chara_box img {
	bottom: 1vw;
	width: 20vw;
}

.line_frend_box .inr .btn_friend {
	font-size: 4.8vw;
	max-width: inherit;
	height: 18vw;
	margin-top: 8vw;
}
.line_frend_box .inr .btn_friend::after {
	border-width: 1px;
	right: 5vw;
}



/*================================================
 *  ページトップ
 ================================================*/
.pagetop {
	bottom: 25vw;
	right: 2vw;
	font-size: 13vw;
}
.sp_fixed_none .pagetop {
	bottom: 2vw;
}

/*================================================
 *  フッター
 ================================================*/
body:not(.sp_fixed_none) footer {
	padding-bottom: 18vw;
}

footer .inner {
	padding-top: 13vw;
}


footer .inner .footer_info {
	width: auto;
}
footer .inner .footer_info .info_box .logo {
	width: 58vw;
	margin: 0 auto;
}
footer .inner .footer_info .info_box .sns_list {
	margin-top: 8vw;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
footer .inner .footer_info .info_box .sns_list li {
	margin: 0 1.3vw!important;
}
footer .inner .footer_info .info_box .sns_list li img {
	width: 12vw;
}

footer .inner .footer_info .bnr_partner {
	width: 85vw;
	margin: 10vw auto 0;
}
footer .inner .footer_info .bnr_partner a {
	padding: 3.5vw 0 3vw 20vw;
}
footer .inner .footer_info .bnr_partner a em {
	font-size: 5.2vw;
	margin-bottom: 0.2em;
}
footer .inner .footer_info .bnr_partner a em .arrow {
	right: 6vw;
	font-size: 7.6vw;
}
footer .inner .footer_info .bnr_partner a em .arrow::after {
	width: 0.3em;
	height: 0.3em;
}
footer .inner .footer_info .bnr_partner a p {
	font-size: 3vw;
}
footer .inner .footer_info .bnr_partner a .img_chara {
	left: -5vw;
	width: 21vw;
}



footer .inner nav {
	margin-top: 10vw;
}
footer .inner nav ul li {
	font-size: 3.2vw;
	margin: 5vw 1em 0;
}


footer .inner .copyright {
	font-size: 3.4vw;
	padding: 13vw 0;
}



/*================================================
 *  上fixed
 ================================================*/
#top_fixed_list {
	height: 12vw;
}
#top_fixed_list li {
	width: 21vw;
}
#top_fixed_list li.btn_free {
	display: none;
}
#top_fixed_list li a {
	font-size: 3vw;
	letter-spacing: 0.06em;
}





/*================================================
 *  SP下タブ
 ================================================*/
.sp_fixed_bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 18vw;
	z-index: 200;
	opacity: 0;
	visibility: hidden;
}
.sp_fixed_none .sp_fixed_bottom {
	display: none;
}
.sp_fixed_bottom li {
	width: 44vw;
	margin: 0 1.3vw;
}
.sp_fixed_bottom li a {
	border-radius: 1vw 1vw 0 0;
	color: #fff;
	font-size: 4.5vw;
	font-weight: bold;
	line-height: 1.25;
	height: 100%;
	width: 100%;
	display: block;
	text-align: center;
	position: relative;
	padding-top: 5.4vw;
}
.sp_fixed_bottom li a > span {
	position: absolute;
	top: -5.3vw;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	background-color: currentColor;
	border-radius: 100vh;
	font-size: 3.7vw;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	height: 8vw;
	width: 38vw;
}
.sp_fixed_bottom li a > span::after {
	position: absolute;
	content: '';
	bottom: 0.3vw;
	left: 50%;
	transform: translate(-50%,100%);
	-webkit-transform: translate(-50%,100%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 2vw 1.3vw 0 1.3vw;
	border-color: currentColor transparent transparent transparent;
}
.sp_fixed_bottom li a > span span {
	color: #333;
}





}