@charset "utf-8";

/*----------------------------------------------------------------
 MainLayout
 -----------------------------------------------------------------
 c/p
 <link href="./common/css/layout.css" rel="stylesheet" type="text/css" media="screen,print" />
----------------------------------------------------------------*/
/*----------------------------------------------------------------
 font settings
----------------------------------------------------------------*/
@font-face { font-family: "Yu Gothic"; src: local("Yu Gothic Medium"); font-weight: 100; }
@font-face { font-family: "Yu Gothic"; src: local("Yu Gothic Medium"); font-weight: 200; }
@font-face { font-family: "Yu Gothic"; src: local("Yu Gothic Medium"); font-weight: 300; }
@font-face { font-family: "Yu Gothic"; src: local("Yu Gothic Medium"); font-weight: 400; }
@font-face { font-family: "Yu Gothic"; src: local("Yu Gothic Bold"); font-weight: bold; }
@font-face { font-family: "Yu Mincho"; src: local("Yu Mincho Regular"); font-weight: 500; }

/*----------------------------------------------------------------
 base
----------------------------------------------------------------*/
html,body{
	font-size			: 62.5%; /* 10px */
}
body{
	line-height: 1.75;
	font-size			: 1.3rem;
	color				: #333333;
	font-family			: "Yu Gothic", YuGothic, "游ゴシック",-apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ Pro",'Hiragino Kaku Gothic Pro', Verdana, Meiryo, "M+ 1p", sans-serif;
}
@media screen and (max-width: 767px) {
body{ padding: 65px 0 0 0; }
}
@media screen and (min-width: 768px) {
body{
	font-size			: 1.6rem;
}
}

/* inline element
-----------------------------------------------------*/

/* link
----------------------------------*/
a{
	text-decoration		: underline;
	color				: #003399;
}
a:hover{ text-decoration: none; }

/*-----------------------------------------------------
 class
-----------------------------------------------------*/

/* separater line
-----------------------------------------------------*/
hr.separater{ display: none; }

/* anchor(pagetop)
-----------------------------------------------------*/
p.anchor{
	visibility			: hidden;
	position			: absolute;
	top					: 0px;
	left				: 0px;
}
/* br
-----------------------------------------------------*/
@media screen and (min-width: 768px) { .br_sp{ display: none; } }

/* hide
-----------------------------------------------------*/
@media screen and (max-width: 767px) { [data-hide=sp]{ display: none; } }
@media screen and (min-width: 768px) { [data-hide=pc]{ display: none; } }

/* view
-----------------------------------------------------*/
@media screen and (max-width: 767px) { [data-show=sp]{ display: block; } }
@media screen and (min-width: 768px) { [data-show=pc]{ display: block; } }


/*----------------------------------------------------------------
 layout
----------------------------------------------------------------*/

/*-----------------------------------------------------
 wrap
-----------------------------------------------------*/
.wrap{
	display				: flow-root;
	position			: relative;
}
#wrap{ width: 100%; }

/*-----------------------------------------------------
 area
-----------------------------------------------------*/
.area{
	position			: relative;
	clear				: both;
}

#navigation{ display: none; }
@media screen and (max-width: 767px) {
#navigation{
	display				: block;
	overflow-scrolling	: touch;
	position			: fixed;
	left				: -50vw;
	top					: 0;
	z-index				: 100;
	transition			: left 0.4s ease-in-out 0s;
	width				: 50vw;
	height				: 100%;
	padding				: 13px 10px 20px 10px;
	background			: #FFF;
}
.open #navigation{ left: 0; }
}

#header{
	position			: fixed;
	top					: 0;
	z-index				: 10;
	width				: 100vw;
	height				: 65px;
	background			: #FFF;
}
@media screen and (min-width: 768px) {
#header{
	width				: 200px;
	height				: 100vh;
}
}
#contents,
#header{
	opacity: 1;
	transition: opacity 0.5s ease-out;
}
.open #contents,
.open #header{
	opacity: 0.3;
}
@media screen and (min-width: 768px) {
#contents{
	float				: right;
	width				: calc(100% - 200px);
	height				: 100%;
}
}

