@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, 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, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	border: none;
	background: initial;
	box-sizing: border-box;
}


/* スクロールアニメーション */
.fadeinUp {
	opacity : 0;
	transform : translate(0, 30px);
	transition : all 0.8s;
}
.fadeinUp2 {
	opacity : 0;
	transform : translate(0, 60px);
	transition : all 0.3s;
}
.fadeinUp3 {
	opacity : 0;
	transform : translate(0, 160px);
	transition : all 0.3s;
}

.fadeinUp.scrollin,
.fadeinUp2.scrollin,
.fadeinUp3.scrollin,
.fadeinLeft.scrollin,
.fadeinRight.scrollin{
	opacity : 1;
	transform : translate(0, 0);
}
.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 3.5s;
	animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
	from {
		transform: scale(0.4);
	}
	to {
		transform: scale(1);
	}
}

/* 遅延 */
.delay1 {transition-delay: 0.4s;}
.delay2 {transition-delay: 0.8s;}
.delay3 {transition-delay: 1.2s;}
.delay4 {transition-delay: 1.6s;}
.delay5 {transition-delay: 3.6s;}

/* テキストカラー
------------------------------------------------------------------------------ */
.txc01 {color: #eb6112; }
.txc02 {color: #e73c64; }
.txc03 {color: #84be3f; }
.txc04 {color: #05a5d2 }

.Barlow {
	font-family: 'Barlow Condensed', sans-serif;
}

/* common
------------------------------------------------------------------------------ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html,body {
	overflow-x: hidden;
}
body,
#wrapper{
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}
body {
	margin: 0;
	padding: 0;
	color: #282832;
	font-family:'Noto Sans JP', sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}
img,
svg {
	max-width: 100%;
	height: auto;
	transition: 0.5s;
}
a {
	color: #282832;
}
a:hover {
	text-decoration: none;
	opacity: 0.7;
}
a, a:hover, a:hover img {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	text-decoration: none;
}
.txt {
	color: #3c65c9;
	text-decoration: underline;
}
.txt:hover {
	text-decoration: none;
	opacity: 0.7;
}

@media screen and  (min-width : 500px) {
.pcno {
	display: none;
}
}
@media screen and (max-width: 500px) {
	.spno {
		display: none;
	}
}
@media screen and (min-width:500px) and (max-width: 1150px) {
	.tbno {
		display: none;
	}
}

/* header
------------------------------------------------------------------------------ */
header {
	position: fixed;
    width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
}
header .inner {
	height: 95px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 35px;
	background-color: #fff;
	border-bottom: #ea6011 solid 6px;
}
header .inner .logobox {
	position: relative;
}
header .inner .logobox img {
	width: 340px;
}
header .inner .logobox h1,
header .inner .logobox .logo{
	margin: 0;
	padding: 0;
}
header .inner .logobox p {
	font-size: 10px;
	position: absolute;
	left: 105px;
	top: 14px;
	white-space: nowrap;
}
/*
@media screen and (max-width: 1024px) {
	header .inner {
		height: 65px;
		padding: 0 10px;
		border-bottom: #ea6011 solid 3px;
	}
}
*/
@media screen and (max-width: 1024px) {
	header .inner {
		height: 55px;
		padding: 0 10px;
		border-bottom: #ea6011 solid 3px;
	}
	header .inner .logobox {
		width: auto;
		padding-top: 2px;
	}
	header .inner .logobox img {
		width: 270px;
		margin-left: -3px;
	}
	
}
@media screen and (max-width: 1280px) {
	header .inner .logobox p {
		position: initial;
		font-size: 10px;
		/*transform: scale(0.8);
		transform-origin: left;*/
		padding-top: 3px;
	}
}

header .inner ul {
	display: flex;
}
header .inner ul li {
	margin-left: 22px;
}
header .inner ul li a {
	font-size: 14px;
	color: #282832;
	font-weight: 600;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: inherit;
}
header .inner ul li:last-child a {
	color: #fff;
	background: rgb(252,154,0);
	background: linear-gradient(180deg, rgba(252,154,0,1) 0%, rgba(228,1,55,1) 100%);
	width: 140px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
}
@media screen and (min-width:1326px) and (max-width:1367px){
	header .inner ul li a {
		font-size: 13px;
	}
	header .inner .logobox img {
		width: 300px;
	}
	header .inner .logobox p {
		left: 90px;
	}
	header .inner ul li:last-child a {
		width: 120px;
	}
}
@media screen and (min-width:1024px) and (max-width:1326px){
	header .inner ul li a {
		font-size: 12px;
	}
	header .inner .logobox img {
		width: 280px;
	}
	header .inner .logobox p {
		left: 84px;
	}
	header .inner ul li:last-child a {
		width: 120px;
	}
}
header .inner ul li:last-child a:hover {
	opacity: 0.7;
}
header .inner ul li {
	display: inline-block;
	text-decoration: none;
}
header .inner ul li:nth-of-type(-n+7) a {
	position: relative;
}
header .inner ul li:nth-of-type(-n+7) a::after {
	position: absolute;
	bottom: 0px;
	left: 0;
	display: block;
	content: "";
	width: 100%;
	height: 3px;
	background: #ea6011;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s ease;
}
#school header .inner ul li:nth-of-type(1) a::after,
#course header .inner ul li:nth-of-type(2) a::after,
#flow header .inner ul li:nth-of-type(3) a::after,
#faq header .inner ul li:nth-of-type(4) a::after,
#movie header .inner ul li:nth-of-type(5) a::after,
#voice header .inner ul li:nth-of-type(6) a::after,
#graduates header .inner ul li:nth-of-type(7) a::after,
header .inner ul li:nth-of-type(-n+7) a:hover {
	transform: scale(1, 1);
}
header .inner ul li:nth-of-type(-n+7) a:hover::after {
	transform: scale(1, 1);
}

@media only screen and (max-width: 1024px) {
	header .inner ul {
		display: none;
	}
}

/* ハンバーガーメニューボタン
------------------------------------------------------------------------------ */
header #gnav-btn{
	display: none;
}
/*@media screen and (max-width: 768px) {*/
@media screen and (max-width: 1024px) {
	header #gnav-btn{
		position: absolute;
		height: 52px;
		width: 52px;
		top: 0px;
		right: 0px;
		background-color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		/*border: #939393 solid 1px;*/
		/*border-radius: 50vh;*/
		z-index: 1100;
	}
}
header #gnav-btn span{
	position: relative;
	width: 21px;
	height: 1px;
	background-color: #282832;
	transition: all .2s
}
header #gnav-btn span::before{ /* 下 */
	content: "";
	display: block;
	position: relative;
	width: 21px;
	height: 1px;
	background-color: #282832;
	top: 8px;
	left: 0;
	transition: all .2s
}
header #gnav-btn span::after{ /* 上 */
	content: "";
	display: block;
	position: relative;
	width: 21px;
	height: 1px;
	background-color: #282832;
	top: -10px;
	left: 0;
	transition: all .2s
}
@media screen and (max-width: 1024px) {
	header #gnav-btn span{
		width: 25px;
	}
	header #gnav-btn span::before{
		width: 25px;
		top: 7px;
	}
	header #gnav-btn span::after{
		width: 25px;
		top: -8px;
	}
}

