/* ==========================================================================
Global Styles
========================================================================== */
html {
    font-size: 62.5%
}
body{
    font-family: sans-serif;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", 'メイリオ',Meiryo, serif;
    font-weight: 500;
	font-size: 1.6rem;
}
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
.f-comfortaa{
	font-family: 'Comfortaa', cursive;
	font-weight: 700;
}
.group:after {
    content: "";
    display: table;
    clear: both;
}
a {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-property: color, border-color, background-color;
    transition-property: color, border-color, background-color;
}
.nopadding {
    margin: 0 !important;
    padding: 0 !important;
}
p {
}
a{
    color: #000;
}
a:hover, a:focus {
    color: #d71c2e;
    text-decoration: none;
}
.text a{
    color: #d71c2e;
    text-decoration: underline;
    padding: 2px 4px;
}
.text a:hover, .text a:focus {
    color: #fff;
    background-color: #d71c2e;
    text-decoration: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 2px 4px;
}
a img:hover{
	opacity: 0.7;
}
ul{
	list-style: none;
	padding: 0;
}
ol{
	padding-inline-start: 1.5rem;
}

dl{
	border-bottom:1px solid #754f4e;
	border-left:1px solid #754f4e;
	border-right:1px solid #754f4e;
	margin-bottom: 2em;
	background: #f6f4e8;
}
dt{
	float: left;
	width: 30%;
	padding:15px 1em 15px 1.5em;
	border-top:1px solid #754f4e;
}
dd{
	margin: 0;
	padding:15px 1em 15px 1.5em;
	border-top:1px solid #754f4e;
	overflow: hidden;
	background: #fff;
}

table{
	margin: 0 10px;
}
th, td{
	border-collapse: collapse;
	border:1px solid #000;
	padding:5px 3px;
	text-align: center;
}
.no-cell{
	background: #dde2ea;
	border: none;
}
img{
	width: 100%;
	height: auto;
}
.photo img{
	border-radius: 20px;
	-webkit-border-radius: 20px;
}

/* ==========================================================================
btn
========================================================================== */
.btn {
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border: 1px #d71c2e solid;
	background: #d71c2e;
	margin-bottom: 10px;
	font-size: 1.6rem;
	text-align: center;
}
.btn a{
	padding: 15px 45px ;
	color: #fff;
	display: block;
	font-size: 1.6rem;
}
.btn:hover, .btn:active, .btn:focus {
	box-shadow: none !important;
	outline: none !important;
	background: #006835 ;
	border: 1px #006835 solid;
	color: #fff;
}
.btn:hover a, .btn:active a, .btn:focus a{
	 color: #fff;
}

.btn-outline {
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border: 1px solid #d71c2e;
	background: #fff;
	margin-bottom: 10px;
	font-size: 1.6rem;
	text-align: center;
}
.btn-outline a{
	padding: 8px 20px;
	display: block;
	font-size: 1.6rem;
	color: #d71c2e;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
	box-shadow: none;
	background: #d71c2e;
	border: 1px #d71c2e solid;
}
.btn-outline:hover a, .btn-outline:focus a, .btn-outline:active a {
	color: #fff ;
}

.no-link{
	padding: 15px 45px ;
	display: block;
	font-size: 1.6rem;
	color: #432c0b ;
}
.no-link:hover{
	background: #432c0b;
	border: 1px solid #432c0b;
}

/* ==========================================================================
Navigation
========================================================================== */
.header{
	background: url('./../img/header-bg.png') repeat-x left top;
	background-size: 150px 222px;
	position: fixed;
	z-index: 99;
	width: 100%;
	padding:5px 20px 120px 30px;
}
.logo{
	float: left;
	width: 18%;
	padding: 15px 0;
}
.logo a{
	width: 100%;
	max-width: 173px;
	height: 63px;
	background: url('./../img/header-logo.png') no-repeat left top;
	background-size: 100%;
	display: block;
	z-index: 99;
}

#Navber{
	float: right;
	width: 82%;
}
.navbar-nav{
	background: url('./../img/nav-line.png') no-repeat right top;
	background-size: 5px 80px;
	list-style: none;
	width: 100%;
}
.navbar-nav li{
	background: url('./../img/nav-line.png') no-repeat left top;
	background-size: 5px 80px;
	width: 16.6%;
	max-width: 9em;
	text-align: center;
}
.navbar-nav a{
	color:rgba(51,51,51,1);
	display: block;
	/*white-space: nowrap;*/
	width: 100%;
	padding: 40px 0 2px 5px;
	font-weight: bold;
	line-height: 1.2;
	transition: all 0.3s ease 0s;
}
.navbar-nav a:focus, 
.navbar-nav a:hover{
	color:rgba(215,28,46,1);
	cursor: pointer;
	transform: translateY(6px);
}

.navbar-nav .nav-about a{
	background: url('./../img/nav-about.png') no-repeat center top;
	background-size: 50px 35px;
}
.navbar-nav .nav-couse a{
	background: url('./../img/nav-couse.png') no-repeat center top;
	background-size: 50px 35px;
}
.navbar-nav .nav-voice a{
	background: url('./../img/nav-voice.png') no-repeat center top;
	background-size: 50px 35px;
}
.navbar-nav .nav-archive a{
	background: url('./../img/nav-archive.png') no-repeat center top;
	background-size: 50px 35px;
}
.navbar-nav .nav-news a{
	background: url('./../img/nav-news.png') no-repeat center top;
	background-size: 50px 35px;
}
.navbar-nav .nav-contact a{
	background: url('./../img/nav-contact.png') no-repeat center top;
	background-size: 50px 35px;
}
.navbar-nav .nav-study a{
	background: url('./../img/nav-study.png') no-repeat center top;
	background-size: 50px 35px;
}

.navbar-nav span{
	font-size: 12px;
	color: #d71c2e;
}

.side-btn{
	position: fixed;
	top:120px;
	right: -20px;
	z-index: 9999;
}
.side-btn .nav-form {
	padding-left: 20px;
}
.side-btn .nav-form a{
	width: 105px;
	height: 265px;
	background: url('./../img/btn-book.png') no-repeat right top;
	background-size: 90px 260px;
	display: block;
	transition: all 0.3s ease 0s;
	margin-bottom: 10px;
}
.side-btn .nav-form a:hover{
	transform: translate(-10px,0);
	/*transform:rotate(-3deg);*/
}