/*-----------------------------------------------------
 block
-----------------------------------------------------*/
.block{
	position			: relative;
	clear				: both;
}
#mainview{}
#main{}
#footer{
	padding				: 0 0 20px 0;
	background			: #333;
	text-align			: center;
	color				: #FFF;
}


/*----------------------------------------------------------------
 common parts
----------------------------------------------------------------*/

/*-----------------------------------------------------
 opener
-----------------------------------------------------*/
.navi-opener{
	display: none;
}
@media screen and (max-width: 767px) {
.navi-opener{
	display: block;
	position			: absolute;
	top					: 18px;
	right				: 20px;
	z-index				: 1000;
	cursor				: pointer;
	line-height			: 1px;
}
.navi-opener .opener{
	display				: block;
	width				: 30px;
	height				: 33px;
	background			: url(../images/navigation_menu.png) left top /contain no-repeat;
}
}

/*-----------------------------------------------------
 navi
-----------------------------------------------------*/
.navi>li{ list-style: none; }
.navi a{
	display				: block;
	position			: relative;
	padding				: 12px 10px 10px 13px;
	text-decoration		: none;
	line-height			: 1.5;
	font-size			: 1.3rem;
	color				: #333;
}
.navi a:hover{ color: #339966; }
.navi a:after{
	content				: attr(title);
	display				: block;
	font-size			: 1rem;
}
.navi a>i{
	position			: absolute;
	left				: 0;
	top					: 18px;
	line-height			: 1;
	font-size			: 1rem;
	color				: #339966;
}
.navi .blog>a>i{
	left				: -6px;
	top					: 16px;
	font-size			: 1.3rem;
}

/*-----------------------------------------------------
 sns
-----------------------------------------------------*/
.sns>li{
	display				: inline-block;
	list-style			: none;
}
.sns>li a{
	display				: inline-block;
	padding				: 8px;
	line-height			: 1;
	font-size			: 1.8rem;
	color				: #339966;
	opacity				: 1;
	transition			: opacity 0.5s ease 0s;
}
.sns>li a:hover{ opacity: 0.5; }


/*-----------------------------------------------------
 btn
-----------------------------------------------------*/
.btn{
	display				: block;
	margin				: 0 auto;
	border				: 1px solid #339966;
	border-radius		: 10px;
	max-width			: 335px;
	padding				: 30px 0;
	background			: #fff;
	text-align			: center;
	color				: #339966;
	transition			: all 0.5s ease 0s;
}
.btn:hover{
	background			: #339966;
	color				: #fff;
}
.btn i.fa{
	position			: absolute;
	left				: -25px;
	top					: 2px;
	font-size			: 1.8rem;
}
.btn span{
	display				: inline-block;
	position			: relative;
	left				: 10px;
	text-align			: left;
	line-height			: 1.5;
	font-size			: 1.6rem;
}
.btn small{
	display				: block;
	font-size			: 1.2rem;
}
.btn.inline{
	display				: inline-block;
	padding				: 3px 27px!important;
	font-size			: 1.2rem;
}
.btn.inline span{ font-size: 1.2rem; }
.btn.inline i.fa{
	font-size			: 1.4rem;
	left				: -20px;
}


/*----------------------------------------------------------------
 styles
----------------------------------------------------------------*/
/*-----------------------------------------------------
 header
-----------------------------------------------------*/
#header .container{
	position			: relative;
	padding				: 0 20px;
}
#header .logo a{
	display				: inline-block;
	opacity				: 1;
	transition			: opacity 0.5s ease 0s;
}
#header .logo a:hover{ opacity: 0.5; }
#header .place{ font-size: 1rem; }

@media screen and (min-width: 768px) {
#header .container	{ padding: 45px 0px 45px 40px; }
#header .logo		{ margin: 20px 0 75px -9px; }
#header .place		{ margin: 0 0 8px 0; }
#header .navi		{ margin: 0 0 10px 0; }
#header .sns{
	padding				: 0 40px 0 0;
	text-align			: center;
}
}

@media screen and (max-width: 767px) {
#header .container{ height: 65px; }
#header .logo{
	position			: absolute;
	top					: 50%;
	transform			: translateY(-60%);
	width				: 115px;
}
#header .place{
	position			: absolute;
	top					: 50%;
	left				: 175px;
	transform			: translateY(-50%);
}
#header .navigation{ display: none; }
}

