@charset "UTF-8";
/* --------------------------------------------------- */
/* general */
/* --------------------------------------------------- */
html {
	font-size: 100%;
}
* {
	margin: 0;
	padding: 0;
}
*::after,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-size: 16px;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	background: #fff;
}
body a{
	color: #4169E1;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	transition: 0.5s all;
}
.small {
	margin-top:0.15em;
	font-size: .9em;
	letter-spacing: -0.1em
}

object {
    pointer-events: none;
}

.col-xs-3, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-xs-9, .col-md-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-3, .col-xs-9 {
  float: left;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-3 {
  width: 25%;
}
	.fb-container {
		width: 500px;
	}
@media (min-width: 992px) {
   .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }	
}
/* --------------------------------------------------- */
/* footer */
/* --------------------------------------------------- */
footer {
	text-align: center;
	clear: both;
	background: #32383C;
	padding: 3em 0 2em;
}
h4.footer {
	font-size: 1.2em;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 1.5em 0 .5em 0;
}
h4.footer a{
	color: #fff;
	text-decoration:none;
}
.footer-grid ul {
	padding-left: 0px;
}
.footer-grid ul.social-icons {
	font-size: 1.4em;
}
.footer-grid ul li {
	list-style-type: none;
}
.footer-grid ul li a {
	display: block;
	font-size: 1em;
	line-height: 1.8em;
	color: rgb(135, 138, 140);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	text-decoration: none;
}
.footer-grid ul li a:hover {
	color: #fff;
	text-decoration: none;
}
.policy {
	text-align: center;
	padding: 2em 0 1em;
}
.policy p {
	color: #fff;
	font-size: small;
	line-height: 1.8em;
}
.policy p a {
	color: #fff;
	font-size: small;
	line-height: 1.8em;
}
.copy-right {
	text-align: center;
	padding: 3em 0;
}
.copy-right p {
	color: #fff;
	text-transform: capitalize;
	line-height: 1.8em;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after {
  display: table;
  content: " ";
}
.clearfix:after,
.container:after {
  clear: both;
}
@-ms-viewport {
  width: device-width;
}
/* --------------------------------------------------- */
/* background image */
/* --------------------------------------------------- */
#bg {
    height: 0;
    padding-top: 41.66%;
    background: url('../img/top.jpg') 0 0 no-repeat;
    background-size: contain;
	position: relative;
}
#bg::before{
	/* 透過した黒を重ねる */
	background-color: rgba(0,0,0,0.1);
	/* どの範囲に重ねるかを指定 */
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}
h2 {
	font-size: 2.5em;
	bottom:	41%;
	padding: 1em 0;
	width: 100%;
	text-align:	center;
	margin: 0;
	color: #fff;
	background:	rgba(255,165,0,0.55); /* 帯の透明度 */
	position: absolute; /* 絶対位置指定 */
}
/* --------------------------------------------------- */
/* navigation */
/* --------------------------------------------------- */
.inner {
	width: 1080px;
	margin: 0 auto;
}
.inner:after {
	content: "";
	clear: both;
	display: block;
}
/* header */
#top-head {
	top: -100px;
	position: absolute;
	width: 100%;
	margin: 100px auto 0;
	padding: 10px 0 0;
	line-height: 1;
	z-index: 999;
}
#top-head a,
#top-head {
	color: #fff;
	text-decoration: none;
}
#top-head .inner {
	position: relative;
}
#top-head .logo {
	float: left;
	font-size: 36px;
}
#global-nav ul {
	list-style: none;
	position: absolute;
	right: 0;
	top: 23px;
}
#global-nav ul li {
	float: left;
	position: relative;
}
#global-nav ul li a {
	font-weight: 500;
	font-size: 1em;
	padding: 0 15px;
}
/* Btn Hover */
#global-nav ul li:after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	bottom: -20px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
#global-nav ul li:hover:after {
	background: #fff;
	bottom: -30px;
}
/* Fixed */
#top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	padding-top: 5px;
	height: 65px;
	background: #fff;
	background: rgba(255,255,255,.7);
	transition: top 0.65s ease-in;
	-webkit-transition: top 0.65s ease-in;
	-moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
	font-size: 24px;
	color: #333;
}
#top-head.fixed #global-nav ul li a {
	color: #333;
	padding: 0 20px;
}
/* Fixed Btn Hover */
#top-head.fixed #global-nav ul li:after {
	bottom: -10px;
}
#top-head.fixed #global-nav ul li:hover:after {
	background: #ff8c00;
	bottom: -20px;
}
/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #666;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}
@media screen and (max-width: 980px) {
	article {
		padding: 0 30px;
	}
	.inner {
		width: 100%;
		padding: 0 20px;
	}
	#global-nav ul li a {
		padding: 0 8px;
	}
	#top-head.fixed #global-nav ul li a {
		padding: 0 15px;
	}
	h2 {
	width: 100%;
	font-size: 2em;
	text-align:	center;
	bottom:	40%;
	margin: 0;
	padding: 0.5em 0;
	color: #fff;
	background:	rgba(255,165,0,0.55); /* 帯の透明度 */
	position: absolute; /* 絶対位置指定 */
   }
}
@media screen and (max-width: 767px) {
	.fb-container {
		width: 100%;
		max-width: 500px;
	}
    #bg {
    	height: 0;
    	padding-top: 65.39%;
    	background: url('../img/top-s.jpg') 0 0 no-repeat;
    	background-size: contain;
		position: relative;
	}
	h2 {
		font-size: 1.5em;
		bottom: 35%;
	}
	#top-head,
	.inner {
		width: 100%;
		padding: 0;
	}
	#top-head {
		top: 0;
		position: fixed;
		margin-top: 0;
	}
	/* Fixed reset */
	#top-head.fixed {
		padding-top: 0;
		background: transparent;
	}
	#mobile-head {
		background: #fff;
		width: 100%;
		height: 56px;
		z-index: 999;
		position: relative;
	}
	#top-head.fixed .logo,
	#top-head .logo {
		position: absolute;
		left: 13px;
		top: 13px;
		color: #333;
		font-size: 26px;
	}
	#global-nav {
		position: absolute;
		/* 開いてないときは画面外に配置 */
		top: -500px;
		background: #333;
		width: 100%;
		text-align: center;
		padding: 10px 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#global-nav ul {
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		font-size: 11px;
	}
	#global-nav ul li {
		float: none;
		position: static;
	}
	#global-nav ul li:after  {
		display: none;
	}
	#top-head #global-nav ul li a,
	#top-head.fixed #global-nav ul li a {
		font-size:1.5em;
		width: 100%;
		display: block;
		color: #fff;
		padding: 18px 0;
	}
	#nav-toggle {
		display: block;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #global-nav スライドアニメーション */
	.open #global-nav {
		/* #global-nav top + #mobile-head height */
		-moz-transform: translateY(556px);
		-webkit-transform: translateY(556px);
		transform: translateY(556px);
	}
}
@media screen and (max-width: 426px) {
	h2 {
		font-size: 1.0em;
		bottom:	29%;
	}
	#top-head #global-nav ul li a,
	#top-head.fixed #global-nav ul li a {
		font-size:1.75em;
	}
}
/* --------------------------------------------------- */
/* container */
/* --------------------------------------------------- */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* --------------------------------------------------- */
/* hello */
/* --------------------------------------------------- */
.hello {
    padding: 2.5em 16em;
	text-align:center;
} 
.hello p a:hover {
	text-decoration: underline;
}
h3.title {
    text-align: center;
    font-size: 2.8em;
	color: #000;
    margin-bottom: 1em;
	position:relative;
}
h3.title:after {
    width: 60px;
    height: 5px;
    background: #ff8c00;
    position: absolute;
    bottom: -16%;
    left: 48%;
    content: '';
}
h4.title {
	font-size: 1.5em;
	margin-bottom: 1.2em;
}
.sp {
	display: none
}
/* --------------------------------------------------- */
/* sim-button */
/* --------------------------------------------------- */
a.sim-button.button01 {
    font-size: 1em;
    color: #555;
    padding: 1em 3em;
    margin-top: 2em;
	margin-left: 1em;
    display: inline-block;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
	outline: none;
}   
.button01::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	border: 1px solid #ff8c00;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}
.button01:hover::before{
	opacity: 0;
	-webkit-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);
	transform: scale(1.2,1.2);
}
.button01::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: #ff8c00;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0.5,0.5);
    -moz-transform: scale(0.5,0.5);
    -o-transform: scale(0.5,0.5);
    -ms-transform: scale(0.5,0.5);
    transform: scale(0.5,0.5);
}
.button01:hover::after{
	opacity: 1 ;
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-o-transform: scale(1,1);
	transform: scale(1,1);
} 
a.sim-button.button01:hover {
    color: #fff;
}
/* --------------------------------------------------- */
/* banner */
/* --------------------------------------------------- */
.banner,.services,.blog {
	padding:5em 0; 
}
.banner, .features { 
	background: #f1f1f1;
}
.br-item {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: default;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out; 
}
.br-img-1 {
    background: url(../img/kyoto-terewa-ku.jpg) center top;
}
.br-img-2 { 
	background:url(../img/t2.png) center top;
}
.br-img-3 { 
	background:url(../img/Hostel-Listing-in-Japan.png) center top;
	background-size: cover;
}
.br-img-4 { 
	background:url(../img/t4.svg) center top;
}
.br-img-5 { 
	background:url(../img/t5.svg) center top;
}
.br-img-6 { 
	background:url(../img/t6.svg) center top;
}
.br-img-7 { 
	background:url(../img/t7.png) center top;
}
.br-img-8 { 
	background:url(../img/t8.svg) center top;
}
.br-img-9 { 
	background:url(../img/guesthouse-sumikomi.jpg) center top;
}
.br-img-10 { 
	background:url(../img/shiga-futtosaruko-to.jpg) center top;
}
.br-img-11 { 
	background:url(../img/futsal-in-kansai-japan.jpg) center top;
}
.br-img-12 { 
	background:url(../img/cyoukitaizai-square.png) center top;
}
.br-img-13 { 
	background:url(../img/japan-hostel-stay.png) center top;
}
.br-img-14 { 
	background:url(../img/youtube.png) center top;
}
.br-img-15 { 
	background:url(../img/youtube-en.png) center top;
}
.br-img-16 { 
	background:url(../img/boss_blog.png) center top;
}
.br-info {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);	
	-webkit-backface-visibility: hidden; /*for a smooth font */
}
.br-info h3 {
    color: #fff; 
    position: relative;
    letter-spacing: 1px;
    font-size: 1.2em;
    padding: 43px 0 0 0;   
}
.br-info p {
    color: #fff;
    padding: 10px 5px 0;
    margin: 15px 30px 0;
    font-size: 1em;
    border-top: 1px solid rgba(255,255,255,0.5);
}
.br-info p a {
	text-decoration: none;
    color: #fff;
	font-size: 1em;
	border-bottom: 1px solid #fff;
   	padding-bottom: 1px;
}
.br-info p a:hover {
    color: #FF9900;
}
.br-item:hover {
	-webkit-box-shadow: inset 0 0 0 110px rgba(79,135,48,1), inset 0 0 0 16px rgba(24, 85, 113, 0.84), 0 1px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 0 0 110px rgba(79,135,48,1), inset 0 0 0 16px rgba(24, 85, 113, 0.84), 0 1px 2px rgba(0,0,0,0.1);
	-o-box-shadow: inset 0 0 0 110px rgba(79,135,48,1), inset 0 0 0 16px rgba(24, 85, 113, 0.84), 0 1px 2px rgba(0,0,0,0.1);
	-ms-box-shadow: inset 0 0 0 110px rgba(79,135,48,1), inset 0 0 0 16px rgba(24, 85, 113, 0.84), 0 1px 2px rgba(0,0,0,0.1);
	box-shadow: inset 0 0 0 110px rgba(79,135,48,1), inset 0 0 0 16px rgba(24, 85, 113, 0.84), 0 1px 2px rgba(0,0,0,0.1);
}
.br-item:hover .br-info {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.br-grid {
	margin: 3em 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}
.br-grid:after,
.br-item:before {
	content: '';
    display: table;
}
.br-grid:after {
	clear: both;
}
.br-grid li.br-grid-item {
	width: 220px;
	height: 220px;
	display: inline-block;
	margin: 20px;
}
/* --------------------------------------------------- */
/* services */
/* --------------------------------------------------- */
.services {
    padding: 2.5em 0;
}
.services-row {
	overflow: hidden;
}
.services-left {
    padding: 0;
    background: url(../img/img2.jpg)no-repeat center 0px;
    background-size: cover;
    min-height: 343px; 
	-webkit-transition: .5s all;
	-moz-transition: .5s all;
	-o-transition: .5s all;
	-ms-transition: .5s all;
    transition: .5s all;
}
.services-right{
	padding:6em 10em;
	background:#4f8730;
}
h4.w3agile-sbtitle {
    font-size: 1.5em;
    color: #fff;
    position: relative;
    font-weight: 700;
    margin-bottom: 1em;
    padding-bottom: 0.8em;
    text-transform: uppercase;
    letter-spacing: 3px;
}
h4.w3agile-sbtitle:after {
    width: 6%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
}
.services p {
    color: #fff;
    font-weight: 300;
}
.img-responsive {
  width: 100%;
  display: block;
  max-width: 100%;
  height: auto;
}
.services-left.services-left2 {
    float: right;
    background: url(../img/img3.jpg) no-repeat center 0px;
    background-size: cover;
	min-height: 344px;
}
.services-right.services-right2 {
    background: #F58025;
}
.services-left.services-left3 { 
    background: url(../img/img4.jpg) no-repeat center 0px;
    background-size: cover;
}
.services-row:hover .services-left {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
    transform: scale(1.2);
}
.services-left.services-left4 {
    float: right;
    background: url(../img/img5.jpg) no-repeat center 0px;
    background-size: cover;
	min-height: 344px;
}
/* --------------------------------------------------- */
/* gallery */
/* --------------------------------------------------- */
.gallery-grid {
    margin-top: 2em;
}
.gallery-grid p {
	text-align:center;
	line-height:1.5em;
}

@media(max-width:1024px){
.gallery-grid p {
	line-height:1.3em;
}
.gallery-grid p a {
	font-size: 0.8em;
}
}

.wpf-demo-4 {
	background-color: #ff8c00;
	display: block; 
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s; 
	width: 100%;
	height: 230px;
}
.wpf-demo-4 img {
	height: 100%;
	width: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
}
.wpf-demo-4:hover img {
    height: 100%;
    margin-left: -42px;
    margin-top: -7px;
	-webkit-transform: translateY(-10%) rotate(-42deg) scale(1.5);
	-moz-transform: translateY(-10%) rotate(-42deg) scale(1.5);
	-o-transform: translateY(-10%) rotate(-42deg) scale(1.5);
    transform: translateY(-10%) rotate(-42deg) scale(1.5);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s; 
    transition: all 0.5s;
    width: 134%;
}
.wpf-demo-4:hover .view-caption {
    text-align: right;
	-webkit-transform: translateY(-111%);
	-moz-transform: translateY(-111%);
	-o-transform: translateY(-111%);
    transform: translateY(-111%);
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s; 
    transition: all 0.5s;
    bottom: 0;
}
.wpf-demo-4 .view-caption {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s; 
	text-align: right;
	position: absolute;
	right: 0;
	bottom: -20px;
}
.wpf-demo-4 .view-caption p {
    color: #fff;
    font-size: 1em;
    padding-right: 7px;
}
/* --------------------------------------------------- */
/* features */
/* --------------------------------------------------- */
.features {
    margin-top: 5em;
}
.features h4 {
    font-size: 1.6em;
    color: #ff8c00;
    margin-bottom: .5em;
}
.features-grid.features-w3ls-btm {
    margin-top: 4em;
}
/*-- Effect1 --*/
.features-grid-left {
    text-align: right;
}
.features-grid-left i{
    font-size: 1.8em;
    color: #fff;
    display: inline-block;
	-webkit-border-radius: 50%;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1;
    padding: 1em;
	position: relative;
}
.features-grid-left i:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 50%; 
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-o-box-sizing: content-box;
	-ms-box-sizing: content-box;
	box-sizing: content-box;
}
.effect-1 {
  background: #4f8730;
  -webkit-transition: background 0.5s, color 0.2s;
  -moz-transition: background 0.5s, color 0.2s;
  -o-transition: background 0.5s, color 0.2s;
  -ms-transition: background 0.5s, color 0.2s;
  transition: background 0.5s, color 0.2s;
}
.effect-1:after {
	top: -7px;
	left: -7px;
	padding: 7px;
	-webkit-box-shadow: 0 0 0 2px #4f8730; 
	-moz-box-shadow: 0 0 0 2px #08B1A3;
	-o-box-shadow: 0 0 0 2px #08B1A3;
	-ms-box-shadow: 0 0 0 2px #08B1A3;
	box-shadow: 0 0 0 2px #4f8730;
	-webkit-transition: -webkit-transform 0.5s, opacity 0.2s;
	-moz-transition: -moz-transform 0.5s, opacity 0.2s;
	-o-transition: -moz-transform 0.5s, opacity 0.2s;
	-ms-transition: -moz-transform 0.5s, opacity 0.2s;
	transition: transform 0.5s, opacity 0.2s;
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-o-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
	opacity: 0;
	-moz-opacity: 0;
}
.features-grid:hover i{
	background:#4f8730;
	color: #fff !important;
}
.features-grid:hover i:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	-moz-opacity: 1;
}
/*-- page top --*/
.home {
	text-align:center;
	padding: 1em 0;
}
.home p a {
	font-size: medium;
}
@media(max-width:767px) {
.home {
	padding: 1em 0
}
.home p a {
	font-size: medium;
}
}
/*-- //page top --*/
@media(max-width:1440px){
.hello {
    padding: 4em 6em;
	}
.services-left { 
    min-height: 368px; 
	}
.services-left.services-left2, .services-left.services-left4 { 
    min-height: 369px;
	}	
}
@media(max-width:1366px){
.hello h3.title {
    font-size: 3.5em;
	}
h3.title:after { 
    left: 45%; 
	}
.banner, .services, .blog {
    padding: 4em 0;
	}
h3.title { 
    font-size: 3.6em; 
	}
h3.title:after {
    width: 55px; 
    left: 47%; 
	}
.services-right {
    padding: 6em 10em; 
	}
.services-left,.services-left.services-left2, .services-left.services-left4 {
    min-height: 340px;
	}
}
@media(max-width:1280px){
a.sim-button.button01 { 
    padding: 0.8em 3em;
    margin-top: 1.5em; 
	}
.services-right {
    padding: 6em 7em;
	}
}
@media(max-width:1080px){
.hello {
    padding: 4em 3em;
	}
.features-grid-right {
    padding-right: 0;
	}
.services-right {
    padding: 5em 6em;
	}
.services-left, .services-left.services-left2, .services-left.services-left4 {
    min-height: 312px;
	}
.wpf-demo-4 { 
    height: 194px;
	}
.wpf-demo-4 .view-caption p { 
    padding-right: 5px;
	}
.wpf-demo-4:hover .view-caption {  
    -webkit-transform: translateY(-95%); 
    -moz-transform: translateY(-95%); 
    -o-transform: translateY(-95%); 
    transform: translateY(-95%); 
	}
}
@media(max-width:1024px){
h3.title {
    font-size: 3em;
	}
h3.title:after { 
    left: 47%; 
	}
.hello {
    padding: 3em 3em;
    }
.services-right {
    padding: 4.3em 6em;
	}
}
@media(max-width:991px){
.hello {
    padding: 3em 6em;
	}
.features-grid {
    margin-bottom: 2em;
}
.features-grid.features-w3ls-btm {
    margin-top: inherit;
	}
h3.title {
    font-size: 3em;
	}
.services-right { 
    float: right;
    width: 65%;
	}
.services-left { 
    float: left;
    width: 35%;
	}
.services-left, .services-left.services-left2, .services-left.services-left4 {
    min-height: 267px;
	}
.gallery-grid {
    margin-top: 1em;
    float: left;
    width: 33.33%;
    padding: 0 .5em;
	}
.wpf-demo-4 {
    height: 155px;
	}
.footer-grid {
		float: left;
		width: 33%;
		margin-right: 0%;
	}
}
@media(max-width:800px){ 
.banner, .services, .blog {
    padding: 3em 0;
}
.features {
    margin-top: 4em;
}
.features-grid-left i { 
    padding: 0.9em; 
	}
.services-right {
    padding: 2.9em 3em;
	}
h4.w3agile-sbtitle {
    font-size: 1.5em; 
    margin-bottom: 0.8em;
    padding-bottom: 0.6em; 
    letter-spacing: 2px;
	}
.wpf-demo-4 .view-caption p { 
    font-size: 0.9em; 
	}
}
@media(max-width:736px){
.hello {
    padding: 3em 4em;
	}
.features h4 { 
    margin-bottom: .3em;
	}
.services-left,.services-right {
    float: none;
    width: 100%;
	}
.services-left, .services-left.services-left2, .services-left.services-left4 {
    float: none; 
    min-height: 245px;
	}
.wpf-demo-4 {
    height: 143px;
	}
}
@media(max-width:667px){
.hello {
    padding: 2.5em 1em;
	}
h3.title {
    font-size: 2.0em;
    margin-bottom: 0.8em;
	}
.features h4 {
    font-size: 1.5em; 
	}
.hello h3.title {
    font-size: 2.8em;
    margin-bottom: .8em;
	}
h3.title { 
    margin-bottom: 0.8em; 
	}
.services-right {
    padding: 3em 4em;
	}
.gallery-grid {
    margin-top: 0.6em; 
    padding: 0 .3em;
	}
.wpf-demo-4 {
    height: 132px;
	}
}
@media(max-width:640px){
.footer-grid {
    float: center;
    width: 100%;
    margin-right: 0%;
}
.wpf-demo-4 {
    height: 130px;
	}
.wpf-demo-4 .view-caption p {
    font-size: 0.8em;
	}
}
@media(max-width:600px){
h3.title {
    font-size: 2.6em;
	}
.gallery-grid {
    margin-top: 1em;
    padding: 0 .5em;
    width: 50%;
	}
.wpf-demo-4 {
    height: 174px;
	}
.wpf-demo-4:hover .view-caption {
    -webkit-transform: translateY(-115%);
    -moz-transform: translateY(-115%);
    -o-transform: translateY(-115%);
    transform: translateY(-115%);
	}
}
@media(max-width:568px){
.services-right {
    padding: 1.5em 2.5em;
	}
.wpf-demo-4 {
    height: 164px;
	}
.br-grid li.br-grid-item {
	margin: 5px;
    }
}
@media(max-width:480px){
.sp {
	display: block
}
.br-grid li.br-grid-item {
	width: 175px;
	height: 175px;
	display: inline-block;
	margin: 5px;
}
.br-img-1 {
    background: url(../img/175/kyoto-terewa-ku.jpg) center top;
}
.br-img-2 { 
	background:url(../img/175/t2.png) center top;
}
.br-img-3 { 
	background:url(../img/175/Hostel-Listing-in-Japan.png) center top;
	background-size: cover;
}
.br-img-4 { 
	background:url(../img/175/t4.png) center top;
}
.br-img-5 { 
	background:url(../img/175/t5.png) center top;
}
.br-img-6 { 
	background:url(../img/175/t6.png) center top;
}
.br-img-7 { 
	background:url(../img/175/t7.png) center top;
}
.br-img-8 { 
	background:url(../img/175/t8.png) center top;
}
.br-img-9 { 
	background:url(../img/175/guesthouse-sumikomi.jpg) center top;
}
.br-img-10 { 
	background:url(../img/175/shiga-futtosaruko-to.jpg) center top;
}
.br-img-11 { 
	background:url(../img/175/futsal-in-kansai-japan.png) center top;
}
.br-img-12 { 
	background:url(../img/175/cyoukitaizai-square.png) center top;
}
.br-img-13 { 
	background:url(../img/175/japan-hostel-stay.png) center top;
}
.br-img-14 { 
	background:url(../img/175/youtube.png) center top;
}
.br-img-15 { 
	background:url(../img/175/youtube-en.png) center top;
}
.br-img-16 { 
	background:url(../img/175/boss_blog.png) center top;
}
h3.title {
    font-size: 2em;
	}
a.sim-button.button01 {
    font-size: 1em;
    color: #555;
    padding: 1em 3em;	
	}
.hello h3.title {
    font-size: 2em; 
	}
h3.title:after {
    width: 40px; 
	}
.services-left, .services-left.services-left2, .services-left.services-left4 { 
    min-height: 200px;
	}
.features-grid-left {
    text-align: left;
    padding: 0;
	}
.wpf-demo-4 {
    height: 140px;
	}
@media(max-width:414px){
.hello {
    padding:2em 1.5em 2.5em;
	}
.banner, .services, .blog {
    padding: 2em 0;
	}
h3.title {
    font-size: 2em;
	}
h4.title {
	font-size: 1.0em;
	margin-bottom: 1em;
	}
.features {
    margin-top: 3em;
	}
.features-grid {
    margin-bottom: 1em;
    padding: 0;
	}
.features h4 {
    font-size: 1.4em;
	}
.hello h3.title {
    font-size: 2em;
	}
h3.title:after { 
    left: 45%;
	}
h4.w3agile-sbtitle {
    font-size: 1.3em; 
	}
.gallery-grid {
    margin-top: 1em;
    padding: 0 1em;
    width: 100%;
    float: none;
	}
.wpf-demo-4 {
    height: 220px;
	}
.wpf-demo-4 .view-caption p {
    padding-right: 12px;
	}
.footer-grid {
		float: left;
		width: 100%;
		margin-right: 0%;
	}
.footer-grid h4 {
		margin: 1em 0 0.5em 0;
	}
.policy {
		text-align: center;
		padding: 2em 0;
	}
.copy-right {
		text-align: center;
		padding: 1em 0 0;
	}
}
@media(max-width:406px){
.br-grid li.br-grid-item {
	width: 160px;
	height: 160px;
	display: inline-block;
	margin: 3px;
}
.br-img-1 {
    background: url(../img/160/kyoto-terewa-ku.jpg) center top;
}
.br-img-2 { 
	background:url(../img/160/t2.png) center top;
}
.br-img-3 { 
	background:url(../img/160/Hostel-Listing-in-Japan.png) center top;
	background-size: cover;
}
.br-img-4 { 
	background:url(../img/160/t4.png) center top;
}
.br-img-5 { 
	background:url(../img/160/t5.png) center top;
}
.br-img-6 { 
	background:url(../img/160/t6.png) center top;
}
.br-img-7 { 
	background:url(../img/160/t7.png) center top;
}
.br-img-8 { 
	background:url(../img/160/t8.png) center top;
}
.br-img-9 { 
	background:url(../img/160/guesthouse-sumikomi.jpg) center top;
}
.br-img-10 { 
	background:url(../img/160/shiga-futtosaruko-to.jpg) center top;
}
.br-img-11 { 
	background:url(../img/160/futsal-in-kansai-japan.png) center top;
}
.br-img-12 { 
	background:url(../img/160/cyoukitaizai-square.png) center top;
}
.br-img-13 { 
	background:url(../img/160/japan-hostel-stay.png) center top;
}
.br-img-14 { 
	background:url(../img/160/youtube.png) center top;
}
.br-img-15 { 
	background:url(../img/160/youtube-en.png) center top;
}
.br-img-16 { 
	background:url(../img/160/boss_blog.png) center top;
}
}

@media(max-width:384px){
.banner, .services, .blog {
    padding: 2em 0;
	}
.wpf-demo-4 {
    height: 200px;
	}
}
@media(max-width:375px){
.services-left, .services-left.services-left2, .services-left.services-left4 {
    min-height: 170px;
	}
.wpf-demo-4 {
    height: 190px;
	}
}
@media(max-width:374px){
.br-grid li.br-grid-item {
	width: 138px;
	height: 138px;
	display: inline-block;
	margin: 2px;
}
.br-img-1 {
    background: url(../img/138/kyoto-terewa-ku.jpg) center top;
}
.br-img-2 { 
	background:url(../img/138/t2.png) center top;
}
.br-img-3 { 
	background:url(../img/138/Hostel-Listing-in-Japan.png) center top;
	background-size: cover;
}
.br-img-4 { 
	background:url(../img/138/t4.png) center top;
}
.br-img-5 { 
	background:url(../img/138/t5.png) center top;
}
.br-img-6 { 
	background:url(../img/138/t6.png) center top;
}
.br-img-7 { 
	background:url(../img/138/t7.png) center top;
}
.br-img-8 { 
	background:url(../img/138/t8.png) center top;
}
.br-img-9 { 
	background:url(../img/138/guesthouse-sumikomi.jpg) center top;
}
.br-img-10 { 
	background:url(../img/138/shiga-futtosaruko-to.jpg) center top;
}
.br-img-11 { 
	background:url(../img/138/futsal-in-kansai-japan.png) center top;
}
.br-img-12 { 
	background:url(../img/138/cyoukitaizai-square.png) center top;
}
.br-img-13 { 
	background:url(../img/138/japan-hostel-stay.png) center top;
}
.br-img-14 { 
	background:url(../img/138/youtube.png) center top;
}
.br-img-15 { 
	background:url(../img/138/youtube-en.png) center top;
}
.br-img-16 { 
	background:url(../img/138/boss_blog.png) center top;
}
}
@media(max-width:320px){
h3.title {
    font-size: 2em;
	}
a.sim-button.button01 {
    padding: 1em 1.2em;
	}
.features {
    margin-top: 2em;
	}
.features-grid-left i {
    font-size: 1.5em;
	}
.features h4 {
    font-size: 1.3em;
	}
.hello h3.title {
    font-size: 2em;
 	}
h3.title:after {
    width: 35px;
	}
h3.title {
    font-size: 2em;
	}
.gallery-grid { 
    padding: 0; 
	}
.wpf-demo-4 {
    height: 183px;
	}
}