@charset"utf-8";
@import url(//use.fontawesome.com/releases/v5.7.2/css/all.css);
/* "*"
-------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}
/* "html"
-------------------------------------------------- */
html{
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 62.5%;
	box-sizing: border-box;
}
/* "body"
-------------------------------------------------- */
body {
	font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
	margin: 0;
	padding: 0;
	letter-spacing: -0.01em;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size: 1.5rem;
	color: #000;
}
body * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box; 
}

/* "p"tag
-------------------------------------------------- */
p{
	font-size: 1.5rem;
	margin-bottom: 0;
}
p.p-txt{
	line-height: 1.6;
}
p.p-tax{
	margin-top: 0.5rem;
	font-size: 1.4rem;
	line-height: 1.6;
}
@media print, screen and (max-width: 767px) {
	p{
		font-size: 1.4rem;
	}
	p.p-tax{
		font-size: 1.3rem;
		line-height: 1.5;
	}
}
/* "a"tag
-------------------------------------------------- */
a{
	color: #333;
	text-decoration: none;
}
/* "li/ol/ul" Tag
-------------------------------------------------- */
ul li{
	font-size: 1.5rem;
	list-style-type: none;
	line-height: 1.6;
}
ol li{
	font-size: 1.5rem;
	line-height: 1.6;
}
ul.mkr li{
	list-style-type: disc;
	margin-left: 2.3rem;
}
@media print, screen and (max-width: 767px) {
	ul li{
	font-size: 1.4rem;
	}
	ol li{
	font-size: 1.4rem;
	}
	ul.mkr li{
	margin-left: 2.0rem;
	}
}
/* "dt dd" Tag
-------------------------------------------------- */
dl dt,
dl dd{
  font-size: 1.5rem;
  line-height: 1.6;
}

@media print, screen and (max-width: 767px) {
  dl dt,
  dl dd{
    font-size: 1.4rem;
  }
}
/* "img" Tag
-------------------------------------------------- */
div.img-area img{
  width: 100%;
  height: auto;
}
/* decoration
-------------------------------------------------- */
.bold{
	font-weight: bold;
}
.left{
	text-align: left;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}
/* color
-------------------------------------------------- */
.pink {
	color: #D1467B
}
.white {
	color: #FFFFFF;
}
.red {
	color: #DE4830;
}
.blue {
	color: #156CA3;
}
.orange {
	color: #E9872E;
}
.green {
	color: #26AE90;
}
.brown {
	color: #AD8141;
}
/* margin
-------------------------------------------------- */
.mb0 {
	margin-bottom: 0;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb60 {
	margin-bottom: 60px;
}
.mb70 {
	margin-bottom: 70px;
}
.mb80 {
	margin-bottom: 80px;
}
.mb90 {
	margin-bottom: 90px;
}
.mb100 {
	margin-bottom: 100px;
}
/* forPC,forSP
-------------------------------------------------- */
.forPC{
	display: inline;
}
.forSP{
	display: none;
}
.forSM{
	display: none;
}
@media screen and (max-width: 767px) {
	.forPC{
		display: none;
	}
	.forSP{
		display: inline;
	}
}
@media screen and (max-width: 480px) {
	.forSM{
		display: inline;
	}
}
p a{
	text-decoration: underline;
	color: #D1467B;
}
p a:hover{
	opacity: 0.4;
	transition: 0.5s;
}

/* ==================================================
以下、ブロックごとの指定
================================================== */
/* wrapper
-------------------------------------------------- */
#wrapper{
	width: 100%;
}
/* inner
-------------------------------------------------- */
div.inner{
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	footer .inner{
		width: 95%;
		margin: 0 auto;
	}
}
/* content
-------------------------------------------------- */
div.content{
	width: 97%;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	div.content{
		width: 95%;
	}
}
/* "h" tag
-------------------------------------------------- */
h2.ftr{
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}
h3.h3-cmn{
	font-size: 2.8rem;
	margin-bottom: 5rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}
@media print, screen and (max-width: 767px) {
	h3.h3-cmn{
		font-size: 2.4rem;
		margin-bottom: 3rem;
	}
}

/* button
-------------------------------------------------- */
div.button-area{
	width: 20rem;
	margin: 5rem auto 0;
}
a.button,
input.button{
	position: relative;
	font-size: 1.6rem;
	color: #fff;
	background: #B81F0D;
	border: 1px solid #B81F0D;
	display: inline-block;
	width: 20rem;  
	height: 5.5rem;
	line-height: 5.3rem;
	text-align: center;
	border-radius: 1rem;
	-webkit-box-shadow: 0 0 0.4rem 0.1rem rgba(10, 10, 10, 0.25);
	box-shadow: 0 0 0.4rem 0.1rem rgba(10, 10, 10, 0.25);  
}
a.button.white,
input.button.white {
	color: #333;
	background: #fff;
	border: 1px solid #333;
}
input[type="submit"] {
	position: relative;
	font-size: 1.5rem;
	color: #fff;
	background: #B81F0D;
	border: 1px solid #B81F0D;
	display: inline-block;
	width: 20rem;  
	height: 5.5rem;
	line-height: 5.3rem;
	text-align: center;
	border-radius: 1rem;
}
a.button:hover,
input.button:hover{
	background: #fff;
	color: #B81F0D;
	transition: .5s;
}
a.button.red:hover,
input.button.red:hover {
	color: #B81F0D;
	background: #fff;
	border: 1px solid #B81F0D;
}
a.button.white:hover,
input.button.white:hover {
	color: #fff;
	background: #333;
	border: 1px solid #333;
}
@media print, screen and (max-width: 767px) {
	div.button-area{
		width: 18rem;
	}
	a.button {
		width: 18rem;
		font-size: 1.4rem;    
	}
	input[type="submit"] {
		width: 18rem;
	}
}
/* IE対応 */
@media print, screen and (-ms-high-contrast:none) {
	a.button,
	input.button{
		height: 5.5rem;
		line-height: 5.3rem;
	}
	input[type="submit"] {
		height: 5.5rem;
		line-height: 5.3rem;
	}
}

