/* -- basicSettings ------------------------------------------------------------ */
html {
	font-size: 18px;
	line-height: 1.6em;
	overflow-y: scroll;

}



body {
	overflow: hidden;
	opacity: 0;
	position: relative;
	z-index: 1;
	background-color: #fff;
}




html::after {
	content: "";
	background-image: url(../../images/loading.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15vh;
	width: 15vh;
	height: 15vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	animation: effectRotate 4s linear infinite;
}




a{
	text-decoration: none;
	color: #305572;
	transition: all 0.2s linear;
	display: block;
}





h2{
	font-weight: 700;
	font-size: 1.785rem;
	text-align: center;
	/* text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3); */
	position: relative;
}

h3{
	font-size: 1.35rem;
	font-weight: 700;
}

h4{
	font-size: 1.25rem;
	font-weight: 700;
}

h5{
	font-size: 1rem;
	font-weight: 700;
}

h6{
	font-family: 'Ropa Sans', sans-serif;
	font-size: 1rem;
	line-height: 0.875em;
}



.fontS{ font-size: 0.5em; }
.fontL{
	font-size: 4rem;
	color: #e0c03c;
	line-height: 1.1;
	text-shadow: 3px 3px 0px #231f10;
}

.ta-c { text-align: center!important; }
.notice { font-size: 0.75rem; }

.mt-3rem { margin-top: 3rem!important; }




strong {
	font-size: 1.35em;
	font-family: inherit;
	font-weight: inherit;
	color: #084593;
	line-height: 1.25;
	margin-left: 0.25rem;
	margin-right: 0.25rem;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
	letter-spacing: -0.15rem;
	font-weight: 700;
}

b {
	font-size: 1em;
	/* font-family: inherit; */
	/* font-weight: bold; */
	margin: 0 0.25rem;
	background: linear-gradient(rgba(255,255,255,0) 70%,rgba(255, 247, 153, 0.8) 0);
}


img[src$=".svg"] {
	/* width: 100%; */
	height: auto;
}



/* // basicSettings / table ////////////// */
table {
	border: 1px solid #ccc;
	border-collapse: collapse;
	margin: 0px auto;
}
th {
	background: rgba(34, 62, 85, 0.1);
	border-bottom: #ccc 1px dotted;
	text-align: left;
	padding: 15px;
	font-weight: normal;
	vertical-align: middle;
}
tr:first-of-type th {
	border-top: rgba(34, 62, 85, 1) 3px solid;
}
tr:first-of-type td {
	border-top: rgba(34, 62, 85, 0.5) 3px solid;
}
td {
	border-bottom: #ccc 1px dotted;
	text-align: left;
	padding: 10px 10px 10px 15px;
	vertical-align: middle;
	background: #FFF;
}

tr:last-of-type td {
	border-bottom: 0;
}




/* // basicSettings / Link /////////////// */
p.normalLink a{
	padding: 8px 150px;
	display: inline-block;
	background: rgba(255, 255, 255, 1);
	margin-top: 40px;
	color: #305572;
	border: 1px solid #000;
	text-decoration: none;
}

p.normalLink a:hover{
	background: rgba(0, 0, 0, 0.4);
	color: #FFF;
}

p.normalLink a i{
	margin-right: 5px;
}





.arrowLink {
	position: relative;
	border: 1px solid #fff;
	padding: 2px 40px 2px 30px;
	background: rgba(255, 255, 255, 0.0);
	margin-top: 10px;
	transition:  all 0.2s linear;
}

.arrowLink::before {
	content: "";
	position: absolute;
	top:0;
	bottom: 0;
	right: 10px;
	margin: auto;
	height: 1px;
	width: 17px;
	background: #FFF;
}

.arrowLink::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	width: 7px;
	height: 7px;
	border-width: 0 1px 1px 0;
	border-color: transparent #FFF #FFF transparent;
	border-style: solid;
	transform: rotate(-45deg);
}

a:hover .arrowLink {
	border: 1px solid #000;
	background: rgba(0, 0, 0, 0.4);
}