.side-btn .nav-member {
	padding-left: 20px;
}
.side-btn .nav-member a{
	width: 105px;
	height: 265px;
	background: url('./../img/btn-member.png') no-repeat right top;
	background-size: 105px 265px;
	display: block;
	transition: all 0.3s ease 0s;
}
.side-btn .nav-member a:hover{
	transform: translate(-10px,0);
}

.nav .open>a, .nav .open>a:hover, .nav .open>a:focus{
	background: #e9e7d9;
}
.nav-toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    padding: 25px 45px 30px 9px;
    cursor: pointer;
    background: #d71c2e;
}
.nav-toggle:focus {
    outline: none;
}
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
    content: '';
    position: absolute;
    display: block;
    width: 36px;
    height: 4px;
    border-radius: 1px;
    -webkit-border-radius: 11px;
    background: #fff;
    cursor: pointer;
}
.nav-toggle span:before {
    top: -10px
}
.nav-toggle span:after {
    bottom: -10px
}
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.nav-toggle.active span {
    background-color: transparent
}
.nav-toggle.active span:before, .nav-toggle.active span:after {
    top: 0
}
.nav-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-toggle.active span:after {
    top: 10px;
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}
.navicon {
    position: absolute;
    top:0;
    right:0;
    height: 26px;
	display: none;
}
.navicon p {
    margin: 24px 14px 0 0;
    font-size: 12px;
}
.navicon-fixed {
    position: fixed;
    top: 59px;
    right: 143px;
}


/* ==========================================================================
main
========================================================================== */
.wrapper{
	position: relative;
	padding-top: 80px;
}
.main{
	position: relative;
}

.main .page-ttl{
	background: url('./../img/page-ttl-bg.jpg') no-repeat center center;
	background-size: cover;
	width: 100%;
	text-align: center;
	margin: 0 0 55px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 100px 0 60px;
	line-height: 4;
}
.main .page-ttl img{
	font-size: 20px;
	height: 74px;
	width: auto;
}
.main .page-txt {
	text-align: center;
	line-height: 1.8;
	margin-bottom: 70px;
}

h2{
	font-size: 3.2rem;
	text-align: center;
	margin: 3rem 0 40px 0;
	line-height: 1;
}
.text-wrap h2{
	background: url('./../img/line.png') no-repeat center bottom;
	background-size: 110px 2px;
	padding: 0 0 20px;
	margin:0 0 40px;
	font-size: 2.6rem;
	font-weight: bold;
	color: #572927;
}
h3{
	font-size: 2.6rem;
	font-weight: bold;
	margin: 0 0 35px 0;
}
h4{
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 25px 0;
}

section{
	margin-bottom: 60px;
}
section:before,
section:after{
  display: table;
  content: " ";
}
section:after{
  clear: both;
}
.text-wrap{
	padding: 0 15px 20px;
}
.text{
	margin-bottom: 1.8rem;
	line-height: 1.8;
}
.fs14{
	font-size: 1.4rem;
}
.fs18{
	font-size: 1.8rem;
}
.fs20{
	font-size: 2rem;
}
.br-sp{
	display: block;
}
.br-pc{
	display: none;
}
.sp{
	display: none;
}
.cap{
	font-weight: bold;
}

/*------------------------------お知らせ------------------------------*/
/*-----------詳細-----------*/
.entry-header .categories{
	display: inline-block;
	margin-left: 16px;
}
.entry-header .cat{
	background: #24ab70;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 1.4rem;
	padding: 5px 8px;
	color: #fff;
}
.entry-header .cat-news{
	background: #24ab70;
}
.entry-header .cat-report{
	background: #f4760f;
}
.entry-header .date{
	margin-left: 30px;
	display: inline-block;
}
.entry-header .entry-title{
	background: #f6f4e8;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	font-size: 2.4rem;
	font-weight: bold;
	padding: 16px 26px;
	margin: 10px 0 40px;
}
.entry-content{
	padding: 0 16px;
}
.entry-content p{
	line-height: 1.8;
	margin-bottom: 2rem;
}
.entry-content a:hover{
	text-decoration: underline;
}
.pagination{
	position: relative;
	border-top: 2px solid #000;
	margin: 50px 0;
}
.previous-post{
	position: absolute;
	left: 10px;
}
.next-post{
	position: absolute;
	right: 10px;
}
.pagination .previous-post a,
.pagination .next-post a{
	padding: 3px 26px;
	display: block;
}
.widget-content{
	margin-bottom: 57px;
}
.widget-title{
	font-size: 1.6rem;
	font-weight: bold;
	text-align: left;
	border-bottom: 2px solid #d71c2e;
	background: url('./../img/news/icon.png') no-repeat left top;
	background-size: 27px 23px;
	padding: 5px 5px 8px 46px;
	margin: 0 0 5px;
}
.widget-content li{
	border-bottom: 1px dotted #000;
	padding: 14px 8px;
}
.widget-content li a{
	color: #000;
}
.widget-content li a:hover{
	color:#d71d2f;
	text-decoration: underline;
}
.widget-content .btn-outline a{
	padding: 8px 0;
}

/*-----------一覧-----------*/
#news-list .news-wrap{
	background: #f6f4e8;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	padding: 0;
	margin-bottom: 30px;
}
#news-list .news-wrap .thumb {
	margin-bottom: 30px;
	position: relative;
}
#news-list .news-wrap .thumb img{
	border-radius:  20px 20px 0 0;
	-webkit-border-radius:  20px 20px 0 0;
}
#news-list .news-wrap .entry-header{
	padding: 0 15px 15px;
}
#news-list .news-wrap .entry-header .date{
	margin-left: 0;
}
#news-list .news-wrap .entry-header .categories{
	position: relative;
	display: block;
	text-align: center;
	margin: -68px auto 48px;
}
#news-list .news-wrap .entry-header .entry-title{
	background: none;
	font-size: 1.6rem;
	padding: 0;
	margin: 0 0 0.5em;
}
/*-----------ページネーション-----------*/
.pagination{
	padding: 40px 0;
	display: block;
	text-align: center;
}
.pagination span{
	line-height: 2;
	margin: 0 2px;
	display: inline-block;
}
.pagination span a{
	text-align: center;
	padding: 6px 10px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	color: #d71c2e;
	background: #fff;
	border: 1px #d71c2e solid;

}
.pagination span a:hover{
	background: #d71c2e;
	border: 1px #d71c2e solid;
}
.pagination span a:hover{
	color: #fff;
}
.pagination span.current{
	text-align: center;
	padding: 6px 10px;
	border-radius: 20px;
	background: #d71c2e;
	border: 1px #d71c2e solid;
	color:#fff;
	line-height: 1;
}

