@charset "UTF-8";
/* CSS Document */

/* root */
:root {
	--text: #000000;
	--text_a: #E50012;
	--text_b: #4d4d4d;
	--bg: #f0f0f0;
	--bg_a: #E50012;
	--bg_b: #000000;
	--bg_c: #f0f0f0;
}


/* html5 リセット */
article,aside,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section,summary {
	display: block;
}
audio,canvas,progress,video {
	display: inline-block;
	vertical-align: baseline;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden],
template {
	display: none;
}
svg:not(:root) {
	overflow: hidden;
}
blockquote,q {
	quotes: none;
}

/* html リセット */
html,body{
	margin: 0;
	padding: 0;
	border: 0;
	outline:0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: top;
	background:transparent;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section,summary,
embed,output,ruby,
time,mark,audio,video,
tr,th,td{
	font-size: inherit;
	color: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin-block-start: initial;
	margin-block-end: initial;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}

/* iOS リセット */
button {
	 -webkit-appearance: none;
	 border-radius: 0;
}

/* 絵文字 */
.emoji{
	font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", "Noto Emoji", sans-serif;
}

/* パソコン・スマホ表示 */
.pc-only {
	display: none;
}
.sp-only {
	display: inherit;
}

/* 基本 */
body {
	font-style: normal;
	font-weight: normal;
	color: var(--text);
	font-family: "Roboto", YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Arial, Helvetica, "sans-serif" !important;
    font-feature-settings: "palt" !important;
}
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
b,strong,h1,h2,h3,h4,h5,h6{
	font-weight: bold;
}
u{
	text-decoration: underline;
}

/* フェードイン */

.fade {
    opacity: 0 !important;
    -webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
    transition: all 1s;
}

.fade.fade-active {
    opacity: 1 !important;
}

/* LP個別 */

.button{
	width: auto;
	padding: 6px 10px;
	height: 50px;
	background-color: var(--bg_a);
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 1px;
}

.button:hover{
	cursor: pointer;
}

.button .button-text{
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	display: flex;
    justify-content: center;
    align-items: center;
}

.button-text::before,
.button-text::after{
	background-position: center;
	background-repeat: no-repeat;
}

.button.after-link .button-text::after{
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../images/index/button-link.png?250613_1);
    background-size: cover;
    margin-left: 8px;
}

.button.before-arrow .button-text::before{
    content: "arrow_back_ios";
	font-size: 14px;
    font-family: "Material Symbols Outlined";
	margin-top: 0.125rem;
    margin-right: 0.25rem;
}

.button.after-arrow .button-text::after{
    content: "arrow_forward_ios";
	font-size: 14px;
    font-family: "Material Symbols Outlined";
	margin-top: 0.125rem;
    margin-left: 0.25rem;
}

.button.entry{
	width: 330px;
	height: 60px;
	background-color: #ffffff;
	box-shadow: 0 2px 8px hsla(0,0%,0%,0.50);
}

.button.entry .button-text{
	color: var(--text_a);
	font-weight: 900;
	font-size: 24px;
	line-height: 1;
}

.button.entry.after-arrow .button-text::after{
	font-size: 20px;
	margin-top: -0.125rem;
    margin-left: 0.25rem;
}

.button.entry.dummy{
	background-color: #e4e4e4;
}

.button.entry.dummy:hover{
	cursor: auto;
}

.button.entry.dummy .button-text{
	color: #4d4d4d;
	font-size: 22px;
	white-space: nowrap;
}


.text-link.after-arrow-circle{
	line-height: 1;
	display: flex;
}

.text-link.after-arrow-circle::after{
	content: "expand_circle_right";
	font-family: "Material Symbols Outlined";
	margin-left: 0.25rem;
}

.text-red{
	color: #E50012;
}

.text-b{
	color: var(--text_b);
}

#body{
	background-color: #ffffff;
}

#body.no-scroll{
	overflow: hidden;
}

.body-wrapper{
	background-color: var(--bg);
}

.page-wrapper{
	width: 100%;
	min-width: 375px;
	max-width: 425px;
	margin: 0 auto;
	background-color: #ffffff;
}



@media screen and (min-width: 426px) {
	.page-wrapper{
		box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
	}
}

.lp-button-header{
	padding: 8px 12px;
	background-color: var(--bg_b);
}

.lp-button-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.lp-header-logo{
	display: flex;
    align-items: center;
}

