/*
Theme Name: hems
*/

/*------------------------------------------
 *	Reset:サイト共通
------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,header,hgroup,footer,menu,nav,section,summary,time,mark,audio,video {
	font-size: 100%;
	vertical-align: baseline;
	margin: 0; 
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
}

body {
	line-height: 1;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

nav,ul,ol {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: "";
	content: none;
}

a {
	font-size: 100%;
	vertical-align: baseline;
	text-decoration: none;
	margin: 0;
	padding: 0;
	background: transparent;
	outline: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	border: 0;
	vertical-align: top;
}

input,select,textarea {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

/*------------------------------------------
 *	html
------------------------------------------*/
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-size: 1.6rem;
	font-family: "Noto Sans JP", "游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Verdana,"ＭＳ Ｐゴシック",sans-serif;
	color: #333;
	position: relative;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

/*------------------------------------------
 *	ヘッダー
------------------------------------------*/
.is-show-menu {
	overflow: hidden;
}

.header-global {
	border-top: 4px solid #BC1232;
}

.header-global .header-inner {
	padding: 16px 40px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1320px;
	margin: 0 auto;
}

.header-global .logo-area a {
	display: flex;
	align-items: center;
	gap: 0 25px;
}

.header-global .logo img {
	width: 85px;
	height: auto;
}

.header-global h1 {
	font-size: 6.6rem;
	color: #BC1232;
	font-weight: bold;
}

.header-global .logo-area p {
	font-size: 6.6rem;
	color: #BC1232;
	font-weight: bold;
}

.header-global .header-link {
	display: flex;
	gap: 0 20px;
	max-width: 380px;
	width: 100%;
	justify-content: flex-end;
}

.header-link .btn-en {
	max-width: 112px;
	width: 100%;
}

.header-link .btn-en a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 48px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	color: #BC1232;
	border-radius: 12px;
	border: 3px solid #BC1232;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
	transition: opacity ease .5s;
	box-sizing: border-box;
}

.header-link .btn-en a:hover {
	opacity: .5;
}

.header-link .btn-contact {
	max-width: 168px;
	width: 100%;
}

.header-link .btn-contact a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 48px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	color: #F7FF00;
	border-radius: 12px;
	background: #BC1232;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
	transition: opacity ease .5s;
	box-sizing: border-box;
}

.header-link .btn-contact a:hover {
	opacity: .7;
}

.header-global .menu-mobile-btn {
	display: block;
	width: 48px;
	height: 48px;
	position: relative;
	cursor: pointer;
	background: #BC1232;
	border-radius: 12px;
	margin: 0 0 0 10px;
}