header #gnav-btn.open span{
	animation: nav_anim1 .7s forwards;
}
header #gnav-btn.open span::before{
	animation: nav_anim2 .7s forwards;
}
header #gnav-btn.open span::after{
	animation: nav_anim3 .7s forwards;
}

@keyframes nav_anim1{
	0%{
	background-color: #282828;
	}
	100%{
	background-color: rgba(255,255,255,0);
	}
}
@keyframes nav_anim2{
	0%{
		top: 16px;
		transform: rotate(0);
	}
	50%{
		top: 0;
		transform: rotate(0);
	}
	100%{
		transform: rotate(215deg);
		/* 線の太さを変える場合の位置調整 */
		top: 1px;
	}
}
@keyframes nav_anim3{
	0%{
		top: -16px;
		transform: rotate(0);
	}
	50%{
		top: 0;
		transform: rotate(0);
	}
	100%{
		transform: rotate(-215deg);
		top: 0;
	}
}

header #gnav-btn:hover{
    background-color: rgba(255,255,255,1.0);
}
header #gnav-btn:hover span{
	transform: scaleX(1.0);
}

/* ハンバーガーメニュー
------------------------------------------------------------------------------ */
header nav#allmenu{
	display: none;
}
@media screen and (min-width : 1024px) {
header nav#allmenu .menu-box,
header nav#allmenu .telbox,
header nav#allmenu .snslinks,
header nav#allmenu .logo {
	display: none;
}
}
@media screen and (max-width: 1024px) {
	header nav#allmenu{
		position: absolute;
		z-index: 10;
		background-color: #f7f7f7;
		
		width: 100%;
		height: auto;
		height: 100vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	header nav#allmenu.open{
		opacity: 1;
		top: 55px;
	}
}
@media screen and (max-width: 1024px) {
	header nav#allmenu .menu-box {
		/*
		display: table;
		margin-left: auto;
		margin-right: auto;
		*/
		background-color: #f7f7f7;
		padding: 10px 0 10px 0;
	}
	header nav#allmenu .menu-box ul li {
		position: relative;
		text-align: center;
	}
	header nav#allmenu .menu-box ul li:before {
		content: "";
		display: inline-block;
		width: 6px;
		height: 2px;
		background-color: #eb6112;
		position: absolute;
		top: 50%;
		left: -12px;
	}
	header nav#allmenu .menu-box ul li a {
		padding: 10px 0 9px 0px;
		color: #282828;
		font-size: 15px;
		font-weight: 500;
		display: block;
	}
	header nav#allmenu .menu-box ul li a span {
		display: table;
		margin-right: auto;
		margin-left: 37%;
		position: relative;
	}
	header nav#allmenu .menu-box ul li a span:before {
		content: "";
		display: inline-block;
		width: 6px;
		height: 2px;
		background-color: #eb6112;
		position: absolute;
		top: 50%;
		left: -13px;
	}
	header nav#allmenu .btn {
		margin-top: 0px;
	}
	header nav#allmenu .btn a {
		color: #fff;
		background: rgb(252,154,0);
		background: linear-gradient(180deg, rgba(252,154,0,1) 0%, rgba(228,1,55,1) 100%);
		width: 60%;
		height: 34px;
		margin-left: auto;
		margin-right: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 6px;
		font-size: 15px;
		line-height: 100%;
		font-weight: 500;
	}
	header nav#allmenu .telbox {
		padding-top: 15px;
		display: table;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		font-size: 14px;
	}
	header nav#allmenu .telbox .secretariat {
		font-size: 14px;
		font-weight: 400;
		line-height: 1.4em;
		padding-bottom: 6px;
	}
	header nav#allmenu .telbox .telno span {
		font-size: 26px;
		font-weight: 900;
		font-family: 'Barlow Condensed', sans-serif;
		letter-spacing: 0.05em;
		position: relative;
		margin-left: 20px;
	}
	header nav#allmenu .telbox .telno span a {
		color: #282832;
	}
	header nav#allmenu .telbox .telno span::before {
		content: "";
		display: inline-block;
		width: 18px;
		height: 18px;
		background: url("../images/icn_tel.svg") no-repeat;
		background-size: contain;
		position: absolute;
		top: 25%;
		left: -24px;
	}
	header nav#allmenu .telbox .time {
		font-size: 13px;
		font-weight: 400;
		line-height: 1.4em;
		padding-top: 4px;
	}
	header nav#allmenu .telbox .mail {
		font-size: 13px;
		font-weight: 400;
		line-height: 1.4em;
		padding-top: 8px;
	}
}



