body {
		background: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
		font-weight: 300;
    overflow-x: hidden;
}


/*---------------------------------------
    Typorgraphy              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.5px;
}

h1 {
    font-size: 30px;
    padding-bottom: 14px;
    margin-bottom: 0px;
}

h2 {
  font-size: 32px;
  line-height: 46px;
}

h3 {
  font-size: 26px;
}

h4 {
  color: #666;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 2px;
}

h5 {
	color: #666;
	font-size: 23px;
	text-align: center;
	overflow: hidden;
}

h5 span {
	position: relative;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	text-align: left;
}
h5 span::before,
h5 span::after {
	position: absolute;
	top: 50%;
	content: '';
	width: 400%;
	height: 1px;
	background-color: #ccc;
}
h5 span::before {
	right: 100%;
}
h5 span::after {
	left: 100%;
}

p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0.2px;
}

p.a1 { font-size: xx-large; }
p.a2 { font-size: x-large; }
p.a3 { font-size: large; }
p.a4 { font-size: medium; }
p.a5 { font-size: small; }
p.a6 { font-size: x-small; }
p.a7 { font-size: xx-small; }

p.a8 { font-size: 1.5em; }
p.a9 { font-size: 80%; }

p.a10 { font-size: larger; }
p.a11 { font-size: smaller; }
p.a11 { font-size: 15px; margin-bottom: 20px; }

strong {
  font-weight: 400;
}

.btn-success:focus {
  background-color: #000;
  border-color: transparent;
}


/*---------------------------------------
    General               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

img {
  vertical-align: baseline;
  max-width: 100%;
  height: auto;
}

a {
  color: #4d638c;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
a:hover, a:active, a:focus {
  color: #4d638c;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.button-shop a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  width: 300px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  background-color: #cccccc;
  transition: 0.3s;
}

.button-shop a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #2285b1;
  transition: 0.3s;
}

.button-shop a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #2285b1;
  transition: 0.3s;
}

.button-shop a:hover {
  text-decoration: none;
  background-color: #bbbbbb;
}

.button-shop a:hover::before,
.button-shop a:hover::after {
  right: 0.5em;
}

#portfolio,
#about,
#blog,
#contact,
#single-project,
#blog-single-post {
	padding-top: 20px;
	padding-bottom: 120px;
}

.section-title {
  position: relative;
  padding-bottom: 62px;
  text-align: center;
}

.section-title h3 {
  color: #555;
  font-weight: 400;
  letter-spacing: 4px;
}

.new-padding {
	padding-bottom: 5px;
	padding-top: 35px;
}

.table01{ width: 100%; table-layout: fixed; margin-bottom: 40px; padding-top: 45px!important;}
.table01,.table01 th,.table01 td{ border-collapse:collapse; }
.table01 th{ vertical-align: top; width: 25%; border-bottom: 1px dotted #ddd; padding: 25px 0 24px; text-align: left!important;}
.table01 td{ width: 75%; border-bottom: 1px dotted  #ddd; padding: 25px 0 24px!important;}
.table01 tr:last-child th,.table01 tr:last-child td{ border-bottom: none!important;}

@media screen and (max-width: 480px) {
  .onlyPC {
    display: none;
  }
}

.onlySP {
  display: none;
}

@media screen and (max-width: 480px) {
  .onlySP {
    display: initial;
  }
}

.ofh {
  overflow: hidden;
}

.anime {
  opacity: 0;
  -webkit-transform: translateY(-10px) scale(0.99, 0.99);
  transform: translateY(-10px) scale(0.99, 0.99);
  -webkit-transition: 1s;
  transition: 1s;
}

.move {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1, 1);
  transform: translateY(0) scale(1, 1);
}

.anime-r {
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.move-r {
  overflow: hidden;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.anime-l {
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.move-l {
  overflow: hidden;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.anime-d {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.move-d {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.anime-b {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: 1s;
  transition: 1s;
}

.move-b {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.delay1 {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

@media screen and (max-width: 480px) {
  .delay1 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay2 {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

@media screen and (max-width: 480px) {
  .delay2 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay3 {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

@media screen and (max-width: 480px) {
  .delay3 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay4 {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

@media screen and (max-width: 480px) {
  .delay4 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay5 {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
}

@media screen and (max-width: 480px) {
  .delay5 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

/*---------------------------------------
    Preloader section              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.sk-spinner-wordpress.sk-spinner {
  background-color: #bdc3c7;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  position: relative;
  -webkit-animation: sk-innerCircle 1s linear infinite;
  animation: sk-innerCircle 1s linear infinite; 
}

.sk-spinner-wordpress .sk-inner-circle {
  display: block;
  background-color: #ffffff;
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 8px;
  top: 5px;
  left: 5px; 
}

@-webkit-keyframes sk-innerCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes sk-innerCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

div.iframeWrapper {
position: relative;
width: 100%;
padding-top: 75%;
margin: auto;
display: block;
}

.iframe{
position: absolute;
margin: auto;
display: block;
}

/*---------------------------------------
    Main Navigation             
-----------------------------------------*/