/*------------------------------みんなの声-----------------------------*/
/*-----------詳細-----------*/
.voice-wrap{
}
.voice-wrap .voice-header{
	position: relative;
	margin-bottom: 50px;
}
.voice-wrap .photo{
	float: right;
	width: 70%;
}
.voice-wrap .voice-header-inner{
	position: absolute;
	bottom:35px;
	left: 0;
	width: 50%;
}
.voice-wrap .voice-header-inner .voice-title{
	background: #fff;
	padding: 8px;
	line-height: 2;
	margin-left: -8px;
}
.voice-wrap .voice-header-inner .voice-name{
	color: #000;
	font-size: 1.8rem;
	font-weight: bold;
}
.voice-content .voice-lead{
	font-weight: bold;
	line-height: 1.8;
	margin-bottom: 60px;
}
.voice-content h2{
	text-align: left;
	font-weight: bold;
	font-size: 1.8rem;
	margin: 0 0 2rem 0;
	padding-top: 1rem;
}
.voice-content p{
	line-height: 1.8;
	margin-bottom: 2rem;
}
.voice-content a:hover{
	text-decoration: underline;
}

/*-----------一覧-----------*/
.voice-wrap{
	margin-bottom: 45px;
}
.voice-wrap .thumb{
	float: left;
	width: 35%;
}
.voice-wrap .thumb img{
	border-radius: 20px;
	-webkit-border-radius: 20px;
}
.voice-header{
	overflow: hidden;
	padding: 5px 30px;
}
.voice-header .voice-type{
	border-radius: 6px;
	-webkit-border-radius: 6px;
	background: #006835;
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
}
.voice-header .voice-title{
	font-weight: bold;
	margin-bottom: 10px;
}
.voice-header .voice-name{
	color: #006835;
}
/*-----------リスト-----------*/
.voice-list{
	background: #fffdde;
	padding: 40px 0;
	text-align: center;
	margin-bottom: 40px;
}
.voice-list .voice-type{
	position: absolute;
	top:0;
	left:0;
	background: url('./../img/home/voice-type-bg.png') no-repeat left top;
	background-size: 99px 67px;
	width: 99px;
	height: 67px;
	padding: 16px 22px;
	color: #fff;
	font-weight: bold;
	z-index: 3;
	line-height: 1.2;
}
.voice-list .photo{
	margin-top: 20px;
}
.voice-list .photo img{
	border-radius: 10px;
	-webkit-border-radius: 10px;
}
.voice-list .ttl{
	text-align: left;
}
.voice-list h2.ttl{
	text-align: center;
}
.voice-list .btn{
	margin: 40px 0 0;
}
.voice-list .btn a{
	font-size: 2rem;
	padding: 10px 50px;
}

/*------------------------------実績アーカイブ-----------------------------*/
.archive-wrap a{
	display: block;
	position: relative;
	color: #4d3a3a;
}
.archive-wrap a i{
	position: absolute;
	font-size: 6vw;
	top: 50%; /*親要素を起点に上から50%*/
	left: 50%;  /*親要素を起点に左から50%*/
	transform: translateY(-50%) translateX(-50%); /*要素の大きさの半分ずつを戻す*/
	-webkit-transform: translateY(-50%) translateX(-50%);
	z-index: 9;
	color: #fff;
}
.archive-wrap .ttl{
	font-weight: bold;
	margin-bottom: 3px;
}
.movie {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の縦幅*/
	height: 0;
	overflow: hidden;
}
	
.movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*------------------------------受講コース-----------------------------*/
.recommended{
	background: url('./../img/couse/couse-bg.png') no-repeat center bottom;
	background-size: contain;
	text-align: center;
	padding-bottom: 90px;
	margin-bottom: 160px;
}
.rec-ttl-l{
	display: inline-block;
	padding: 10px 0 6px 68px ;
	background: url('./../img/couse/ttl-l.png') no-repeat left top;
	background-size: 35px 37px;
	font-size: 2.6rem;
	margin-bottom: 60px;
}
.rec-ttl-r{
	padding: 10px 60px 6px 0;
	background: url('./../img/couse/ttl-r.png') no-repeat right top;
	background-size: 35px 37px;
	color: #572927;
	font-weight: bold;
}
.recommended .thumb{
	z-index: 2;
	margin-top: -20px;
	padding-left: 3%;
	padding-right: 3%;
}
.fukidasi {
	position: relative;
	display: inline-block;
	padding: 10px 9px;
	text-align: center;
	border: 2px solid #572927;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #fff;
	z-index: 90;
}
.fukidasi span{
	color: #572927;
	font-weight: bold;
	font-size: 1.8rem;
	background: url('./../img/couse/hukidasi.png') no-repeat center bottom;
	background-size: 27px 13px;
	padding: 0 0 28px 0;
}
.recommended .row .col-3:nth-child(2){
	margin-top: 25px;
}
.recommended .row .col-3:nth-child(4){
	margin-top: 35px;
}

.couse-info#beginner{background: #ffe0e3;}
.couse-info#intermediate{background: #ffedd7;}
.couse-info#advanced{background: #e5f4cf;}
.couse-info#ob{background: #d4e5f4;}

.couse-info .container{
	position: relative;
}
.couse-ttl{
	text-align: center;
	margin-top: -30px;
	margin-bottom: 20px;
}
.couse-ttl img{
	width: auto;
	height: 83px;
}
.couse-info-wrap{
	text-align: center;
	font-weight: bold;
	color: #572927;
}
.couse-info-wrap h2{
	font-size: 3rem;
	margin-bottom: 30px;
}
.couse-info-wrap .text{
	margin-bottom: 2em;
}