@media screen and (max-width: 320px) {
#header .logo{ margin: 10px 0 0 0; }
}


/*-----------------------------------------------------
 navigation
-----------------------------------------------------*/
#navigation .container{ position: relative; }
#navigation .navi-opener{
	position			: absolute;
	top					: 0px;
	right				: 8px;
}
#navigation .navi-opener .opener{
	display				: block;
	width				: 28px;
	height				: 39px;
	background			: url(../images/navigation_close.png) left top /contain no-repeat;
}

#navigation .logo{
	width				: 90px;
	margin				: 0 0 20px 10px;
}
#navigation .navi{ margin: 0 0 10px 10px; }
#navigation .sns{
	margin				: 0 0 20px 0;
	text-align			: center;
}
@media screen and (max-width: 767px) {
#navigation .navi{ margin: 35px 0 10px 10px; }
#navigation .place{ display: none; }
}

/*-----------------------------------------------------
 main
-----------------------------------------------------*/
/* section
-----------------------------------------------------*/
#main .section					{ background: #FFF; }
#main .section:nth-child(even)	{ background: #efeee4; }
@media screen and (min-width: 768px) {
#main .section{ padding: 0 20px; }
}
@media screen and (min-width: 960px) {
#main .section{ padding: 0; }
}

/* container
-----------------------------------------------------*/
#main .container{ padding: 40px 20px 30px 20px; }
@media screen and (min-width: 768px) {
#main .container{
	margin				: 0 auto;
	padding				: 40px 0 65px 0;
	line-height: 1.8;
}
}
@media screen and (min-width: 960px) {
#main .container{
	margin				: 0 auto;
	width				: 760px;
	padding				: 40px 0 65px 0;
}
}

/* heading
-----------------------------------------------------*/
#main h2{
	margin				: 0 0 30px 0;
	text-align			: center;
	font-size			: 1.8rem;
	font-family			: "游明朝", YuMincho,  "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#main h2:after{
	content				: attr(title);
	display				: block;
	font-size			: 1rem;
}
@media screen and (min-width: 768px) {
#main h2{
	text-align			: left;
	font-size			: 3.6rem;
	line-height			: 36px;
}
#main h2:after{ font-size: 1.4rem; }
}

#main h3{
	text-align			: center;
	font-size			: 1.6rem;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
#main h3{
	font-size			: 1.8rem;
}
}


/* list
-----------------------------------------------------*/
#main ul,
#main ol,
#main dl{}
#main ul li,
#main ol li{
	list-style			: none;
}
@media screen and (min-width: 768px) {
#main dl{
	line-height: 2;
}
}

/* block elements
-----------------------------------------------------*/
#main p,
#main pre{
	margin				: 0 0 20px 0;
	line-height: 2;
}
@media screen and (min-width: 768px) {
#main p,
#main pre{
	margin				: 0 0 35px 0;
	line-height			: 2;
	font-size			: 1.6rem;
}
}

/* form parts
-----------------------------------------------------*/
#main textarea{
	max-width			: 100%;
}

/* btn
-----------------------------------------------------*/
#main .btn{ padding: 15px 0; }
@media screen and (min-width: 768px) {
#main .btn{ padding: 20px 0; }
}

/* image
-----------------------------------------------------*/
#main .image{ border-radius: 5px; }
@media screen and (min-width: 768px) {
#main .image{ border-radius: 10px; }
}

/* row
-----------------------------------------------------*/
#main .row{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
	flex-direction		: column;
}
#main .row>.col{ margin: 0 0 20px 0; }
#main .row>.col.image{ text-align: center; }
@media screen and (min-width: 768px) {
#main .row{
	flex-direction		: row;
	justify-content		: space-between;
}
#main .row>.col{ width: calc( (100% / 2) - 10px); }
}
@media screen and (min-width: 960px) {
#main .row>.col{ width: 360px; }
}


/*-----------------------------------------------------
 outline
-----------------------------------------------------*/
#outline .container{ padding: 1px 20px 30px 20px; }
@media screen and (min-width: 768px) {
#outline .container{ padding: 1px 0 65px 0; }
}