.navbar-default {
    background: #ffffff;
    padding: 18px 0;
    border: none;
    margin-top: 62px;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: transparent;
}

.navbar-default .navbar-brand {
  padding-top: 6px;
}

.navbar-default .navbar-brand .fa {
  color: #000;
  font-size: 42px;
}

.navbar-default .navbar-nav li a {
    color: #777;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding-right: 22px;
    padding-left: 22px;
}

.navbar-default .navbar-nav > li a:hover {
    color: #333 !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #777;
    background-color: transparent;
}

.navbar-default .navbar-nav li a:hover,
 .navbar-default .navbar-nav .active > a {
    color: #333;
  }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #333;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
  }

.navbar-default .navbar-toggle .icon-bar {
    background: #bdc3c7;
    border-color: transparent;
  }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent;
}



/*---------------------------------------
    Home section              
-----------------------------------------*/

#home {
	background-size: cover;
	background-position: center center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 20px;
}

#home hr {
  width: 82px;
  margin-top: 32px;
}



/*---------------------------------------
   About section              
-----------------------------------------*/
#about .col-md-12,
#about .col-md-6,
#about .col-md-4 {
  padding-left: 0px;
  padding-bottom: 22px;
}

#about .text-center {
  padding-bottom: 42px;
}

#about .col-md-8 {
  padding-left: 0px;
}

#about .col-md-8 img {
  padding-right: 22px;
  padding-bottom: 22px;
}

#about hr {
  width: 100px;
  margin-top: 42px;
  margin-bottom: 42px;
}

#about ul {
  padding-left: 22px;
}

#about ul li {
  color: #777;
  font-size: 16px;
  font-weight: 400;
  padding-top: 2px;
  padding-bottom: 2px;
}



/*---------------------------------------
   Portfolio section              
-----------------------------------------*/

#portfolio small {
  color: #f0f0f0;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#portfolio .portfolio-thumb {
  position: relative;
  padding: 0;
  margin-top: 32px;
}

#portfolio .portfolio-thumb .portfolio-overlay {
  position: absolute;
  background: #222;
  color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: top;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

#portfolio .portfolio-item {
    position: absolute;
    top:50%;
    left: 50%;
    -webkit-transform:translate(-50%,-50%);
      -ms-transform:translate(-50%,-50%);
          transform:translate(-50%,-50%);
}

#portfolio .portfolio-thumb:hover .portfolio-overlay {
  opacity: 0.9;
}

#portfolio .text-center {
  padding-top: 62px;
}



/*---------------------------------------
   Single Project section              
-----------------------------------------*/

#single-project {
  text-align: center;
}

#single-project .col-md-12,
#single-project .col-md-6,
#single-project .col-md-4 {
  padding-left: 0px;
  padding-bottom: 22px;
}

#single-project .col-md-12 {
  padding-top: 42px;
}

#single-project .text-center strong {
  display: block;
  padding-top: 12px;
}

#single-project a {
  color: #555;
  font-weight: bold;
  letter-spacing: 1px;
  padding-left: 14px;
}



/*---------------------------------------
   Contact section              
-----------------------------------------*/

#contact .col-md-6,
#contact .col-md-12 {
  padding-left: 0px;
}

#contact .form-control {
  border: 1px solid #f0f0f0;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

#contact .form-control:hover {
  border-color: #777;
}

#contact input,
#contact select {
  height: 50px;
}

#contact input[type="submit"] {
  background: #222;
  border-radius: 100px;
  border: none;
  color: #ffffff;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}

#contact input[type="submit"]:hover {
  background: #000;
}



/*---------------------------------------
   Blog section              
-----------------------------------------*/