.couse-info-wrap .btn a{
	font-size: 1.8rem;
	font-weight: bold;
	padding: 10px 45px;
}
.couse-info .photo{
	padding-right: 60px;
	margin-bottom: 40px;
}
.couse-info-wrap  .photo{
	padding: 0;
	margin-bottom: 20px;
}
.illust-ring01{
	position: absolute;
	top:0;
	left:-10px;
	max-width: 166px ;
}
.illust-ring02{
	position: absolute;
	bottom:0;
	right:-10px;
	max-width: 150px ;
}

#beginner .btn{
	background: #d71c2e;
	border: 1px solid #d71c2e;
}
#beginner .btn:hover{
	background: #fff;
}
#beginner .btn:hover a{
	color: #d71c2e;
}
#intermediate .btn{
	background: #ee8509;
	border: 1px solid #ee8509;
}
#intermediate .btn:hover{
	background: #fff;
}
#intermediate .btn:hover a{
	color: #ee8509;
}
#advanced .btn{
	background: #79b425;
	border: 1px solid #79b425;
}
#advanced .btn:hover{
	background: #fff;
}
#advanced .btn:hover a{
	color: #79b425;
}
#ob .btn{
	background: #2b74b8;
	border: 1px solid #2b74b8;
}
#ob .btn:hover{
	background: #fff;
}
#ob .btn:hover a{
	color: #2b74b8;
}

.summary {
	margin-top: 50px;
	color: #572927;
	text-align: center;
}
.summary dl{
	text-align: left;
	margin-bottom: 60px;
}
.summary .btn a,
.seminar-schedule .btn a{
	font-size: 2rem;
	font-weight: bold;
	padding: 20px 100px;
}
.seminar-schedule{
	margin-top: -100px;
	background: #fff;
	padding-top: 120px;
	text-align: center;
}
.online-wrap{
	background: #f6f4e8;
	padding: 46px 30px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	color: #572927;
	margin-bottom:50px;
	text-align: left;
}
.online-wrap h3{
	text-align: center;
}

.schedule-wrap {
	background: url('./../img/dot-line2.png') repeat-x left bottom;
	background-size: 287px 4px;
	margin-bottom: 40px;
	text-align: left;
}
.schedule {
	position: relative;
	background: url('./../img/dot-line2.png') repeat-x left top;
	background-size: 287px 4px;
	padding: 20px 0 0;
}
.seminar-lead{
	display: table;
	float: left;
	width: 100px;
	height: 100px;
	background: #e6858f;
	text-align: center;
}
.seminar-lead span{
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
}
.seminar-info{
	overflow: hidden;
	padding-left: 25px;
	padding-right: 180px;
}
.seminar-date,
.seminar-ttl{
	font-size: 1.8rem;
	font-weight: bold;
}
.schedule .photo{
	position: absolute;
	top:18px;
	right: 0;
	width: 150px;
}

/*------------------------------りんご学校とは-----------------------------*/
.intro{
	background: url('./../img/couse/couse-bg.png') no-repeat center bottom;
	background-size: contain;
	text-align: center;
	padding-bottom: 120px;
	margin-bottom: 0;
}
.intro .ttl{
	display: inline-block;
	background: #f6f4e8;
	padding: 20px 80px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
}
.intro .ttl img{
	max-width: 348px;
}
.intro .message{
	line-height: 2;
}
.intro .message p{
	margin-bottom: 50px;
}
.intro .btn a{
	font-size: 2rem;
	font-weight: bold;
	padding: 20px 100px;
}

.iizuna{
	background: url('./../img/about/iizuna-bg.jpg') no-repeat center bottom;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 200px;
	margin-bottom: 0;
}
.iizuna .ttl{
	font-size: 2.6rem;
	font-weight: bold;
	color: #572927;
	text-align: left;
	line-height: 1.5;
}
.map {
	text-align: center;
}
.map img{
	max-width: 305px;
}

.iizuna-ringo{
	padding: 60px 0;
	background: #ffeee7;
	text-align: center;
}
.iizuna-ringo .text{
	text-align: left;
	color: #572927;
}
.iizuna-ringo .fukidasi{
	padding: 10px 40px;
}
.iizuna-ringo .ringo-wrap {
	margin: 40px 0 100px;
}
.iizuna-ringo .ringo-wrap .col-md-6,
.iizuna-ringo .ringo-wrap .col-md-5,
.iizuna-ringo .ringo-wrap .col-md-7{
	padding: 0;
}
.iizuna-ringo .ringo-wrap img{
	width: auto;
	max-height: 215px;
}

.kousaka{
	position: relative;
	background: #f6cdbc;
	padding: 0 30px 46px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	color: #572927;
}
.kousaka .container{
	padding-top: 1px;
	position: relative;
}
.kousaka h3{
	margin-top: 3rem;
	margin-bottom: 30px;
}
.kousaka .photo{
	margin-left: 20px;
	max-width: 360px;
}
.kankei{
	text-align: center;
}
.kankei .float-right{
	margin-left: 40px;
	max-width: 360px;
}
.kankei .text{
	text-align: left;
	color: #572927;
}
/*------------------------------りんごについて学ぶ-----------------------------*/
.SPonly{
  display:none;
}
/*-----------トップ-----------*/
.study-top{
  padding-bottom:80px;
  color:#212529;
}
.study-top ul{
  display:flex;
  flex-wrap:wrap;
}
.study-top li{
  position: relative;
  list-style:none;
  width:33%;
  transition:0.4s all;
  padding:10px;
  
}
.study-top li img{
  border-radius:20px 20px 0 0;
}
.study-top li span{
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  color: #fff;
  background: #d71d2d;
  font-size: 14px;
  line-height: 1;
  padding: 5px 10px;
  border-radius:20px;
  margin:10px 0 0 10px;
  }