/* コンテンツ
------------------------------------------------------------------------------ */
main {
	font-size: 15px;
	line-height: 1.8em;
	font-weight: 400;
	font-feature-settings: "palt";
	letter-spacing: 0.06em;
	margin-top: 95px;
}
.block-wrap {
	padding-left: 40px;
	padding-right: 40px;
}
/* 斜線 */
 .bg-diagonal-line {
	background-size: auto auto;
	background-color: rgba(255, 255, 255, 1);
	background-image: repeating-linear-gradient(145deg, transparent, transparent 2px, rgba(247, 247, 247, 1) 2px, rgba(247, 247, 247, 1) 4px );
}
 .bg-diagonal-line2 {
	background-size: auto auto;
	background-color: rgba(255, 255, 255, 1);
	background-image: repeating-linear-gradient(145deg, transparent, transparent 2px, rgba(240, 240, 240, 1) 2px, rgba(240, 240, 240, 1) 4px );
}
@media screen and (max-width: 768px) {
	main {
		font-size: 15px;
		line-height: 1.6em;
		margin-top: 55px;
	}
	.block-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.titlebox {
	padding-top: 65px;
	padding-bottom: 60px;
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 85%);
}
.titlebox h1 {
	font-size: 40px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-align: center;
}
.titlebox .eng {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-align: center;
	padding-top: 15px;
	font-family: 'Barlow Condensed', sans-serif;
}
h2.mds {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	position: relative;
	margin-top: 80px;
	margin-bottom: 60px;
}
h2.mds::after {
	content: '';
	width: 70px;
	height: 4px;
	display: inline-block;
	background-color: #eb6112;
	position: absolute;
	bottom: -20px;
	left: calc(50% - 35px);
}
@media screen and (max-width: 768px) {
	.titlebox {
		padding-top: 25px;
		padding-bottom: 30px;
	}
	.titlebox h1 {
		font-size: 26px;
		font-weight: 900;
		line-height: 1.1em;
	}
	.titlebox .eng {
		font-size: 14px;
		padding-top: 5px;
	}
	h2.mds {
		font-size: 22px;
		font-weight: 700;
		text-align: center;
		position: relative;
		margin-top: 50px;
		margin-bottom: 50px;
	}
	h2.mds::after {
		height: 3px;
	}
}