.blog-post-thumb {
  border-bottom: 1px solid #f0f0f0;
  padding-top: 32px;
  padding-bottom: 62px;
  margin-bottom: 32px;
}

.blog-post-thumb:last-child {
  border-bottom: 0px;
  padding-bottom: 32px;
  margin-bottom: 0px;
}

.blog-post-image {
  padding-bottom: 18px;
  width: 100%;
}

.blog-post-title a {
  color: #555;
}

.blog-post-title a:hover {
  color: #000;
}

.blog-post-format {
  padding-bottom: 22px;
}

.blog-post-format span {
  letter-spacing: 0.5px;
  padding-right: 12px;
}

.blog-post-format span a {
  color: #333;
}

.blog-post-format span img {
  display: inline-block;
  width: 42px;
  margin-right: 4px;
}

.blog-post-des blockquote {
  margin: 22px;
}

.blog-post-des .btn {
  border-radius: 100px;
  color: #777;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 14px 28px;
  margin-top: 26px;
  transition: all 0.4s ease-in-out;
}

.blog-post-des .btn:hover {
  background: #000;
  border-color: transparent;
  color: #ffffff;
}

.blog-author {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 42px;
  margin-bottom: 42px;
}

.blog-author .media img {
  display: inline-block;
  width: 90px;
  margin-right: 12px;
}

.blog-author .media a,
.blog-comment .media h3 {
  color: #444;
  font-size: 18px;
  letter-spacing: 1px;
}

.blog-comment {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 32px;
  margin-bottom: 42px;
}

.blog-comment .media:nth-child(3) {
  padding-top: 18px;
}

.blog-comment .media img {
  width: 80px;
  margin-right: 12px;
}

.blog-comment .media h3 {
  display: inline-block;
  padding-right: 14px;
}

.blog-comment h3,
.blog-comment-form h3 {
  padding-bottom: 18px;
}

.blog-comment-form .col-md-4 {
  padding-left: 0px;
}

.blog-comment-form .form-control {
  box-shadow: none;
  border: 1px solid #f0f0f0;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.blog-comment-form .form-control:hover {
  border-color: #777;
}

.blog-comment-form input {
  height: 45px;
}

.blog-comment-form input[type="submit"] {
  background: #222;
  border-radius: 100px;
  border: none;
  color: #ffffff;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}

.blog-comment-form input[type="submit"]:hover {
  background: #000;
  border-color: transparent;
}



/*---------------------------------------
   Blog Single Post section              
-----------------------------------------*/

#blog-single-post .blog-post-des h3 {
  padding-top: 16px;
}



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

footer {
    border-top: 1px solid #f0f0f0;
    padding: 100px 0px;
    position: relative;
}

footer .col-md-3 .fa {
  font-size: 42px;
}

footer a {
  color: #555;
}

footer hr {
  border-color: #ffffff;
  margin-top: 42px;
  margin-bottom: 22px;
}

footer .footer-copyright {
  padding-top: 16px;
}


/*---------------------------------------
   Social icon             
-----------------------------------------*/

.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
    text-align: center;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    color: #777;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    text-align: center;
    vertical-align: middle;
    position: relative;
    margin: 22px 12px 10px 12px;
}

.social-icon li a:hover {
    color: #000;
    transform: scale(1.1);
}

/*---------------------------------------
	instagram
-----------------------------------------*/

#instagram {margin-top: 40px;}

#gallery{
    margin: 0 0 5% 0;
}

#gallery li{
    overflow: hidden;
}

.gallery{
columns: 6;/*段組みの数*/
padding:0 15px;/*ギャラリー左右に余白をつける*/
}

.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}

@media only screen and (max-width: 600px) {
	.gallery{
	columns: 2;
	}	
}

/*---------------------------------------
	concept
-----------------------------------------*/
.top_concept {
  position: relative;
  margin-bottom: 115px;
}

@media screen and (max-width: 480px) {
  .top_concept {
    margin-bottom: 60px;
  }
}



.top_concept .copy {
  background: url("../images/top_conc_01.jpg") no-repeat center top;
  background-size: cover;
  height: 820px;
  color: #fff;
  text-align: center;
  padding-top: 134px;
  font-size: 26px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 480px) {
  .top_concept .copy {
    font-size: 18px;
    height: 110px;
    padding-top: 80px;
  }
}