.study-top li h2{
  font-size:1.6rem;
  padding:1.5rem 1rem;
  margin:0;
  letter-spacing:0.08em;
  color:#212529;
  background:#f6f4e8;
  border-radius:0 0 20px 20px;
}
.study-top li:hover{
  opacity:0.8;
  cursor: pointer;
  transform: translateY(4px);
}
.study-top a:hover{
  color:#212529 !important;
}
.study-top a img:hover{
  opacity:1 !important;
}
/*-----------記事-----------*/
.study{
  letter-spacing:0.08em;
  line-height:1.8;
  padding-bottom:80px;
  color:#212529;
}
.study h1{
  background: #f6f4e8;
  padding: 20px 80px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  text-align:center;
  color:#d71d2d;
  font-weight:600;
  margin-bottom:40px;
  line-height:1.4;
}
.study h2{
  border-bottom:2px solid #d71d2d ;
  font-size:2.2rem;
  padding-bottom:5px;
  font-weight:600;
  margin:40px 0 20px;
  line-height:1.4;
}
.study h3{
  border-left:6px solid #d71d2d ;
  padding-left:10px;
  margin:40px 0 20px;
  font-size:2rem;
  font-weight:600 !important;
  line-height:1.4;
}
.study img{
  border-radius:20px;
  -webkit-border-radius:20px;
}
.study p{
  margin-bottom:20px;
}
.study-btn a{
  text-align:center;
  background:#006835 !important;
  color:#fff !important;
  padding:8px;
  display:block;
  border-radius:100px;
  width:60%;
  margin:0 auto;
  transition:0.4s all;
}

.study-btn{
  margin-bottom:40px !important;
}
.study-btn a:hover{
  opacity:0.8;
  cursor: pointer;
  transform: translateY(4px);
}

.study-list{
  padding-left:2rem;
  list-style:disc !important;
  font-size:1.4rem;
}
/*-----------スマホ用-----------*/
@media screen and (max-width:599px) {
  .SPonly{
  display:block;
}
  .study-top ul{
    display:block;
  }
  .study-top li{
    width:90%;
    margin:0 auto 20px;
    padding:0;
  }
  .study-top li span{
    font-size:12px;
  }
  .study h1{
    padding:20px;
    font-size:2rem;
    margin-bottom:20px;
  }
  .study h2{
    font-size:1.8rem;
  }
  .study h3{
    font-size:1.8rem;
  }
  .study-btn a{
    width:100%;
    padding:10px;
  }
  .study-list{
  font-size:1.4rem;
}
}

/*------------------------------お問い合わせ-----------------------------*/
#contact .text-wrap{
	text-align: center;
}
#contact .tel{
	font-size: 2.4rem;
	font-weight: bold;
}
#contact .text-wrap p{
	margin-bottom: 2em;
}
.inquiry-form{
	margin: 20px 10%;
}
.column{
	background: #f7f4e4;
	margin-bottom: 1px;
}
@media only screen and (min-width: 769px) { 
    .column {
        display: flex;
    }
}
legend{
	float: left;
	width: 30%;
	padding: 15px 25px 12px;
}
.fields {
	background: #fff;
	overflow: hidden;
	padding: 15px 25px 16px;
}
@media only screen and (min-width: 769px) { 
    .fields {
        width: 70%;
    }
}
.fields input[type="text"],
.fields input[type="email"],
.fields textarea{
	width: 100%;
	border: 1px solid #aaa;
}
input[type=checkbox],
input[type=radio]{
	margin: 0 5px;
}
form footer{
	padding: 0;
	background: none;
	margin-bottom: 30px;
}
[type=submit], button{
	margin: 30px 35%;
	width: 30%;
	background: #d71d2f;
	color: #fff;
	border: none;
	padding: 20px 15px;
	font-weight: bold;
	font-size: 2rem;
}

#form .w100{
	width: 100%;
}
#form .w50{
	float: left;
	width: 50%;
}
/*------------------------------お申し込み-----------------------------*/
#form .column{
	background: #fde6ec;
}
#form legend{
	width: 40%;
}
table{
	width: 100%;
	margin: 0 0 1rem 0;
}
th, td{
	border-collapse: collapse;
	border:1px solid #fff;
	padding:5px 3px;
	text-align: center;
}
th{
	font-weight: bold;
	background: #f7f4e4;
	color: #000;
}
td{
	background: #fff;
}

/* ==========================================================================
Footer
========================================================================== */
footer{
	position: relative;
	padding:60px 0 0;
	background: url('./../img/footer-bg.jpg') no-repeat center top;
	background-size: cover;
}
.footer-info{
	text-align: center;
	font-size: 1.6rem;
}
.footer-info .footer-logo{
	text-align: center;
	margin-bottom: 20px;
}
.footer-info .footer-logo img{
	width: auto;
	height: 300px;
}
.footer-info .address{
	font-weight: bold;
	margin-bottom: 40px;
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
}
.footer-nav{
	text-align: center;
	font-size:1.6rem;
	margin-bottom: 20px;
}
.footer-nav ul{
	display: inline-block;
	background: rgba(215, 28, 46, 0.8);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	padding: 8px 40px;
	margin-bottom: 0;
}
.footer-nav li{
	display: inline-block;
}
.footer-nav li a{
	border-left: 1px solid #fff;
	color: #fff;
	font-weight: bold;
	padding: 0 9px;
}
.footer-nav li:last-child a{
	border-right: 1px solid #fff;
}
.footer-nav li a:hover{
	color: #fefcd4;
	cursor: pointer;
}
.banner-list li{
	float: left;
	width: 19%;
	margin: 0.5%;
	background: #fff;
}
.sp-footer-btn{
	display: none;
}
footer .copy {
	text-align: center;
	background: #000;
	color: #fff;
	font-size: 12px;
	margin: 0;
	padding:10px 0 14px;
}

.btn-up {
	position: fixed;
	bottom:60px;
	right:100px;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	background: #000;
	color: #fff;
	display: block;
	padding: 0;
	text-align: center;
}
.btn-up:hover{
	cursor: pointer;
}
.btn-up .fa{
	padding-top: 10px;
	font-size: 40px;
}