p.ctaBtn a{
	border: 3px solid #133A66;
	border-radius: 0.25rem;
	color: #FFF;
	font-weight: 700;
	font-size: 1.785rem;
	letter-spacing: 0.25rem;
	padding: 0.25rem 2.5rem;
	position: relative;
	box-shadow: 0px 10px 20px -10px #000;
	background: rgb(40,80,126);
	background: -moz-linear-gradient(top, rgba(40,80,126,1) 0%, rgba(40,80,126,1) 50%, rgba(40,80,126,1) 50%, rgba(26,66,112,1) 51%, rgba(19,58,102,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(40,80,126,1) 0%,rgba(40,80,126,1) 50%,rgba(40,80,126,1) 50%,rgba(26,66,112,1) 51%,rgba(19,58,102,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(40,80,126,1) 0%,rgba(40,80,126,1) 50%,rgba(40,80,126,1) 50%,rgba(26,66,112,1) 51%,rgba(19,58,102,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28507e', endColorstr='#133a66',GradientType=0 ); /* IE6-9 */
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s linear;
}

p.ctaBtn a:hover{
	opacity: 0.7;
	box-shadow: 0px 10px 25px -10px #000;
}








p.ctaBtn a::after{
	content: "";
	height: 1rem;
	width: 1rem;
	border: 4px solid #FFF;
	border-left: 0;
	border-top: 0;
	transform: rotate(-45deg);
	position: absolute;
	right: 1.785rem;
	transition: all 0.2s linear;
}

p.ctaBtn a:hover::after{
	right: 1.5rem;
}


p.ctaBtn a span{
	border: 3px solid #133A66;
	background-color: #FBC02D;
	color: #133A66;
	font-weight: 700;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5rem;
	margin-right: 0.5rem;
	font-size: 1rem;
	letter-spacing: 0;
}





















.balloon{
	position: relative;
	display: block;
	background: #FFF;
	border-radius: 40px;
	padding: 10px 70px;
	margin-bottom: 1.5vw;
	width: auto;
	color: #0d1630;
}

.balloon::after{
	content: "";
	position: absolute;
	right: 0;
	bottom: -12px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #FFF transparent transparent transparent;
	border-width: 12px 10px 0 10px;
}






/* EFFECT ------------------------------------------------------------------- */
.effectPom{
	-webkit-animation: title3 400ms;
	animation: title3 400ms
}

@-webkit-keyframes title3 {
	50% { -webkit-transform: scale(1.25); }
}

@keyframes title3 {
	50% { transform: scale(1.25); }
}


.effectTon{
	opacity: 1 !important;
	-webkit-animation: effectTon 2000ms infinite;
					animation: effectTon 2000ms infinite;
	position: relative;
}

@-webkit-keyframes effectTon {
	  0% { bottom:  0px; }
	 50% { bottom: 10px; }
	100% { bottom:  0px; }
}

@keyframes effectTon {
	  0% { bottom:  0px; }
	 50% { bottom: 10px; }
	100% { bottom:  0px; }
}


.effectSlideInLeft{
	opacity: 1 !important;
	-webkit-animation: SlideInLeft 600ms;
					animation: SlideInLeft 600ms;
	position: relative;
	transition: all 0.5s linear;
}

@-webkit-keyframes SlideInLeft {
	0% { left: -56px; }
	100% { left: 0; }
}

@keyframes SlideInLeft {
	0% { left: -56px; }
	100% { left: 0; }
}


.effectSlideInRight{
	opacity: 1 !important;
	-webkit-animation: SlideInRight 600ms;
					animation: SlideInRight 600ms;
	position: relative;
	transition: all 0.5s linear;
}

@-webkit-keyframes SlideInRight {
	0% { right: -56px; }
	100% { right: 0; }
}

@keyframes SlideInRight {
	0% { right: -56px; }
	100% { right: 0; }
}


.effectSlideInBottom{
	opacity: 1 !important;
	-webkit-animation: SlideInBottom 600ms;
					animation: SlideInBottom 600ms;
	position: relative;
	transition: all 0.5s linear;
}

@-webkit-keyframes SlideInBottom {
	0% { bottom: -20px; }
	100% { bottom: 0; }
}

@keyframes SlideInBottom {
	0% { bottom: -20px; }
	100% { bottom: 0; }
}

.SlideInBottomChild .effectSlideInBottom:nth-of-type(1){ transition-delay: 0.1s; animation-delay: 0.1s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(2){ transition-delay: 0.3s; animation-delay: 0.3s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(3){ transition-delay: 0.5s; animation-delay: 0.5s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(4){ transition-delay: 0.7s; animation-delay: 0.7s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(5){ transition-delay: 0.9s; animation-delay: 0.9s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(6){ transition-delay: 1.1s; animation-delay: 1.1s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(7){ transition-delay: 1.3s; animation-delay: 1.3s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(8){ transition-delay: 1.5s; animation-delay: 1.5s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(9){ transition-delay: 1.7s; animation-delay: 1.7s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(10){ transition-delay: 1.9s; animation-delay: 1.9s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(11){ transition-delay: 2.1s; animation-delay: 2.1s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(12){ transition-delay: 2.3s; animation-delay: 2.3s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(13){ transition-delay: 2.5s; animation-delay: 2.5s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(14){ transition-delay: 2.7s; animation-delay: 2.7s; }
.SlideInBottomChild .effectSlideInBottom:nth-of-type(15){ transition-delay: 2.9s; animation-delay: 2.9s; }


.effectfadeIn{
	opacity: 1 !important;
	transition: all 0.5s linear;
}


.effectRotate{
	animation: effectRotate 10s linear infinite;
}

@-webkit-keyframes effectfadeIn {
	100% { transform: rotate(360deg); }
}

@keyframes effectRotate {
	100% { transform: rotate(360deg); }
}



.effectFadeZoomChild span{
	display: inline-block;
	transition: transform 0.5s ease-in-out 0s, opacity 0.5s ease-in-out 0s;
	opacity: 0;
	transform: scale(1.2);
}

.effectFadeZoomChild span:nth-child( 1){ transition-delay: 0s; }
.effectFadeZoomChild span:nth-child( 2){ transition-delay: 0.05s; }
.effectFadeZoomChild span:nth-child( 3){ transition-delay: 0.1s; }
.effectFadeZoomChild span:nth-child( 4){ transition-delay: 0.15s; }
.effectFadeZoomChild span:nth-child( 5){ transition-delay: 0.2s; }
.effectFadeZoomChild span:nth-child( 6){ transition-delay: 0.25s; }
.effectFadeZoomChild span:nth-child( 7){ transition-delay: 0.3s; }
.effectFadeZoomChild span:nth-child( 8){ transition-delay: 0.35s; }
.effectFadeZoomChild span:nth-child( 9){ transition-delay: 0.4s; }
.effectFadeZoomChild span:nth-child(10){ transition-delay: 0.45s; }
.effectFadeZoomChild span:nth-child(11){ transition-delay: 0.5s; }
.effectFadeZoomChild span:nth-child(12){ transition-delay: 0.55s; }
.effectFadeZoomChild span:nth-child(13){ transition-delay: 0.6s; }
.effectFadeZoomChild span:nth-child(14){ transition-delay: 0.65s; }
.effectFadeZoomChild span:nth-child(15){ transition-delay: 0.7s; }
.effectFadeZoomChild span:nth-child(16){ transition-delay: 0.75s; }
.effectFadeZoomChild span:nth-child(17){ transition-delay: 0.8s; }
.effectFadeZoomChild span:nth-child(18){ transition-delay: 0.85s; }
.effectFadeZoomChild span:nth-child(19){ transition-delay: 0.9s; }
.effectFadeZoomChild span:nth-child(20){ transition-delay: 0.95s; }
.effectFadeZoomChild span:nth-child(21){ transition-delay: 1.0s; }
.effectFadeZoomChild span:nth-child(22){ transition-delay: 1.05s; }


.effectFadeZoomChild p.effect span{
	opacity: 1;
	transform: scale(1);
}

.animTonTon{
	animation: animTonTon ease-in-out 4s;
	animation-iteration-count: infinite;
	transform-origin: 50% 50%;
	animation-fill-mode:forwards; /*when the spec is finished*/
	-webkit-animation: animTonTon ease-in-out 4s;
	-webkit-animation-iteration-count: infinite;
	-webkit-transform-origin: 50% 50%;
	-webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
	-moz-animation: animTonTon ease-in-out 4s;
	-moz-animation-iteration-count: infinite;
	-moz-transform-origin: 50% 50%;
	-moz-animation-fill-mode:forwards; /*FF 5+*/
	-o-animation: animTonTon ease-in-out 4s;
	-o-animation-iteration-count: infinite;
	-o-transform-origin: 50% 50%;
	-o-animation-fill-mode:forwards; /*Not implemented yet*/
	-ms-animation: animTonTon ease-in-out 4s;
	-ms-animation-iteration-count: infinite;
	-ms-transform-origin: 50% 50%;
	-ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animTonTon{
	0% { transform:  translate(0px,0px); }
	7% { transform:  translate(0px,-5px); }
	12% { transform:  translate(0px,2px); }
	19% { transform:  translate(0px,-1px); }
	25% { transform:  translate(0px,0px); }
	100% { transform:  translate(0px,0px); }
}

@-moz-keyframes animTonTon{
	0% { -moz-transform:  translate(0px,0px); }
	7% { -moz-transform:  translate(0px,-5px); }
	12% { -moz-transform:  translate(0px,2px); }
	19% { -moz-transform:  translate(0px,-1px); }
	25% { -moz-transform:  translate(0px,0px); }
	100% { -moz-transform:  translate(0px,0px); }
}

@-webkit-keyframes animTonTon {
	0% { -webkit-transform:  translate(0px,0px); }
	7% { -webkit-transform:  translate(0px,-5px); }
	12% { -webkit-transform:  translate(0px,2px); }
	19% { -webkit-transform:  translate(0px,-1px); }
	25% { -webkit-transform:  translate(0px,0px); }
	100% { -webkit-transform:  translate(0px,0px); }
}

@-o-keyframes animTonTon {
	0% { -o-transform:  translate(0px,0px); }
	7% { -o-transform:  translate(0px,-5px); }
	12% { -o-transform:  translate(0px,2px); }
	19% { -o-transform:  translate(0px,-1px); }
	25% { -o-transform:  translate(0px,0px); }
	100% { -o-transform:  translate(0px,0px); }
}

@-ms-keyframes animTonTon {
	0% { -ms-transform:  translate(0px,0px); }
	7% { -ms-transform:  translate(0px,-5px); }
	12% { -ms-transform:  translate(0px,2px); }
	19% { -ms-transform:  translate(0px,-1px); }
	25% { -ms-transform:  translate(0px,0px); }
	100% { -ms-transform:  translate(0px,0px); }
}



.mov {
	position: relative;
	display:block;
	-webkit-transform: translate(-100%, 0);
	-ms-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
	opacity: 0;
	overflow: hidden;
	z-index: 1;
}
.mov.l_mov {
	-webkit-transition: opacity 1.5s,-webkit-transform 1.2s cubic-bezier(0.6, 0, 0.4, 1);
	transition: opacity 1.5s,-webkit-transform 1.2s cubic-bezier(0.6, 0, 0.4, 1);
	transition: transform 1.2s cubic-bezier(0.6, 0, 0.4, 1),opacity 1.5s;
	transition: transform 1.2s cubic-bezier(0.6, 0, 0.4, 1),opacity 1.5s,-webkit-transform 1.2s cubic-bezier(0.6, 0, 0.4, 1);
	-webkit-transform: translate(0%, 0);
	-ms-transform: translate(0%, 0);
	transform: translate(0%, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity: 1;
}
.mov_in {
	width: 100%;
	-webkit-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	transform: translate(100%, 0);
}
.mov.l_mov .mov_in {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 1.2s cubic-bezier(0.6, 0, 0.4, 1);
	transition: -webkit-transform 1.2s cubic-bezier(0.6, 0, 0.4, 1);
	transition: transform 1.2s cubic-bezier(0.6, 0, 0.4, 1);
	transition: transform 1.2s cubic-bezier(0.6, 0, 0.4, 1), -webkit-transform 1.2s cubic-bezier(0.6, 0, 0.4, 1);
	-webkit-transform: translate(0%, 0);
	-ms-transform: translate(0%, 0);
	transform: translate(0%, 0);
}







/* -- Z-INDEX --------------------------------------------------------- */
#lf_header{
	z-index: 50;
}

#lf_pagetop{
	/*z-index: 3;*/
}






/* -- BASE / header --------------------------------------------------------- */
#lf_header{
	width: 100%;
}
#lf_header_in{
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
}
#lf_gNav_head_in:after{
	content: "";
	display: block;
	clear: both;
}
#lf_logo_wrap{
	float: left;
}
#lf_gNav_toplink{
	float: right;
}








.lf_h2{
	width: 100%;
	border-bottom: 5px solid #00479d;
}
.lf_h2 .lf_txt{
	font-family: 'Noto Sans CJK JP',"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Sans-Serif;
	font-size: 40px;
	/* -webkit-text-stroke-color: #fff;
	-webkit-text-stroke-width: 1.5px; */
	color: #00479d;
	font-weight: bold;
	letter-spacing: -1px;

/* text-shadow:0px 1px 20px #7d7d7d; */

text-shadow:
	#fff 2px 2px 0px,
	#fff -2px 2px 0px,
	#fff 2px -2px 0px,
	#fff -2px -2px 0px,
	0px 1px 20px #7d7d7d;






}












/* -- BASE / footer --------------------------------------------------------- */
footer {
	padding: 0rem 0 0rem;
	position: relative;
	z-index: 1;
	background-color: #f2f2f2;
}


footer p.pageTop{
	height: 0px;
}

footer p.pageTop a{
	position: absolute;
	display: block;
	z-index: 5;
	width: 50px;
	height: 50px;
	background: #FFF;
	text-indent: -999999px;
	margin: auto;
	left: 0;
	right: 0;
	top: -25px;
	border-radius: 60px;
	box-shadow: 0px 4px 3px 0px rgba(32, 30, 24, 0.4);
	transition: all 0.2s linear;
}

footer p.pageTop a::after{
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid #305572;
	border-left: none;
	border-bottom: none;
	display: block;
	margin: auto;
	top: 7px;
	bottom: 0;
	position: absolute;
	left: 0;
	right: 0;
	transform: rotate(-45deg);
	transition: all 0.2s linear;
}

footer p.pageTop a:hover{
	box-shadow: 0px 7px 3px -2px rgba(32, 30, 24, 0.4);
}

footer p.pageTop a:hover::after{
	border: 2px solid #305572;
	border-left: none;
	border-bottom: none;
	top: 3px;
}


/* // BASE / footer > .logoArea ////////// */
footer .logoArea{
	margin: auto;
	padding: 2.5rem 1rem;
	border-top: 1px solid #305572;
	background-color: #FFF;
}

footer .logoArea .logoAreaInner{
	width: 100%;
	min-width: 960px;
	max-width: 1080px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}

footer .logoArea .logoAreaInner .footerLogo {
	display: flex;
	justify-content: center;
}

footer .logoArea .logoAreaInner .footerLogo li {
	display: flex;
	align-items: center;
	height: 1.785rem;
}

footer .logoArea .logoAreaInner .footerLogo li a {
	height: 1.785rem;
}

footer .logoArea .logoAreaInner .footerLogo li img {
	height: 100%;
}

footer .logoArea .logoAreaInner .footerLogo li:nth-of-type(1) {
	margin-right: 0.5rem;
	margin-left: 0;
	width: 1.75rem;
	height: auto;
}

footer .logoArea .logoAreaInner .footerLogo li:nth-of-type(2) {
	width: 10rem;
	height: auto;
}


footer .logoArea .logoAreaInner ul.freeDial {
	display: flex;
	justify-content: center;
}

footer .logoArea .logoAreaInner ul.freeDial li {
	width: 31rem;
}

footer .logoArea .logoAreaInner ul.freeDial li a {
	display: block;
}

footer .logoArea .logoAreaInner ul.freeDial li a img {
	height: 1.785rem;
}

footer .logoArea .logoAreaInner ul li a:hover {
	opacity: 0.7;
}



/* // BASE / footer > .copyArea ////////// */
footer .copyArea{
	margin: auto;
	padding: 1rem;
}

footer .copyArea ul.copy {
	width: 100%;
	min-width: 960px;
	max-width: 1080px;
	text-align: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

footer .copyArea ul.copy li {
	font-size: 0.6rem;
	color: #333;
}















/* -- common : row / col ------------------------------------------------------- */
section{

}

section:nth-of-type(2n+1){
}

.col{
	width: 100%;
	min-width: 960px;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	z-index: 1;
}

.col.fix{
	width: calc(100% + 1.785rem);
	min-width: calc(100% + 1.785rem);
	max-width: calc(100% + 1.785rem);
	margin-left: -1rem;
	margin-right: -1rem;
}

.col.w55p{
	width: 55%;
	min-width: 55%;
	max-width: 55%;
	margin: auto;
}


.col.title {
	margin-bottom: 3rem;
}

.col.title,
.col.more{
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
}

.col.title p{
	text-align: center;
}

.col.catch{
	display: block;
}

.col .colIn{
	display: block;
	width: 100%;
	text-align: center;
}

.col .colIn img{
	width: auto;
	max-width: 100%;
}

.col p{
	text-align: left;
	margin-bottom: 0.75rem;
}

.col p:last-of-type{
	margin-bottom: 0;
}




/* -- section.single ------------------------------------ */
.col.single{
	justify-content: center;
}
.col.single .colIn{
}




/* -- section.single.notice ----------------------------- */
.col.single.notice{
	margin: 1rem auto 3rem;
}

.col.single.notice .colIn p{
	font-size: 0.75rem;
	text-align: center;
	color: #FFF;
}



/* -- section.db ---------------------------------------- */
.col.db .colIn{
	width: calc(100% / 2 - 10px);
	max-width: 590px;
}



/* -- section.fix.db ------------------------------------ */
.col.fix.db .colIn{
	width: calc(100% / 2);
	max-width: 100%;
	margin-bottom: 0px;
}

.col.fix.db .colIn a{
	display: block;
	position: relative;
	overflow: hidden;
}

.col.fix.db .colIn a::before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, 0.4);
	z-index: 1;
	transition: all 0.2s linear;
}

.col.fix.db .colIn a:hover::before{
	background: rgba( 0, 0, 0, 0);
}

.col.fix.db .colIn a .bg{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.2s linear;
}



/* -- section.db3 --------------------------------------- */
.col.db3 .colIn{
	max-width: 290px;
}
.col.db3 .colIn:first-of-type{
	max-width: 590px;
}



/* -- section.db2 --------------------------------------- */
.col.db2 .colIn:first-of-type{
	width: calc(100% / 1.5 - 10px);
	max-width: 770px;
}
.col.db2 .colIn:last-of-type{
	width: calc(100% / 2.86 - 10px);
	max-width: 410px;
}

.col.db2 .colIn:nth-last-of-type(1) ,
.col.db2 .colIn:nth-last-of-type(2) {
	margin-bottom: 0;
}



/* -- section.db2b -------------------------------------- */
.col.db2b .colIn:first-of-type{
	max-width: 410px;
}
.col.db2b .colIn:last-of-type{
	max-width: 770px;
}

/* -- section.tri --------------------------------------- */
.col.tri .colIn{
	width: calc(100% / 3 - 10px);
	max-width: 385px;
}



/* -- section.fix.tri ----------------------------------- */
.col.fix.tri .colIn{
	width: calc(100% / 3);
	max-width: calc(100% / 3);
}

/* -- section.fix.tri-1 --------------------------------- */
.col.fix.tri-1{
	flex-wrap: nowrap;
}

.col.fix.tri-1 .colIn:first-of-type{
	width: calc(100% - 40%);
	max-width: calc(100% - 40%);
	min-width: calc(100% - 40%);
}

.col.fix.tri-1 .colIn:last-of-type{
	width: calc(100% - 60%);
	max-width: calc(100% - 60%);
	min-width: calc(100% - 60%);
}


/* -- section.tri-db ------------------------------------ */
.col.tri-db{
	justify-content: center;
}

.col.tri-db .colIn{
	max-width: 385px;
	margin: 0 10px;
}


/* -- section.qua --------------------------------------- */
.col.qua .colIn{
	width: calc(100% / 4 - 10px);
	max-width: 290px;
}

.col.qua .colIn.w590{
	width: calc(100% / 2 - 10px);
	max-width: 590px;
}

.col.qua .colIn:nth-last-of-type(1) ,
.col.qua .colIn:nth-last-of-type(2) ,
.col.qua .colIn:nth-last-of-type(3) ,
.col.qua .colIn:nth-last-of-type(4) {
	margin-bottom: 0;
}







/* -- .cta ------------------------------------------------------------------ */
.cta {
	border-top: 5px solid #063b7d;
	border-bottom: 8px solid #063b7d;
	-webkit-background-size: 15px 15px;
	-moz-background-size: 15px 15px;
	background-size: 15px 15px;
	background-color: #084593;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #0f4c99), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #0f4c99), color-stop(.75, #0f4c99), color-stop(.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(-45deg, #0f4c99 25%, transparent 25%, transparent 50%, #0f4c99 50%, #0f4c99 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(-45deg, #0f4c99 25%, transparent 25%, transparent 50%, #0f4c99 50%, #0f4c99 75%, transparent 75%, transparent);
	background-image: -ms-linear-gradient(-45deg, #0f4c99 25%, transparent 25%, transparent 50%, #0f4c99 50%, #0f4c99 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(-45deg, #0f4c99 25%, transparent 25%, transparent 50%, #0f4c99 50%, #0f4c99 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, #0f4c99 25%, transparent 25%, transparent 50%, #0f4c99 50%, #0f4c99 75%, transparent 75%, transparent);
}

.cta .col .colIn img.cta_img {
	margin-top: -1.785rem;
	position: absolute;
	left: 0px;
	bottom: -10px;
	width: 32%;
	z-index: 1;
}

.cta .col .colIn > div {
	margin-top: 1.785rem;
	margin-bottom: 1.9rem;
	overflow: hidden;
	margin-left: 23%;
	background: #FFF;
	border-radius: 0.25rem;
	/* min-height: 20rem; */
}

.cta .col .colIn > div div.ctaTxt {
	background-color: #fff5f1;
}

.cta .col .colIn > div div.ctaTxt h4 {
	padding: 0.75rem 11rem 0.75rem 6rem;
	text-align: center;
}

.cta .col .colIn > div div.ctaTxt h3 {
	background-color: #e53d00;
	color: #FFF;
	padding: 0.75rem 11rem 0.75rem 6rem;
	text-align: center;
	box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2);
}

.cta .col .colIn > div div.ctaTxt p {
	padding: 1.15rem 4rem 0.75rem 4rem;
	text-align: center;
	font-size: 0.875rem;
}

.cta .col .colIn > div div.ctaTxt .cta_book {
	position: absolute;
	top: -20px;
	right: -70px;
}





.cta .col .colIn > div ul {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin-left: 1rem;
	margin-right: 1rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.cta .col .colIn > div ul li {
	width: calc(100% / 2 - 0.5rem);
	position: relative;
}

.cta .col .colIn > div ul li.cta_tel {
	border: 2px solid #f2f2f2;
	padding: 0.5rem 2.5rem;
}

.cta .col .colIn > div ul li.cta_tel a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}

.cta .col .colIn > div ul li.cta_tel a img {
	transition: all 0.2s linear;
}

.cta .col .colIn > div ul li.cta_tel a:hover img {
	opacity: 0.7;
}




/* -- .fixMenu -------------------------------------------------------------- */
.fixMenu {
	position: fixed;
	top: 8rem;
	right: 1rem;
	transition: all 0.5s linear;
	z-index: 9999999998;
	transform: translateX(0%);
	opacity: 1;
}

.fixMenu.seminar {
	position: fixed;
	top: auto;
	right: auto;
	bottom: 6rem;
	left: 0rem;
	transition: all 0.5s linear;
	z-index: 9999999998;
	transform: translateX(0%);
	opacity: 1;
}

.fixMenu.isShow {
	transform: translateX(150%);
	opacity: 0;
}
.fixMenu.seminar.isShow {
	transform: translateX(-150%);
	opacity: 0;
}

.fixMenu ul {
	display: flex;
	flex-direction: column;
}

.fixMenu ul li:first-of-type {
	margin-bottom: 0.2rem;
}

.fixMenu ul li a {
	transition: all 0.2s linear;
	position: relative;
}

.fixMenu ul li a:hover {
	opacity: 0.8;
	-webkit-animation: effectTon 1500ms infinite;
					animation: effectTon 1500ms infinite;
}

.fixMenu ul li .lf_pc{
	display: inline;
}
.fixMenu ul li .lf_sp{
	display: none;
}





/* -- LUFT ------------------------------------------------------------------ */

/* -- LUFT Z-INDEX ---------------------------------------------------------- */
#lf_header{
	z-index: 50;
}

#lf_pagetop{
	/*z-index: 3;*/
}


.lf_top_page .lf_example_wrap dl > dt .lf_txt{
	z-index: 1;
}



/* -- LUFT / header --------------------------------------------------------- */
#lf_header{
	width: 100%;
	border-bottom: 2px solid #7bb0ff;
}
#lf_header_in{
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding-top: 23px;
	padding-bottom: 23px;
	padding-left: 30px;
	padding-right: 30px;
}
#lf_gNav_head_in:after{
	content: "";
	display: block;
	clear: both;
}
#lf_logo{
	max-width: 257px;
}

#lf_logo_wrap{
	float: left;
}
#lf_gNav_toplink{
	float: right;
}
#lf_gNav_toplink:after{
	content: "";
	display: none;
	clear: both;
}
#lf_gNav_toplink > li{
	float: left;
	padding-left: 10px;
}

#lf_gNav_toplink li .lf_pc{
	display: block;
}
#lf_gNav_toplink li .lf_sp{
	display: none;
}