.header-global .menu-mobile-btn .menu-btn {
	width: 26px;
	height: 16px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.header-global .menu-mobile-btn .line {
	display: block;
	width: 100%;
	height: 4px;
	background: #FFF;
	position: absolute;
	transition: transform .1s linear;
	border-radius: 10px;
}

.menu-mobile-btn .line:first-child {
	top: 0;
}

.menu-mobile-btn .line:nth-child(2) {
	opacity: 1;
	top: 12px;
}

.is-show-menu .menu-mobile-btn .menu-btn .line {
	transition: transform .1s linear;
}

.is-show-menu .menu-mobile-btn .line:first-child {
	top: -3px;
	transform: translateY(10px) rotate(45deg);
}

.is-show-menu .menu-mobile-btn .line:nth-child(2) {
	top: 24px;
	transform: translateY(-17px) rotate(-45deg);
}

.nav-global-wrapper {
	overflow: hidden;
	position: fixed;
	top: 135px;
	right: -100%;
	width: 100%;
	height: calc(100vh - 135px);
	transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	background-color: #E86F67;
	z-index: 9999;
}

.is-show-menu .header-global .nav-global-wrapper {
	right: 0;
}

.nav-global-inner {
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	position: absolute;
	left: 50%;
	top: 40px;
	max-height: 100vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 16px 0 80px;
	transform: translateX(-50%);
}

.nav-global {
	padding: 20px 40px 40px;
	border-radius: 6px;
	border: 4px solid #BC1232;
	background: #FFF;
	max-width: 1320px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
}

.nav-global ul {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(170px, 348px);
	grid-template-rows: repeat(5, 0fr);
	gap: 0 50px;
	justify-content: start;
}

.nav-global li {
	max-width: 348px;
}

.nav-global li a {
	display: block;
	color: #333;
	font-size: 1.8rem;
	transition: color ease .3s;
	display: block;
	padding: 18px 0;
	border-bottom: 1px solid #E4E4E4;
	font-weight: bold;
	line-height: 1.2;
}

.nav-global li .en {
	color: #E86F67;
	font-size: 1.4rem;
}

.nav-global li a:hover {
	color: #E86F67;
}

.header-global .btn-instagram {
	max-width: 450px;
	width: 100%;
	margin: 30px auto 0;
}

.header-global .btn-instagram a {
	box-sizing: border-box;
	border: 3px solid #BC1232;
	border-radius: 300px;
	text-align: center;
	padding: 12px 30px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
	color: #BC1232;
	font-size: 2rem;
	font-weight: bold;
	width: 100%;
	display: block;
	line-height: 1.2;
	background: #FFF;
}

.header-global .btn-instagram span {
	display: inline-block;
	padding: 10px 0 10px 72px;
	background: url(imgs/common/instagram.png) 0 center no-repeat;
	background-size: 40px auto;
	text-align: left;
}

/*------------------------------------------
 *	フッター
------------------------------------------*/
.footer-global {
	padding: 92px 0 0;
	background: url(imgs/common/bg_footer.png) center 0 repeat-x;
}

.footer-global .footer-inner {
	padding: 24px 40px;
	background: #BC1232;
}

.footer-global .school-name {
	text-align: center;
	font-size: 4rem;
	font-weight: bold;
	color: #FFF;
	margin: 0 0 16px;
}

.footer-global p {
	color: #E86F67;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}
/*------------------------------------------
 *	共通部分
------------------------------------------*/
/*ページTOPボタン*/
.back-top {
	max-width: 1320px;
	margin: 0 auto 40px;
	padding: 0 20px;
}

.back-top a {
	border-radius: 300px;
	background: #BC1232;
	width: 70px;
	height: 49px;
	font-size: 1.7rem;
	font-weight: bold;
	color: #FFF;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
	margin: 0 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*ページネーション*/
.wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	max-width: 500px;
	padding: 80px 0 0;
}

.wp-pagenavi a,
.wp-pagenavi .current {
	margin: 0 10px;
	font-size: 1.6rem;
	font-weight: bold;
	display: block;
	border: 1px solid #BC1232;
	color: #BC1232;
	background: #FFF;
	text-decoration: none;
	width: 2.5em;
	height: 2.5em;
	border-radius: 50%;
	transition: background-color 0.3s ease;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
	display: flex;
	justify-content: center;
	align-items: center;
}

.wp-pagenavi a:hover,
.wp-pagenavi .current {
	background: #FFF;
	color: #BC1232;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	font-size: 1.6rem;
	font-weight: bold;
	color: #FFF;
	background: #BC1232;
	text-decoration: none;
	width: 4.5em;
	height: 2.5em;
	border-radius: 30px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	position: absolute;
	top: 0;
	margin: 0;
}

.wp-pagenavi .previouspostslink {
	left: 0;
}

.wp-pagenavi .nextpostslink {
	right: 0;
}

/*------------------------------------------
 *	TOPページ
------------------------------------------*/
.main-view {
	position: relative;
	width: 100%;
	min-height: 706px;
	margin: 40px 0 60px;
}

.main-view .img {
	width: 75%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.main-view .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	position: absolute;
	top: 0;
	left: 0;
}

.main-view .inner {
	max-width: 1360px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	position: absolute;
	padding: 0 40px;
	left: 50%;
	top: -40px;
	align-items: flex-start;
	transform: translateX(-50%);
}

.main-view .copy {
	max-width: 610px;
	width: 100%;
	padding: 30px 30px 24px;
	border-radius: 16px;
	background: rgba(255,255,255, .9);
}

.main-view .copy .en {
	font-size: 5rem;
	color: #BC1232;
	line-height: 1.3;
	font-weight: bold;
	border-bottom: 1px solid #E86F67;
	margin: 0 0 15px;
	padding: 0 0 10px;
}

.main-view .copy .ja {
	font-size: 2.4rem;
	font-weight: bold;
	color: #BC1232;
	line-height: 1.1;
}

.main-view .open-txt {
	max-width: 354px;
	width: 100%;
	margin: 60px 0 0;
}

.main-view .open-txt .illust {
	max-width: 222px;
	width: 100%;
	margin: 0 auto;
}

.main-view .open-txt .info {
	padding: 36px 10px 30px;
	background: #BC1232;
	border-radius: 16px;
	position: relative;
	margin: -90px 0 0;
}

.main-view .open-txt .open-date {
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.2;
	color: #F7FF00;
	text-align: center;
	margin: 0 0 5px;
}

.main-view .open-txt .open-date-en {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
	color: #FFF;
	text-align: center;
	margin: 0 0 12px;
}

.main-view .open-txt .free-trial {
	max-width: 294px;
	width: 100%;
	margin: 0 auto 30px;
	background: #E86F67;
	padding: 18px 10px;
	text-align: center;
	border-radius: 6px;
	box-sizing: border-box;
	color: #FFF;
	line-height: 1.2;
	font-weight: bold;
	font-size: 2rem;
}

.main-view .open-txt .free-trial span {
	font-size: 1.6rem;
}

.main-view .btn-contact {
	max-width: 294px;
	width: 100%;
	margin: 0 auto;
}

.main-view .btn-contact a {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 20px 10px;
	text-align: center;
	background: #F7FF00;
	border-radius: 300px;
	color: #BC1232;
	font-size: 2rem;
	font-weight: bold;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .4);
	transition: opacity ease .5s;
}

.main-view .btn-contact a:hover {
	opacity: .7;
}

.sec-instagram {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto 80px;
	display: flex;
	align-items: flex-start;
}

.sec-instagram h2 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	width: 100%;
	max-width: 240px;
}

