@charset "utf-8";
/* CSS Document */
/* plushBay/IARUMAS JAPAN */


/* Page Properties
------------------------------------------------------------------------- */

/* テキストリンクのホバー時に中央からアンダーラインが伸びる */
a {
	position: relative;
	display: inline-block;
	transition: .3s;
}
a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #DDD;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
a:hover::after {
	width: 100%;
}
/* /テキストリンクのホバー時に中央からアンダーラインが伸びる */


/* Header
------------------------------------------------------------------------- */

@import url(//fonts.googleapis.com/css?family=Open+Sans:400,600,700);
.star-ratings-css {
  unicode-bidi: bidi-override;
  color: #c5c5c5;
  font-size: 25px;
  height: 25px;
  width: 100px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  text-shadow: 0px 1px 0 #a2a2a2;
}
.star-ratings-css-top {
  color: #e7711b;
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.star-ratings-css-bottom {
  padding: 0;
  display: block;
  z-index: 0;
}
.star-ratings-sprite {
  background: url("../images/star_rating_sprite.png") repeat-x;
  font-size: 0;
  height: 21px;
  line-height: 0;
  overflow: hidden;
  text-indent: -999em;
  width: 110px;
  margin: 0 auto;
}
.star-ratings-sprite-rating {
  background: url("../images/star_rating_sprite.png") repeat-x;
  background-position: 0 100%;
  float: left;
  height: 21px;
  display: block;
}
em {
  font-style: italic;
	text-align: center;
}


/* Header
------------------------------------------------------------------------- */


/* Nav
------------------------------------------------------------------------- */


/* Aside
------------------------------------------------------------------------- */


/* Section
------------------------------------------------------------------------- */


/* Footer
------------------------------------------------------------------------- */


/* Img IEでは画像リンクの場合、枠が表示されるので、それを非表示とした
------------------------------------------------------------------------- */

img {
	border-style: none;
}
/* Figure
------------------------------------------------------------------------- */

/*
図表（本文（メインフロー）から参照されるようなイラスト・図・写真・ソースコード） */

figure img { /* 図表であることを示す際に使用する figure */
	padding: 10px;
	-webkit-box-shadow: 1px 1px 10px rgba(10, 10, 10, 0.4);
	box-shadow: 1px 1px 10px rgba(10, 10, 10, 0.4);
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
}
figcaption { /* 図表のキャプションを示す際に使用 */
	font-size: 0.94em;
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: 2em;
	text-align: center;
	display: block;
}


/* Hr
------------------------------------------------------------------------- */

.hrStyle1 {
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	margin-top: 26px;
	margin-bottom: 26px;
}
.hrStyle2 {
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	margin-top: 10px;
	margin-bottom: 10px;
}
.hrStyle3 {
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
	background-image: -moz-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
	background-image: -ms-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
	background-image: -o-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
	margin-top: 20px;
	margin-bottom: 20px;
}


/* Figure（画像キャプションのマウスホバーアニメーション）
------------------------------------------------------------------------- */

/* figure1〜5共通 */
figure {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #000;
}
/* figure1（画像を縮小しつつ下から上に出るキャプション）*/
.figure1 img {
    transition: all 0.4s ease-out 0.1s;
}
.figure1 figure:hover img {
    opacity: .6;
    transform: scale(1.3);
}
.figure1 figcaption {
    color: #fff;
    background: #333;
    background: rgba(0,0,0,.7);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 20px;
    line-height: 1;
 
    /* 1行で納める */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
 
    transition: all 0.2s ease-in 0.3s;
    transform: translateY(60px);
}
.figure1 figure:hover figcaption {
    transform: translateY(0);
}
/* figure2（キャプションが横にスライドし画像が押し出される） */
.figure2 img {
    transition: all 0.4s ease-out 0.1s;
}
.figure2 figure:hover img {
    opacity: .6;
    transform: scale(1.3);
}
.figure2 figcaption {
    position: absolute;
    height: 100%;
    width: 240px;
    background: #366a6d;
    top: 0;
    display: block;
    text-align: left;
    padding: 20px;
    color: #fff;
    transform: translateX(-240px);
    transition: all .5s ease-out;
}
.figure2 figure:hover figcaption {
    transform: translateX(0);
}
.figure2 figure img {
    left: 0;
    position: absolute;
    transition: all .5s ease-out;
}
.figure2 figure:hover img {
    transform: translateX(100px);
}
/* figure3（外から枠が内部に入ってくる） */
figure3 {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #000;
}
.figure3 img {
    transition: all 0.4s ease-out 0.1s;
}
.figure3 figure:hover img {
    opacity: .6;
    transform: scale(1.3);
}
.figure3 {
    color: #fff;
}
.figure3 figure:after {
    position: absolute;
    border: solid 1px #fff;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: scale(1.0, 1.0);
    transition: all .3s ease-out;
}
.figure3 figure:hover:after {
    opacity: 1;
    transform: scale(0.92, 0.88);
}
.figure3 figcaption {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1em;
    font-size: 20px;
    letter-spacing: 5px;
    opacity: 0;
    transition: all .3s ease-out .2s;
}
.figure3 figure:hover figcaption {
    letter-spacing: 1px;
    opacity: 1;
}
.figure3 figure img {
    transition: all .8s ease-out;
}
.figure3 figure:hover img {
    opacity: .4;
    transform: scale(1.3);
}
/* figure4（中心線が真ん中から現れ、その上下にテキストが表示） */
.figure4 img {
    transition: all 0.4s ease-out 0.1s;
}
.figure4 figure:hover img {
    opacity: .6;
    transform: scale(1.3);
}
.figure4 {
    color: #fff;
}
.figure4 figure:after {
    position: absolute;
    background: #fff;
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    left: 5%;
    top: 50%;
    transform: scale(0);
    transition: all .9s ease-out;
}
.figure4 figure:hover:after {
    transform: scale(1);
}
.figure4 figcaption p,
.figure4 figcaption h3 {
    position: absolute;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: all .4s ease-out .4s;
}
.figure4 figcaption h3 {
    bottom: 51%;
    transform: translateY(-30px);
}
.figure4 figcaption p {
    top: 52%;
    transform: translateY(30px);
}
.figure4 figure:hover figcaption p,
.figure4 figure:hover figcaption h3 {
    opacity: 1;
    transform: translateY(0);
}
 
.figure4 figure img {
    transition: all 1.2s ease-out;
}
.figure4 figure:hover img {
    opacity: .4;
    transform: scale(1.3);
}
/* figure5（ソーシャルボタンが出現） */
.figure5 a {
    color: #333;
}
.figure5 figcaption {
    position: absolute;
    height: 80px;
    width: 100%;
    background: #fff;
    bottom: 0;
    display: block;
    text-align: left;
    padding: 20px;
    color: #333;
    transition: all .3s ease-out .2s;
}
.figure5 figure:hover figcaption {
    height: 110px;
    transition-delay: 0s;
}
.figure5 figcaption h3 {
    margin-bottom: 0;
    line-height: 1.2;
}
.figure5 figure img.thumb {
    top: 0;
    left: 0;
    position: absolute;
    transition: all .3s ease-out .2s;
}
.figure5 figure:hover img.thumb {
    top: -20px;
    transition-delay: 0s;
}
.figure5 figcaption a.more-btn {
    font-size: 11px;
    color: #fff;
    background: #1d76a6;
    padding: 7px 12px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(90px);
    transition: all .2s ease-out;
}
.figure5 figcaption a.more-btn:hover {
    background: #2a9cc0;
}
.figure5 figure:hover figcaption a.more-btn {
    transform: translateX(0);
    transition-delay: .4s;
}
.figure5 figcaption ul.sns-btns {
    list-style: none;
    position: relative;
    padding-top: 4px;
}
.figure5 figcaption ul.sns-btns li {
    padding: 7px;
    line-height: 1;
    height: 28px;
    width: 28px;
    float: left;
    background: #3b5998;
    border-radius: 50%;
    position: absolute;
    transform: translateY(50px);
    transition: all .15s ease-out;
}
.figure5 figure:hover figcaption ul.sns-btns li {
    transform: translateY(0);
}
.figure5 figcaption ul.sns-btns li.twitter {
    background: #55acee;
    padding: 8px;
    transition-delay: .4s;
}
.figure5 figcaption ul.sns-btns li.facebook {
    background: #3b5998;
    left: 35px;
    transition-delay: .2s;
}
.figure5 figcaption ul.sns-btns li.google {
    background: #df4a32;
    left: 70px;
    transition-delay: 0s;
}
.figure5 figure:hover figcaption ul.sns-btns li.twitter {
    transition-delay: 0s;
}
.figure5 figure:hover figcaption ul.sns-btns li.facebook {
    transition-delay: .2s;
}
.figure5 figure:hover figcaption ul.sns-btns li.google {
    transition-delay: .4s;
}
.figure5 figcaption ul.sns-btns li img {
    height: 100%;
    vertical-align: top;
}
/* HTMLは次のように記述
<section class="figure5">
    <figure>
        <img src="thum01.jpg" width="400" height="266" class="thumb">
        <figcaption>
            <h3 class="title">Hover Effect 05</h3>
            <p>Hover Effect Description</p>
            <a href="#" class="more-btn">Read more</a>
 
            <ul class="sns-btns">
                <li class="twitter"><a href="#"><img src="twitter.svg"></a></li>
                <li class="facebook"><a href="#"><img src="facebook.svg"></a></li>
                <li class="google"><a href="#"><img src="gplus.svg"></a></li>
            </ul>
        </figcaption>
    </figure>
</section>
*/


/* Tel イメージ
------------------------------------------------------------------------- */

.iconTel1 {
	font: bold 18px Arial, Helvetica, sans-serif;
	color: #FFF;
	background: url(../images/icon_tel1.jpg) no-repeat;
	height: 34px;
	width: 180px;
	text-align: center;
	padding-top: 6px;
	padding-left: 8px;
}


/* Font Icons: fontawesome
------------------------------------------------------------------------- */


/* Social icons
------------------------------------------------------------------------- */

#socialIcons {
	margin-left: 12px;
}
#socialIcons a {
	position: relative;
	display: block;
	overflow: hidden;
	float: left;
	width: 70px;
	height: 28px;
	margin: 0 10px 10px 0;
	padding: 0;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	line-height: 28px;
}
#socialIcons i, #socialIcons span {
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 28px;
	margin: 0;
	background: #d35889;
	line-height: 28px;
	text-align: center;
	transition: .3s;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
}
#socialIcons i {
	z-index: 2;
	transform: rotateY(0deg);
}
#socialIcons a:hover i {
	z-index: 1;
	transform: rotateY(180deg);
}
#socialIcons span {
	z-index: 1;
	transform: rotateY(-180deg);
}
#socialIcons a:hover span {
	z-index: 2;
	transform: rotateY(0deg);
}