#outline h2{
	margin				: 10px 0 15px 0;
	text-align			: left;
	line-height			: 1.4375;
}

@media screen and (min-width: 768px) {
#outline h2{
	margin				: 10px 0 30px 0;
	font-size			: 3.2rem;
}
}

/* copy
-----------------------------------------------------*/
#outline .copy{
	margin				: 0 0 30px 0;
	line-height			: 2;
}
@media screen and (min-width: 768px) {
#outline .copy{ margin: 0 0 50px 0; }
}


/* nav-list
-----------------------------------------------------*/
#outline .nav-list ul{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
	flex-direction		: row;
	justify-content		: space-between;
	flex-wrap			: wrap;
	margin				: 20px 0 10px 0;
}
#outline .nav-list li{
	flex				: 0 0 47.5%;
	margin				: 0 0 18px 0;
}
#outline .nav-list li a{
	display				: block;
	transition			: opacity 0.5s ease 0s;
	opacity				: 1;
	text-align			: center;
	text-decoration		: none;
	color				: #333333;
}
#outline .nav-list li a:hover{ opacity: 0.5; }
#outline .nav-list li a .text{
	display				: block;
	margin				: 10px 0 0 0;
	font-size			: 1rem;
}
@media screen and (min-width: 768px) {
#outline .nav-list ul{
	flex-direction		: row;
	justify-content		: space-between;
	margin				: 20px 0 -20px 0;
}
#outline .nav-list li{
	margin				: 0 0 50px 0;
}
#outline .nav-list li a .text{
	margin				: 20px 0 0 0;
	font-size			: 1.2rem;
}
}

/* sns
-----------------------------------------------------*/
#outline .sns{
	margin				: 20px 0 30px 0;
	text-align			: center;
}
#outline .sns li{ margin: 0 30px 0 0; }
#outline .sns li:last-child{ margin: 0; }
#outline .sns i{ font-size: 3.5rem; }


/* information
-----------------------------------------------------*/
#outline .information>dl>dt{
	font-family			: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; 
	font-size			: 1.8rem;
}
@media screen and (max-width: 767px) {
#outline .information>dl>dt{ text-align: center; }
}

@media screen and (min-width: 768px) {
#outline .information>dl{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
	flex-direction		: row;
}
#outline .information>dl>dt{ flex: 0 0 60px; }
#outline .information>dl>dd{ flex: 1; }
}

/* information-list
---------------------------------*/
#outline .information .information-list li{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
}
#outline .information .information-list .date{ font-size: 1.2rem; }
#outline .information .information-list li a{
	text-decoration		: none;
	color				: #3399ff;
}

@media screen and (max-width: 767px) {
#outline .information .information-list li{
	flex-direction		: row;
	padding				: 10px 0;
}
#outline .information .information-list .date{ flex: 0 0 100px; }
#outline .information .information-list .title{ flex: 0 0 calc(100% - 100px); }
}

@media screen and (min-width: 768px) {
#outline .information .information-list{
	flex-direction		: column;
	border-left			: 1px solid #000;
	padding				: 8px 0;
}
#outline .information .information-list li{
	flex-direction		: row;
	align-items			: top;
	padding				: 5px 18px;
	font-size			: 1.4rem;
}
#outline .information .information-list .date	{ flex: 0 0 110px; }
#outline .information .information-list li a	{ flex: 1; }
}