.lp-header-logo-img{
	width: 200px;
	height: 41px;
}

.lp-button-wrapper .button.line-green{
	font-size: 14px;
	height: 28px;
}

.button-line-small{    
	width: auto;
	height: 32px;
	color: #ffffff;
	background-color: #06c755;
    display: flex;
    align-items: center;
    justify-content: center;
	border: 1px solid #06c755;
}

.button-line-small span{
	width: 83px;
	font-size: 14px;
	line-height: 14px;
    margin: 0 0 0 !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
}

.button-line-small.white{    
	color: #000000;
	background-color: #333333;
	border: 1px solid #808080;
	height: 42px;
}

.button-line-small.white span{
	color: #ffffff;
    font-weight: 500;
	width: auto;
    margin: -1px 0 0 !important;
	padding: 0px 12px;
}

.button-line-small.white span.before-line-icon::before{
	content: "";
	width: 18px;
	height: 18px;
	background-image: url("../images/index/button-line-green.png?250613_1");
	background-size: cover;
    margin-right: 6px;
}

.lp-header{
	background-color: #263864;
	padding: 12px 20px 17px;
}

.header-wrapper{
	width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	color: #ffffff;
}

.lp-header-text{
	font-size: 19px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 15px;
}

.lp-header .text-link{
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
}

section{
    padding: 60px 0px;
}

.section-wrapper{
	width: calc(100% - 40px);
	margin: 0 auto;
}

.section-wrapper.transparent{
	opacity: 0.25;
}

.section-wrapper.narrow{
	width: calc(100% - 60px);
}

.section-wrapper.no-margin{
	width: 100%;
}

.section-title{
	color: #000000;
	text-align: center;
	margin-bottom: 40px;
}

.section-title .en{
	font-size: 34px;
	font-weight: 900;
	font-style: normal;
	color: var(--text_a);
}

.section-title .en .small{
	font-size: 26px;
}

.section-title .ja{
	font-size: 16px;
	font-weight: 900 !important;
	letter-spacing: 1px;
	color: var(--text_a);
}

.lp-mv{
	padding: 0;
	position: relative;
}

.lp-mv-h1{
	display: none;
}

.lp-mv-img{
    width: 100%;
    height: auto;
}

.lp-mv-img-wrapper{
	line-height: 0;
}

.lp-mv-entry{
	width: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
    bottom: 45px;
}

@media screen and (min-width: 376px) {
	.lp-mv-entry{
		bottom: 11.93vw;
	}
}

@media screen and (min-width: 426px) {
	.lp-mv-entry{
		width: 425px;
		bottom: 50px;
	}
}

.lp-mv-entry.modal-open:hover{
	cursor: pointer;
}

.lp-mv-entry-img{
	width: 90%;
	height: auto;
}

.lp-mv-bottom{
	position: absolute;
    bottom: 32px;
    width: 100%;
}

.lp-nav-margin{
	height: 0px;
}

/*
.lp-nav-margin.active{
	height: 70px;
}
*/

.lp-nav{
	background-color: hsla(0, 0%, 0%, 0.75);
    width: 100%;
    max-width: 425px;
    padding: 0;
}

.lp-nav.fixed{
	position: fixed;
    top: 0;
    z-index: 1;
	width: 100%;
}

.lp-nav-wrapper{
	width: calc(100% - 20px);
    margin: 0 auto;
}

.link-list{
	list-style: none;
	padding: 0;
	display: none;
/*	display: flex;*/
    align-items: center;
    justify-content: center;
	height: 70px;
}

.link-list li{
	width: 25%;
	text-align: center;
}

.link-list .link-title{
	width: 100%;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: #ffffff;
}


/* トピックス　*/


.lp-topics{
	background-color: #c0e7e1;
}

.topics-block + .topics-block{
	margin-top: 40px;
}

.topics-block.outline{
	background-color: #ffffff;
	padding: 20px 16px;
}

.topics-block .block-title.center{
	color: var(--text_a);
	text-align: center;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 15px;
}


.topics-block .block-title.center .small{
	font-size: 18px;
	line-height: 20px;
	letter-spacing: -1px;
}

.topics-block .block-subtitle.center{
	color: var(--text);
	text-align: center;
	font-size: 15px;
	line-height: 23px;
}

.topics-block .block-text{
	color: var(--text);
	text-align: center;
	font-size: 13px;
	line-height: 23px;
	font-weight: 500;
}