/* ==========================================================================
Media queries
========================================================================== */
@media(max-width:768px) {
.header{
	height: 66px;
	padding: 0;
	z-index: 1020;
}
.logo{
	margin: 10px;
	padding: 0;
}
.logo a{
	width: 130px;
	height: 52px;
}
.nav-wrapper{
	background: none;
	margin: 0;
}
.header .nav-bg{
	padding:3px 0px;
}
.nav{
	position: relative;
	width: 100%;
	background: none;
	padding-right: 0;
}
nav li.nav-item{
	width: 49%;
	text-align: center;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #4c2e0b;
}
.navbar-nav{
	display: inline-block;
	border-left: none;
	display: none;
}
.navbar-nav .nav-link{
	font-size: 16px;
	line-height: 1;
	border-left: none;
	padding: 24px 0;
}
.navicon{
	display: block;
}
.nav-toggle{
	position: fixed;
}
.nav-sp{
	display: block;
}

.side-btn{
	display: none;
}
.sp-footer-btn {
	display: block;
	position: fixed;
	bottom: 0;
	left: 0;
	height: 50px;
	width: 100%;
	text-align: center;
	z-index: 999;
}
.sp-footer-btn li{
	float: left;
	width: 50%;
}
.sp-footer-btn .nav-form a{
	font-weight: bold;
	background: #fefcd4;
	display: block;
	padding: 15px 0;
}
.sp-footer-btn .nav-member a{
	font-weight: bold;
	background: #006835;
	display: block;
	padding: 15px 0;
	color: #fff;
}

h1{
	font-size: 2.6rem;
}
h2{
	font-size: 2.2rem;
	padding: 0;
	margin: 10px 0 18px 0;
}
.text-wrap h2{
	background: url('./../img/line.png') no-repeat center bottom;
	background-size: 110px 2px;
	padding: 0 0 14px;
	margin:0 0 20px;
	font-size: 2.0rem;
	font-weight: bold;
	color: #572927;
}
h2 img{
	max-width: 70%;
}
h3{
	margin: 0 0 15px;
	font-size: 2.0rem;
	padding-bottom: 0;
}
h4{
	font-size: 1.6rem;
}
.btn a{
	font-size: 1.4rem;
	font-weight: bold;
	padding:15px 20px;
}
p {
	font-size: 1.4rem;
	line-height: 1.5;
}
.text{
	text-align: left;
	font-size: 1.4rem;;
	margin-bottom: 1em
}
.sp{
	display: block;
}

dl{
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
dt{
	float: left;
	width: 30%;
	padding:10px 0.5em 10px 1em;
}
dd{
	margin: 0;
	padding:10px 0.5em 10px 1em;
}
table{
	width: 100%;
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-all;
}

/* ==========================================================================
main
========================================================================== */
.wrapper{
	width: 100%;
	margin: 0;
	padding-top: 54px;
}

.main .page-ttl{
	font-size: 14px;
	padding: 30px 0 16px;
	line-height: 2;
	margin: 0 0 18px;
}
.main .page-ttl img{
	height: 40px;
	width: auto;
}
.main .page-txt{
	text-align: left;
	padding: 0 3% 10px;
	margin-bottom: 0;
}
.page-nav{
	margin-bottom: 10px;
	background-size:cover;
}

section{
	margin-bottom: 20px;
}

.br-sp{
	display: none;
}
.br-pc{
	display: block;
}
.text-wrap{
	padding: 0 0 20px;
}

.cap{
	font-weight: normal;
}
.fs10{
	font-size: 1rem;
}
.photo{
	margin: 0 0 15px 0
}

.carousel-indicators li{
	width: 20%;
}

/*------------------------------お知らせ------------------------------*/
/*-----------詳細-----------*/
.entry-header .categories{
	display: inline-block;
	margin-left: 10px;
}
.entry-header .cat{
	font-size: 1.2rem;
}
.entry-header .date{
	margin-left: 30px;
}
.entry-header .entry-title{
	border-radius: 20px;
	-webkit-border-radius: 20px;
	font-size: 1.8rem;
	padding: 8px 18px;
	margin: 10px 0;
}
.entry-content{
	padding: 0 5px;
}
.pagination{
	padding: 10px 14px;
	margin: 20px 0 40px;
}
.previous-post{
	position: absolute;
	left: 10px;
}
.next-post{
	position: absolute;
	right: 10px;
}
.pagination a{
	font-size: 1.4rem;
	padding: 6px 26px;
}
.widget-content{
	margin-bottom: 20px;
}
.widget-content li{
	font-size: 1.4rem;
	padding: 10px 6px;
}
.widget-content .btn-outline a{
	font-size: 1.4rem;
}

/*-----------一覧-----------*/
#news-list .news-wrap{
	border-radius: 10px;
	-webkit-border-radius: 10px;
	margin: 0 -5px 8px -5px;
}
#news-list .news-wrap .thumb {
	margin-bottom: 10px;
}
#news-list .news-wrap .thumb img{
	border-radius: 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0;
}
#news-list .news-wrap .entry-header .date{
	font-size: 1.2rem;
}
#news-list .news-wrap .entry-header .categories{
	margin: -48px auto 28px;
}
#news-list .news-wrap .entry-header .entry-title{
	font-size: 1.4rem;
}
/*------------------------------みんなの声-----------------------------*/
/*-----------詳細-----------*/
.voice-wrap{
	padding: 3%;
}
.voice-wrap .voice-header{
	position: relative;
	margin-bottom: 0;
	padding: 2px;
}
.voice-wrap .photo{
	width: 100%;
}
.voice-wrap .voice-header-inner{
	position: relative;
	bottom:auto;
	left: auto;
	width: 100%;
	padding: 5px;
}
.voice-wrap .voice-header-inner .voice-title{
	background: #fff;
	padding: 4px;
	line-height: 1.2;
	margin-left: -8px;
	font-size: 2rem;
}
.voice-wrap .voice-header-inner .voice-name{
	font-size: 1.4rem;
}
.voice-content {
	padding: 5px;
}
.voice-content .voice-lead{
	margin-bottom: 15px;
}
.voice-content h2{
	font-size: 1.8rem;
	margin: 0 0 2rem 0;
	padding-top: 1rem;
}

/*-----------一覧-----------*/
.voice-wrap{
	margin-bottom: 0;
}
.voice-wrap .thumb{
	float: left;
	width: 100%;
}
.voice-header{
	padding: 5px;
}
.voice-header .voice-type{
	padding: 3px 6px;
	font-size: 1.4rem;
}
.voice-header .voice-title{
	font-size: 2rem;
	margin-bottom: 10px;
}