.sec-instagram h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.sec-instagram h2 span {
	display: inline-block;
	margin: 12px 0 0;
	font-size: 1.4rem;
}

.sec-instagram .instagram-gallery {
	max-width: 1040px;
	width: 100%;
	display: flex;
	gap: 0 1.25%;
}

.sec-instagram .instagram-gallery li {
	position: relative;
	width: calc(100%/4);
	height: 0;
	padding: 0 0 calc(100%/4 - 13px);
	overflow: hidden;
}

.sec-instagram .instagram-gallery li a {
	display: block;
	transition: opacity ease .5s;
}

.sec-instagram .instagram-gallery li a:hover {
	opacity: .7;
}

.sec-instagram .instagram-gallery li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	object-position: center center;
}

.sec-instagram .instagram-gallery svg {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 5px;
	top: 5px;
}

.sec-instagram .instagram-gallery path {
	fill: #fff;
}


.sec-news {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto 80px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.sec-news h2 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	width: 100%;
	max-width: 240px;
}

.sec-news h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.sec-news h2 span {
	display: inline-block;
	margin: 12px 0 0;
	font-size: 1.4rem;
}

.sec-news .list-news {
	max-width: 710px;
	width: 100%;
	margin: 24px 0 0;
}

.sec-news .list-news li {
	display: flex;
	gap: 0 20px;
	margin: 0 0 24px;
}

.sec-news .list-news .date {
	color: #BC1232;
	font-size: 1.8rem;
	line-height: 1.4;
	width: 6em;
	flex-shrink: 0;
	font-weight: bold;
}

.sec-news .list-news a {
	display: block;
	width: calc(100% - 6em);
	color: #333;
	text-decoration: underline;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.4;
	word-break: break-all;
}

.sec-news .btn-news {
	max-width: 240px;
	width: 100%;
	margin: 12px 0 0 auto;
}

.sec-news .btn-news a {
	display: block;
	padding: 12px 0;
	background: #BC1232;
	border-radius: 300px;
	color: #FFF;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	transition: opacity .3s ease;
}

.sec-news .btn-news a:hover {
	opacity: .7;
}

.sec-about {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto 80px;
	display: flex;
	gap: 0 6.25%;
}

.sec-about .about-contents {
	max-width: 600px;
	width: 100%;
}

.sec-about h2 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.sec-about h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.sec-about h2 span {
	display: inline-block;
	margin: 12px 0 0;
	font-size: 1.4rem;
}

.sec-about .about-contents p {
	font-size: 1.6rem;
	line-height: 1.4;
	margin: 24px 0 0;
	word-break: break-all;
}

.sec-program {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto 80px;
}

.sec-program h2 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.sec-program h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.sec-program h2 span {
	display: inline-block;
	margin: 12px 0 0;
	font-size: 1.4rem;
}

.sec-program .kinder,
.sec-program .elementary {
	margin: 0 0 30px;
}

.sec-program .ttl-area {
	display: flex;
	gap: 0 30px;
	width: 100%;
	padding: 20px 40px;
	border-radius: 16px 16px 0 0;
	align-items: center;
	box-sizing: border-box;
}

.sec-program .kinder .ttl-area {
	background: #DAE000;
}

.sec-program .elementary .ttl-area {
	background: #16CF7B;
}

.sec-program .program-en {
	display: flex;
	width: 80px;
	height: 80px;
	justify-content: center;
	align-items: center;
	color: #DAE000;
	font-weight: bold;
	font-size: 2.4rem;
	position: relative;
	background: #222;
}

.sec-program .program-en::after {
	content: "";
	display: block;
	width: 70px;
	height: 70px;
	background: transparent;
	border: 1px solid #DAE000;
	position: absolute;
	top: 5px;
	left: 5px;
	box-sizing: border-box;
}

.sec-program .elementary .program-en {
	color: #16CF7B;
}

.sec-program .elementary .program-en::after {
	border: 1px solid #16CF7B;
}

.sec-program h3 {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.2;
	color: #333;
}

.sec-program h3 span {
	font-size: 1.8rem;
}

.sec-program .program {
	padding: 30px 40px 60px;
	background: #FEFAF2;
	border-left: 4px solid #DAE000;
	border-right: 4px solid #DAE000;
	border-bottom: 4px solid #DAE000;
	border-radius: 0 0 16px 16px;
}