.topics-block .block-photo{
	width: 100%;
	line-height: 0;
}

.topics-block .block-photo-img{
	height: 41px;
	margin: 0 auto 10px;
	display: block;
}

.topics-block .list-block{
	background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 1px;
    overflow: auto;
    margin-bottom: 20px;
}

.topics-block .list-block-group .list-block:last-child{
	margin-bottom: 0;
}

.topics-block .list-block .block-top{
	background-color: #eeeeee;
	padding: 12px 16px;
	border-bottom: 1px solid #cccccc;
	display: flex;
}

.topics-block .list-block .block-top{
	color: var(--text);
	background-color: #eeeeee;
	padding: 12px 16px;
	border-bottom: 1px solid #cccccc;
	display: flex;
/*	align-items: center;*/
}

.topics-block .list-block .top-rank{
	border-right: 1px solid #cccccc;
	padding-right: 16px;
	margin-right: 10px;
	display: flex;
	align-items: center;
}

.topics-block .list-block .rank-text{
	font-size: 14px;
	white-space: nowrap;
	font-weight: bold;
}

.topics-block .list-block .rank-text .num{
	font-size: 30px;
	font-weight: 500;
}

.topics-block .list-block .block-title{
	font-size: 16px;
	line-height: 20px;
}

.topics-block .list-block .block-title .small,
.topics-block .list-block .block-title.small{
	font-size: 13px;
	line-height: 17px;
	display: inline-block;
}

.topics-block .list-block .block-subtitle{
	font-size: 14px;
	line-height: 18px;
}

.topics-block .list-block .block-title + .block-subtitle{
	margin-top: 2px;
}

.topics-block .list-block .block-subtitle .num{
	font-size: 17px;
	display: inline-block;
}

.topics-block .list-block .block-bottom{
	padding: 12px 16px;
}

.topics-block .list-block .block-bottom .list-text {
    margin-bottom: 6px;
}

.topics-block .list-block .block-bottom .list-text:last-of-type {
    margin-bottom: 0;
}