/*-----------リスト-----------*/
.voice-list{
	background: #fffdde;
	padding: 20px 0;
	text-align: left;
	margin-bottom: 40px;
}
.voice-list .voice-type{
	position: relative;
	top:auto;
	left:auto;
	background: #006835;
	width: auto;
	height: auto;
	padding: 3px 7px;
	margin: 15px 0 0 0 ;
	color: #fff;
	font-size: 1.2rem;
	font-weight: normal;
	z-index: 3;
	line-height: 1.2;
	overflow: hidden;
	display: inline-block;
	border-radius: 6px;
	-webkit-border-radius: 6px;
}
.voice-list .photo{
	float: left;
	width: 36%;
	margin-top: 10px;
	margin-right: 15px;
}
.voice-list .btn{
	margin: 10px 0 0;
	width: 100%;
}
.voice-list .btn a{
	font-size: 1.6rem;
	padding: 10px 50px;
}
.voice-list .col-md-4{
	border-top:1px solid #ccc;
}

/*------------------------------実績アーカイブ-----------------------------*/
.archive-wrap a i{
	font-size: 12vw;
}
/*------------------------------受講コース-----------------------------*/
.recommended{
	padding-bottom: 30px;
	margin-bottom: 60px;
}
.rec-ttl-l{
	font-size: 2.0rem;
	margin-bottom: 10px;
}
.rec-ttl-r{
	padding: 10px 60px 6px 0;
}
.recommended .thumb{
	padding-left: 0;
	padding-right:0%;
}
.fukidasi {
	padding: 5px 5px;
}
.fukidasi span{
	font-size: 1.2rem;
	padding: 0 0 22px 0;
	background: none;
}

.couse-info#beginner{background: #ffe0e3;}
.couse-info#intermediate{background: #ffedd7;}
.couse-info#advanced{background: #e5f4cf;}
.couse-info#ob{background: #d4e5f4;}
.couse-info{
	margin-bottom: 50px;
}
.couse-info .container{
	position: relative;
}
.couse-ttl{
	margin-top: -30px;
	margin-bottom: 10px;
}
.couse-ttl img{
	width: 90%;
	height: auto;
}
.couse-info-wrap h2{
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.couse-info-wrap .text{
	margin-bottom: 1em;
}
.couse-info-wrap .btn a{
	font-size: 1.6rem;
	padding: 10px 45px;
}
.couse-info .photo{
	padding-right: 0;
	margin-bottom: 20px;
}
.illust-ring01{
	display: none;
}
.illust-ring02{
	right:0;
	bottom:-10px;
	max-width: 100px ;
}
.summary{
	margin-top: 20px;
}
.summary .btn a,
.seminar-schedule .btn a{
	font-size: 1.6rem;
	padding: 10px 45px;
}
.seminar-schedule{
	margin-top: -87px;
	padding-top: 77px;
}
.online-wrap{
	padding: 20px;
	margin-bottom: 20px;
}
.schedule-wrap{
	padding-bottom: 5px;
	margin-bottom: 10px;
}
.seminar-lead{
	width: 100%;
	height: auto;
}
.seminar-info{
	width: 100%;
	padding: 0;
}
.seminar-lead span{
	font-size: 1.8rem;
}
.seminar-date, .seminar-ttl{
	font-size: 1.4rem;
	margin-bottom: 3px;
}
.schedule .photo{
	position: relative;
	top:auto;
	width: 100%;
}


/*------------------------------りんご学校とは-----------------------------*/
.intro{
	padding-bottom: 30px;
}
.intro .ttl{
	padding: 20px 20px;
	border-radius: 15px;
	-webkit-border-radius: 15px;
}
.intro .ttl img{
	max-width: 348px;
}

.intro .message p{
	margin-bottom: 20px;
}
.intro .btn a{
	font-size: 1.4rem;
	padding: 10px 15px;
}

.iizuna{
	background-size: contain;
	padding-top: 20px;
	padding-bottom: 50px;
	margin-bottom: 0;
}
.iizuna .ttl{
	font-size: 1.8rem;
	line-height: 1.5;
}
.map {
	text-align: center;
}
.map img{
	width: 70%;
	max-width: 305px;
}

.iizuna-ringo{
	padding: 20px 0;
	text-align: center;
}

.iizuna-ringo h2.rec-ttl-l{
	padding: 0 0 6px 20px;
	background: url('./../img/couse/ttl-l.png') no-repeat left top;
	background-size: 35px 37px;
	font-size: 2.0rem;
	margin-bottom: 10px;
	width: 100%;
}
.iizuna-ringo h2 .rec-ttl-r{
	display: block;
	padding: 0 20px 6px 0;
	background: url('./../img/couse/ttl-r.png') no-repeat right top;
	background-size: 35px 37px;
}

.iizuna-ringo .fukidasi{
	padding: 10px 50px;
}
.iizuna-ringo .fukidasi span{
	padding: 0 0 27px 0;
	background-position-x: right;
}

.iizuna-ringo .ringo-wrap {
	margin: 10px 0 60px;
}
.iizuna-ringo .ringo-wrap .col-md-5{
	padding-right: 70px;
}
.iizuna-ringo .ringo-wrap img{
	width: 100%;
	height: auto;
	max-height: auto;
}

.kousaka{
	position: relative;
	background: #f6cdbc;
	padding: 0 0 26px;
	color: #572927;
}
.kousaka .container{
	padding-top: 1px;
	position: relative;
}
.kousaka h3{
	margin-top: 10px;
	margin-bottom: 15px;
	font-size: 1.8rem;
}
.kousaka .photo{
	margin-left: 0;
	max-width: 360px;
}
.kankei{
	text-align: center;
}
.kankei .float-right{
	display: none;
}
.kankei .online-wrap{
	border-radius: 0;
}

/*------------------------------お問い合わせ-----------------------------*/

#contact .tel{
	font-size: 1.8rem;
}
#contact .text-wrap p{
	margin-bottom: 1em;
}
#contact .text-wrap .fs18{
	font-size: 1.6rem;
}
.inquiry-form{
	margin: 0;
	border: 1px solid #f7f4e4;
}
legend{
	width: 100%;
	padding: 8px 10px 0;
}
.fields{
	padding: 8px 10px 6px;
}
[type=submit], button{
	margin: 15px 0;
	width: 100%;
	padding: 15px 15px;
	font-size: 1.6rem;
}
#form .w50{
	float: left;
	width: 100%;
}
/*------------------------------お申し込み-----------------------------*/

