@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,900');
@import url(//fonts.googleapis.com/css?family=Lato:300,400,700);

body{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
}

div.pageWrap::before{
	z-index:5;
}

div.container::before{
	display:none;
}

header{
	position:relative;
	font-size: 14px;
	font-size: 1.4em;
	line-height: 1 !important;
	font-family: "メイリオ" , Meiryo , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" ,  "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif !important;
}

header p,
div.head_inner > h1,
div.head_inner > dl,
div.head_inner > dl dd{
	margin-bottom:0 !important;
}

div.head_inner{
	position:relative;
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;
}

.headimg{
	box-sizing: border-box;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: realtive;

}

.headimg img{
	margin-top: 55px;
	padding: 0 5px;
	width: 254px;
	height: 47px;
}

.strength-head{
	background:url(../images/lp/lp1_1bg.jpg) !important;
	background-repeat: no-repeat !important;
	background-size:cover !important;
	background-position: center center !important;
	width: 100% !important;
	height: 477px !important;
	position: relative;
}

.strength-head img{
	position: absolute;
	bottom: 0;
	left:0;
	right:0;
	margin:auto;
}
.teacher{
	background-color: #E0F0FC;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	font-weight: 700;
	padding-bottom: 26px;
}
.teacher h2{
	text-align: center
}
.teacher h2 img{
	margin-top: 74px;
	margin-bottom: 31px;
}
.outer{
	background-color: #FFFFFF;
	max-width: 927px;
	margin: 0 auto 33px auto;
}
.outer::after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.intro{
	float: right;
	width: 65%;
}
.intro::after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.imgouter{
	float: left;
	width: 30%;
}
.imgouter img{
	width: 100%;
	height: auto;
	padding: 10px 0 0 10px;
}

.subject{
	font-size: 44px;
	color: #0083CF;
	float: left;
	width: 40%;
}
.name{
	font-size: 18px;
	font-weight: bold;
	float: right;
	width: 60%;
	margin-top: 20px;
	text-align: right !important;
}

.introp{
	float: right;
	width: 65%;
	padding-right: 10px;
}

.accordion-box {
    position: relative;
}
.accordion-box label {
    height: 120px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.accordion-box input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
    content: "続きをよむ"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    color: #fff;
    background-color: #0083CF;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
    width: 100%;
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
    font-size: 20px;
    font-weight: bold;
}
.accordion-box label:before {
    content: url(../images/lp/open.png);
    position: absolute;
    left: 40%;
    bottom: 8px;
    z-index: 1;
}
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    overflow: hidden;
    height: 200px; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box input:checked + label:after {
    content: "閉じる";
}
.accordion-box input:checked + label:before {
    content: url(../images/lp/close.png);
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.worrywrap{
	overflow: hidden;
	position: relative;
	background-image: url(../images/lp/lp1_4.png);
	background-position:left bottom;
	background-repeat: no-repeat;
	z-index: -1;
}

.arc{
	position: absolute;
	top:0;
	left: 50%;
	right: 0;
	transform: translateX(-50%);
	margin: 0 auto;
	z-index: -3;
	background-color: #00BFDF;
	min-height: 500px;
	border-bottom-right-radius: 3000px 300px;
	border-bottom-left-radius: 3000px 300px;
	width: 100vw;
	height: 400px;
}
.worry{
	width: 100%;
	text-align: center;
	padding-top: 35px;
	position: relative;
}
.worry img{
	margin: 0;
}

.bgcolor{
	display: none;
}

.triangle{
	width: 0;
	height: 0;
	border-left: 90px solid transparent;
	border-right: 90px solid transparent;
	border-top: 84px solid #00BFDF;
	margin: 0 auto 40px auto;
}

.balloon{
	text-align: center;

}

.balloon img{
	margin: -80px auto 0 auto;
}

.man-to-man{
	background-color: #f5f0ea;
	width: 100%;
	padding-bottom: 200px;
	background-image: url(../images/lp/lp1_6.png);
	background-position:right bottom;
	background-repeat: no-repeat;
	z-index: -1;
}

h2{
	text-align: center;
}
.man-to-man2 h2{
	margin: 10px 0 40px 0;
	color: #2171BA;
	width: 100%;
}
.line{
	display: inline;
	margin: 0 auto;
	background:linear-gradient(transparent 60%, #FFDD50 0%) ;
}

.size33{
	font-size: 33px;
}

.size48{
	font-size: 48px;
}


.manwrap{
	text-align: center;
}

.ishikawa{
	background-color: #E0F0FC;
	padding-top: 60px;
	margin: 0;
	text-align: center;
	position: relative;
}

.ishikawa h2{
	color: #2171BA;
		margin: 0;
}

.pass{
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
	font-size: 26px;
	font-weight: bold;
	color: #0083CF;
	line-height: 31px;
	margin-top: 50px;
	padding-bottom: 130px;
}
.pass_sp{
	display: none;
}
.passin_1{
	background-color: rgba( 255, 255, 255, 0.6 );
	width: 402px;
	height: 316px;
	border: solid 4px #0083CF;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    z-index: 1;
    margin-right: 120px;
}

.passin_p {
	padding: 10px 0 15px 0 !important;
	letter-spacing:-2px;
}

.passin_1 img{
	width: 245px;
	height: auto;
}
.passin_2{
	background-color: rgba( 255, 255, 255, 0.6 );
	width: 402px;
	height: 316px;
	border: solid 4px #0083CF;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    z-index: 1;
	margin-left: 120px;
}

.passin_p {
	padding: 10px 0 15px 0 !important;
}

.passin_2 img{
	width: 351px;
	height: auto;
}
.passin_girl{
	z-index: 2;
	position: absolute;
	margin: 0 auto;
	bottom: 0;
	width: 351px;
	height: auto;
	right: 0;
	left: 0;
}
.passin_ishikawa1 img{
	width: 180px;
	height: auto;
}
.passin_ishikawa2 img{
	width: 300px;
	height: auto;
}
/*.ishikawa img{
	margin-top: 50px;
	margin-bottom: 0;
}
*/
.imgsp{
	display: none;
}

.form{
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	background-color: #0083CF;
}

.solu{
	padding-top: 50px;
}

.app{
	padding-top: 10px;
}

.app_sp{
	display: none;
}

.formbtn{
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.formbtn img{
	margin: 20px 10px 50px 10px;
	width:100%;
	max-width: 448px;
	height: auto;
}
.btn-tel{
	max-width: 460px;
	width: 100%;
	height: 96px;
	margin-left: auto;
	border: 1px solid #005bab;
	border-radius: 48px;
}
.btn-tel:hover{
	opacity: 0.7;
}
.btn-inner{
  padding-top: 15px;
  padding-right: 70px;
}
.top-number{
	font-size: 17px;
}
.bottom-number{
	font-size: 39px;
	margin-top: -15px;
	display: inline-block;
	position: relative;
}
.bottom-number::before{
	content: '';
	position: absolute;
	bottom: 10px;
  left: -70px;
	background: url(../images/lp/icon_tel.png) no-repeat;
	background-size: contain;
	width: 50px;
	height: 37px;
}
.btn-mail{
	max-width: 460px;
	width: 100%;
	height: 96px;
	margin-right: auto;
	border: 1px solid #005bab;
	border-radius: 48px;
}
.btn-mail:hover{
	opacity: 0.7;
}
.btn-inner2{
  padding-top: 25px;
}
.to-mailform{
	color: #005bab;
	font-size: 30px;
	display: inline-block;
	position: relative;
	margin-right: -40px;
}
.to-mailform::before{
	content: '';
	position: absolute;
	bottom: 5px;
  left: -70px;
	background: url(../images/lp/icon_mail.png) no-repeat;
	background-size: contain;
	width: 47px;
	height: 35px;
}
.app2{
	padding-top: 30px !important;
}

.size4451{
	font-size: 44.51px !important;
}

.size38{
	font-size: 38px !important;
}

.size25{
	font-size: 25px !important;
}

.leanstyle{
	padding-bottom: 90px;
}

.plan{
	font-weight: bold;
	background-color: #00BFDF;
	color: #FFFFFF;
	padding-top: 15px;
}

.planwrap{
	display: flex;
	flex-direction: row;
	justify-content: center;
}
/*
.planin{
	margin-left: -5%;
}
*/

.planwrap img{
	margin-left: -14%;
}
.planwrap img.no-margin{
	margin-left: 0;
}
.black-dot{
	position: relative;
}
.black-dot::before{
	position: absolute;
	content: '';
	top: -2px;
	right: 0;
	left: 0;
	margin: 0 auto;
	display: block;
	width: 5px;
	height: 5px;
	background: #000000;
	border-radius: 2.5px;
}

.top_p{
	font-size: 38.35px !important;
	text-align: center !important;
	line-height: 46.02px !important;
}

.under_p{
	margin-top: -20px;
	font-size: 44.51px !important;
}

.special{
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
	font-size: 66.41px !important;
	text-align: center !important;
}

.plan2{
	text-align: center;
}

.plan2 img{
	margin-top: -30px;
	margin-bottom: 30px;
}

.free_cons{
	position: fixed;
	top: 35%;
	right: 0;
	z-index: 300;
}

.free_cons:hover{
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
}

.free_cons2{
	display: none;
}

.site-info-img{
	padding-top: 20px;
}
.site-info img{
	padding: 0;
}

.copyright{
	color: #fff !important;
	padding: 10px 0 !important;
}
.strength-detail-box{
	display:none;
}
/* 秋LP用 */
.gothic {
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;

}
.mincho{
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
}
.meiryo{
	font-family:'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
}
.noto{
	font-family: 'Noto Serif JP', sans-serif;
  font-weight: 900;
  font-style: normal;
}
.lato{
	font-family:'Lato', sans-serif;
}
.fv-biggest{
	font-size: 63px;
}
.fv-bigger{
	font-size: 49px;
}
.fv-big{
	font-size: 42px;
}
.fv-big-sub{
	font-size: 30px;
}
.point-big{
	font-size: 35px;
}
.point-normal{
	font-size: 23px;
}
.italic{
	font-style: italic;
}
.fv-point-1{
	padding-right: 260px;
}
.fv-point-3{
	padding-left: 180px;
}
.fv-comment{
	font-size: 22px;
	font-weight: 700;
}
.font-15{
	font-size: 15px;
}
.bg-black{
	background-color: #000000;
}
.bg-gray{
	background-color: #e6e7e8;
}
.font-black{
	color: #000000;
}
.font-red{
	color: #ec1c24;
}
.font-darkred{
	color: #c3161c;
}
.step0-box{
	font-size: 22px;
	line-height: 30px;
	letter-spacing: 0.08em;
	border: 0.5px solid #b5b5b6;
	padding-top: 18px;
	max-width: 489px;
}

.gray-arrow {
	width: 28px;
  height: 23px;
  background-color: #58595b;
  position: relative;
  top: 15px;
}

.gray-arrow::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 27px solid transparent;
  border-top: 27px solid #58595b;
  left: -50%;
  bottom: -50px;
}
.step-box{
	border: 1px solid #494949;
	border-radius: 5px;
	padding-top: 40px;
	position: relative;
	z-index: 100;
}
.trapezoid{
	position: absolute;
	top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 148px;
  height: 0;
  border-top: 33px solid #58595b;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  z-index: 120;
}
.trapezoid span{
	display: block;
	font-size: 22px;
	margin-top: -32px;
  text-align: center;
}
.step-6{
	font-size: 18px;
}
.step-after-box{
	border: 1px solid #58595b;
	border-radius: 15px;
}
.step-after-box p{
	position: relative;
	font-size: 25px;
	line-height: 30px;
	z-index: 100;
}
.step-after-img{
	position: absolute;
	right: 1px;
	bottom: 5px;
	width: 90%;
	z-index: 10;
}
@media all and (-ms-high-contrast: none){
  .trapezoid span{
		margin-top: -30px;
	}
}
.step-red{
	color: #cd181e;
	font-size: 27px;
}
.step-red-small{
	font-size: 21px;
}
.step-p{
	font-size: 19px;
	line-height: 26px;
	max-width: 274px;
}
.gray-triangle{
	position: absolute;
	bottom: -40px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
	height: 0;
	border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-top: 108px solid #58595b;
	z-index: 10;
}
.space-narrow{
	letter-spacing: -0.55em;
}
.space-narrow-2{
	letter-spacing: -0.1em;
}
.autumn-balloon{
	font-size: 30px;
	position: relative;
	max-width: 929px;
	border-radius: 33px;
}
.autumn-balloon p{
	margin-bottom: 0;
}
.autumn-balloon::after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top: 35px solid #FFFFFF;
  left: 50%;
  margin-left: -15px;
  bottom: -40px;
}

.campaign{
	max-width: 990px;
	width: 90%;
	margin-top: -40px;
}
.campaign caption{
	caption-side: top;
	font-size: 20px;
	color: #000000;
}
.campaign tr{
	border: 1px solid #000000;
}
.campaign th{
	width: 200px;
	border: 1px solid #000000;
	background-color: #fcdfc9;
	text-align: center;
	font-weight: 700;
	font-size: 22px;
}
.campaign td{
	font-size: 15px;
	padding: 5px;
}

.black2-1{
	font-size: 23px;
}
.black2-2{
	font-size: 45px;
}
.black-big{
	font-size: 60px;
}
.from-now-wrap{
	min-height: 230px;
}
.from-now-box{
	height: 100%;
}
.from-now-box::before{
	content: '';
	display: block;
	background: url(../images/lp/lp1_9.png) no-repeat;
	position: absolute;
	bottom: -90px;
  left: -220px;
	width: 230px;
	height: 210px;
	background-size: contain;
}
.from-now{
	font-size: 20px;
}
.only-girl{
	position: absolute;
	bottom: 0;
	left: -30px;
	margin-left: 0;
}
.plan-big{
	font-size: 40px;
}
.plan-small{
	font-size: 30px;
}

/* レスポンシブ */
@media screen and (min-width: 1200px) {
	.fv-2-img{
		width: 70%;
	}
	.step-after-box p{
		margin-left: 40px;
	}
}
@media all and (min-width: 992px) {
	.row .step-red{
		padding-right: 0;
		padding-left: 0;
	}
}
@media all and (min-width: 768px) and (max-width: 1200px) {
	.step-red{
		font-size: 24px;
	}
	.step-red-small{
		font-size: 19px;
	}
	.step-after-box p{
		font-size: 20px;
		line-height: 25px;
		z-index: 100;
	}
}
@media all and (min-width: 768px) and (max-width: 991px) {
	.btn-tel{
		height: 73px;
	}
	.btn-inner{
	  padding-top: 12px;
	  padding-right: 20px;
	}
	.bottom-number{
		font-size: 28px;
		margin-top: -15px;
		position: relative;
	}
	.bottom-number::before{
	  left: -100px;
	}
	.btn-mail{
		height: 73px;
	}
	.btn-inner2{
	  padding-top: 17px;
	}
	.to-mailform{
		font-size: 28px;
		margin-right: -70px;
	}
}
@media screen and (max-width: 1200px) {
	.fv-biggest{
		font-size: 55px;
	}
	.fv-bigger{
		font-size: 43px;
	}
	.fv-big{
		font-size: 35px;
	}
	.fv-big-sub{
		font-size: 27px;
	}
	.point-big{
		font-size: 30px;
	}
	.point-normal{
		font-size: 18px;
	}
}

@media screen and (max-width: 990px) {
	.accordion-box label:before {
	   left: 35%;
	}
	.passin_2 img{
		width: 250px;
		height: auto;
	}
	.passin_ishikawa2 img{
		width: 220px;
		height: auto;
	}
	.name{
		font-size: 15px;
	}
	.step0-box{
		font-size: 17px;
		line-height: 25px;
		letter-spacing: 0em;
		padding-top: 16px;
	}
	.fv-biggest{
		font-size: 40px;
	}
	.fv-bigger{
		font-size: 35px;
	}
	.fv-big{
		font-size: 30px;
	}
	.fv-big-sub{
		font-size: 23px;
	}
	.fv-comment{
		font-size: 20px;
	}
	.point-big{
		font-size: 20px;
	}
	.point-normal{
		font-size: 18px;
	}
	.autumn-balloon{
		font-size: 25px;
	}
	.from-now-box{
		margin-top: 15px;
		margin-left: 150px;
	}
	.plan-big{
		font-size: 30px;
	}
	.plan-small{
		font-size: 22px;
	}
}

@media screen and (max-width: 768px) {
	.entry-header{
		height: 90px !important;
	}
	.headimg{
		box-sizing: border-box;
		width: 100%;
		height: auto;
		display: flex !important;
		flex-direction: row;
 		justify-content: center;
		margin-bottom: -20px;

	}
	.headimg img{
		margin-top: 20px !important;
		margin-bottom: -10px;
		padding: 0 5px !important;
		width: 50%;
		height: auto;
	}
	.strength-head{
		height: 350px !important;
	}
	.subject{
		font-size: 35px;
		padding-top: 15px;
		float: none;
		text-align: center;
		width: 65%;
	}

	.outer{
		width: 100%;
	}
	.imgouter img{
		max-width: 140px;
		max-height: auto;
		padding: 20px 0 0 10px;
		width: 78%;
	}
	.name{
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: 19px;
		text-align: center !important;
		float: none;
		width: 65%;
	}

	.intro{
		margin: 20px 0 0 0;
	}

	.introp{
		float: right;
		width: 100%;
		padding-top: 10px;
		padding-left: 20px;
	}

	.accordion-box label:before {
	    left: 30%;
	}
	.arc{
		display: none;
	}
	.bgcolor{
		display: block;
		position: absolute;
		top:0;
		margin: 0 auto;
		z-index: -3;
		background-color: #00BFDF;
		width: 100vw;
		height: 50vh;
	}
	.site-info-img{
		padding: 40px 0 10px 0;
	}
	.site-info img{
		padding: 0;
	}
	.size38{
		font-size: 25px !important;
	}
	.size4451{
		font-size: 30px !important;
	}
	.free_cons{
		width: 60px;
		top: 25%;
		height: auto;
	}
	.planwrap img{
		margin-left: -5%;
	}

	.worrywrap{
		padding-bottom: 135px;
   		background-size: 300px auto;
	}

	.pass_sp{
		display: flex;
		flex-direction: column;
		justify-content: center;
		font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
		font-size: 26px;
		font-weight: bold;
		color: #0083CF;
		line-height: 31px;
		margin-top: 20px;
}
	.passin_1_sp{
		background-color: rgba( 255, 255, 255, 0.6 );
		width: 402px;
		height: 316px;
		border: solid 4px #0083CF;
		border-radius: 5px;
	    -webkit-border-radius: 5px;
	    -moz-border-radius: 5px;
		margin: 0 auto 20px auto;
	}
	.passin_p_sp {
		padding: 10px 0 15px 0 !important;
		letter-spacing:-2px;
	}
	.passin_1_sp img{
		width: 65%;
		height: auto;
	}
	.passin_2_sp{
		background-color: rgba( 255, 255, 255, 0.6 );
		width: 402px;
		height: 316px;
		border: solid 4px #0083CF;
		border-radius: 5px;
	    -webkit-border-radius: 5px;
	    -moz-border-radius: 5px;
	    margin: 0 auto;
	}
	.passin_p_sp {
		padding: 10px 0 15px 0 !important;
	}
	.passin_2_sp img{
		width: 80%;
		height: auto;
	}
	.passin_girl_sp{
		width: 90%;
		margin: 0 auto;
	}
	.passin_ishikawa1_sp img{
		width: 40%;
		height: auto;
	}
	.passin_ishikawa2_sp img{
		width: 70%;
		height: auto;
	}
	.formbtn{
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 15px 20px;
	}
	.formbtn img{
		margin: 5px;
		width: 95%;
		height: auto;
	}
	.size33{
		font-size: 25px;
	}
	.size48{
		font-size: 30px;
	}
	.app_pc{
		display: none;
	}
	.app_sp{
		display: inline-block;
		font-size: 20px !important;
		padding-top: 10px;
	}
	.imgpc{
		display: none;
	}

	.imgsp{
		display: block;
		width: 97%;
		margin: 0 auto;
	}
	.free_cons2{
		display:block;
		position: fixed;
		bottom: 0;
		text-align: center;
		width: 100%;
		z-index: 300;
	}

	.free_cons2 img{
		display: inline-block;
		width: 80%;
	}
	.free_cons2:hover{
		opacity: 0.8;
		filter: alpha(opacity=80);
		-moz-opacity:0.8;
	}

	.free_cons{
		display: none;
	}
	.fv-comment{
		font-size: 18px;
	}
	.sp-br{
		display: block;
	}
	.fv-biggest{
		font-size: 33px;
	}
	.fv-bigger{
		font-size: 30px;
	}
	.fv-big{
		font-size: 28px;
		line-height: 30px;
	}
	.step0-box{
		max-width: 330px;
	}
	.autumn-balloon{
		font-size: 20px;
	}
	.step-img-box{
		width: 75%;
	}
	.step-img-box-small{
		width: 50%;
	}
	.campaign{
		border: 1px solid #000000;
	}
	.campaign tr {
    display:block;
    border: none;
  }
  .campaign th {
    display:block;
    width: 100%;
    border-right: none;
  	border-left: none;
  }
  .campaign th.first-th{
  	border-top: none;
  }
  .campaign td {
    display: list-item;
    list-style-type: none;
    width: 90%;
    border:none;
    margin : 0 auto;
  }
  .btn-tel{
  	margin-right: auto;
  	margin-bottom: 15px;
  }
  .btn-mail{
		margin: 0 auto;
	}
	.to-mailform{
		margin-right: -60px;
	}
	.black2-1{
		font-size: 18px;
	}
	.black2-2{
		font-size: 30px;
	}
	.black-big{
		font-size: 40px;
	}
	.from-now-wrap{
		min-height: 200px;
	}
	.from-now-box{
		margin-top: 24px;
		margin-left: 150px;
	}
	.from-now-box::before {
    bottom: -78px;
    left: -220px;
	}

}
@media screen and (max-width: 600px) {
	.from-now{
		font-size: 18px;
	}
	.plan-big{
		font-size: 20px;
	}
	.plan-small {
    font-size: 18px;
	}
	.from-now-box{
		margin-top: 45px;
	}
}
@media screen and (max-width: 530px) {

	.strength-head{
		height: 220px !important;
	}
/*	.accordion-container{
		flex-direction: column;
		align-items: center;
	}*/
	.accordion-box label:before {
	    left: 20%;
	}
	.bgcolor{
		height: 30vh;
	}
	.name{
		font-size: 14px;
	}
	.fv-biggest{
		font-size: 30px;
	}
	.fv-bigger{
		font-size: 27px;
	}
	.fv-big{
		font-size: 25px;
	}
	.fv-point-1{
		padding-right: 150px;
	}
	.fv-point-3{
		padding-left: 70px;
	}

	.btn-tel{
		height: 73px;
	}
	.btn-inner{
	  padding-top: 10px;
	  padding-right: 15%;
	}
	.bottom-number{
		font-size: 36px;
	}
	.btn-mail{
		height: 73px;
	}
	.btn-inner2{
		padding-top: 17px;
	}
	.to-mailform{
		font-size: 25px;
	}
	.to-mailform::before {
    bottom: 0;
	}
}
@media screen and (max-width: 450px) {
	.btn-inner{
	  padding-top: 12px;
	  padding-right: 10%;
	}
	.top-number{
		font-size: 15px;
	}
	.bottom-number{
		font-size: 33px;
	}

	.black2-2{
		font-size: 25px;
	}
	.black-big{
		font-size: 30px;
	}
	.from-now-box{
		margin-left: 50px;
	}
}
@media screen and (max-width: 402px) {
	.pass_sp{
		font-size: 20px;
	}
	.passin_1_sp{
		width: 100%;
		height: 280px;
	}
	.passin_2_sp{
		width: 100%;
		height: 280px;
	}
	.subject{
		font-size: 27px;
	}
	.hurigana{
		font-size: 12px;
	}
	.fv-biggest{
		font-size: 30px;
	}
	.fv-bigger{
		font-size: 20px;
	}
	.fv-big{
		font-size: 18px;
	}
	.fv-big-sub{
		font-size: 16px;
	}
	.point-big{
		font-size: 18px;
	}
	.point-normal{
		font-size: 15px;
	}
	.fv-point-1{
		padding-right: 120px;
	}
	.fv-point-3{
		padding-left: 50px;
	}
	.fv-comment{
		font-size: 16px;
	}
	.btn-inner{
	  padding-right: 10%;
	}
	.bottom-number{
		font-size: 30px;
	}
	.step-after-img {
    width: 80%;
	}
	.from-now-box{
		margin-right: auto;
		margin-left: auto;
	}

	.from-now-box::before{
		background: none;
	}
}
@media all and (-ms-high-contrast: none)and (max-width: 402px) {
	  .from-now-box{
			margin-right: 50px;
			margin-left: 50px;
		}
	}
@media screen and (max-width: 360px) {
	.size48{
		font-size: 25px;
	}
	.hurigana{
		font-size: 10px;
	}
	.step0-box{
		font-size: 15px;
	}
	.bottom-number::before {
    left: -50px;
    width: 40px;
    bottom: 5px;
	}

}