.top_concept .wrap_cnt {
    position: absolute;
    top: 275px;
    right: calc(50% - 160px);
    width: calc(50% + 160px);
	background-color:rgba(255,255,255,0.9);
    z-index: 20;
    overflow: hidden;
    z-index: 10;
    left: 1px;
}

@media screen and (max-width: 480px) {
  .top_concept .wrap_cnt {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
}

.top_concept .wrap_cnt .cnt {
  width: 500px;
  float: right;
  padding-left: 10px;
  margin-right: 170px;
  padding-top: 90px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .top_concept .wrap_cnt .cnt {
    width: 100%;
    padding: 30px;
    margin: 0;
  }
  .top_concept .wrap_cnt .cnt br {
    display: none;
  }
}

.top_concept .wrap_cnt .cnt p {
  margin-bottom: 33px;
  line-height: 2.3;}

/*---------------------------------------
   Product        
-----------------------------------------*/

.top_Product {
  background: #f5f5f5;
  position: relative;
  padding-top: 75px;
  height: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: -90px;
}

@media screen and (max-width: 480px) {
  .top_Product {
    height: auto;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}

.top_Product:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: #b0aca8;
  position: absolute;
  top: -40px;
  left: 50%;
}

/*---------------------------------------
   pickup         
-----------------------------------------*/

.top_pickup {
  background: #f5f5f5;
  position: relative;
  padding-top: 95px;
  height: 312px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 150px;
}

@media screen and (max-width: 480px) {
  .top_pickup {
    height: auto;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}

.top_pickup:after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: #b0aca8;
  position: absolute;
  top: -40px;
  left: 50%;
}

@media screen and (max-width: 480px) {
  .top_pickup ul li {
  margin-left: 5px;
  }
}

.catalog_bnr {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .catalog_bnr {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}

.new_open {
  margin-bottom: 140px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .new_open .cnt {
    overflow: auto;
    padding: 0 15px 20px;
  }
}

.new_open ul {
  letter-spacing: -0.4em;
  text-align: center;
  width: 1080px;
  padding: 30px 30px 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .new_open ul {
    width: 100%;
    padding: 20px 20px 0;
  }
}

.new_open ul .slick-list {
  overflow: visible;
}

.new_open ul .slide-arrow {
  position: absolute;
  top: 115px;
  display: block;
  border: none;
  z-index: 100;
}

.new_open ul .prev-arrow {
  left: 0;
}

.new_open ul .next-arrow {
  right: 0;
}

.new_open ul li {
  display: inline-block;
  letter-spacing: normal;
  text-align: left;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 481px) {
  .new_open ul li {
    width: 300px !important;
    margin: 0 20px;
  }
}

.new_open ul li.slick-active {
  opacity: 1;
}

.new_open ul li a {
  display: block;
}

.new_open ul li .img {
  position: relative;
  margin-bottom: 19px;
  font-size: 0;
  min-width: 300px;
}

.new_open ul li .img img {
  position: relative;
  z-index: 5;
  max-width: 100%;
  height: auto;
}

.new_open ul li .img:after {
  content: "";
  display: block;
  width: 300px;
  height: 200px;
  background: #ebebeb;
  position: absolute;
  top: 7px;
  left: 7px;
}

.new_open ul li:nth-of-type(2) .img:after {
  top: auto;
  left: auto;
  bottom: -10px;
  right: -10px;
}

.new_open ul li .ttl {
  font-size: 20px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}

.new_open ul li .txt {
  font-size: 14px;
}

.pagetop {
  position: fixed;
  right: 40px;
  bottom: 60px;
  z-index: 100;
}

@media screen and (max-width: 480px) {
  .pagetop {
    right: 10px;
    bottom: 78px;
    width: 50px;
  }
}

.pagetop a {
  opacity: 1 !important;
}

.pagetop a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.pagetop a img:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagetop a img:active {
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

/* contents builder */
.p-cb__item {padding-bottom: 100px;padding-top: 100px;position: relative;}
.p-cb__item:last-child { padding-bottom: 150px; }
.p-cb__item.no-bg + .p-cb__item.no-bg {margin-top: -100px;}
.p-cb__item.has-bg-image { background-position: center center; background-repeat: no-repeat; background-size: cover; }
.p-cb__item.has-bg-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; top: 0; }
.p-cb__item.has-bg-image > * { z-index: 2; }
.p-cb__item-headline { font-size: 36px; font-weight: 600; line-height: 1.4; margin: -0.2em 0; text-align: center; }
.p-cb__item-subheadline { font-size: 16px; font-weight: 600; line-height: 1.8; margin: -0.4em 0; text-align: center; }
.p-cb__item-desc { font-size: 16px; line-height: 2.4; margin: -0.7em 0; text-align: center; }
.p-cb__item-headline + .p-cb__item-subheadline { margin-top: 10px; }
.p-cb__item-headline + .p-cb__item-desc { margin-top: 49px; }
.p-cb__item-subheadline + .p-cb__item-desc { margin-top: 48px; }
.p-cb__item * + .p-cb__item-content { margin-top: 60px; }
.p-cb__item-button__wrapper { margin-bottom: -3px; margin-top: 55px; text-align: center; }
@media (min-width: 992px) {
	.p-cb__item .p-archive02 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
	.p-cb__item .p-archive02__item { width: 50%; }
	.p-cb__item .p-archive02__item a { height: 100%; }
	.p-cb__item .p-archive02__item-thumbnail { -webkit-flex: 0 0 150px; -ms-flex: 0 0 150px; flex: 0 0 150px; height: 150px; width: 150px; }
	.p-cb__item .p-archive02__item:nth-child(-n+2)::before { border-top-width: 1px; }
	.p-cb__item .p-archive02__item:nth-child(2n+1)::before { border-right-width: 0; }
	.p-cb__item .p-archive02__item:last-child::before { border-right-width: 1px; }
}
@media (max-width: 991px) {
	.p-cb__item {padding-bottom: 40px;padding-top: 40px;}
	.p-cb__item:last-child { padding-bottom: 40px; }
	.p-cb__item.no-bg + .p-cb__item.no-bg {margin-top: -40px;}
	.p-cb__item-headline { font-size: 26px; }
	.p-cb__item-subheadline { font-size: 14px; }
	.p-cb__item-desc { font-size: 14px; line-height: 2; margin: -0.5em 0; }
	.p-cb__item-headline + .p-cb__item-subheadline { margin-top: 8px; }
	.p-cb__item-headline + .p-cb__item-desc { margin-top: 35px; }
	.p-cb__item-subheadline + .p-cb__item-desc { margin-top: 35px; }
	.p-cb__item * + .p-cb__item-content { margin-top: 40px; }
	.p-cb__item-button__wrapper { margin-top: 40px; }
}

/* 8blocks */
.p-cb-blocks {}
.p-cb-blocks__item { height: 270px; overflow: hidden; position: relative; width: 270px; }
.p-cb-blocks__item a,
.p-cb-blocks__image,
.p-cb-blocks__image-inner { display: block; height: 100%; width: 100%; }
.p-cb-blocks__image-inner { background-position: center center; background-repeat: no-repeat; background-size: cover; }
.p-cb-blocks__info { color: #fff; max-height: 100%; overflow: hidden; padding: 25px 27px; position: absolute; bottom: 0; left: 0; right: 0; top: 0; z-index: 3; }
.p-cb-blocks__info--type1 { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; text-align: center; }
.p-cb-blocks__info--type2, .p-cb-blocks__info--type3 { bottom: auto; }
.p-cb-blocks__info--type4, .p-cb-blocks__info--type5 { top: auto; }
.p-cb-blocks__info--type2, .p-cb-blocks__info--type4 { text-align: left; }
.p-cb-blocks__info--type3, .p-cb-blocks__info--type5 { text-align: right; }
.p-cb-blocks__catch { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: -0.1em; margin-top: -0.1em; }
.p-cb-blocks__desc { font-weight: 700; line-height: 1.7; margin-bottom: -0.35em; margin-top: -0.35em; }
.p-cb-blocks__catch + .p-cb-blocks__desc { margin-top: 6px; }
.p-cb-blocks__image--overlay { position: absolute; bottom: 0; left: 0; right: 0; top: 0; z-index: 2; }
@media (max-width: 991px) {
	.p-cb-blocks__info { padding: 14px 20px; }
	.p-cb-blocks__catch { font-size: 24px; }
	.p-cb-blocks__desc { font-size: 12px; line-height: 1.8; margin-bottom: -0.4em; margin-top: -0.4em; }
	.p-cb-blocks__catch + .p-cb-blocks__desc { margin-top: 4px; }
}

/* Inner */
.l-inner {margin-left: auto;margin-right: auto;position: relative;width: 88.8888%;max-width: 1110px;}
@media (min-width: 992px) {
	.l-pc-inner { margin-left: auto; margin-right: auto; position: relative; width: 88.8888%; max-width: 1110px; }
}
@media (max-width: 991px) {
	.l-mobile-inner { margin-left: auto; margin-right: auto; position: relative; width: 88.8888%; max-width: 1110px; }
}

/* archive */
.p-archive { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.p-archive__item { position: relative; }
.p-archive__item-anchor { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; height: 100%; }
.p-archive__item-thumbnail { -webkit-flex: 0 0 auto; -ms-flex: 0 0 auto; flex: 0 0 auto; padding-top: 60%; overflow: hidden; position: relative; }
.p-archive__item-thumbnail__image { position: absolute; bottom: 0; left: 0; right: 0; top: 0; z-index: 1; }
.p-archive__item-info { background: #fff; border-color: #ddd; border-style: solid; border-width: 0 1px 1px 1px; -webkit-flex: 1 0 auto; -ms-flex: 1 0 auto; flex: 1 0 auto; padding: 26px 29px; }
.p-archive__item-meta { margin-bottom: 4px; margin-top: -2px; }
.p-archive__item-title {font-weight: 600;font-size: medium;color: black;line-height: 1.8;max-height: 3.6em;overflow: hidden !important;}
.p-archive__item-price { line-height: 1.8; }
.no_post { padding: 100px 0; text-align: center; }
@media (min-width: 992px) {
	.p-cb__item .p-archive__item,
	.l-primary:only-child .p-archive__item { margin-top: 23px; margin-right: 2%; width: 32%; }
	.p-cb__item .p-archive__item:nth-child(-n+3),
	.l-primary:only-child .p-archive__item:nth-child(-n+3) { margin-top: 0; }
	.p-cb__item .p-archive__item:nth-child(3n),
	.l-primary:only-child .p-archive__item:nth-child(3n) { margin-right: 0; }
	.l-2columns .p-archive__item { margin-top: 23px; margin-right: 2.8%; width: 48.6%; }
	.l-2columns .p-archive__item:nth-child(-n+2) { margin-top: 0; }
	.l-2columns .p-archive__item:nth-child(2n) { margin-right: 0; }
}
@media (min-width: 600px) and (max-width: 991px) {
	.p-archive__item { margin-top: 23px; margin-right: 2.8%; width: 48.6%; }
	.p-archive__item:nth-child(-n+2) { margin-top: 0; }
	.p-archive__item:nth-child(2n) { margin-right: 0; }
	.no_post { padding: 50px 0; text-align: center; }
}
@media (max-width: 599px) {
	.p-archive__item { margin-top: 18px; width: 100%; }
	.p-archive__item:first-child { margin-top: 0; }
}
@media (max-width: 991px) {
	.p-archive__item-info { padding: 14px 20px; }
	.p-archive__item-title { height: auto; max-height: 3.6em; }
	.p-archive__item-meta { margin-bottom: 4px; margin-top: 0; }
}

/* hover effect */
.p-hover-effect__image {background-position: center center;background-repeat: no-repeat;background-size: cover;-webkit-transition-property: -webkit-transform, transform, opacity;-webkit-transition-duration: 0.5s;-webkit-transition-timing-function: ease;-moz-transition-property: -moz-transform, transform, opacity;-moz-transition-duration: 0.5s;-moz-transition-timing-function: ease;-ms-transition-property: -ms-transform, transform, opacity;-ms-transition-duration: 0.5s;-ms-transition-timing-function: ease;transition-property: transform, opacity;transition-duration: 0.5s;transition-timing-function: ease;}
.p-hover-effect__bg { display: block; -webkit-transition: background 0.5s ease-in; -moz-transition: background 0.5s ease-in; -ms-transition: background 0.5s ease-in; transition: background 0.5s ease-in; overflow: hidden; }
.p-hover-effect--type1.p-hover-effect__bg:hover,
.p-hover-effect--type1:hover .p-hover-effect__bg,
.p-hover-effect--type2.p-hover-effect__bg:hover,
.p-hover-effect--type2:hover .p-hover-effect__bg,
.p-hover-effect--type3.p-hover-effect__bg:hover,
.p-hover-effect--type3:hover .p-hover-effect__bg,
.p-hover-effect--type4.p-hover-effect__bg:hover,
.p-hover-effect--type4:hover .p-hover-effect__bg { -webkit-transition-property: none; -moz-transition-property: none; -ms-transition-property: none; transition-property: none; }
.p-hover-effect--type1 .p-hover-effect__image { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }
.p-hover-effect--type2 .p-hover-effect__image { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.p-hover-effect--type2:hover .p-hover-effect__image { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); transform: scale(1); }
.p-hover-effect--type3 .p-hover-effect__image { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); }
.p-hover-effect--type4 .p-hover-effect__image {-webkit-transition-property: opacity;-moz-transition-property: opacity;-ms-transition-property: opacity;transition-property: opacity;}
.p-hover-effect--type4:hover .p-hover-effect__image { opacity: 0.5; }

/* article title */
.p-article__title { word-break: break-all; }
/* article meta */
.p-article__meta { color: #666; font-size: 12px; line-height: 1.8; }
.p-article__meta::after { clear: both; content: ""; display: table; }
.p-article__meta a { color: #666; }
.p-article__meta a:hover { color: #bbb; }
.p-article__meta > * { float: left; }
.p-article__meta > *::after { content: "|"; display: inline-block; font-size: 10px; margin-left: 6px; margin-right: 6px; vertical-align: 1px; }
.p-article__meta > *:last-child::after { display: none; }
.p-article__meta::after { clear: both; content: ""; display: table; }

/*----------------------------------------------------
 	access
----------------------------------------------------*/

#access{ width: 100%; padding: 80px 0 20px; }
#access a{  color: #4e4b43;}
#access a:hover{ color: #f7897e!important;}


.accessAdd{ width: 900px;margin-left: auto;margin-right: auto;font-size: 14px;margin-bottom: 40px!important;}
.accessAdd dt{width: 7em; float: left; clear: both; padding-left: 20px !important;}
.accessAdd dd{position: relative; padding-left: 8em; padding-right: 20px; padding-bottom: 20px; margin-bottom: 20px !important; }
.accessAdd dd::after {
	content: "";
	display: block;
	height: 2px;
	background-image: linear-gradient(to right, #e0dbc6, #e0dbc6 2px, transparent 2px, transparent 8px);
	background-size: 6px 2px;
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0 !important;
}
.accessAdd a{text-decoration: underline;}
.accessAdd dd span{font-size: 12px;}
.accessAdd dd a[href^="tel:"]{text-decoration: none;}

/*---------------------------------------
   Mobile Responsive         
-----------------------------------------*/


@media (max-width: 767px) {

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
    line-height: 48px;
  }

  h3 {
    font-size: 22px;
  }

  .section-title h2 {
    font-size: 22px;
    line-height: 35px;
  }

  .navbar-default {
    margin-top: 0px;
    text-align: center;
  }

  #about .col-md-8 img {
    padding-right: 0px;
  }

  #blog-single-post .blog-post-title h2 {
    font-size: 29px;
    line-height: 40px;
  }

  footer {
    text-align: center;
  }

  footer .col-md-4 {
    padding-top: 42px;
  }

.anime {
  opacity: 0;
  -webkit-transform: translateY(-10px) scale(0.99, 0.99);
  transform: translateY(-10px) scale(0.99, 0.99);
  -webkit-transition: 1s;
  transition: 1s;
}

.move {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1, 1);
  transform: translateY(0) scale(1, 1);
}

.anime-r {
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.move-r {
  overflow: hidden;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.anime-l {
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.move-l {
  overflow: hidden;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.anime-d {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.move-d {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.anime-b {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: 1s;
  transition: 1s;
}

.move-b {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.delay1 {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

@media screen and (max-width: 480px) {
  .delay1 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay2 {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

@media screen and (max-width: 480px) {
  .delay2 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay3 {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

@media screen and (max-width: 480px) {
  .delay3 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}


	
/*----------------------------------------------------
 	access SP
----------------------------------------------------*/

#access { padding: 60px 0 20px;}

.accessAdd{ width: 92%;font-size: 14px;margin-bottom: 40px;}
.accessAdd dt{padding-left: 10px; width: 6em;}
.accessAdd dd{padding-right: 10px; padding-bottom: 20px; margin-bottom: 20px; padding-left: 7em;}
.accessAdd dd a[href^="tel:"]{text-decoration: underline;}
	
}