.sec-program .elementary .program {
	border-left: 4px solid #16CF7B;
	border-right: 4px solid #16CF7B;
	border-bottom: 4px solid #16CF7B;
}

.sec-program .program-info {
	display: flex;
	gap: 20px 32px;
	justify-content: space-between;
	margin: 0 0 30px;
}

@media (768px <= width <= 1000px) {
	.sec-program .program-info {
		flex-wrap: wrap;
	}
}

.sec-program .program-info .img {
	max-width: 600px;
	width: 100%;
}

@media (768px <= width <= 1000px) {
	.sec-program .program-info .img {
		max-width: inherit;
		width: 100%;
	}
}

.sec-program .program-info .txt {
	max-width: 560px;
	width: 100%;
	box-sizing: border-box;
	background: #FFF;
	border-radius: 6px;
	padding: 50px 0 50px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (768px <= width <= 1000px) {
	.sec-program .program-info .txt {
		max-width: inherit;
		width: 100%;
	}
}

.sec-program .program-info dl {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 50px 0;
}

.sec-program .program-info dt {
	width: 5em;
	font-size: 2.8rem;
	font-weight: bold;
	color: #BC1232;
	flex-shrink: 0;
}

.sec-program .program-info span {
	font-size: 2rem;
	vertical-align: middle;
	display: inline-block;
	margin: -4px 0 0 10px;
}

.sec-program .program-info dd {
	width: calc(100% - 5em);
	font-size: 2.8rem;
	font-weight: bold;
	color: #333;
}

.sec-program .program-detail {
	display: flex;
	gap: 30px 2.181208%;
	flex-wrap: wrap;
}

.sec-program .program-tbl {
	max-width: 380px;
	width: 100%;
}

.sec-program .program-tbl .program-en {
	width: 60px;
	height: 60px;
	font-size: 1.7rem;
}

.sec-program .program-tbl .program-en::after {
	width: 50px;
	height: 50px;
}

.sec-program .program-tbl h3 {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
}

.sec-program .program-tbl .ttl-area {
	display: flex;
	gap: 0 20px;
	width: 100%;
	padding: 20px;
	border-radius: 6px 6px 0 0;
	align-items: center;
	box-sizing: border-box;
}

.sec-program .advanced .ttl-area {
	background: #20AEE5;
}

.sec-program .advanced h3 {
	color: #FFF;
}

.sec-program .program-txt {
	padding: 24px 30px;
	background: #FFF;
	border-radius: 0 0 6px 6px;
}

.sec-program .kinder .program-txt {
	border-left: 1px solid #DAE000;
	border-right: 1px solid #DAE000;
	border-bottom: 1px solid #DAE000;
}

.sec-program .advanced .program-txt {
	border-left: 1px solid #20AEE5;
	border-right: 1px solid #20AEE5;
	border-bottom: 1px solid #20AEE5;
}

.sec-program .elementary .program-txt {
	border-left: 1px solid #16CF7B;
	border-right: 1px solid #16CF7B;
	border-bottom: 1px solid #16CF7B;
}

.sec-program .program-txt dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.6rem;
	font-weight: bold;
}

.sec-program .program-txt dt {
	width: 11em;
	padding: 14px 0;
	border-top: 1px solid #E4E4E4;
	font-size: 1.5rem;
	line-height: 1.2;
}

.sec-program .program-txt dd {
	width: calc(100% - 11em);
	padding: 14px 0;
	border-top: 1px solid #E4E4E4;
	line-height: 1.2;
	font-size: 1.5rem;
}

.sec-program .program-txt dt:nth-child(1) {
	border-top: none;
}

.sec-program .program-txt dd:nth-child(2) {
	border-top: none;
}

.sec-program .private {
	display: flex;
	gap: 0 4.6875%;
	align-items: center;
}

.sec-program .private-tbl {
	max-width: 820px;
	width: 100%;
}

.sec-program .private .ttl-area {
	background: #ccc;
}

.sec-program .private .program {
	padding: 16px 40px 30px;
	background: #FFF;
	border-left: 4px solid #ccc;
	border-right: 4px solid #ccc;
	border-bottom: 4px solid #ccc;
	border-radius: 0 0 16px 16px;
}

.sec-program .private dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.6rem;
	font-weight: bold;
}

.sec-program .private dt {
	width: 12em;
	padding: 14px 0;
	border-top: 1px solid #E4E4E4;
	font-size: 1.5rem;
	line-height: 1.2;
}

.sec-program .private dd {
	width: calc(100% - 12em);
	padding: 14px 0;
	border-top: 1px solid #E4E4E4;
	line-height: 1.2;
	font-size: 1.5rem;
}

.sec-program .private dt:nth-child(1) {
	border-top: none;
}

.sec-program .private dd:nth-child(2) {
	border-top: none;
}

.sec-program .private .img {
	max-width: 400px;
	width: 100%;
}

.sec-fee {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto 80px;
}

