@charset "utf-8";

html {
	overflow: scroll;
	-webkit-overflow-scrolling
}
body {
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
}
img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}
a img {
  transition: all 0.4s ease;
}
a:hover, a:hover img {
  opacity: 0.9;
}
/* clearfix */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*--------
toggle 
--------*/
#header nav#toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
  background:#7E7E7E;
}
#header nav#toggle ul {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
#header nav#toggle ul li {
  display: block;
  padding: 0;
}
#header nav#toggle ul li a {
  display: block;
  position: relative;
  height: 50px;
  line-height: 3em;
  padding: 0 1.5em;
  border-radius: 4px;
  border: 0;
  font-size: 0.8em;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
#header nav#toggle ul li a[href="#menu"] {
  -webkit-tap-highlight-color: transparent;
  width: 50px;
  text-indent: 4em;
  font-size: 1em;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}
#header nav#toggle ul li a[href="#menu"]:before,
#header nav#toggle ul li a[href="#menu"]:after {
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2em 2em;
}
#header nav#toggle ul li a[href="#menu"]:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23ffffff%3B %7D%3C/style%3E%3Cline x1='0' y1='25' x2='100' y2='25' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3Cline x1='0' y1='75' x2='100' y2='75' /%3E%3C/svg%3E");
  opacity: 0;
}
#header nav#toggle ul li a[href="#menu"]:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23ffffff%3B %7D%3C/style%3E%3Cline x1='0' y1='25' x2='100' y2='25' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3Cline x1='0' y1='75' x2='100' y2='75' /%3E%3C/svg%3E");
  opacity: 1;
}
#header nav#toggle ul li a[href="#menu"]:hover:before {
  opacity: 1;
}
#header nav#toggle ul li a[href="#menu"]:hover:after {
  opacity: 0;
}
@media screen and (max-width: 736px) {
  #header nav#toggle {
    /* right: 1em; */
    /* top: 1em; */
  }
  #header nav#toggle ul li a[href="#menu"]:before, #header nav#toggle ul li a[href="#menu"]:after {
    background-size: 1.5em 1.5em;
  }
}
/*--------
menu 
--------*/
#menu {
  -moz-transform: translateX(22em);
  -webkit-transform: translateX(22em);
  -ms-transform: translateX(22em);
  transform: translateX(22em);
  -moz-transition: -moz-transform 0.45s ease, visibility 0.45s;
  -webkit-transition: -webkit-transform 0.45s ease, visibility 0.45s;
  -ms-transition: -ms-transform 0.45s ease, visibility 0.45s;
  transition: transform 0.45s ease, visibility 0.45s;
  position: fixed;
  top: 0;
  right: 0;
  width: 30em;
  /* max-width: 80%; */
  height: 100%;
  -webkit-overflow-scrolling: touch;
  /* overflow: scroll; */
  cursor: default;
  visibility: hidden;
  z-index: 10002;
  background: #7E7E7E;
}
#menu > .inner {
  -moz-transition: opacity 0.45s ease;
  -webkit-transition: opacity 0.45s ease;
  -ms-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  /*position: absolute;
  top: 0;
  left: 0;*/
  width: 100%;
  height: 100%;
  padding: 6em 2.75em 2.75em;
  opacity: 0;
  background: #7E7E7E;
}
#menu > .inner > ul {
  list-style: none;
  margin: 0 0 1em 0;
  padding: 0;
  position: fixed;
  top: 6em;
  right: -100%;
  width: 100%;
}
#menu > .inner > ul > li {
  padding: 0;
  width: 200px;
  border-top: solid 1px transparent;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}
.is-menu-visible #menu .inner ul li {
  -webkit-transform: translateX(-280px);
  transform: translateX(-280px);
}
.is-menu-visible #menu .inner ul li:nth-child(1) {
  transition-delay: .1s;
}
.is-menu-visible #menu .inner ul li:nth-child(2) {
  transition-delay: .2s;
}
.is-menu-visible #menu .inner ul li:nth-child(3) {
  transition-delay: .3s;
}
.is-menu-visible #menu .inner ul li:nth-child(4) {
  transition-delay: .4s;
}
.is-menu-visible #menu .inner ul li:nth-child(5) {
  transition-delay: .5s;
}
.is-menu-visible #menu .inner ul li:nth-child(6) {
  transition-delay: .6s;
}
.is-menu-visible #menu .inner ul li:nth-child(7) {
  transition-delay: .7s;
}
.is-menu-visible #menu .inner ul li:nth-child(8) {
  transition-delay: .8s;
}
.is-menu-visible #menu .inner ul li:nth-child(9) {
  transition-delay: .9s;
}
.is-menu-visible #menu .inner ul li:nth-child(10) {
  transition-delay: 1.0s;
}
.is-menu-visible #menu .inner ul li:nth-child(11) {
  transition-delay: 1.1s;
}
#menu > .inner > ul > li a {
  display: block;
  padding: 0.8em 0.5em;
  line-height: 1.5;
  border: 0;
  color: #fff;
  position: relative;
}
#menu > .inner > ul > li:first-child {
  border-top: 0;
  margin-top: -1em;
}
#menu > .inner > ul > li svg {
  position: absolute;
  right: 0.5em;
  top: 25%;
  font-size: 23px;
}
#menu > .close {
  -moz-transition: opacity 0.45s ease, -moz-transform 0.45s ease;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  -ms-transition: opacity 0.45s ease, -ms-transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease;
  -moz-transform: scale(0.25) rotate(180deg);
  -webkit-transform: scale(0.25) rotate(180deg);
  -ms-transform: scale(0.25) rotate(180deg);
  transform: scale(0.25) rotate(180deg);
  -webkit-tap-highlight-color: transparent;
  display: block;
  position: absolute;
  top: 2em;
  right: 3em;
  width: 6em;
  text-indent: 6em;
  height: 3em;
  border: 0;
  font-size: 1em;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}