/* SNS 
------------------------------------------------------------------------------ */
.sns-wrap-underlayer {
	background-color:  #85c6ef;
	padding: 20px 40px;
	display: flex;
	justify-content: center;
	margin-top: 100px;
}
.sns-wrap-underlayer h2 {
	font-size: 34px;
	font-weight: 900;
	letter-spacing: 0.1em;
	font-family: 'Barlow Condensed', sans-serif;
	color: #fff;
	padding-right: 25px;
}
.sns-wrap-underlayer p {
	color: #fff;
	font-size: 14px;
	padding-top: 15px;
	padding-right: 35px;
}
.sns-wrap-underlayer ul {
	max-width: 300px;
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sns-wrap-underlayer ul li {
	width: 35px;
}
.sns-wrap-underlayer ul li:nth-of-type(3) {
	width: 30px;
}
@media only screen and (max-width: 768px) {
	.sns-wrap-underlayer {
		display: block;
		padding: 10px 30px 10px 30px;
		margin-top: 50px;
	}
	.sns-wrap-underlayer h2 {
		font-size: 20px;
		text-align: center;
		padding-right: 0;
	}
	.sns-wrap-underlayer p {
		padding-top: 5px;
		font-size: 12px;
		text-align: center;
		padding-right: 0;
	}
	.sns-wrap-underlayer ul {
		width: 70%;
		max-width: 210px;
		margin: 0 auto;
		padding-top: 10px;
	}
	.sns-wrap-underlayer ul li {
		width: 25px;
	}
}

/* footer
------------------------------------------------------------------------------ */
footer {
	background-color: #eee;
	padding: 40px 40px 50px 40px;
}
footer .inner {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 20px 20px 30px 20px;
	}
	footer .inner {
		display: block;
		padding-bottom: 20px;
	}
}
footer .inner .logos {
	max-width: 340px;
}
footer .inner .logos h3 img {
	width: 100%;
}
footer .inner .logos p {
	font-size: 12px;
	padding-top: 8px;
}
@media screen and (max-width: 768px) {
	footer .inner .logos {
		width: auto;
		margin-left: auto;
		margin-right: auto;
	}
	footer .inner .logos h3 {
		text-align: center;
	}
	footer .inner .logos h3 img {
		width: 240px;
		text-align: center;
	}
	footer .inner .logos p {
		font-size: 12px;
		padding-top: 8px;
		text-align: center;
	}
}
footer .inner .telbox {
	padding-right: 20px;
}
footer .inner .telbox .secretariat {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	padding-bottom: 10px;
}
footer .inner .telbox .telno span {
	font-size: 38px;
	font-weight: 900;
	font-family: 'Barlow Condensed', sans-serif;
	letter-spacing: 0.05em;
	position: relative;
	margin-left: 40px;
}
footer .inner .telno span::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url("../images/icn_tel.svg") no-repeat;
	background-size: contain;
	position: absolute;
    top: 23%;
	left: -44px;
}
footer .inner .telbox .time {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4em;
	padding-top: 4px;
	padding-left: 42px;
}
footer .inner .telbox .mail {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4em;
	padding-top: 8px;
}
@media screen and (max-width: 768px) {
	footer .inner .telbox {
		padding-right: 0px;
	}
	footer .inner .telbox .secretariat {
		font-size: 13px;
		font-weight: 500;
		text-align: center;
		padding-top: 8px;
	}
	footer .inner .telbox .telno {
		text-align: center;
		padding-right: 10px;
	}
	footer .inner .telbox .telno span {
		font-size: 26px;
	}
	footer .inner .telbox .telno span a {
		color: #282832;
	}
	footer .inner .telno span::before {
		width: 18px;
		height: 18px;
		left: -22px;
	}
	footer .inner .telbox .time {
		padding-left: 0;
		padding-top: 8px;
		text-align: center;
	}
	footer .inner .telbox .mail {
		text-align: center;
	}
}