#lf_gNav_toplink li img.tel_pc{
	max-width: 118px;
}
#lf_gNav_toplink li img.tel_sp{
	max-width: 99px;
	width: 100%;
}
#lf_gNav_toplink li img.num_pc{
	max-width: 301px;
}
#lf_gNav_toplink li img.contact_pc{
	max-width: 212px;
}
#lf_gNav_toplink li img.contact_sp{
	max-width: 99px;
	width: 100%;
}








/* -- LUFT / footer --------------------------------------------------------- */
#lf_footer{
	width: 100%;
	background-color: #333;
}
#lf_footer_top{
	width: 100%;
	background-color: #fff;
	text-align: center;
	padding-top: 65px;
	padding-bottom: 67px;
}
#lf_wrapper #lf_footer_top img{
	max-width: 266px;
}
#lf_footer_btm{
	width: 100%;
	background-color: #333;
}
#lf_footer_btm_in{
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding-top: 23px;
	padding-bottom: 23px;
	padding-left: 30px;
	padding-right: 30px;
}
#lf_footer_btm_in > dl{
	width: 100%;
}
#lf_footer_btm_in > dl:after{
	content: "";
	display: block;
	clear: both;
}
#lf_footer_btm_in > dl > dt{
	float: left;
	padding-right: 24px;
}
#lf_footer_btm_in > dl > dt .lf_txt{
	color: #fff;
	font-size: 18px;
}
#lf_footer_btm_in > dl > dd{
	float: left;
}
#lf_footer_btm_in > dl > dd .lf_txt{
	color: #fff;
	font-size: 15px;
}
#lf_footer_btm_in > dl > dd .lf_txt .lf_sp{
	display: none;
}