#menu > .close:before, #menu > .close:after {
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2em 2em;
}
#menu > .close:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23ffffff%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
  opacity: 0;
}
#menu > .close:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23ffffff%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
  opacity: 1;
}
#menu > .close:hover:before {
  opacity: 1;
}
#menu > .close:hover:after {
  opacity: 0.6;
}
body.is-menu-visible #menu {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
body.is-menu-visible #menu > * {
  opacity: 1;
}
body.is-menu-visible #menu .close {
  -moz-transform: scale(1.0) rotate(0deg);
  -webkit-transform: scale(1.0) rotate(0deg);
  -ms-transform: scale(1.0) rotate(0deg);
  transform: scale(1.0) rotate(0deg);
  opacity: 1;
}
@media screen and (max-width: 736px) {
  #menu {
    -moz-transform: translateX(20em);
    -webkit-transform: translateX(20em);
    -ms-transform: translateX(20em);
    transform: translateX(20em);
    width: 100%;
  }
  #menu > .inner {
    padding: 4em 2em;
  }
  #menu > .inner > ul {
  	top: 4em;
  }
  #menu > .close {
    top: 1em;
    right: 1em;
    width: 4.25em;
    text-indent: 4.25em;
  }
  #menu > .close:before, #menu > .close:after {
    background-size: 1.5em 1.5em;
  }
}

/*--------
header 
--------*/
#header {
  position: fixed;
  background: #fff;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.2);
  width: 100%;
  height: 50px;
  z-index: 9999;
}
#header .logo img {
  width: auto;
  height: 34px;
}
#header .tel,
#header .open {
  font-family: 'EB Garamond', serif;
  font-size: 12px;
  text-align: right;
  line-height: 1.3;
}
#header .tel {
  padding-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}
#header .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  height: 50px;
  padding: 0 60px 0 10px;
}

/*--------
main 
--------*/
#main {
  padding-top: 50px;
}
/* bg_fixed */
.bg_fixed {
	background: url(../images/bg_today.jpg) no-repeat center top;	
	background-size: 200%;
	padding: 8% 0;
    min-height: 400px;
    background-attachment: fixed;
}
/* cast_area */
#bottom_therapist {
	margin: 7% 0 2%;
}
.cast_area {
	width: 96%;
	margin: 0 auto;
	position: relative;
}

/* bottom_bannerarea */
#bottom_bannerarea {
  padding: 0 0 7%;
}
.bottom_bannerarea_in {
  /*display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;*/
  text-align: center;
}

.bottom_bannerarea_in .bnr {
	margin-bottom: 10px;
}

.bottom_bannerarea_in a {
  margin-right: 0px;
}

/* diarywidget */
.diarywidget {
	width: 320px;
	margin: 0 auto 20px;
}