.lp-chance{
	background: linear-gradient(90deg, #000000 0%, #4D4D4D 40%, #4D4D4D 60%, #000000 100%);
}

.chance-title{
	width: 100%;
}

.chance-title-img{
	width: 100%;
	max-width: 335px;
	margin: 0 auto;
	display: block;
}

.chance-title + .button-group{
	margin: 20px auto 0;
}

.lp-chance .button-group{
	width: 300px;
}

.follow-button-column{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.follow-button-column .button + .button{
	margin-top: 15px;
}

.follow-title{
	text-align: center;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 20px;
	font-weight: 900;
	color: var(--text);
}

.follow-text.bottom{
	margin-top: 20px;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
}

.lp-follow .button{
	width: 305px;
	height: 60px;
	background-color: #FEFEFE;
	border: 1px solid #cccccc;
}

.lp-follow .button.follow{
	background-color: #06c755;
	border: 1px solid #06c755;
}

.lp-follow .button.follow .button-text{
	color: #ffffff;
	font-size: 20px;
	letter-spacing: 1px;
	font-weight: 900;
}

.lp-follow .button.share .button-text{
	color: var(--text);
	font-size: 15px;
	line-height: 19px;
	letter-spacing: 0px;
}

.lp-follow .button .button-text::before{
    content: "";
    width: 25px;
    height: 24px;
    background-size: cover;
    margin: 0 12px -1px 0;
}

.lp-follow .button.follow .button-text::before{
    background-image: url(../images/index/button-line-white.png?250613_1);
}

.lp-follow .button.share .button-text::before{
    background-image: url(../images/index/button-line-green.png?250613_1);
}

.lp-entry{
	background: linear-gradient(135deg, #FF3546, #B20101, #590000);
}

.lp-entry .section-title{
	color: #ffffff;
    font-size: 24px;
    font-weight: 900;
	margin-bottom: 20px;
	white-space: nowrap;
}

.entry-text{
	color: #ffffff;
	text-align: center;
	font-weight: 500;
    letter-spacing: -0.5px;
}

.entry-text.small{
	font-size: 14px;
	line-height: 22px;
    letter-spacing: 0px;
}

.entry-title{
	display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-button-wrapper{
	display: flex;
    flex-direction: column;
    align-items: center;
	margin-bottom: 16px;
}

.bg{
	background-color: var(--bg);
}

.bg-a{
	background-color: var(--bg_a);
}

.bg-b{
	background-color: var(--bg_b);
}

.bg-c{
	background-color: var(--bg_c);
}

.lp-follow.bg-a .follow-title{
	color: #ffffff;
}

.lp-follow.bg-a .follow-text{
	color: #ffffff;
	font-weight: 500;
}

.lp-follow.bg-a .button.follow{
	background-color: #FEFEFE;
	border: 1px solid #cccccc;
}

.lp-follow.bg-a .button.follow .button-text{
	color: var(--text);
	font-size: 20px;
	letter-spacing: 1px;
}

.lp-follow.bg-a .button.follow .button-text::before{
    background-image: url(../images/index/button-line-green.png?250613_1);
}

/* 応募方法 */

.lp-howto{
	background-color: var(--bg_c);
}

.lp-howto-list{
    list-style-type: none;
    padding-left: 0;
}

.lp-howto-list li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-width: 0px;
    margin-bottom: 10px;
}

.lp-howto-list li .step-bg{
	position: absolute;
	width: 85px;
	height: 85px;
	margin: -15px 0 0 -18px;
}

@media screen and (min-width: 376px) {
	.lp-howto-list li .step-bg{
		width: 22.6vw;
		height: 22.6vw;
		margin: -4.2vw 0 0 -4.8vw;
	}
}

@media screen and (min-width: 426px) {
	.lp-howto-list li .step-bg{
		width: 96px;
		height: 96px;
		margin: -18px 0 0 -21px;
	}
}

.lp-howto-list li .step{
	margin-right: 20px;
	position: relative;
}

.lp-howto-list li .step-img{
	width: 40px;
}

.lp-howto-list li .title-img{
	width: 100%;
}

.lp-howto-list li .title{
	position: relative;
}

.lp-howto-list li .title-img + .button-group{
	margin-top: 10px;
}

.lp-howto-list .next{
	padding: 12px 0;
    justify-content: center;
}

.lp-howto-list .next::after{
    content: "▼";
	color: var(--text_a);
	font-size: 18px;
	line-height: 1;
}

.lp-howto-list .button-group .button{
	height: 40px;
	padding: 4px 4px;
}

.lp-howto-list .button-group .button .button-text{
	font-size: 15px;
	letter-spacing: -0.5px;
}

div + .bottom-text{
	margin-top: 20px;
}

.button-group .button{
	font-size: 14px;
}

.button-group .button:last-child{
	margin-bottom: 0;
}

.lp-overview{
}

.overview-title{
	background-color: var(--bg_a);
	padding: 40px 20px;
}

.overview-title .title-text{
	color: #ffffff;
	font-size: 21px;
	font-weight: 900;
	text-align: center;
}

.lp-overview-list{
	list-style: none;
	padding: 0;
}

.lp-overview-list li{
	margin-bottom: 30px;
}

.lp-overview-list li:last-child{
	margin-bottom: 0;
}

.lp-overview-list .list-top{
	padding: 0 20px 0;
}

.lp-overview-list .t1 .list-top{
	background-color: var(--t1a);
}

.lp-overview-list .list-title{
	color: var(--text);
	font-size: 17px;
	font-weight: 900;
	border-bottom: 1px solid #d6d9de;
	padding-bottom: 10px;
}

.lp-overview-list .list-title .small{
	font-size: 15px;
}

.lp-overview-list .list-bottom{
	padding: 10px 20px 0;
}

.list-subtitle{
	font-size: 18px;
	line-height: 23px;
	font-weight: bold;
	margin-bottom: 4px;
}

.list-text{
	font-size: 16px;
	line-height: 26px;
    text-align: justify;
}

.list-text.small,
.list-text .small{
	font-size: 14px;
	line-height: 21px;
}

.lp-overview-list li .list-text{
	margin-bottom: 13px;
}

.lp-overview-list li .list-text:last-of-type{
	margin-bottom: 0;
}

.lp-overview-list li .list-text:last-of-type + div{
	margin-top: 15px;
}

.list-block .block-bottom .list-text{
	margin-bottom: 8px;
}

.list-block .block-bottom .list-text:last-of-type{
	margin-bottom: 0;
}

.list-text + .sub-list{    
	margin-top: 20px;
}

.sub-list{    
	counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.sub-list li{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-width: 0px;
    margin-bottom: 10px;
}

.sub-list li .sub-list-num{
	text-align: center;
	color: var(--text);
	background-color: #dddddd;
    font-weight: bold;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
	line-height: 1;
	font-size: 18px;
}

.sub-list li .sub-list-text{
	font-size: 15px;
	line-height: 23px;
	width: calc(100% - 40px);
	margin-left: 10px;
    text-align: justify;
}

.sub-list li .sub-list-text .small{
	font-size: 14px;
	line-height: 22px;
}

.sub-list .next{
	padding: 0;
    justify-content: center;
}


.sub-list .next::after{
    content: "▼";
	color: var(--text_a);
	font-size: 18px;
	line-height: 1;
}

.sub-list.attention li{
    align-items: flex-start;
}

.sub-list.attention li .sub-list-mark{
	color: var(--text);
	font-size: 15px;
}


.sub-list.attention li .sub-list-text{
	width: calc(100% - 20px);
	margin-left: 5px;
}

.lp-overview-list li .sub-list + .list-text{
	margin-top: 10px;
}

.course-list{
	list-style: none;
	padding: 0;
}

.course-list li{
	font-size: 15px;
	height: 42px;
	display: flex;
	text-align: left;
	padding: 0 0 10px;
	border-bottom: 1px solid #d6d9de;
    justify-content: space-between;
    align-items: center;
	margin: 0 0 10px;
}

.course-list li .name{
	margin-right: 10px;
}

.course-list + .course-text{
	font-size: 13px;
	line-height: 23px;
}

.course-list + .list-text{
	margin-top: 20px;
}

.lp-overview-list .img-scroll{    
	width: calc(100% + 40px);
    margin-left: -20px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lp-overview-list .img-scroll .kisyu{
    width: 414px;
	height: auto;
	margin: 0px 20px;
}

.lp-about{
}

.about-photo{
	width: 100%;
}

.about-photo-img{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.about-text{
	font-size: 15px;
	line-height: 28px;
	text-align: justify;
	margin: 30px auto 0;
	padding: 0 30px;
}

.about-logo{
	margin-top: 30px;
	width: 100%;
}

.about-logo-img{
	width: 260px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.about-logo + .button-group{
	margin: 20px auto 0;
}

.lp-about .button-group{
	width: 300px;
}



.notice-title{
	font-size: 20px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 20px;
	color: var(--text);
}



/* フッター */

.lp-footer{
	color: #ffffff;
    padding: 40px 40px;
    background-color: var(--bg_b);
}

.footer-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-footer-logo-img{
	width: auto;
	height: 24px;
}

.lp-footer-organizer{
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 500;
}

/* モーダル */

.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
/*	height: 100%;*/
	height: var(--vh);
	text-align: center;
	background: rgba(0,0,0,75%);
	padding: 20px 10px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
    transition: all 0.5s;
    box-sizing: border-box;
}

.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.modal-container.active{
	opacity: 1;
	visibility: visible;
	z-index: 10000;
}

.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 425px;
	width: calc(100% - 14px);
}

.modal-close-toggle{
    background-image: url(../images/index/modal-close-toggle.png);
	background-position: center;
	background-size: 40px 40px;
	background-repeat: no-repeat;
	position: absolute;
	top: -40px;
	right: 0px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.modal-content{
	background: #ffffff;
	padding: 20px 20px;
}

.modal-title{
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 900;
}

.modal-subtitle{
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: bold;
}

.modal-text.small{
    font-size: 13px;
    line-height: 21px;
    letter-spacing: -0.5px;
}

.button-group-flex{
    display: flex;
	justify-content: space-between;
}

.button-group-flex .button{
	width: calc(50% - 5px);
}

.button-group-flex .button .button-text{
	font-weight: 900;
	font-size: 20px;
}

.button-group-flex .button.entry-no{
	background-color: #808080;
}


#lp-pagetop{
    position: fixed;
    bottom: -50px;
    right: 20px;
	z-index: 10000;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
}

#lp-pagetop.fixed{
	bottom: 20px;
}

#lp-pagetop::before{
	content: "keyboard_arrow_up";
	font-family: "material icons";
    font-size: 26px;
	line-height: 1;
	color: #ffffff;
	background-color: var(--bg_a);
	width: 40px;
	height: 40px;
	border-radius: 20px;
	display: flex;
    justify-content: center;
    align-items: center;
	border: 1px solid #ffffff;
}