/*-----------------------------------------------------
 lesson
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
#lesson .container{
	padding-top				: 50px;
}
#lesson h2{
	margin-bottom: 40px;
}
}

#lesson .class-info{}

#lesson .class-info dl{
}
#lesson .class-info dl dt{
	border-top: 1px solid #CCC;
	font-weight: bold;
	padding: 20px 0 0 0;
}
#lesson .class-info dl dd{
	padding: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
#lesson .class-info dl{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 50px 0 20px 0;
}
#lesson .class-info dl dt,
#lesson .class-info dl dd{
	padding: 10px 0;
}
#lesson .class-info dl dt{
	flex: 0 0 185px;
	font-weight: normal;
}
#lesson .class-info dl dd{
	flex: 0 0 calc(100% - 185px - 30px);

}
}

#lesson .caution{
	background: #FFF;
	border-radius: 10px;
	padding: 20px;
}
#lesson .caution h3{
	margin: 0 0 20px 0;
}
#lesson .caution li{
	margin: 0 0 5px 0;
}
#lesson .caution li:before{
	content: "●";
	color: #339966;
	display: inline-block;
	margin: 0 5px 0 0;
}
@media screen and (min-width: 768px) {
#lesson .caution{
	padding: 30px 40px;
}
#lesson .caution h3{
	margin: 0 0 30px 0;
}
#lesson .caution ul{
	font-size: 1.4rem;
	line-height: 1.71;
}
#lesson .caution li{
	margin: 0 0 15px 0;
}
}
/*-----------------------------------------------------
 faq
-----------------------------------------------------*/

/* faq-list
-----------------------------------------------------*/
#faq .faq-list{  }
#faq .faq-list li{ margin: 0 0 30px 0; }
#faq .faq-list dl{ display: flow-root; }

#faq .faq-list dl dt,
#faq .faq-list dl dd{
	position			: relative;
	max-width			: 300px;
}
#faq .faq-list dl dd{
	float				: right;
	width				: 300px;
	text-align			: right;
}

#faq .faq-list dl dt span,
#faq .faq-list dl dd span{
	position			: relative;
	display				: inline-block;
	margin				: 0 0 20px 0;
	border-radius		: 16px;
	text-align			: left;
}
#faq .faq-list dl dt span{
	padding				: 9px 24px;
	background			: #339966;
	color				: #FFF;
}
#faq .faq-list dl dd span{
	padding				: 13px 24px;
	background			: #efeee4;
}

#faq .faq-list dl dt span:after,
#faq .faq-list dl dd span:after{
	content				: "";
	display				: block;
	position			: absolute;
	bottom				: -12px;
	width				: 12.5px;
}
#faq .faq-list dl dt span:after{
	left				: 30px;
	border-bottom		: 12.5px solid transparent;
	border-left			: 12.5px solid #339966;
}
#faq .faq-list dl dd span:after{
	right				: 30px;
	border-top			: 12.5px solid #efeee4;
	border-left			: 12.5px solid transparent;
}

@media screen and (min-width: 768px) {
#faq .faq-list{ font-size: 1.6rem; }
#faq .faq-list li{ margin: 0 0 40px 0; }

#faq .faq-list dl{
	line-height: 1.75;
}
#faq .faq-list dl dt,
#faq .faq-list dl dd{ max-width: 555px; }
#faq .faq-list dl dd{ width: 555px; }

#faq .faq-list dl dt span,
#faq .faq-list dl dd span{ border-radius: 20px; }
#faq .faq-list dl dt span{ padding: 9px 24px; }
#faq .faq-list dl dd span{ padding: 13px 24px; }

#faq .faq-list dl dt span:after,
#faq .faq-list dl dd span:after{
	bottom				: -15px;
	width				: 15px;
}
#faq .faq-list dl dt span:after{
	left				: 35px;
	border-bottom		: 15px solid transparent;
	border-left			: 15px solid #339966;
}
#faq .faq-list dl dd span:after{
	right				: 35px;
	border-top			: 15px solid #efeee4;
	border-left			: 15px solid transparent;
}
}



/*-----------------------------------------------------
 profile
-----------------------------------------------------*/
/* namecard
-----------------------------------------------------*/
#profile .namecard .rubyposition_under{ display: block; }
#profile .namecard ruby{
	font-family			: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; 
	font-size			: 1.8rem;
	text-align			: center;
}
#profile .namecard ruby rt{
	text-align			: center;
	font-size: 1rem; }

@media screen and (min-width: 768px) {
#profile .namecard{
	margin				: 0 0 50px 0;
	align-items			: center;
}
#profile .namecard .rubyposition_under{ display: inline-block; }
#profile .namecard ruby{
	line-height			: 1.5;
	text-align			: left;
	font-size			: 3rem;
}
#profile .namecard ruby rt{
    text-align: left;
	font-style			: italic;
	font-size			: 1.6rem;
}
}