/* title */
h2.title {
	color: #7E7E7E;
	font-size: 12px;
	text-align: center;
	line-height: 1.5;
	margin: 0 0 20px;
	letter-spacing: 0.1em;
}
h2.title > span {
  margin: 0 auto;
  position: relative;
  display: block;
}
h2.title > span img {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
h2.title .en {
	font-size: 20px;
	display: block;
	font-family: 'EB Garamond', serif;
	letter-spacing: 0.09em;
}

/* figarea */
.figarea {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
.figarea .photo_area {
	position: relative;
	overflow: hidden;
}
.figarea a:hover .photo_area > img {
	transform: scale(1.1);
	transition-duration: 0.3s;
	opacity: 1.0;
}
.figarea figure {
	width: 49%;
	margin: 0 2% 4% 0;
	position: relative;
}
.figarea figure:nth-child(2n) {
	margin-right: 0;
}
.figarea a .photo_area > div:first-of-type {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(50,149,217,0.7);
	height: 100%;
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: center;
	-webkit-align-content: center;
	align-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
.figarea a:hover .photo_area > div {
	visibility: visible;
}

/* catch */
.catch {
	font-size: 14px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	margin-bottom: 15px;
	padding: 0 10px;
}
figcaption .catch {
	color: inherit;
	font-size: 12px;
	text-align: inherit;
	padding: 0;
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
figcaption .soku_time {
	color: #d00012;
}
/* check */
.check {
	color: #fff;
	border: 1px solid #fff;
	display: block;
	width: 40%;
	margin: 0 auto;
	text-align: center;
}
/* figcaption */
.figarea figcaption {
	padding: 8px;
}
.figarea a:hover figcaption {
    background: rgba(100, 149, 237, 0.1);
}
/* name */
figcaption .name {
	font-weight: bold;
}
/* size */
figcaption .size {
	font-size: 10px;
}
/* time */
figcaption .time {
	color: #7E7E7E;
	font-weight: bold;
	margin: 2px 0;
	font-size: 12px;
}
figcaption .time i {
	margin-right: 3px;
}

/* icon_area */
.icon_area {
	position: absolute;
	bottom: 6px;
	left: 6px;
	display: inline-block;
}
.icon_area div {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
.icon_area div > span {
	width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	font-size: 10px;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	margin-right: 2px;
}
.icon_area div > span span {
	text-align: center;
}
.todaycat {
	background: #ff407b;
}
.newcat {
	background: #2fc9d3;
}
.newcat img {
	padding-top: 3px;
	width: 10px;
}
.no1cat {
	background: #ffd040;
}
.no1cat img {
	padding-top: 2px;
	padding-bottom: 3px;
	width: 17px;
}
#bottom_therapist .newcat img {
	width: 12px;
	padding-top: 1px;
}
#bottom_therapist .no1cat img {
	width: 20px;
	padding-bottom: 3px;
}

/* bnr_area */
#bnr_area {
	background: url(../images/bg_concept.gif);
	background-size: 25%;
	position: relative;
	padding: 5% 2%;
}
#bnr_area .roseimg2 {
	position: absolute;
	top: -13%;
	right: -5%;
	z-index: 999;
	width: 30%;
}
.bnr_box {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.bnr_box div {
	width: 49.5%;
	margin-bottom: 1%;
}
.bnr_box .bnr_recruit,
.bnr_box .bnr_line {
	width: 100%;
}
.bnr_box .bnr_line {
	margin-bottom: 0;
}
.bnr_box .credit a {
	height: 100%;
	background: #eaebef;
	text-align: center;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
.bnr_box .credit a img {
	width: 80%;
}
/* newslist */
.newslist {
  width: 96%;
  margin: 0 auto 7%;
  padding: 7% 0 0;
}
.newslist h2.title > span {
	width: 120px;
}
.newslist .newsbox {
  border-top: 1px dotted #7E7E7E;
  padding: 14px 0;
  clear: both;
}
.newslist .newsbox:first-child {
  border: none;
}
.newslist .newsbox .photo {
  width: 22%;
  float: left;
  height: 103px;
  overflow: hidden;
}
.newslist .newsbox .photo img {
	width: 100%;
	height: 103px;
	object-fit: cover;
	object-position: 50% 0%
}
.newslist .newsbox > div {
  width: 74%;
  float: right;
}
.newslist .newsbox .date span:nth-child(1) {
  margin-right: 10px;
  float: left;
}
.newslist .newsbox .date span:nth-child(2) {
  border-radius: 15px;
  margin-top: 0;
  text-align: center;
  color: #fff;
  font-size: 10px;
  display: block;
  width: 60px;
  height: 18px;
  line-height: 19px;
  float: left;
}
.newslist .newsbox .title {
  font-weight: bold;
  clear: both;
  padding: 6px 0 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newslist .newsbox .text {
	font-size: 12px;
	margin-bottom: 5px;
}
.newslist .newsbox .date {
	font-size: 12px;
}
.newslist .newsbox .newface {
  background: #43c68d;
}
.newslist .newsbox .event {
  background: #f5a455;
}
.newslist .newsbox .news {
  background: #cd4747;
}
.newslist .newsbox .more {
	font-size: 12px;
	color: #7E7E7E;
	font-weight: bold;
	padding: 4px 6px;
	border: 1px solid #7E7E7E;
	float: right;
}
.newslist .newsbox .more img {
	vertical-align: -2px;
	width: 12px;
	margin-left: 4px
}
.news_link {
  background: #7E7E7E;
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  text-align: center;
  height: 40px;
}
.news_link a {
  display: block;
  color: #fff;
  line-height: 40px;
}
.news_link img {
  margin-left: 10px;
  vertical-align: -1px;
  width: 16px;
}

/* bottom_therapist */
#bottom_therapist h2.title > span {
	width: 175px;
}

@media screen and (min-width: 568px) {
  #bnr_area .roseimg2 {
  	top: -9%
  }
}
@media screen and (min-width: 768px) {
  #bnr_area .roseimg2 {
  	top: -11%
  }
}

.figarea2 figure {
  position: relative;
  margin: 30px 0 0;
}
.figarea2 figure figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 15px 20px!important;
  background: rgba(50,149,217,0.7);
  color: #fff;
  transition: all 0.3s ease-out;
}