.sec-fee h2 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.sec-fee h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.sec-fee h2 span {
	display: inline-block;
	margin: 12px 0 0;
	font-size: 1.4rem;
}

.sec-fee .fee-inner {
	display: flex;
	gap: 0 2.0833333%;
	margin: 0 0 24px;
}

@media (768px <= width <= 1080px) {
	.sec-fee .fee-inner {
		flex-wrap: wrap;
		gap: 30px 2.0833333%;
	}
}

.sec-fee .trial,
.sec-fee .admission {
	max-width: 200px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

@media (768px <= width <= 1080px) {
	.sec-fee .trial,
	.sec-fee .admission {
		max-width: 400px;
	}
}

.sec-fee .basic,
.sec-fee .advanced {
	max-width: 400px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.sec-fee h3 {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	color: #FFF;
	padding: 20px 10px;
	border-radius: 6px 6px 0 0;
}

.sec-fee h3 span {
	font-size: 1.8rem;
}

.sec-fee .trial h3 {
	background: #FFABDA;
	color: #333;
}

.sec-fee .admission h3 {
	background: #9EE1C0;
	color: #333;
}

.sec-fee .basic h3 {
	background: #ED6C00;
}

.sec-fee .advanced h3 {
	background: #20AEE5;
}

.sec-fee .other h3 {
	background: #B748AB;
}

.sec-fee .fee {
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 6px 6px;
	flex-grow: 1;
}

@media (768px <= width <= 1080px) {
	.sec-fee .fee {
		padding: 10px 10px;
	}
}

.sec-fee .trial .fee {
	border-left: 4px solid #FFABDA;
	border-right: 4px solid #FFABDA;
	border-bottom: 4px solid #FFABDA;
}

.sec-fee .admission .fee {
	border-left: 4px solid #9EE1C0;
	border-right: 4px solid #9EE1C0;
	border-bottom: 4px solid #9EE1C0;
}

.sec-fee .basic .fee {
	border-left: 4px solid #ED6C00;
	border-right: 4px solid #ED6C00;
	border-bottom: 4px solid #ED6C00;
}

.sec-fee .advanced .fee {
	border-left: 4px solid #20AEE5;
	border-right: 4px solid #20AEE5;
	border-bottom: 4px solid #20AEE5;
}

.sec-fee .fee p {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

.sec-fee .fee span {
	font-size: 1.6rem;
}

.sec-fee .fee dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 14px 14px 10px;
}

.sec-fee .fee dt {
	width: 4em;
	padding: 16px 0;
	border-top: 1px solid #E4E4E4;
}

.sec-fee .fee dd {
	width: calc(100% - 4em);
	text-align: right;
	padding: 16px 0;
	border-top: 1px solid #E4E4E4;
}

.sec-fee .fee dt:nth-child(1) {
	border-top: none;
}

.sec-fee .fee dd:nth-child(2) {
	border-top: none;
}

.sec-fee .note {
	font-size: 1.6rem;
	line-height: 1.4;
	margin: 16px 0 0;
}

.sec-fee .other {
	margin: 35px 0 24px;
}

.sec-fee .fee-area {
	padding: 10px 20px 24px;
	border-radius: 0 0 6px 6px;
	border-left: 4px solid #B748AB;
	border-right: 4px solid #B748AB;
	border-bottom: 4px solid #B748AB;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 20px
}

@media (768px <= width <= 1080px) {
	.sec-fee .fee-area {
		flex-wrap: wrap;
	}
}

.sec-fee .fee-other {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 0 14px;
	max-width: 350px;
	width: 100%;
}

.sec-fee .fee-other dt {
	width: calc(100% - 9em);
	padding: 20px 0 10px;
	line-height: 1.2;
}

.sec-fee .fee-other span {
	font-size: 1.2rem;
	display: inline-block;
	margin: 16px 0 0;
}

.sec-fee .fee-other dd {
	width: 9em;
	text-align: right;
	padding: 20px 10px 10px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.sec-fee .fee-other dt:nth-child(1) {
	border-bottom: 1px solid #E4E4E4;
}

.sec-fee .fee-other dd:nth-child(2) {
	border-bottom: 1px solid #E4E4E4;
}

.sec-calendar {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto 80px;
}

.sec-calendar h2 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 2.2rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.sec-calendar h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.sec-calendar h2 span {
	display: inline-block;
	margin: 16px 0 0;
	font-size: 1.4rem;
}

.sec-calendar .calendar-inner {
	max-width: 800px;
	width: 100%;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

.sec-calendar .img {
	max-width: 400px;
	width: 100%;
}

.sec-calendar .txt {
	max-width: 400px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sec-calendar .txt p {
	font-size: 1.6rem;
	line-height: 1.4;
}

.sec-calendar .btn-calendar {
	max-width: 240px;
	width: 100%;
	margin: 30px 0 0;
}

.sec-calendar .btn-calendar a {
	box-sizing: border-box;
	border-radius: 300px;
	text-align: center;
	padding: 12px 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	background: #BC1232;
	color: #FFF;
	font-size: 1.6rem;
	font-weight: bold;
	width: 100%;
	display: block;
	transition: opacity .3s ease;
}

.sec-calendar .btn-calendar a:hover {
	opacity: .7;
}

.sec-access {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto 80px;
}

.sec-access h2 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 2.2rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.sec-access h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.sec-access h2 span {
	display: inline-block;
	margin: 16px 0 0;
	font-size: 1.4rem;
}

.sec-access .access-inner {
	width: 100%;
	display: flex;
	gap: 0 20px;
	justify-content: space-between;
	align-items: flex-start;
}

.sec-access .info {
	max-width: 450px;
	width: 100%;
}

.sec-access h3 {
	font-weight: bold;
	font-size: 3rem;
	color: #BC1232;
	line-height: 1.2;
	margin: 0 0 16px;
}

.sec-access .ttl-ja {
	font-weight: bold;
	font-size: 1.8rem;
	color: #BC1232;
	line-height: 1.4;
	margin: 0 0 30px;
}

.sec-access .address {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 10px;
}

.sec-access .address-en {
	font-size: 1.6rem;
	line-height: 1.4;
}

.sec-access .btn-instagram {
	max-width: 450px;
	width: 100%;
	margin: 30px 0 0;
}

.sec-access .btn-instagram a {
	box-sizing: border-box;
	border: 3px solid #BC1232;
	border-radius: 300px;
	text-align: center;
	padding: 12px 30px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	color: #BC1232;
	font-size: 2rem;
	font-weight: bold;
	width: 100%;
	display: block;
	line-height: 1.2;
	transition: opacity .3s ease;
}

.sec-access .btn-instagram a:hover {
	opacity: .5;
}

.sec-access .btn-instagram span {
	display: inline-block;
	padding: 10px 0 10px 72px;
	background: url(imgs/common/instagram.png) 0 center no-repeat;
	background-size: 40px auto;
	text-align: left;
}

.sec-access .map {
	max-width: 767px;
	width: 100%;
}

.sec-access .map iframe {
	aspect-ratio: 767 / 440;
	width: 100%;
	height: auto;
}

.sec-contact {
	max-width: 1176px;
	margin: 0 auto 90px;
	display: flex;
	gap: 0 20px;
	padding: 0 40px;
}

.sec-contact .img {
	max-width: 200px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px 0 0;
	margin: 10px  0 0;
}

.sec-contact .img img {
	width: 100%;
	height: auto;
}

.sec-contact .contact-inner {
	max-width: 556px;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 20px 24px;
	border: 4px solid #BC1232;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sec-contact .contact-inner h2 {
	font-size: 3.4rem;
	font-weight: bold;
	color: #BC1232;
	line-height: 1.4;
}

.sec-contact .contact-inner p {
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.4;
	margin: 0 0 16px;
}

.sec-contact .contact-inner .free-trial {
	padding: 16px 0;
	background: #E86F67;
	border-radius: 6px;
	color: #FFF;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	box-sizing: border-box;
	max-width: 348px;
	width: 100%;
	margin: 0 0 30px;
	line-height: 1.2;
}

.sec-contact .free-trial span {
	font-size: 1.6rem;
}

.sec-contact .btn-contact {
	max-width: 450px;
	width: 100%;
}

.sec-contact .btn-contact a {
	padding: 24px 0;
	display: block;
	background: #BC1232;
	color: #F7FF00;
	font-size: 2.2rem;
	font-weight: bold;
	transition: opacity .3s ease;
	line-height: 1;
	border-radius: 300px;
	box-sizing: border-box;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
 
.sec-contact .btn-contact a:hover {
	opacity: .7;
}

.sec-contact .present {
	max-width: 360px;
	width: 100%;
	padding: 30px 20px 24px;
	background: #E86F67;
	border-radius: 16px;
	text-align: center;
	box-sizing: border-box;
}

.sec-contact .present h2 {
	font-size: 3rem;
	font-weight: bold;
	color: #F7FF00;
	text-align: center;
	margin: 0 0 10px;
}

.sec-contact .present p {
	font-size: 1.6rem;
	line-height: 1.2;
	color: #FFF;
	font-weight: bold;
	margin: 0 0 10px;
	text-align: center;
}

.sec-contact .img-keyring {
	max-width: 260px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.sec-contact .img-keyring  img {
	margin: 0 0 5px;
}

.sec-contact .img-keyring span {
	font-size: 1.4rem;
	font-weight: bold;
	color: #F7FF00;
}

/*------------------------------------------
 *	お知らせ
------------------------------------------*/
.page-news {
	padding: 80px 40px 90px;
}

.page-news article {
	max-width: 800px;
	margin: 0 auto;
}

.page-news h1 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	line-height: 1.4;
	margin: 0 0 30px;
}

.page-news h1::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.page-news h1 span {
	display: inline-block;
	margin: 16px 0 0;
	font-size: 1.4rem;
}

.page-news .date {
	color: #BC1232;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: right;
	margin: 0 0 40px;
}

.page-news .body h2 {
	font-size: 2.4rem;
	font-weight: bold;
	color: #BC1232;
	line-height: 1.4;
	margin: 0 0 30px;
}

.page-news .body h3 {
	font-size: 1.6rem;
	font-weight: bold;
	color: #BC1232;
	line-height: 1.4;
	margin: 0 0 30px;
}

.page-news .body p {
	line-height: 1.6;
	margin: 0 0 30px;
}

.page-news .body a {
	color: #0066cc;
	text-decoration: underline;
}

.page-news .body a:hover {
	text-decoration: none;
}

.page-news .body figure {
	margin: 0 0 40px;
}

.page-news .body figcaption {
	font-size: 1.4rem;
	margin: 10px 0 0;
	line-height: 1.2;
}

.page-news .btn-news {
	max-width: 240px;
	width: 100%;
	margin: 80px auto 0;
}

.page-news .btn-news a {
	box-sizing: border-box;
	border-radius: 300px;
	text-align: center;
	padding: 12px 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	background: #BC1232;
	color: #FFF;
	font-size: 1.6rem;
	font-weight: bold;
	width: 100%;
	display: block;
	transition: opacity .3s ease;
}

.page-news .btn-news a:hover {
	opacity: .7;
}

.page-news .news-none {
	font-size: 2rem;
	font-weight: bold;
	color: #BC1232;
	line-height: 1.4;
	margin: 80px 0 0px;
}

.page-news .news-inner {
	max-width: 800px;
	margin: 0 auto;
}

.page-news .list-news {
	width: 100%;
}

.page-news .list-news li {
	display: flex;
	gap: 0 20px;
	margin: 0 0 36px;
}

.page-news .list-news .date {
	color: #BC1232;
	font-size: 1.8rem;
	line-height: 1.4;
	width: 6em;
	flex-shrink: 0;
	font-weight: bold;
	margin: 0;
}

.page-news .list-news a {
	display: block;
	width: calc(100% - 6em);
	color: #333;
	text-decoration: underline;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.4;
	word-break: break-all;
}

/*------------------------------------------
 *	フォーム
------------------------------------------*/
.page-form {
	padding: 80px 40px 90px;
}

.page-form .inquiry-inner {
	max-width: 800px;
	margin: 0 auto;
}

.page-form h1 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	line-height: 1.4;
	margin: 0 0 50px;
}

.page-form h1::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.page-form h1 span {
	display: inline-block;
	margin: 16px 0 0;
	font-size: 1.4rem;
}

.page-form .contents {
	max-width: 700px;
	margin: 0 auto;
}

.page-form .txt-inquiry {
	line-height: 1.6;
	font-size: 1.6rem;
}

.page-form .txt-complete {
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 0 0 40px;
	font-weight: bold;
}

.page-form .txt-complete a {
	color: #0066cc;
	text-decoration: underline;
}

.page-form .txt-note {
	margin: 80px 0 0;
	font-size: 1.6rem;
	line-height: 1.6;
}

.page-form .txt-note a {
	color: #0066cc;
	text-decoration: underline;
}

.page-form .btn-top {
	max-width: 500px;
	margin: 80px auto 0;
}

.page-form .btn-top a {
	padding: 24px 0;
	display: block;
	background: #BC1232;
	color: #FFF;
	font-size: 2.4rem;
	font-weight: bold;
	transition: opacity .3s ease;
	line-height: 1;
	border-radius: 60px;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}

.page-form .btn-top a:hover {
	opacity: .7;
}

.page-form .tbl-form {
	width: 100%;
	margin: 60px auto;
}

.page-form .tbl-form th {
	font-weight: bold;
	display: block;
	text-align: left;
	padding: 20px 0 24px;
	width: 100%;
	box-sizing: border-box;
	word-break: break-all;
	line-height: 1.6;
	color: #333;
	font-size: 1.8rem;
}

.page-form .tbl-form td {
	width: 100%;
	display: block;
	box-sizing: border-box;
	text-align: left;
	padding: 0 0 30px;
	line-height: 1.6;
	word-break: break-all;
}

.tbl-form .require {
	margin: 0 0  0 16px;
	padding: 5px 10px;
	background: #E86F67;
	color: #fff;
	line-height: 1;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	font-weight: bold;
}

.tbl-form td label {
	display: block;
	margin: 0 0 16px;
}

.tbl-form input[type="radio"] {
	margin: -3px 5px 0 0;
	vertical-align: middle;
}

.tbl-form .reikai-date input[type="radio"] {
	margin: -3px 5px 0 0;
	vertical-align: middle;
}

.tbl-form input[type="text"],
.tbl-form input[type="email"],
.tbl-form input[type="date"] {
	border-radius: 0;
	font-size: 1.6rem;
	padding: 6px 7px;
	border: 1px solid #CCC;
	box-sizing: border-box;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ",Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: 0.05em;
}

.tbl-form .size-full {
	width: 100%;
}

.tbl-form .size-middle {
	width: 40%;
}

.tbl-form .size-small {
	width: 12%;
	margin: 0 10px 0 0;
}

.tbl-form textarea {
	box-sizing: border-box;
	font-size: 1.6rem;
	padding: 6px 7px;
	border: 1px solid #CCC;
	width: 100%;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ",Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"ＭＳ Ｐゴシック", sans-serif;
}

.tbl-form .txt-info {
	font-size: 1.4rem;
	color: #d00;
	margin: 5px 0 0;
}

.page-form .btn-form {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	align-items: center;
}

.page-form .btn-confirm,
.page-form .btn-complete {
	max-width: 500px;
	width: 100%;
	background: #BC1232;
	border: 2px solid #BC1232;
	text-align: center;
	cursor: pointer;
	transition: opacity .3s ease;
	box-sizing: border-box;
	border-radius: 60px;
	overflow: hidden;
	position: relative;
}

.page-form .btn-confirm {
	margin: 0 auto;
}

.page-form .btn-revise {
	max-width: 500px;
	width: 100%;
	background: #FFF;
	border: 2px solid #BC1232;
	text-align: center;
	cursor: pointer;
	transition: opacity .3s ease;
	box-sizing: border-box;
	border-radius: 60px;
	overflow: hidden;
	position: relative;
}

.page-form .btn-confirm input[type="submit"],
.page-form .btn-revise input[type="submit"],
.page-form .btn-complete input[type="submit"] {
	padding: 25px 0;
	display: block;
	font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ",Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"ＭＳ Ｐゴシック", sans-serif;
	color: #FFF;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	outline: medium none;
	border: medium none;
	background: none;
	width: 100%;
	cursor: pointer;
	line-height: 1;
}

.page-form .btn-revise input[type="submit"] {
	color: #BC1232;
}

.page-form .btn-confirm:hover,
.page-form .btn-revise:hover,
.page-form .btn-complete:hover {
	opacity: .7;
}

.page-form .txt-err {
	font-size: 1.4rem;
	color: #d00;
	display: block;
	margin: 10px 0 0;
}

/*------------------------------------------
 *	プライバシーポリシー
------------------------------------------*/
.page-privacy {
	padding: 80px 40px 90px;
}

.page-privacy .privacy-inner {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

.page-privacy h1 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.page-privacy h1::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.page-privacy h1 span {
	display: inline-block;
	margin: 16px 0 0;
	font-size: 1.4rem;
}

.page-privacy h2 {
	padding: 4px 0 8px 18px;
	position: relative;
	font-size: 2.2rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
	line-height: 1.4;
}

.page-privacy h2::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.page-privacy .privacy-policy {
	margin: 0 0 60px;
}

.page-privacy .copy {
	margin: 60px 0;
}

.page-privacy p {
	margin: 0 0 20px;
	line-height: 1.8;
	font-size: 1.4rem;
	word-break: break-all;
}

.page-privacy .list {
	margin: 24px 0 30px;
}

.page-privacy .list li {
	padding: 0 0 0 15px;
	position: relative;
	line-height: 2;
	margin: 0 0 10px;
	font-size: 1.4rem;
}

.page-privacy .list li:after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	left: 0;
	top: 11px;
	display: block;
	position: absolute;
	box-sizing: border-box;
	background: #BC1232;
}

.page-privacy .privacy-policy a {
	color: #0066cc;
	text-decoration: underline;
}

/*------------------------------------------
 *	404
------------------------------------------*/
.page-error {
	padding: 80px 40px 90px;
}

.page-error .error-inner {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

.page-error h1 {
	padding: 8px 0 4px 18px;
	position: relative;
	font-size: 3rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.page-error h1::after {
	content: "";
	display: block;
	height: 100%;
	width: 6px;
	border-radius: 20px;
	background: #BC1232;
	position: absolute;
	left: 0;
	top: 0;
}

.page-error h1 span {
	display: inline-block;
	margin: 16px 0 0;
	font-size: 1.4rem;
}

.page-error h2 {
	font-size: 2.2rem;
	font-weight: bold;
	color: #BC1232;
	margin: 0 0 40px;
}

.page-error p {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
}

.page-error .btn-top {
	max-width: 500px;
	margin: 80px auto 0;
}

.page-error .btn-top a {
	padding: 24px 0;
	display: block;
	background: #BC1232;
	color: #FFF;
	font-size: 2.4rem;
	font-weight: bold;
	transition: opacity .3s ease;
	line-height: 1;
	border-radius: 60px;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}

.page-error .btn-top a:hover {
	opacity: .7;
}