#form legend{
	width: 100%;
}
  
/*------------------------------りんごについて学ぶ-----------------------------*/
.SPonly{
  display:none;
}
/*-----------トップ-----------*/
.study-top{
  padding-bottom:80px;
  color:#212529;
}
.study-top ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.study-top li{
  position: relative;
  list-style:none;
  width:32%;
  background:#f6f4e8;
  border-radius:20px;
  transition:0.4s all;
}
.study-top li img{
  border-radius:20px 20px 0 0;
}
.study-top li span{
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  color: #fff;
  background: #d71d2d;
  font-size: 14px;
  line-height: 1;
  padding: 5px 10px;
  border-radius:20px;
  }
.study-top li h2{
  font-size:1.6rem;
  padding:1.5rem 1rem;
  margin:0;
  letter-spacing:0.08em;
  color:#212529;
}
.study-top li:hover{
  opacity:0.8;
  cursor: pointer;
  transform: translateY(4px);
}
.study-top a:hover{
  color:#212529 !important;
}
.study-top a img:hover{
  opacity:1 !important;
}
/*-----------記事-----------*/
.study{
  letter-spacing:0.08em;
  line-height:1.8;
  padding-bottom:80px;
  color:#212529;
}
.study h1{
  background: #f6f4e8;
  padding: 20px 80px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  text-align:center;
  color:#d71d2d;
  font-weight:600;
  margin-bottom:40px;
  line-height:1.4;
}
.study h2{
  border-bottom:2px solid #d71d2d ;
  font-size:2.2rem;
  padding-bottom:5px;
  font-weight:600;
  margin:40px 0 20px;
  line-height:1.4;
}
.study h3{
  border-left:6px solid #d71d2d ;
  padding-left:10px;
  margin:40px 0 20px;
  font-size:2rem;
  font-weight:600 !important;
  line-height:1.4;
}
.study img{
  border-radius:20px;
  -webkit-border-radius:20px;
}
.study p{
  margin-bottom:20px;
}
.study-btn a{
  text-align:center;
  background:#006835 !important;
  color:#fff !important;
  padding:8px;
  display:block;
  border-radius:100px;
  width:60%;
  margin:0 auto;
  transition:0.4s all;
}

.study-btn{
  margin-bottom:40px !important;
}
.study-btn a:hover{
  opacity:0.8;
  cursor: pointer;
  transform: translateY(4px);
}

.study-list{
  padding-left:2rem;
  list-style:disc !important;
  font-size:1.4rem;
}
/*-----------スマホ用-----------*/
@media screen and (max-width:599px) {
  .SPonly{
  display:block;
}
  .study-top ul{
    display:block;
  }
  .study-top li{
    width:90%;
    margin:0 auto 20px;
  }
  .study-top li span{
    font-size:12px;
  }
  .study h1{
    padding:20px;
    font-size:2rem;
    margin-bottom:20px;
  }
  .study h2{
    font-size:1.8rem;
  }
  .study h3{
    font-size:1.8rem;
  }
  .study-btn a{
    width:100%;
    padding:10px;
  }
  .study-list{
  font-size:1.4rem;
}
}
/* ==========================================================================
Nav Overlay
========================================================================== */
/* Overlay style */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999;
    padding-top:55px;
     overflow-y: scroll; 
     -webkit-overflow-scrolling: touch;
}

/* Menu style */
.overlay nav {
    position: relative;
    top: 30%;
    height: 60%;
    text-align: center;
    font-size: 54px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
}
.overlay ul {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
/*
.overlay ul li {
    display: block;
    float: none;
}*/
.overlay ul li:last-child {
    margin-right: 0px
}
.overlay ul li i {
    display: block;
}
.overlay ul li a {
	width:100%;
    display: block;
    padding: 20px 0 18px 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    color: #000!important;
}
.overlay ul li a:hover, .overlay ul li a:focus {
}

/* Effects */
.overlay-menu {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
}
.overlay-menu.open {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.overlay-menu nav ul li {
    opacity: 0;
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -80px, 0);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}
.overlay-menu.open nav ul:first-child li:first-child {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
.overlay-menu.open nav ul:first-child li:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.overlay-menu.open nav ul:nth-child(2) li:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
.overlay-menu.open nav ul:nth-child(2) li:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.overlay-menu.open nav ul li {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* ==========================================================================
Footer
========================================================================== */
footer{
	padding:14px 0 0;
}
.footer-info{
	text-align: left;
	font-size: 1.6rem;
}
.footer-info .footer-logo{
	float: left;
	width: 26%;
	text-align: center;
	margin-bottom: 10px;
	margin-right: 30px;
}
.footer-info .footer-logo img{
	width: 100%;
	height: auto;
}
.footer-info .address{
	padding: 15px 0;
	margin-bottom: 10px;
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.9);
}
.footer-nav{
	text-align: center;
	margin-bottom: 20px;
}
.footer-nav ul{
	width: 100%;
	background: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	margin-bottom: 0;
}
.footer-nav li{
	display: block;
	border-bottom:1px solid #ccc;
}
.footer-nav li a{
	border-left: none;
	font-size:1.8rem;
}
.footer-nav li:last-child a{
	border-right: none;
}
.banner-list{
	padding: 0 3%;
}
.banner-list li{
	width: 48%;
	margin: 1%;
}
footer .copy {
	text-align: center;
	background: #000;
	color: #fff;
	font-size: 12px;
	margin: 0 0 50px;
	padding:10px 0 14px;
}

.btn-up {
	z-index: 9999;
	position: fixed;
	top:inherit;
	bottom:30px;
	right:5px;
	width: 45px;
	height: 45px;
	font-size: 20px;
}
.btn-up .fa{
	padding-top: 2px;
}

}

@media screen and (min-width:769px) and ( max-width:1024px) {
.container {
    max-width: 100%;
}
.header{
	padding: 5px 10px 120px 10px;
}
.logo{
	padding: 15px 5px;
}
.navbar-nav a{
	font-size: 1.4rem;
}
.navbar-nav span{
	font-size: 1rem;
}

}

/* ==========================================================================
Waypoints
========================================================================== */
.wp1, .wp2, .wp3, .wp4, .wp5, .wp6 {
    visibility: hidden
}

.js .animate-box {
  opacity: 0;
}