#lf_copyright{
	color: #a0a0a0;
	font-size: 12px;
}


#lf_pagetop{
	position: fixed;
	transition: all 0.5s linear;
	right: 24px;
	bottom: 107px;
	z-index: 9999999998;
	transform: translateX(0%);
	opacity: 1;
}
#lf_pagetop.isShow {
	transform: translateX(150%);
	opacity: 0;
}

#lf_pagetop:hover {
	opacity: .8;
}








/* -- LUFT common --------------------------------------------------------- */
#lf_wrapper {
	width: 100%;
  text-align: left;
  margin: 0 auto;
  overflow: hidden;
	position: relative;
	background-color: #fff;
}
#lf_wrapper img{
	max-width: 100%;
	height: auto;
	max-height: 100%;
}

#lf_wrapper img[src$=".svg"] {
	max-width: 100%;
	height: auto;
	max-height: 100%;
}



/* -- LUFT h1~ --------------------------------------------------------- */

.lf_h2{
	width: 100%;
	border-bottom: 5px solid #00479d;
}
.lf_h2 .lf_txt{
	font-family: 'Noto Sans CJK JP',"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Sans-Serif;
	font-size: 40px;
	color: #00479d;
	font-weight: bold;
	letter-spacing: -1px;
	text-shadow:
		#fff 2px 2px 0px,
		#fff -2px 2px 0px,
		#fff 2px -2px 0px,
		#fff -2px -2px 0px,
		0px 1px 20px #7d7d7d;
}