/* header
-------------------------------------------------- */
header.top-head{
	position: absolute;
	top: 0;
	z-index: 10;
	width: 100%;
	background-color: rgba(255,255,255,1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 11rem;
}
header div.logo-area{
	margin-left: 3.0rem;
	width: 8.5rem;
}
header div.logo-area img{
	width: 100%;
	height: auto;
}
header div.logo-area:hover{
	opacity: 0.4;
	transition: 0.6s;
}
/* nav */
header div.nav-area{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 0.5rem;
}
header div.nav-area nav.nav-wrap div.nav-logo{
  	display: none;
}
header div.nav-area nav.nav-wrap a.nav-button {
	display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 3.0rem;
	margin-bottom: 0.8rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns li{
	margin-right: 1.5rem;
	font-weight: normal;
	width: 6rem;
	text-align: center;
	line-height: 1.8;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns li.facebook{
	width: 3.7rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns li.instagram{
	width: 3.6rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns li.x{
	width: 3.3rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns li img{
	width: 100%;
	height: auto;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns li img:hover{
	opacity: 0.4;
	transition: 0.6s;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns li:last-child{
	margin-right: 0;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp{
	display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
	margin-right: 3rem;
	font-weight: normal;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
	font-size: 1.5rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
	opacity: 0.4;
	transition: 0.6s;
}
header div.nav-area nav.nav-wrap.open{
	display: block;
}
header div.nav-area nav.nav-wrap.close{
	display: none;
	margin-top: 0.3rem;
	opacity: 1;
	cursor: auto;
}
/* Fixed */
header.top-head.fixed{
	position: fixed;
	top: 0;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	background-color: rgba(255,255,255,1);
	-webkit-box-shadow: 0 0 0.4rem 0.2rem rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 0.4rem 0.2rem rgba(0, 0, 0, 0.15);
}
header.top-head.fixed div.logo-area a,
header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
}
header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  margin-right: 3rem;  
  font-weight: normal;
}
header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  color: #000;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  header div.nav-area nav.nav-wrap {
    display: block !important;
  }
}
@media print, screen and (max-width: 767px) {
	/* clicked hamburger button screen */
	header div.nav-area{
		display: block;
		-webkit-box-align: none;
		-ms-flex-align: none;
		align-items: none;
	}
	header.top-head{
		height: 10rem;
	}
	header div.logo-area{
		margin-left: 1.5rem;
		width: 8rem;
	}
	header div.nav-area nav.nav-wrap{
		left: 0;
		top: 0;
		display: none;
		z-index: 90;
		background: rgba(255,255,255,1);
		width: 100%;
		height: 100%;
		position: fixed;
	}
	header div.nav-area nav.nav-wrap div.nav-screen{
		position: relative;
		margin: 6rem auto 4rem;
		width: 85%;
		display: block;
	}
	header div.nav-area nav.nav-wrap div.nav-screen div.nav-logo{
		display: block;
		width: 12rem;
		margin: 0 auto;
	}
	header div.nav-area nav.nav-wrap div.nav-screen div.nav-logo img{
		width: 100%;
		height: auto;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns{
		display: none;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp{
		width: 9.8rem;
		margin: 3rem auto 2rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: flex-end;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp li{
		margin-right: 1.2rem;
		font-weight: normal;
		text-align: center;
		line-height: 1.8;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp li.facebook{
		width: 3.7rem;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp li.instagram{
		width: 3.6rem;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp li.x{
		width: 3.4rem;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp li:last-child{
		margin-right: 0;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.sns_sp li img{
		width: 100%;
		height: auto;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
		display: block;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
		margin-bottom: 2.0rem;
		margin-right: 0;
		text-align: center;
	}  
	header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
		color: #333;
		font-size: 1.6rem;
		font-weight: bold;
		transition: .5s;
	}
	header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
		opacity: 0.4;
		transition: 0.6s;
	}
	/* hamburger button */
	header div.nav-area a.nav_button{
		height: 2.2rem;
		position: absolute;
		right: 2.2rem;
		top: 3.8rem;
		width: 2.7rem;
		z-index: 101;
	}
	header div.nav-area a.nav_button:hover{
		cursor: pointer;
		opacity: 0.4;
		transition: 0.6s;
	}
	header div.nav-area span.nav_line{
		background: #333;
		display: block;
		height: 2px;
		position: absolute;
		transition:transform .3s;
		width: 100%;
	}
	header div.nav-area span.line_center{
		top: 10px;
	}
	header div.nav-area span.line_bottom{
		bottom: 0;
	}
	header div.nav-area span.line_top.active{
		background: #333;
		top: 10px;
		transform: rotate(45deg);
	}
	header div.nav-area span.line_center.active{
		transform:scaleX(0);
	}
	header div.nav-area span.line_bottom.active{
		background: #333;
		bottom: 10px;
		transform: rotate(135deg);
	}
	/* Fixed */
	header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.sns{
		display: none;
	}
	header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav{
		display: block;
	}
	header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
		margin-bottom: 2.0rem;
		margin-right: 0;
		text-align: center;
	}  
	header.top-head.fixed div.nav-area a.nav_button{
		right: 2.5rem;
		top: 3.5rem;
	}
	header.top-head.fixed div.nav-area span.nav_line{
		background: #333;
	}
	header.top-head.fixed div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
		color: #333;
		font-size: 1.6rem;
		font-weight: bold;
		transition: .5s;
	}
	header.top-head.fixed div.nav-area span.line_top.active,
	header.top-head.fixed div.nav-area span.line_bottom.active{		
		background: #333;
	}
}

/* mainvisualSec
-------------------------------------------------- */
/* visual */
section.mainvisualSec{
	margin-top: 10rem;
	width: 100%;
	height: calc(100vh - 10rem);
	position: relative;
	background: url(../img/top/mainVisual.jpg) center top / cover no-repeat;
}
section.mainvisualSec::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: calc(100vh - 10rem);
	width: 100%;
	background: rgba(0, 0, 0, 0.25)!important;
}
/* copy */
section.mainvisualSec div.copy-area{
	position: absolute;
	top: 50%;
	left: 4.5rem;
	transform: translateY(-50%);
	z-index: 1;
	width: 67rem;
}
section.mainvisualSec div.copy-area h2.copy{
	color: #fff;
	font-size: 3.4rem;
	line-height: 1.2;
	font-weight: bold;
	text-shadow: 2px 2px 0 #333;
}
section.mainvisualSec div.copy-area p.sub{
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.5;
	margin-top: 3rem;
	text-shadow: 2px 2px 0 #333;
}
@media print, screen and (max-width: 960px) {	
	section.mainvisualSec{		
		width: 100%;
		height: 0;
		padding-bottom: 103%;
	}
	section.mainvisualSec::after{
		height: 0;
		padding-bottom: 103%; 
	}
	/* copy */
	section.mainvisualSec div.copy-area{
		top: 49%;
		transform: translateY(-51%);
		width: 95%;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	section.mainvisualSec div.copy-area h2.copy{
		font-size: 3.2rem;
		line-height: 1.2;
	}
	section.mainvisualSec div.copy-area p.sub{
		margin: 2rem auto 0;
	}
}
@media print, screen and (max-width: 767px) {	
	section.mainvisualSec{
		margin-top: 10rem;
		width: 100%;
		height: 0;
		padding-bottom: 115%;
	}
	section.mainvisualSec::after{
		height: 0;
		padding-bottom: 115%; 
	}
	section.mainvisualSec div.copy-area h2.copy{
		font-size: 2.8rem;
		line-height: 1.2;
	}
	section.mainvisualSec div.copy-area p.sub{
		font-size: 1.6rem;
		line-height: 1.5;
	}
}
@media print, screen and (max-width: 560px) {
	section.mainvisualSec{
		width: 100%;
		height: calc(100vh - 9rem);
		padding-bottom: 0;
		background: url(../img/top/mainVisual_sp.jpg) right top / cover no-repeat;
	}
	section.mainvisualSec::after{
		height: calc(100vh - 9rem);
		padding-bottom: 0;
	}
	/* copy */
	section.mainvisualSec div.copy-area{
		top: 50%;
		transform: translateY(-50%);
		width: 95%;
		margin: 0 auto;
	}
	section.mainvisualSec div.copy-area h2.copy{
		font-size: 2.2rem;
		line-height: 1.3;
	}
	section.mainvisualSec div.copy-area p.sub{
		font-size: 1.4rem;
		line-height: 1.6;
		margin-top: 5%;
	}
}

/* conceptSec
-------------------------------------------------- */
/* section */
section.conceptSec{
	margin: 10rem 0 0;
}
section.conceptSec div.content div.list{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
}
section.conceptSec div.content div.list ul li{
	list-style-type: disc;
	margin-left: 2.3rem;
	line-height: 2.0;
	font-size: 2.0rem;
}
@media print, screen and (max-width: 767px) {
	/* section */
	section.conceptSec{
		margin: 7rem 0 0;
	}
	section.conceptSec div.content div.list ul li{
		line-height: 1.8;
		font-size: 1.8rem;
	}
}

/* campaignSec
-------------------------------------------------- */
/* "h"tag */
h3.h3-cmn.campaign{
	color: #B81F0D;
}
h4.h4-campaign{
	font-size: 2.6rem;
	line-height: 1.3;
	margin-bottom: 1rem;
}
/* section */
section.campaignSec{
	margin: 10rem auto 0;
}
section.campaignSec div.wrap{
	width: 53rem;
	margin: 0 auto 5rem;
	text-align: center;
}
section.campaignSec div.content p.campaign-txt{
	font-size: 2.0rem;
	line-height: 1.4;
}
section.campaignSec div.content p.campaign-price{
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.6;
	color: #B81F0D;
}
section.campaignSec div.content p.campaign-period{
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
	margin: 5rem 0;
}
section.campaignSec div.content p.p-txt{
	font-size: 1.6rem;
	text-align: center;
}
@media print, screen and (max-width: 767px) {
	/* "h"tag */
 	h4.h4-campaign{
		font-size: 2.0rem;
		margin-bottom: 2rem;
	}
	/* section */
	section.campaignSec{
		margin: 7rem auto 0;
	}
	section.campaignSec div.wrap{
		width: 100%;
		margin: 0 auto 2rem;
		text-align: center;
	}
	section.campaignSec div.content p.campaign-txt{
		font-size: 1.6rem;
		line-height: 1.6;
	}
	section.campaignSec div.content p.campaign-price{
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.6;
		color: #B81F0D;
	}
	section.campaignSec div.content p.campaign-period{
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		margin: 3rem 0;
	}
	section.campaignSec div.content p.p-txt{
		width: 95%;
		font-size: 1.5rem;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
}

/* pointSec
-------------------------------------------------- */
/* "h"tag */
h4.h4-point{
	font-size: 2.4rem;
	margin-bottom: 3rem;
	line-height: 1.3;
	text-align: center;
}
/* section */
section.pointSec{
	padding: 18rem 0 0;
	margin: -9rem auto 0;
}
section.pointSec div.content div.wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
section.pointSec div.content div.wrap div.point{
	width: 31%;
	position: relative;
	margin-bottom: 5rem;
}
section.pointSec div.content div.wrap div.point div.img-area{
	margin: 0 0 5rem;
}
section.pointSec div.content div.wrap div.point div.img-area img{
	border-radius: 50%;
}
section.pointSec div.content div.wrap div.point div.text-area{
	position: absolute; 
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	transform: translateY(-51%);
}
section.pointSec div.content div.wrap div.point div.text-area p{
	font-size: 2.6rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
}
@media print, screen and (max-width: 767px) {
	/* "h"tag */
	h4.h4-point{
		font-size: 2.0rem;
		margin-bottom: 2rem;
		text-align: center;
	}
	/* section */
	section.pointSec{
		padding: 14rem 0 0;
		margin: -7rem auto 0;
	}
	section.pointSec div.content div.wrap div.point{
		width: 48.5%;
		position: relative;
		margin-bottom: 5rem;
	}
	section.pointSec div.content div.wrap div.point div.img-area{
		margin: 0 0 3rem;
	}
}
@media print, screen and (max-width: 560px) {
	section.pointSec div.content div.wrap{
		display: block;
		margin-bottom: 5rem;
	}
	section.pointSec div.content div.wrap div.point{
		width: 90%;
		margin: 0 auto 3rem;
	}
	section.pointSec div.content div.wrap div.point div.text-area p{
		font-size: 6.2vw;
	}
}

/* recommendSec
-------------------------------------------------- */
/* "h"tag */
h3.h3-cmn.rcmd{
	color: #fff;
	margin-bottom: 3rem;
	font-size: 2.8rem;
}
/* section */
section.recommendSec{
	margin: 5rem 0 0;
	background: url(../img/top/recommendSec_bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100%;
	padding-top: 10rem;
	padding-bottom: 5rem;
}
section.recommendSec div.list{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: flex-start;
	max-width: 900px;
	margin: 0 auto 5rem;
}
section.recommendSec div.list ul{
	padding: 0 2rem;
}
section.recommendSec div.list ul li{
	position: relative;
	font-size: 2.0rem;
	margin-bottom: 1.5rem;
	padding-left: 2.2rem;
	color: #fff;
	text-align: center;
	line-height: 1.6;
}
section.recommendSec div.list ul li:last-child{
	margin-bottom: 0;
}
section.recommendSec div.list ul li::after{
	display: block;
	content: '';
	position: absolute;
	top: 1.0rem;
	left: 0rem;
	width: 1.3rem;
	height: 0.5rem;
	border-left: 3px solid #F7E56C;
	border-bottom: 3px solid #F7E56C;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
@media print, screen and (max-width: 767px) {
	/* "h"tag */
	h3.h3-cmn.rcmd{
		color: #fff;
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
	/* section */
	section.recommendSec{
		margin: 0;
		padding-top: 7rem;
		padding-bottom: 7rem;
	}
	section.recommendSec div.list{
		padding: 0;
		margin: 0 auto 3rem;
	}
	section.recommendSec div.list ul{
		padding: inherit;
	}
	section.recommendSec div.list:last-child{
		margin: 0;
	}
	section.recommendSec div.list ul li{
		font-size: 1.6rem;
		margin-bottom: 1.2rem;
		padding-left: 2.2rem;
		line-height: 1.4;
		text-align: left;
	}
	section.recommendSec div.list ul li::after{
		top: 1.0rem;
		width: 1.1rem;
		height: 0.4rem;
	}
}

/* itemSec
-------------------------------------------------- */
section.itemSec{
	padding: 18rem 0 0;
	margin: -9rem auto 0;
}
section.itemSec div.content div.itemlist{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
section.itemSec div.content div.itemlist div.box{
	width: 49%;  
	background: #fff;
	-webkit-box-shadow: 0 0 0.3rem 0.2rem rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 0.3rem 0.2rem rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
	position: relative;
}
section.itemSec div.content div.itemlist div.box.blank{
	background: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	margin-bottom: 0;
	padding: 0;  
}
section.itemSec div.content div.itemlist div.box div.img{
	width: 100%;
}
section.itemSec div.content div.itemlist div.box div.img img{
	width: 100%;
	height: auto;
}
section.itemSec div.content div.itemlist div.box div.video{
	width: 100%;
	margin: 2rem auto 0;
}
section.itemSec div.content div.itemlist div.box div.video video{
	width: 100%;
	height: auto;
}
section.itemSec div.content div.itemlist div.box dl{
	text-align: left;
	position: relative;
	padding: 2rem 1rem;
}
section.itemSec div.content div.itemlist div.box dl dt.title{
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
section.itemSec div.content div.itemlist div.box dl dd span.price{
	color: #B81F0D;
	font-weight: bold;
}
section.itemSec div.content div.itemlist div.box dl dd ol li{
	margin-left: 2rem;
}
section.itemSec div.content div.itemlist div.box dl dd ul li{
	margin-left: 2rem;
	list-style-type: disc;
}
section.itemSec div.content div.itemlist div.box dl dd a{
	text-decoration: underline;
	color: #B81F0D;
}
section.itemSec div.content div.itemlist div.box dl dd a:hover{
	opacity: 0.4;
	transition: 0.6s;
}
@media print, screen and (max-width: 767px) {
	section.itemSec{
		padding: 14rem 0 0;
		margin: -7rem auto 0;
	}
	section.itemSec div.content div.itemlist div.box{
		width: 48.5%;
		margin-bottom: 3%;
	}
	section.itemSec div.content div.itemlist div.box dl{
		position: relative;
		padding: 2.5rem 1rem;
	}
	section.itemSec div.content div.itemlist div.box dl dt.title{
		font-weight: bold;
		text-align: center;
	}
	section.itemSec div.content div.itemlist div.box dl dd.price{
		color: #B81F0D;
		font-size: 1.6rem;
		text-align: right;
		margin-top: 1.5rem;
		font-weight: bold;
	}
}
@media print, screen and (max-width: 560px) {
	section.itemSec div.content div.itemlist div.box{
		width: 100%;
		margin-bottom: 4%;
	}
	section.itemSec div.content div.itemlist div.box dl dd.title{
		margin: 2rem 0 0;
	}
	section.itemSec div.video{
		width: 100%;
	}
}

/* priceSec
-------------------------------------------------- */
section.priceSec{
	margin: 10rem 0 0;
}
section.priceSec div.content div.pricelist{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
section.priceSec div.content div.pricelist div.box{
	width: 32.5%;
	position: relative;
	border: 1px solid #08233E;
}
section.priceSec div.content div.pricelist div.box.blank{
	background: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	border: none;
	margin-bottom: 0;
	padding: 0;  
}
section.priceSec div.content div.pricelist div.box dl{
	text-align: left;
	position: relative;
}
section.priceSec div.content div.pricelist div.box dl dt.title{
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 2.6;
	background: #08233E;
	color: #fff;
	text-align: center;
}
section.priceSec div.content div.pricelist div.box dl dd{	
	padding: 2.5rem 1rem;
}
section.priceSec div.content div.pricelist div.box dl dd p.session,
section.priceSec div.content div.pricelist div.box dl dd p.level{
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.4;
	margin-bottom: 0.5rem;
	color: #08233E;
}
section.priceSec div.content div.pricelist div.box dl dd span.price{
	color: #B81F0D;
	font-weight: bold;
}
@media print, screen and (max-width: 960px) {
	section.priceSec div.content div.pricelist div.box{
		width: 49%;
		margin-bottom: 2rem;
	}
}
@media print, screen and (max-width: 767px) {
	section.priceSec{
		margin: 7rem auto 0;
	}
	section.priceSec div.content div.pricelist{
		display: block;
	}	
	section.priceSec div.content div.pricelist div.box{
		width: 100%;
		margin-bottom: 3%;
	}
	section.priceSec div.content div.pricelist div.box:last-child{
		margin-bottom: 0;
	}
	section.priceSec div.content div.pricelist div.box dl{
		position: relative;
		padding: 1.5rem 1rem;
	}
	section.priceSec div.content div.pricelist div.box dl dt.title{
		font-size: 1.6rem;
		line-height: 2.4;
	}
	section.priceSec div.content div.pricelist div.box dl dd{	
		padding: 1.5rem 0;
	}
	section.priceSec div.content div.pricelist div.box dl dd.price{
		color: #B81F0D;
		font-size: 1.6rem;
		text-align: right;
		margin-top: 1.5rem;
		font-weight: bold;
	}
}
@media print, screen and (max-width: 560px) {
	section.priceSec div.content div.pricelist div.box{
		width: 100%;
		margin-bottom: 4%;
	}
	section.priceSec div.content div.pricelist div.box dl dd.title{
		margin: 2rem 0 0;
	}
}

/* courseSec
-------------------------------------------------- */
section.courseSec{
	margin: 8rem 0 0;
}
section.courseSec div.content div.courselist{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
section.courseSec div.content div.courselist div.box{
	width: 49%;
	position: relative;
}
section.courseSec div.content div.courselist div.box.b01,
section.courseSec div.content div.courselist div.box.b02{
	margin-bottom: 5rem;
}
section.courseSec div.content div.courselist div.box.blank{
	background: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	margin-bottom: 0;
	padding: 0;  
}
section.courseSec div.content div.courselist div.box dl{
	text-align: left;
	position: relative;
}
section.courseSec div.content div.courselist div.box dl dt.title{
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	line-height: 1.1;
	color: #08233E;
	text-align: center;
}
section.courseSec div.content div.courselist div.box dl dd{
	border: 1px solid #aaa;
	padding: 2rem;
}
section.courseSec div.content div.courselist div.box dl dd div{
	margin-bottom: 1.5rem;
}
section.courseSec div.content div.courselist div.box dl dd div img{
	width: 100%;
	height: auto;
}
section.courseSec div.content div.courselist div.box dl dd p.cat{
	font-size: 1.8rem;
	line-height: 2.2;
	background: #08233E;
	color: #fff;
	font-weight: bold;
	padding: 0 1rem;
	margin-bottom: 2rem;
}
section.courseSec div.content div.courselist div.box dl dd span.concept{
	font-size: 1.6rem;
	line-height: 1.4;
	display: block;
	margin-bottom: 1rem;
}
section.courseSec div.content div.courselist div.box dl dd span.price{
	color: #B81F0D;
	font-weight: bold;
	font-size: 1.6rem;
}
section.courseSec div.content div.courselist div.box dl dd ol li{
	margin-left: 2rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}
section.courseSec div.content div.courselist div.box dl dd ol li:last-child{
	margin-bottom: 0;
}
@media print, screen and (max-width: 960px) {
	section.courseSec{
		display: block;
		margin: 7rem auto 0;
	}
	section.courseSec div.content div.courselist{
		display: block;
	}
	section.courseSec div.content div.courselist div.box{
		width: 100%;
		margin-bottom: 5rem;
		position: relative;
	}
	section.courseSec div.content div.courselist div.box dl{
		position: relative;
		padding: 0;
	}
	section.courseSec div.content div.courselist div.box dl dt.title{
		line-height: 1.3;
		font-size: 1.7rem;
	}
	section.courseSec div.content div.courselist div.box dl dd{
		padding: 0;
		border: none;
	}
	section.courseSec div.content div.courselist div.box dl dd p.cat{
		font-size: 1.6rem;
		margin-bottom: 1.5rem;
	}
	section.courseSec div.content div.courselist div.box dl dd span.concept{
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}
	section.courseSec div.content div.courselist div.box dl dd.price{
		color: #B81F0D;
		font-size: 1.6rem;
		text-align: right;
		margin-top: 1.5rem;
		font-weight: bold;
	}
	section.courseSec div.content div.courselist div.box dl dd ol li{
		margin-bottom: 1rem;
		line-height: 1.5;
	}
}
@media print, screen and (max-width: 560px) {
	section.courseSec div.content div.pricelist div.box{
		width: 100%;
		margin-bottom: 4%;
	}
	section.courseSec div.content div.pricelist div.box dl dd.title{
		margin: 2rem 0 0;
	}
}

/* howToSec
-------------------------------------------------- */
h4.h4-cmn.howTo {
	background: #08233E;
	color: #fff;
	font-size: 2.0rem;
	margin: 0 auto 2rem;
	padding: 1.2rem 0 1rem;
	text-align: center;
}
h5.h5-cmn.howTo{
	font-size: 1.8rem;
	text-align: center;
	margin: 2rem 0;
}
section.howToSec{
	margin: 10rem 0 0;
	padding: 7rem 0;
	background: #F0F0F0;
}
section.howToSec div.content div.howTowrap{
	margin-top: 5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
}
section.howToSec div.content div.howTowrap div.wrap{
	width: 32.5%;
	background: #fff;
	padding: 3rem 1.5rem;
	-webkit-box-shadow: 0 0 0.3rem 0.2rem rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 0.3rem 0.2rem rgba(0, 0, 0, 0.1);
}
@media print, screen and (max-width: 767px) {
	h4.h4-cmn.howTo {
		font-size: 1.8rem;
		padding: 1rem 0 0.8rem;
		margin: 0 auto 2rem;
	}
	h5.h5-cmn.howTo{
		font-size: 1.6rem;
		margin: 2rem 0 1.5rem;
	}
	/* howToSec */
	section.howToSec{
		margin: 7rem 0 0;
		padding: 7rem 0;
	}
	section.howToSec div.content div.howTowrap{
		margin-top: 3rem;
		display: block;
	}
	section.howToSec div.content div.howTowrap div.wrap{
		width: 100%;
		margin-bottom: 4%;
	}
	section.howToSec div.content div.howTowrap div.wrap:last-child{
		margin-bottom: 0;
	}
}

/* accessSec
-------------------------------------------------- */
/* "h"tag */
h4.h4-access{
	font-size: 2.0rem;
	margin-bottom: 1rem;
}
h4.h4-access::before{
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background-size: contain;
	vertical-align: middle;
	margin-right: 0.3rem;
	padding-top: 0.2rem;
}
h4.h4-access.a01::before{
	background-image: url(../img/top/placeholder.svg);
}
h4.h4-access.a03::before{
	background-image: url(../img/top/school-bus.svg);
}
section.accessSec{
	margin: 10rem auto 0;
}
section.accessSec div.content div.wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
/*section.accessSec div.content div.wrap div.gmap{
	width: 47%;
}
section.accessSec div.content div.wrap div.gmap iframe{
	width: 100%;
	height: 45rem;
}
section.accessSec div.content div.wrap div.imgarea img{
	width: 100%;
	height: auto;
}*/
section.accessSec div.content div.wrap div.imgarea{
  width: 48%;
}
section.accessSec div.content div.wrap div.imgarea ul.slider{
  width: 100%;
  margin: 0 auto 2rem;
}
section.accessSec div.content div.wrap div.imgarea ul.slider img{
  width: 100%;
  height: auto;
}
section.accessSec div.content div.wrap div.imgarea div.slider-arrow.slider-prev.fa.fa-chevron-left.slick-arrow {
  position: absolute;
  color: #fff;
  z-index: 8;
  font-size: 3.0rem;
  top: 49%;
  left: 2.5%;
  transform: translateY(-47%);
  text-shadow: 1px 1px 1px rgba(30,30,30,1);
  -webkit-text-shadow: 1px 1px 1px rgba(30,30,30,1);
}
section.accessSec div.content div.wrap div.imgarea div.slider-arrow.slider-next.fa.fa-chevron-right.slick-arrow {
  position: absolute;
  color: #fff;
  z-index: 8;
  font-size: 3.0rem;
  top: 49%;
  right: 2.5%;
  transform: translateY(-47%);
  text-shadow: 1px 1px 1px rgba(30,30,30,1);
  -webkit-text-shadow: 1px 1px 1px rgba(30,30,30,1);
}
section.accessSec div.content div.wrap div.imgarea div.slider-arrow.slider-prev.fa.fa-chevron-left.slick-arrow:hover,
section.accessSec div.content div.wrap div.imgarea div.slider-arrow.slider-next.fa.fa-chevron-right.slick-arrow:hover {
  cursor: pointer;
  opacity: 0.4;
  transition: 0.6s;
}
section.accessSec div.content div.wrap div.text-area{
	width: 50%;
}
section.accessSec div.content div.wrap div.text-area div.accessDetail h3{
	font-size: 1.8rem;
	margin-bottom: 0.8rem;
}
section.accessSec div.content div.wrap div.text-area div.accessDetail h3::before{
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background-size: contain;
	vertical-align: middle;
	margin-right: 0.5rem;
	margin-bottom: 0.3rem;
}
section.accessSec div.content div.wrap div.text-area div.accessDetail p{
	margin-bottom: 3rem;
}
@media print, screen and (max-width: 767px) {
	section.accessSec{
		margin: 7rem auto 0;
	}
	section.accessSec div.content div.wrap{
		display: block;
	}
	/*section.accessSec div.content div.wrap div.gmap{
		width: 100%;
		margin-bottom: 3rem;
	}*/
	section.accessSec div.content div.wrap div.imgarea{
	  width: 100%;
	  margin-bottom: 3rem;
	}
	section.accessSec div.content div.wrap div.text-area{
		width: 100%;
	}
}

/* profSec
-------------------------------------------------- */
/* "h"tag */
h4.h4-prof{
	font-size: 2.4rem;
	border-bottom: 1px dotted #707070;
	padding-bottom: 1rem;
	margin-bottom: 3rem;
}
h4.h4-prof::after {
	content: "MASANORI KISHIDA";
	color: #08233E;
	margin-left: 1.5rem;
	font-size: 1.5rem;
}
/* section */
section.profSec{
	margin: 10rem auto 0;
}
section.profSec div.content div.wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}
section.profSec div.content div.wrap div.imgarea{
	width: 33%;
}
section.profSec div.content div.wrap div.imgarea img{
	width: 100%;
	height: auto;
	border: 1px solid #eee;
}
section.profSec div.content div.wrap div.textarea{
	width: 62%;
}
section.profSec div.content div.wrap div.textarea p.p-text{
	margin-bottom: 3rem;
}
section.profSec div.content div.wrap div.textarea ul li{
	list-style-type: disc;
	margin-left: 2.4rem;
}
@media print, screen and (max-width: 767px) {
	/* "h"tag */
	h4.h4-prof{
		font-size: 2.0rem;
		border-bottom: 1px dotted #707070;
		padding-bottom: 1rem;
		margin-bottom: 3rem;
	}
	h4.h4-prof::after {
		margin-left: 1.0rem;
		font-size: 1.4rem;
	}
	section.profSec{
		margin: 7rem auto 0;
	}
	section.profSec div.content div.wrap{
		display: block;
		position: relative;
	}
	section.profSec div.content div.wrap div.imgarea{
		width: 100%;
	}
	section.profSec div.content div.wrap div.textarea{
		width: 100%;
		margin: 3rem auto 0;
	}
}

/* companySec
-------------------------------------------------- */
section.companySec{
	margin: 10rem auto 0;
}
section.companySec div.content table{
	width: 100%;
	line-height: 1.6;
	border-top: 1px solid #8F8F8F;
}
section.companySec div.content table tr{
	border-bottom: 1px solid #8F8F8F;
	width: 100%;
}
section.companySec div.content table th{
	width: 25rem;
	padding: 2.5rem 0 2.5rem 1rem;
	font-weight: bold;
	text-align: left;
	font-size: 1.6rem;
}
section.companySec div.content table td{
	padding: 2.5rem 0 2.5rem;
}
section.companySec div.content table td ul li{
	list-style-type: disc;
	line-height: 1.5;
	margin-left: 2.1rem;
	margin-bottom: 0.5rem;
}
section.companySec div.content table td ul li:last-child{
	margin-bottom: 0;
}
@media print, screen and (max-width: 767px) {
	section.companySec{
		margin: 7rem auto 0;
	}
	section.companySec div.content table th{
		display: block;
		width: 100%;
		padding: 1.5rem 0 0.2rem;
		font-size: 1.5rem;
	}
	section.companySec div.content table td{
		display: block;
		width: 100%;
		padding: 0 0 1.5rem;
	}
	section.companySec div.content table td ul li{
		line-height: 1.6;
		margin-bottom: 1rem;
	}
}

/* contactSec
-------------------------------------------------- */
section.contactSec{
	padding: 18rem 0 0;
	margin: -9rem auto 0;
}
table.form{
	width: 100%;
	margin-bottom: 5rem;
}
th span.required{
	background: #D2302F;
	padding: 0.2rem 0.6rem 0.2rem 0.5rem;
	color: #fff;
	margin-left: 1rem;
	font-size: 1.2rem;
	line-height: 1.8;
	display: inline-block;
}
th span.optional{
	background: #F7E56C;
	padding: 0.2rem 0.6rem 0.2rem 0.5rem;
	color: #000;
	margin-left: 1rem;
	font-size: 1.2rem;
	line-height: 1.8;
	display: inline-block;
}
table.form th{
	width: 25rem;
	text-align: left;
	padding: 2.5rem 0 0;
	vertical-align: middle;
	line-height: 2.0;
	font-weight: normal;
}
table.form th.name{
	padding: 0;
}
table.form th.vatop{
	vertical-align: top;
}
/* td */
table.form td{
	padding: 2.5rem 0 0;
}
table.form td input{
	line-height: 3.5;
	height: 3.5em;
	padding-left: 1rem;
	border: 1px solid #E5E5E5;
}
table.form td.name{
	padding: 0;
}
td.name input,
td.kana input{
	width: 70%;
}
td.phone-number input{
	width: 50%;
}
td.mail-address input,
td.address input{
	width: 100%;
}
td.remarks textarea{
	width: 100%;
	height: 12em;
	line-height: 1.6;
	padding-left: 1rem;
	background-color: #F5F5F5;
	border: 1px solid #E5E5E5;
}
td input[type=text],
td input[type=tel],
td input[type=email],
td input[type=date],
td input[type=number],
td input[type=password]{
	background-color: #F5F5F5;
}
td input[type=radio] {
    line-height: 2.2!important;
    height: 2.2em!important;
}
td select{
	background-color: #F5F5F5;
	border: 1px solid #E5E5E5;
	line-height: 3.0;
	height: 3.0em;
	width: 100%;
}
span.wpcf7-list-item {
    display: block!important;
    margin: 0!important;
}
/* error */
.wpcf7 .wpcf7-not-valid {
	background: pink;
}
span.wpcf7-not-valid-tip{
	display: none!important;
}
@media print, screen and (max-width: 767px) {
	section.contactSec{
		padding: 14rem 0 0;
		margin: -7rem auto 0;
	}
	section.contactSec p.p-txt{
		text-align: center;
		margin-bottom: 3rem;
	}
	table.form th{
		display: block;
		width: 100%;
		text-align: left;
		padding: 2rem 0 0;
		vertical-align: middle;
		line-height: 2.0;
		font-weight: normal;
	}
	table.form th.name{
		padding: 2rem 0 0;
	}
	table.form td{
		display: block;
		padding: 1.5rem 0 0;
	}
	table.form td.name{
		padding: 1.5rem 0 0;
	}
	td.name input,
	td.kana input{
		width: 100%;
	}
	td.phone-number input{
		width: 70%;
	}
}
/* IE対応 */
@media print, screen and (-ms-high-contrast:none) {
	th span.required{
		padding: 0.2rem 0.6rem 0.25rem 0.5rem;
		line-height: 1.6;
	}
	th span.optional{
		padding: 0.2rem 0.6rem 0.25rem 0.5rem;
		line-height: 1.6;
	}
}

/* footer
-------------------------------------------------- */
footer{
	margin-top: 10rem;
	background: #313131;
	color: #fff;
}
footer div.content div.footer-area{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	padding: 5rem 0;
}
footer div.content div.footer-area div.footer-logo{
	width: 11rem;
	height: auto;
	margin-right: 10%;
}
footer div.content div.footer-area div.footer-logo img{
	width: 100%;
	height: auto;
}
footer div.content div.footer-area div.footer-logo img:hover{
	opacity: 0.4;
	transition: 0.5s;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul{
	margin: 1.5rem auto 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 10rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li{
	margin-right: 1.0rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.facebook{
	width: 4.1rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.instagram{
	width: 3.9rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li.x{
	width: 3.6rem;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li:last-child{
	margin-right: 0;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li img{
	width: 100%;
	height: auto;
}
footer div.content div.footer-area div.footer-logo div.sns-area ul li img:hover{
	opacity: 0.4;
	transition: 0.6s;
}
footer div.content div.footer-area div.prof-area{

}
footer div.content div.footer-area div.prof-area a{
	color: #fff;
}
footer div.content div.copyright-area{
	border-top: 1px solid #fff;
	width: 100%;
	padding: 2rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
footer div.content div.copyright-area div.footernav ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
footer div.content div.copyright-area div.footernav ul li:first-child{
	margin-right: 3rem;
}
footer div.content div.copyright-area div.footernav ul li a{
	color: #fff;
}
footer div.content div.copyright-area div.footernav ul li a:hover{
	opacity: 0.4; 
	transition: 0.6s; 
}
footer div.content div.copyright-area div.copyright p{
	color: #fff;
	line-height: 1.8;
}
/*footer div.content div.copyright-area{
	border-top: 1px solid #fff;
	width: 100%;
	padding: 2.5rem 0;
	text-align: center;
}*/
@media print, screen and (max-width: 767px) {
	footer div.content div.footer-area{
		display: block;
		padding: 7rem 0;
	}
	footer div.content div.footer-area div.footer-logo{
	    width: 13rem;
	    height: auto;
	    margin: 0 auto 3rem;
	}
	footer div.content div.footer-area div.prof-area{
		display: block;
	}
	footer div.content div.footer-area div.prof-area div.text-area{
		text-align: center;
	}  
	footer div.content div.footer-area div.prof-area div.text-area p{
		text-align: center;
		width: 100%;
		margin: 2rem auto 0;
		line-height: 1.8;
	}
	footer div.content div.copyright-area div.footernav ul{
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: center;
		margin-bottom: 3rem;
	}
	footer div.content div.copyright-area{
		display: block;
	}
}