footer .inner .btnbox {
	min-width: 170px;
}
footer .inner .btnbox li {
	margin-bottom: 9px;
}
footer .inner .btnbox li a {
	background-color: #fff;
	border: #282828 solid 1px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50vh;
	font-size: 14px;
	color: #282828;
}
@media screen and (max-width: 768px) {
	footer .inner .btnbox {
		min-width: inherit;
		width: 70%;
		margin-left: auto;
		margin-right: auto;
		padding-top: 15px;
	}
	footer .inner .btnbox li a {
		height: 32px;
		font-size: 13px;
	}
}

footer .copy {
	font-size: 12px;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 768px) {
	footer .copy {
		font-size: 11px;
	}
}

/* pagetop
------------------------------------------------------------------------------ */
#pagetop {
	position: fixed;
	/*bottom: 230px;*/
	bottom: 120px;
	right: 30px;
	z-index: 100;
}
#pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	background-image: url("../../images/icn_san_w.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 23px auto;
	background-color: rgba(235,97,18,1);
	text-indent: -9999px;
	border-radius: 50vh;
	transform: rotateZ(270deg);
}
#pagetop a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 768px) {
	#pagetop {
		bottom: 60px;
		right: 10px;
	}
	#pagetop a {
		width: 30px;
		height: 30px;
		background-position: center;
		background-size: 15px auto;
	}
}

/* 追従
------------------------------------------------------------------------------ */
#footbtn {
	display: none;
	position: fixed;
	bottom: 0;
	z-index: 10;
	width: 100%;
	padding: 14px 40px;
	background-color: rgba(0,0,0,0.5);
}
@media screen and (max-width: 768px) {
	#footbtn {
		padding: 0 !important;
	}
}
footer {
	margin-bottom: 87px;
}
#footbtn .btn-yoyaku {
	width: 90%;
	max-width: 950px;
	height: 60px;
	padding-bottom: 3px;
	margin-left: auto;
	margin-right: auto;
	background: rgb(252,154,0);
	background: linear-gradient(180deg, rgba(252,154,0,1) 0%, rgba(228,1,55,1) 100%);
	border-radius: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
	footer {
		margin-bottom: 55px;
	}
	#footbtn .btn-yoyaku {
		width: 100%;
		height: 55px;
		padding-top: 4px;
		padding-bottom: 5px;
		border-radius: 0;
		display: block;
	}
}
#footbtn .btn-yoyaku .season {
	color: #fff;
	font-size: 16px;
	padding-right: 8px;
}
#footbtn .btn-yoyaku .season span:nth-of-type(1) {
	font-size: 27px;
	font-weight: 700;
}
#footbtn .btn-yoyaku .lesson {
	color: #f4e621;
	font-size: 24px;
	font-weight: 900;
	padding-bottom: 8px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
	padding-right: 10px;
}
#footbtn .btn-yoyaku .copy {
	color: #e40137;
	font-size: 14px;
	background-color: #fff;
	border-radius: 4px;
	padding: 4px 10px 5px 10px;
	line-height: 100%;
	top: 3px;
	position: relative;
	display: inline-table;
}
@media screen and (max-width: 768px) {
	#footbtn .btn-yoyaku .season {
		font-size: 13px;
		padding-right: 4px;
	}
	#footbtn .btn-yoyaku .season span:nth-of-type(1) {
		font-size: 18px;
	}
	#footbtn .btn-yoyaku .season span:nth-of-type(2) {
		font-size: 10px;
		font-weight: 400;
	}
	#footbtn .btn-yoyaku p:nth-of-type(1) {
		text-align: center;
	}
	#footbtn .btn-yoyaku .lesson {
		font-size: 16px;
		padding-right: 0;
	}
	#footbtn .btn-yoyaku .copy {
		font-size: 13px;
		display: table;
		margin-left: auto;
		margin-right: auto;
		margin-top: 6px;
		position: static;
		padding: 2px 10px 3px 10px;
	}
	#footbtn .btn-yoyaku .tomail {
		font-size: 12px;
	}
}