.lf_h2 .lf_txt .lf_sp{
	display: none;
}


.lf_h2_2{
	width: 100%;
}
.lf_h2_2 .lf_txt{
	font-family: 'Noto Sans CJK JP',"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Sans-Serif;
	font-size: 36px;
	color: #172d62;
	font-weight: bold;
	letter-spacing: -1px;
	text-shadow:
		#fff 3px 3px 0px,
		#fff -3px 3px 0px,
		#fff 3px -3px 0px,
		#fff -3px -3px 0px,
		#fff 0px 3px 0px,
		#fff 0px -3px 0px,
		#fff 3px 0px 0px,
		#fff -3px 0px 0px;


}




.lf_h6{
	font-size: 22px;
	color: #ec75b9;
	text-align: center;
	padding-top: 20px;
	line-height: 1;
	font-family: 'Oswald',Sans-Serif;
	letter-spacing: 4px;
}
.lf_h6_2{
	font-size: 22px;
	color: #fff799;
	text-align: center;
	padding-top: 20px;
	line-height: 1;
	font-family: 'Oswald',Sans-Serif;
	letter-spacing: 4px;
	opacity: .5;
}





/* -- LUFT .lf_mannga --------------------------------------------------------- */
.lf_manga_top01{
	padding-top: 101px;
}
.lf_manga_top02{
	padding-top: 111px;
}
.lf_manga_top03{
	padding-top: 117px;
}
.lf_manga_top04{
	padding-top: 129px;
}
.lf_manga_top05{
	padding-top: 133px;
}
.lf_manga_top06{
	padding-top: 30px;
}