/*-----------------------------------------------------
 contact
-----------------------------------------------------*/

@media screen and (min-width: 768px) {
#contact .container{
	padding-top: 60px;
}
}
#contact .block{
	margin: 30px 0 70px 0;
}
#contact .form p{
	margin: 0 0 20px 0;
}
#contact .form dl{
	font-size: 1.4rem;
}

#contact .form dd{
	margin: 0 0 15px 0;
}
#contact .form em{
	font-weight: normal;
	color: red;
}


#contact .form div#mfp_hidden {
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0px;
    margin: 0px;
}
#contact .form input[type="text"],
#contact .form input[type="email"]{
	width: 100%;
}
#contact .form textarea,
#contact .form input[type="text"],
#contact .form input[type="email"]{
	background: #eee;
	border: none;
	padding: 0 5px;
}

#contact .form textarea{
	width: 100%!important;
	height: 180px!important;
}
#contact .form .mfp_buttons{
	text-align: center;
	margin: 20px 0 0 0;
}
#contact .form button[type="submit"]{
	border: 1px solid #339966;
	border-radius: 10px;
	display: inline-block;
	width: 100%;
	padding: 15px 0;
	text-align: center;
	background: none;
	color: #339966;
}

@media screen and (min-width: 768px) {

#contact .form dl{
	font-size: 1.6rem;
}
#contact .form .mfp_buttons{
	margin: 50px 0 0 0;
}
#contact .form button[type="submit"]{
	width: 336px;
	padding: 20px 0;
}
}





/*-----------------------------------------------------
 footer
-----------------------------------------------------*/
#footer a{ color: #FFF; }
#footer a:hover{ color: #aaa; }

/* logo
-----------------------------------------------------*/
@media screen and (max-width: 767px) {
#footer .logo{ padding: 30px 0 25px 0; }
#footer .logo img{ width: 115px; }
}
@media screen and (min-width: 768px) {
#footer .logo{ padding: 75px 0 50px 0; }
}

/* place
-----------------------------------------------------*/
@media screen and (max-width: 767px) {
#footer .place{
	margin				: 0 0 20px 0;
	font-size			: 1rem;
}
}
@media screen and (min-width: 768px) {
#footer .place{
	margin				: 0 0 30px 0;
	font-size			: 1.2rem;
}
}

/* navi
-----------------------------------------------------*/
#footer .navi{ margin: 0 0 20px 0; }
#footer .navi ul{
	-js-display			: flex; /* IE */
	display				: -webkit-flex; /* Safari */
	display				: flex;
	flex-direction		: row;
	flex-wrap			: wrap;
}
#footer .navi ul::after {
	content				: '';
	width				: 100%;
}
#footer .navi li{
	display				: inline-flex;
	text-align			: left;
}
@media screen and (max-width: 767px) {
#footer .navi{
	margin				: 0 auto 10px auto;
	width				: 270px;
}
#footer .navi ul{ justify-content: space-between; }
#footer .navi li{ width: 130px; }
#footer .navi li:nth-child(n+2) { order: 1; }
}

@media screen and (min-width: 768px) {
#footer .navi ul{
	justify-content		: center;
	text-align			: center;
}
#footer .navi li{
	margin				: 20px 0 0 0;
	padding				: 0 12px;
}
#footer .navi li:nth-child(n+5) { order: 1; }
}

/* sns
-----------------------------------------------------*/
#footer .sns	{ margin: 40px 0; }
#footer .sns li	{ margin: 0 5px; }
@media screen and (max-width: 767px) {
#footer .sns		{ margin: 20px 0; }
#footer .sns li		{ margin: 0 10px; }
#footer .sns li a	{ font-size: 2.8rem; }
}


/* address
-----------------------------------------------------*/
#footer .address{
	margin				: 20px 0;
	font-size			: 1.2rem;
}
#footer .address small{
	display				: inline-block;
	line-height			: 1.5;
	font-size			: 1.2rem;
}
@media screen and (min-width: 768px) {
#footer .address{ font-size: 1.4rem; }
#footer .address small{font-size: 1rem; }
}

/* copy
-----------------------------------------------------*/
#footer .copy small{ font-size: 1rem; }