/* Margin
------------------------------------------------------------------------- */

.marginTop10px {
	margin-top: 10px;
}
.marginTop20px {
	margin-top: 20px;
}
.marginTop30px {
	margin-top: 30px;
}
.marginTop40px {
	margin-top: 40px;
}
.marginTop50px {
	margin-top: 50px;
}
.marginTop60px {
	margin-top: 60px;
}
.marginTop70px {
	margin-top: 70px;
}
.marginTop80px {
	margin-top: 80px;
}
.marginTop90px {
	margin-top: 90px;
}
.marginTop100px {
	margin-top: 100px;
}
.marginRight10px {
	margin-right: 10px;
}
.marginRight20px {
	margin-right: 20px;
}
.marginRight30px {
	margin-right: 30px;
}
.marginRight40px {
	margin-right: 40px;
}
.marginRight50px {
	margin-right: 50px;
}
.marginRight60px {
	margin-right: 60px;
}
.marginBottom10px {
	margin-bottom: 10px;
}
.marginBottom20px {
	margin-bottom: 20px;
}
.marginBottom30px {
	margin-bottom: 30px;
}
.marginBottom40px {
	margin-bottom: 40px;
}
.marginBottom50px {
	margin-bottom: 50px;
}
.marginBottom60px {
	margin-bottom: 60px;
}
.marginLeft10px {
	margin-left: 10px;
}
.marginLeft20px {
	margin-left: 20px;
}
.marginLeft30px {
	margin-left: 30px;
}
.marginLeft40px {
	margin-left: 40px;
}
.marginLeft50px {
	margin-left: 50px;
}
.marginLeft60px {
	margin-left: 60px;
}