.figarea2 figure figcaption .name {
  font-weight: normal;
}

.figarea2 .slick-center {
  margin: 0;
}

.slick-slider {
	margin: 5px 0 40px!important;
}

.slick-dots li button:before {
   color: #7E7E7E!important;
    font-size: 16px!important;
}

/*--------
footer 
--------*/
footer {
  background: #7E7E7E;
  padding: 15px 10px;
}
footer .logo {
  width: 47%;
  margin: 0 auto;
  text-align: center;
}

#copyright,
.ban {
  font-size: 10px;
  text-align: center;
  color: #fff;
}
#copyright {
  margin: 14px 0;
}
.foot_menu {
  position: fixed;
  bottom: 10px;
  width: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  z-index: 9999;
}
.foot_menu div {
  width: 70px;
  color:darkgreen;
  background: rgba(255,255,255,0.9);
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
  padding: 6px 0 4px;
}
.foot_menu div svg {
  font-size: 38px;
  display: block;
  margin: 0 auto 2px;
  text-align: center;
}

/*--------
Animation 
--------*/
/* rotation */
@-webkit-keyframes rotation {
  from {
	transform: scale(0, 0) rotateY(180deg);
	-webkit-transform: scale(0, 0) rotateY(180deg);
  }
  to {
	transform: scale(1, 1) rotateY(360deg);
	-webkit-transform: scale(1, 1) rotateY(360deg);
  }
}
@keyframes rotation {
  from {
	transform: scale(0, 0) rotateY(180deg);
	-webkit-transform: scale(0, 0) rotateY(180deg);
  }
  to {
	transform: scale(1, 1) rotateY(360deg);
	-webkit-transform: scale(1, 1) rotateY(360deg);
  }
}
.rotation {
  -webkit-animation-name: rotation;
  animation-name: rotation;
}

@-webkit-keyframes fadeInDown2 {
	from {
	opacity: 0;
	-webkit-transform: translate3d(0, -20%, 0);
	transform: translate3d(0, -20%, 0);
	}

	to {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInDown2 {
	from {
	opacity: 0;
	-webkit-transform: translate3d(0, -20%, 0);
	transform: translate3d(0, -20%, 0);
	}

	to {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	}
}

.fadeInDown2 {
	-webkit-animation-name: fadeInDown2;
	animation-name: fadeInDown2;
	animation-duration: 1500ms;
}
/* fadeInUp2 */
@-webkit-keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
/* bounceIn2 */
@-webkit-keyframes bounceIn2 {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
	opacity: 0;
	-webkit-transform: scale3d(0.3, 0.3, 0.3);
	transform: scale3d(0.3, 0.3, 0.3);
	}

	20% {

	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
	-webkit-transform: scale3d(0.9, 0.9, 0.9);
	transform: scale3d(0.9, 0.9, 0.9);
	}

	60% {
	opacity: 1;
	-webkit-transform: scale3d(1.03, 1.03, 1.03);
	transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
	-webkit-transform: scale3d(0.97, 0.97, 0.97);
	transform: scale3d(0.97, 0.97, 0.97);
	}

	to {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	}
}

@keyframes bounceIn2 {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
	opacity: 0;
	-webkit-transform: scale3d(0.3, 0.3, 0.3);
	transform: scale3d(0.3, 0.3, 0.3);
	}

	20% {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
	-webkit-transform: scale3d(0.9, 0.9, 0.9);
	transform: scale3d(0.9, 0.9, 0.9);
	}

	60% {
	opacity: 1;
	-webkit-transform: scale3d(1.03, 1.03, 1.03);
	transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
	-webkit-transform: scale3d(0.97, 0.97, 0.97);
	transform: scale3d(0.97, 0.97, 0.97);
	}

	to {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	}
}

.bounceIn2 {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-name: bounceIn2;
	animation-name: bounceIn2;
	position: relative;
	z-index: 1;
}

#banner_area {
  margin: 10px auto 10px;
  width: 100%;
  max-width: 1162px;
}

#banner_area ul li {
  margin: 0 auto 10px;
  text-align: center;
}