.lf_manga_bottom01{
	padding-bottom: 26px;
}
.lf_manga_bottom02{
	padding-bottom: 30px;
}
.lf_manga_bottom03{
	padding-bottom: 27px;
}
.lf_manga_bottom04{
	padding-bottom: 18px;
}
.lf_manga_bottom05{
	padding-bottom: 6px;
}
.lf_manga_bottom06{
	padding-bottom: 13px;
}
.lf_manga_bottom07{
	padding-bottom: 10px;
}


/* -- LUFT .lf_top_page --------------------------------------------------------- */
.lf_top_page #lf_main_view{
	width: 100%;
	border-bottom: 2px solid #7bb0ff;
}
.lf_top_page #lf_main_view img{
	width: 100%;
}
.lf_top_page #lf_main_view_in{
	width: 100%;
	background-image: url(../../images/main_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.lf_top_page #lf_main_view .lf_main_pc{
	display: block;
	max-width: 1024px;
	margin: 0 auto;
	padding-top: 2rem;
}
.lf_top_page #lf_main_view .lf_main_sp{
	display: none;
}


.lf_top_page .lf_mannga_sec{
	width: 100%;
	background-color: #fff;
}
.lf_top_page .lf_mannga_sec_in{
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 110px;
}

.lf_top_page .lf_mannga_sec_in > ul{
	width: 100%;
}

.lf_top_page .lf_mannga_sec_in > ul.lf_pc{
	display: block;
}
.lf_top_page .lf_mannga_sec_in > ul.lf_sp{
	display: none;
}


.lf_top_page .lf_mannga_sec_in > ul:after{
	content: "";
	display: block;
	clear: both;
}
.lf_top_page .lf_mannga_sec_in > ul > li{
	float: right;
}
.lf_top_page .lf_mannga_sec_in > ul > li img{
	width: 100%;
}


.lf_top_page .lf_sec_wrap{
	width: 100%;
	background-image: url(../../images/sec_bg.jpg);
	background-repeat: repeat;
	padding-top: 90px;
	padding-bottom: 90px;
}
.lf_top_page .lf_sec_wrap .lf_sec_header{
	width: 100%;
	max-width: 1260px;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
}

.lf_top_page .lf_sec_wrap .lf_sec_body{
	width: 100%;
	max-width: 1260px;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
}

.lf_top_page .lf_about_wrap{
	width: 100%;
	display: table;
	padding-top: 38px;
	padding-bottom: 32px;
}
.lf_top_page .lf_about_wrap .lf_about_left{
	display: table-cell;
	padding-top: 30px;
}
.lf_top_page .lf_about_wrap .lf_about_left .lf_txt{
	font-size: 21px;
	line-height: 2;
	letter-spacing: -1.5px;
	color: #1b1b1b;
}
.lf_top_page .lf_about_wrap .lf_about_right{
	display: table-cell;
	width: 308px;
	vertical-align: top;
}






.lf_top_page .lf_ban{
	width: 100%;
	text-align: center;
}
.lf_top_page .lf_ban .lf_tit{
	width: 100%;
	padding-bottom: 32px;
}
.lf_top_page .lf_ban .lf_tit{
	width: 100%;
}

.lf_top_page .lf_ban .lf_tit a{
	display: inline-block;
	transition: all 0.2s linear;
}
.lf_top_page .lf_ban .lf_tit a:hover{
	opacity: .8;
}

.lf_top_page .lf_ban .lf_contact a{
	display: inline-block;
	transition: all 0.2s linear;
}
.lf_top_page .lf_ban .lf_contact a:hover{
	opacity: .8;
}

.lf_top_page .lf_ban_sec{
	width: 100%;
	background-image: url(../../images/sec_bg.jpg);
	background-repeat: repeat;
	padding-top: 80px;
	padding-bottom: 70px;
}
.lf_top_page .lf_ban_sec_in{
	width: 100%;
	max-width: 1260px;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
}

.lf_top_page .lf_ban .lf_pc{
	display: inline;
}
.lf_top_page .lf_ban .lf_sp{
	display: none;
}

#lf_wrapper img.ban_contact{
	max-width: 794px;
}


.lf_top_page .lf_4points_wrap{
	width: 100%;
	padding-top: 60px;
	padding-bottom: 33px;
}

.lf_top_page .lf_4points_wrap > ul{
	width: 100%;
}
.lf_top_page .lf_4points_wrap > ul:after{
	content: "";
	display: block;
	clear: both;
}
.lf_top_page .lf_4points_wrap > ul > li{
	width: 50%;
	padding-bottom: 65px;
}
.lf_top_page .lf_4points_wrap > ul > li:nth-child(odd){
	float: left;
	padding-right: 35px;
}
.lf_top_page .lf_4points_wrap > ul > li:nth-child(even){
	float: right;
	padding-left: 35px;
}
.lf_top_page .lf_4points_wrap > ul > li > dl{
	width: 100%;
	background-color: #fff;
	padding-bottom: 40px;
	height: 790px;
}
.lf_top_page .lf_4points_wrap > ul > li > dl > dt{
	padding-bottom: 20px;
	text-align: center;
}
.lf_top_page .lf_4points_wrap > ul > li > dl > dt .lf_txt{
	font-size: 28px;
	color: #172d62;
	padding-top: 6px;
	display: block;
}
.lf_top_page .lf_4points_wrap > ul > li > dl > dd{
	padding-left: 46px;
	padding-right: 46px;
}
.lf_top_page .lf_4points_wrap > ul > li > dl > dd .lf_txt{
	letter-spacing: -1.7px;
	font-size: 18px;
}
.lf_top_page .lf_4points_wrap > ul > li > dl > dd .lf_img{
	display: block;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 18px;
}


.lf_top_page #example .lf_sec_wrap .lf_sec_body{
	padding-left: 15px;
	padding-right: 15px;
}