heightAuto {
	height: auto;
}

/* Color
------------------------------------------------------------------------- */
.color_f5f5f5 {
	background-color: #f5f5f5;
}


/* Google map
------------------------------------------------------------------------- */


/* Error
------------------------------------------------------------------------- */


/* Go to top (pageTop)
------------------------------------------------------------------------- */

#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 80%;
}
#pageTop a {
	background: rgba(102, 102, 102, 0.5);
	text-decoration: none;
	color: #FFF;
	width: 80px;
	padding: 30px 0;
	text-align: center;
	display: block;
	border-radius: 50%;
}
#pageTop a:hover {
	text-decoration: none;
	background: rgba(153, 153, 153, 0.5);
}


/* Font Icons: Font Awesome Icons
------------------------------------------------------------------------- */

.fa-android {
	color: #f32132;
}


/* Bootstrap
------------------------------------------------------------------------- */

.ninki img {
	border-radius: 8px;
	-webkit-box-shadow: 1px 1px 10px rgba(10, 10, 10, 0.4);
	box-shadow: 1px 1px 10px rgba(10, 10, 10, 0.4);
}


/* Bootstrap (Parallax Section)
------------------------------------------------------------------------- */

/* Parallax Section */
.banner {
	background-color: #2D9AB7;
	background-image: url(../images/parallax1.png);
	height: 420px;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 30px;
}
.parallax {
	color: #FFF;
	text-shadow: 0 2px 0 #ec78b4, 0 3px 0 #ec78b4, 0 4px 5px #ec78b4;
	text-align: center;
	/* padding-right: 280px; */
	padding-top: 40px;
	letter-spacing: 2px;
	margin-top: 0px;
}
.parallax_description {
	color: #FFF;
	text-shadow: 0 2px 0 #ec78b4, 0 3px 0 #ec78b4, 0 4px 5px #ec78b4;
	text-align: left;
	/* padding-right: 100px; */
	padding-right: 10px;
	padding-left: 10px;
	/* width: 30%; */
	float: right;
	font-weight: lighter;
	line-height: 23px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* Mobile */
@media (max-width: 320px) {
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	/* padding-top: 40%; */
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 90%;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 12px;
	float: none;
	text-align: left;
}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
.parallax {
 text-align: center;
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 0px;
 margin-left: 0px;
 padding-top: 40%;
 padding-right: 0px;
 padding-bottom: 0px;
 padding-left: 0px;
 width: 100%;
 font-size: 18px;
}
.parallax_description {
 padding-top: 0px;
 padding-right: 0px;
 padding-bottom: 0px;
 padding-left: 0px;
 margin-top: 30%;
 margin-right: 0px;
 margin-bottom: 0px;
 margin-left: 0px;
 float: none;
 width: 100%;
 text-align: center;
}
.thumbnail {
 width: 50%;
}
.parallax {
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 0px;
 margin-left: 0px;
 padding-right: 0px;
 padding-bottom: 0px;
 padding-left: 0px;
 padding-top: 20%;
}
.parallax_description {
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 0px;
 margin-left: 0px;
 width: 100%;
 padding-top: 30px;
}
}