.lf_top_page .lf_example_wrap{
	width: 100%;
	padding-top: 50px;
}
.lf_top_page .lf_example_wrap .lf_ex_txt{
	width: 100%;
	text-align: center;
	font-size: 33px;
	font-family: 'Noto Sans CJK JP',"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Sans-Serif;
	text-shadow: 5px 5px 0px rgba(210, 210, 210, 1);
	font-weight: bold;
	padding-bottom: 30px;
}
.lf_top_page .lf_example_wrap .lf_ex_txt .lf_sp{
	display: none;
}
.lf_top_page .lf_example_wrap .lf_ex_txt .lf_pink{
	font-size: 43px;
	color: #e4007f;
	font-weight: 700;
}
.lf_top_page .lf_example_wrap > ul{
	width: 100%;
	padding-bottom: 83px;
	background-image: url(../../images/arrow_ex.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.lf_top_page .lf_example_wrap > ul:after{
	content: "";
	display: block;
	clear: both;
}

.lf_top_page .lf_example_wrap > ul > li{
	width: 33.33%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}
.lf_top_page .lf_example_wrap dl{
	width: 100%;
}

.lf_top_page .lf_example_wrap dl > dt{
	width: 100%;
}

.lf_top_page .lf_example_wrap dl > dt .lf_img{
	width: 100%;
	padding-bottom: 18px;
	display: block;
}
.lf_top_page .lf_example_wrap dl > dt .lf_txt{
	width: 160px;
	margin: 0 auto;
	display: block;
	background-color: #1d8640;
	color: #fff;
	font-size: 25px;
	font-weight: bold;
	border-radius: 36px 36px 36px 36px;
	text-align: center;
	line-height: 36px;
	position: relative;
}


.lf_top_page .lf_example_wrap dl > dd{
	width: 100%;
	background-color: #fff;
	margin-top: -18px;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box{
	width: 100%;
	padding-left: 17px;
	padding-right: 17px;
	padding-top: 36px;
	padding-bottom: 33px;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_top{
	border-bottom: 1px solid #d2d2d2;
	padding-bottom: 10px;
	text-align: center;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_top .lf_txt{
	font-size: 25px;
	font-weight: bold;
	color: #e4007f;
	font-family: 'Noto Sans CJK JP',"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Sans-Serif;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_middle{
	border-bottom: 1px solid #d2d2d2;
	padding-bottom: 10px;
	padding-top: 16px;
	text-align: center;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_middle .lf_sp{
	display: none;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_middle .lf_sub{
	font-size: 16px;
	display: block;
	padding-bottom: 4px;
	letter-spacing: -1.5px;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_middle .lf_sub .lf_pink{
	color: #e4007f;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_middle .lf_txt{
	font-size: 25px;
	font-weight: bold;
	color: #172d62;
	font-family: 'Noto Sans CJK JP',"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Sans-Serif;
	position: relative;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_middle .lf_txt::before{
	content: "";
	display: block;
	width: 11px;
	height: 12px;
	position: absolute;
	left: -20px;
	top: 50%;
	margin-top: -6px;
	background-image: url(../../images/arrow_ex2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}


.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom{
	text-align: center;
	padding-top: 18px;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_tit{
	font-size: 21px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",Sans-Serif;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl{
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	display: table;
	padding-top: 13px;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dt{
	display: table-cell;
	vertical-align: top;
	width: 72px;
}

.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dt .lf_out{
	font-size: 110%;
	font-weight: 700;
	color: #172d62;
	border: 2px solid #172d62;
	display: block;
	line-height: 72px;
	width: 72px;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dt .lf_in{
	font-size: 110%;
	font-weight: 700;
	color: #fff45c;
	border: 2px solid #172d62;
	background-color: #516289;
	display: block;
	line-height: 38px;
	width: 72px;
}




.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dd{
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	font-size: 17px;
	letter-spacing: -2px;
}


.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dd > dl:after{
	content: "";
	display: block;
	clear: both;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dd > dl > dt{
	text-align: left;
	float: left;
	width: auto;
}
.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dd > dl > dd{
	margin-top: 0;
	text-align: right;
	float: right;
	width: auto;
}



.lf_top_page .lf_example_wrap dl > dd .lf_box .lf_bottom > .lf_dl .lf_dd .lf_pink{
	color: #e4007f;
}

.lf_top_page .lf_example_wrap .lf_yachin{
	width: 100%;
	padding-top: 30px;
	padding-bottom: 80px;
	background-image: url(../../images/arrow_ex.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center;
}
.lf_top_page .lf_example_wrap .lf_yachin .lf_t1{
	font-size: 30px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
}

.lf_top_page .lf_example_wrap .lf_yachin .lf_t1 .lf_sp{
	display: none;
}


.lf_top_page .lf_example_wrap .lf_yachin .lf_t1 .lf_pink{
	font-size: 46px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #e4007f;
}
.lf_top_page .lf_example_wrap .lf_yachin .lf_t1 .lf_en{
	font-size: 30px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #e4007f;
}
.lf_top_page .lf_example_wrap .lf_yachin .lf_t2{
	font-size: 23px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	padding-top: 24px;
	padding-bottom: 30px;
}
.lf_top_page .lf_example_wrap .lf_yachin .lf_t2 .lf_pink{
	font-size: 30px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #e4007f;
}

.lf_top_page .lf_example_wrap .lf_yachin > ul{
	width: 100%;
	max-width: 1070px;
	margin: 0 auto;
}
.lf_top_page .lf_example_wrap .lf_yachin > ul:after{
	content: "";
	display: block;
	clear: both;
}
.lf_top_page .lf_example_wrap .lf_yachin > ul > li{
	float: left;
	width: 33.33%;
	padding-left: 15px;
	padding-right: 15px;
}
.lf_top_page .lf_example_wrap .lf_yachin > ul > li.lf_op1{
	opacity: .5;
}
.lf_top_page .lf_example_wrap .lf_yachin > ul > li.lf_op2{
	opacity: .75;
}
.lf_top_page .lf_example_wrap .lf_yachin > ul > li .lf_txt{
	display: block;
	line-height: 48px;
	background-color: #516289;
	color: #fff;
	font-size: 23px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
}

.lf_top_page .lf_example_wrap .lf_yachin > ul > li .lf_txt .lf_sp{
	display: none;
}

.lf_top_page .lf_example_wrap .lf_yachin > ul > li .lf_txt .lf_y{
	color: #fff45c;
	font-size: 23px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
}



.lf_top_page .lf_example_wrap .lf_loan{
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 107px;
	padding-top: 71px;
	background-image: url(../../images/exam_bill.png);
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;
}

.lf_top_page .lf_example_wrap .lf_loan .lf_t1{
	font-size: 32px;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
}
.lf_top_page .lf_example_wrap .lf_loan .lf_t1 .lf_pink{
	font-size: 32px;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #e4007f;
}
.lf_top_page .lf_example_wrap .lf_loan .lf_t2{
	font-size: 41px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
}
.lf_top_page .lf_example_wrap .lf_loan .lf_t2 .lf_sp{
	display: none;
}

.lf_top_page .lf_example_wrap .lf_loan .lf_t2 .lf_pink{
	font-size: 61px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #e4007f;
}
.lf_top_page .lf_example_wrap .lf_loan .lf_t2 .lf_en{
	font-size: 41px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #e4007f;
}

.lf_top_page #qa .lf_sec_wrap{
	padding-top: 0px;
}
.lf_top_page #qa .lf_sec_wrap .lf_sec_header{
	padding-top: 80px;
	padding-bottom: 50px;
	max-width: 100%;
	padding-left: 0px;
  padding-right: 0px;
	background-color: #172d62;
}
.lf_top_page #qa .lf_sec_wrap .lf_sec_header .lf_h2_2{
	max-width: 1260px;
	padding-left: 30px;
  padding-right: 30px;
	margin: 0 auto;
	position: relative;
}
.lf_top_page #qa .lf_sec_wrap .lf_sec_header .lf_h2_2:after{
	content: "";
	display: block;
	width: 134px;
	border-bottom: 1px solid #fff;
	margin: 0 auto;
	padding-top: 16px;
}
.lf_top_page .lf_qa_wrap{
	width: 100%;
	padding-top: 109px;
}
.lf_top_page .lf_qa_wrap > dl{
	padding-top: 30px;
	padding-bottom: 30px;
}
.lf_top_page .lf_qa_wrap > dl > dt{

}

.lf_top_page .lf_qa_wrap > dl > dt .lf_dt_w{
	width: 100%;
	max-width: 812px;
	margin: 0 auto;
	border: 7px solid #8fc31f;
	background-color: #8fc31f;
	border-radius: 0px 26px 26px 26px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
	cursor: pointer;
}
.lf_top_page .lf_qa_wrap > dl > dt .lf_dt_w:before{
	content: "";
	display: block;
	width: 110px;
	height: 116px;
	background-image: url(../../images/manga_q.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: -141px;
	top: -36px;
}
.lf_top_page .lf_qa_wrap > dl > dt.lf_active .lf_dt_w{
	background-color: #fff;
}
.lf_top_page .lf_qa_wrap > dl > dt .lf_dt_w:after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	right: 24px;
	top: 50%;
	margin-top: -10px;
	-webkit-transition: all 300ms ease 0s;
	-o-transition: all 300ms ease 0s;
	transition: all 300ms ease 0s;
}
.lf_top_page .lf_qa_wrap > dl > dt.lf_active .lf_dt_w:after{
	border-right: 3px solid #8fc31f;
	border-bottom: 3px solid #8fc31f;
	transform: rotate(-135deg);
}


.lf_top_page .lf_qa_wrap > dl > dt .lf_dt_w .lf_txt{
	font-size: 28px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #fff;
	position: relative;
	letter-spacing: -2.2px;
}
.lf_top_page .lf_qa_wrap > dl > dt.lf_active .lf_dt_w .lf_txt{
	color: #8fc31f;
}
.lf_top_page .lf_qa_wrap > dl > dt .lf_dt_w .lf_txt:before{
	content: "Q";
	font-size: 28px;
	font-weight: bold;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	color: #fff;
	position: absolute;
	left: -34px;
	top: -8px;
}
.lf_top_page .lf_qa_wrap > dl > dt.lf_active .lf_dt_w .lf_txt:before{
	color: #8fc31f;
}



.lf_top_page .lf_qa_wrap > dl > dd{
	padding-top: 22px;
	display: none;
}
.lf_top_page .lf_qa_wrap > dl > dt.lf_active + dd{
	display: block;
}


.lf_top_page .lf_qa_wrap > dl > dd .lf_dd_w{
	width: 100%;
	max-width: 812px;
	margin: 0 auto;
	border: 7px solid #fff;
	background-color: #fff;
	border-radius: 26px 0px 26px 26px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
}
.lf_top_page .lf_qa_wrap > dl > dd .lf_dd_w:after{
	content: "";
	display: block;
	width: 110px;
	height: 116px;
	background-image: url(../../images/manga_a.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: -141px;
	top: -7px;
}
.lf_top_page .lf_qa_wrap > dl > dd .lf_dd_w .lf_txt{
	font-size: 20px;
	font-family: 'Noto Sans CJK JP',Sans-Serif;
	position: relative;
}
.lf_top_page .lf_qa_wrap > dl > dd .lf_dd_w .lf_txt:before{
	content: "A";
	color: #1d8640;
	font-size: 35px;
	font-weight: bold;
	font-family: 'Oswald',Sans-Serif;
	position: absolute;
	left: -34px;
	top: -8px;
}









/* .fixMenu ----------------------------------------------------------------- */
.fixMenu {
	position: fixed;
	right: 10px;
	top: 5vw;
	width: 121px;
	transform: translateX(0%);
	z-index: 999;
}

.fixMenu a p{
	transition: all 0.2s linear;
}

.fixMenu a:hover p{
	opacity: 0.7;
}

.fixMenu .request{
	margin-bottom: 10px;
}

.fixMenu.isShow {
	transform: translateX(120%);
}


/* .seminarPageLink --------------------------------------------------------- */
div.seminarPageLink{
	bottom: 1rem;
	left: 1rem;
	transform: translateX(0%);
	position: fixed;
	z-index: 999;
}

div.seminarPageLink ul{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

div.seminarPageLink ul li{
	margin-right: 0.25rem;
	max-height: unset!important;
}

div.seminarPageLink ul li.lineBnr{
	height: 8rem;
	margin-right: 0.5rem;
}

div.seminarPageLink ul li:last-of-type{
	margin-right: 0;
}

div.seminarPageLink ul li a{
	display: flex;
	height: 100%;
	text-decoration: none;
}

div.seminarPageLink ul li a img{
	height: 100%;
	width: auto;
	max-height: unset!important;
	transition: all 0.2s linear;
}

div.seminarPageLink a img:hover {
	opacity: 0.7;
}



div.seminarPageLink.isShow{
	transform: translateX(-120%);
}

#fix_h_btn_01,
#fix_h_btn_02{
	display: none!important;
}


div.pageTop {
	position: fixed;
	right: 0.75rem;
	bottom: 0.75rem;
	z-index: 10000;
}

div.pageTop p {
}

div.pageTop p a {
	display: flex;
	width: 4rem;
	height: 4rem;
	background: rgba(255, 255, 255, 0.25);
	padding: 0.75rem 0.875rem;
	font-size: 0.25rem;
	text-align: center;
	align-items: center;
	border: 1px solid #4a515c;
	border-radius: 0.25rem;
}
