
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック', YuGothic, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  color: #040000;
  background-color: #ffffff;
}

a:hover {
  text-decoration: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  border : #040000 1px solid;
  right: 1rem;
  bottom: 1rem;
  background-color: #040000;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 1.5rem;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.back-to-top:hover {
  color: #040000;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.back-to-top:active, .back-to-top:visited{
  color:#fff;
  background-color: #040000;
}

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

#header {
  width:100%;
  margin: 0 auto;
  z-index: 997;
  padding: 10px 0;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#main {
  overflow: hidden;
  z-index: 3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.nav-menu > ul::after{
  display: block;
  content: "";
  clear: both;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #635551;
  padding: 11px 15px;
  transition: 0.3s;
  font-size: 0.875rem;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ff5821;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 0.5rem;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 280px;
  position: relative;
  padding-bottom: 0.625rem;
}
.nav-menu .drop-down li:last-child{
  padding-bottom: 0;
}
.nav-menu .drop-down ul a,
.nav-menu .drop-down ul{
  font-size: 0.875rem;
  text-transform: none;
}
.nav-menu .drop-down ul.dropdown-about li:nth-child(n+3){
  padding-left: 20px;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #fff;
  background-color: #040000;
  transition: background 0.5s ease-in;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 1.75rem;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #040000;
}

.mobile-nav {
  position: fixed;
  top: 3.4375rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.625rem;
  padding: 0.625rem 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #989898;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #040000;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down .dropdown-about li:nth-child(n+3) > a{
  padding-left: 40px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav .drop-down li.dropdown-works{
  padding-left: 40px;
  color: #989898;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(43, 37, 35, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
.mobile-nav ul li .pc-only{
  display: none;
}
.mobile-nav ul li span:before{
  content: " | ";
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}
.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 1.875rem;
  font-family: "Montserrat", sans-serif;
  color: #040000;
}
.section-title hr{
  border-top: 1px solid #040000;
  padding-bottom: 2.1875rem;
  margin: 0 auto;
  width: 22.875rem;
}
.section-title h3{
  font-size: 1.75rem;
  padding-bottom: 2.75rem;
  font-weight: bold;
}
.section-title p {
  font-size: 1.375rem;
  color: #515151;
  line-height: 2.5rem;
  padding-bottom: 5.75rem;
  margin: 0;
}
.section-subtitle{
  font-size: 1.75rem;
  text-align: left;
}
.section-subtitle span{
  font-size: 1.5rem;
}

.btn { 
  font-weight: 500;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn-luxe-primary,
.btn-luxe-primary:visited{
  color: #040000;
  background: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  border: 1px solid #040000;
  overflow: hidden;
  padding: 0.625rem 1.5rem;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-luxe-primary i {
  position: absolute;
  top: 50%;
  font-size: 1.5rem;
  right: -1.25rem;
  margin-top: -12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-luxe-primary:hover {
  background: #040000;
  padding-right: 2.5rem;
  color: #fff;
}
.btn-luxe-primary:hover i {
  right: 0.5rem;
}
.btn-luxe-primary:focus, .btn-luxe-primary:active {
  background: #040000 !important;
}
.btn-center{
	text-align: center;
	margin: 0 0 20px;
}
 

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {
  padding: 2.25rem 0;
  background: url("../img/all/bg_breadcrumb.jpg") 50% 0 no-repeat;
  height: 6.5rem;
  margin-bottom: 3.75rem;;
}

.breadcrumb h2 {
  font-size: 1.5rem;
  font-weight: normal;
}
.breadcrumb h2 span{
  font-size: 1.125rem;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #4d4d4d;
  text-align: right;
}
.breadcrumb ol li{
  display: inline-block;
}
.breadcrumb ol li + li {
  padding-left: 0.625rem;
}
.breadcrumb ol li + li::before {
  padding-right: 0.625rem;
  content: "\03e";
}
.breadcrumb ol li a{
  color:#4d4d4d;
}
.breadcrumb ol li a:hover{
  font-weight: 600;
}


/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/
#gallery{
  margin-top: -8.75rem;
  padding-top: 8.75rem;
  padding-bottom: 6.25rem;
}
#gallery .btn-luxe-primary{
  font-weight: 500;
}
.gallery-wrapper #gallery-filters {
  margin: 0 auto 2.1875rem auto;
  list-style: none;
  text-align: center;
  padding: 0.125rem 1rem;
}

.gallery-wrapper #gallery-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0.625rem 1.25rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #040000;
  margin-bottom: 0.3125rem;
  transition: all 0.3s ease-in-out;
  border: #040000 1px solid;
  border-radius: 2px;
}

.gallery-wrapper #gallery-filters li:hover, .gallery-wrapper #gallery-filters li.filter-active {
  color: #fff;
  background: #040000;
}

.gallery-wrapper #gallery-filters li:last-child {
  margin-right: 0;
}

.gallery-wrapper .gallery-item {
  margin-bottom: 1.875rem;
}

.gallery-wrapper .gallery-item .gallery-info {
  border: #c8c9ca 1px solid;
  margin: 1rem;
  padding: 0.75rem 0;
  min-height: 6.6rem;
}

.gallery-wrapper .gallery-item .gallery-info p,
.gallery-wrapper .gallery-item .gallery-info p.gallery-info-lg{
  color: #040000;
  font-size: 1.125rem;
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 0;
}
.gallery-wrapper .gallery-item .gallery-info p.gallery-info-lg {
  font-size: 0.9375rem;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/* trial-form.html */

.contact textarea, .contact input[type="text"], .contact input[type="email"] {
    padding: 10px;
    line-height: 20px;
    height: auto;
		margin-bottom:10px;
		border:#ccc 1px solid;
		border-radius:4px;
}
.contact textarea {
    height: 80px;
}
textarea:focus, input[type="text"]:focus, input[type="email"]:focus, [type="tel"]:focus{
  border-top-color: rgba(82, 168, 236, 0.8);
  border-right-color: rgba(82, 168, 236, 0.8);
  border-bottom-color: rgba(82, 168, 236, 0.8);
  border-left-color: rgba(82, 168, 236, 0.8);
  outline-width: 0px;
  outline-style: none;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(82, 168, 236, 0.6);
}

.label-check input[type="checkbox"]{
  display: none;
}
.label-check{
  cursor: pointer;
  color: #6e6e6e;
  font-weight: normal;
  letter-spacing: 0;
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
.label-check .lever:before{
  content:'';
  border: 1px solid #ddd;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  border-radius:10px;
  -webkit-transition: all 800ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 800ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 800ms cubic-bezier(1, 0, 0, 1);
  transition: all 800ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.label-check input[type="checkbox"]:checked + .lever:before{
  opacity: 0;
  background: #eee;
  border-color: #eee;
  transform:scale(2);
}
.label-check .lever:after{
  content:'';
  opacity: 0;
  position: absolute;
  left: 8px;
  top: 0px;
  width:8px;
  height: 16px;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  transform:rotate(-200deg);
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}
.label-check input[type="checkbox"]:checked + .lever:after{
  opacity: 1;
  position: absolute;
  left: 8px;
  top: 0px;
  width:8px;
  height: 16px;
  border-right: 2px solid #040000;
  border-bottom: 2px solid #040000;
  transform:rotate(40deg);
}
.lever1,
.form-group select{
	color: #6e6e6e;
}
.contact-form {
  background:#fff;
  padding:20px;
	margin-bottom:20px;
	overflow:hidden;
}
.contact-form h5 {
  color:#040000;
  padding-bottom:0.625rem;
	font-size: 1.5rem;
	text-align: center;
}
.contact-form hr{
  border-color: #040000;
  width:80%;
}
.contact-form p{
	color:#4d4d4d;
	text-align: center;
	padding: 1.25rem 0;
}
#contact-form{
	background-color: #f8f8f8;
	padding: 20px 20px 0 20px;
	margin-bottom: 20px;
  color: #4d4d4d;
}
.mail-format p{
	margin: 0 auto;
	padding: 0 10px 10px 12px;
	color: #8f8f8f;
	text-align: left;
	font-size: 12px;
	line-height: 16px;
}
.btn-send{
	padding:1.25rem 0 1.875rem;
  text-align: center;
}
.message-btn {
  
  border:1px solid #040000;
  color:#040000;
  background-color:#fff;
  padding:12px 30px;
  font-size:17px;
  border-radius:4px;
  margin-top: 16px;
  
}
.message-btn:hover {
  background-color:#040000;
  color:#fff;
  transition-duration: 0.5s;
}
.pt20{
  padding: 14px 0 0 10px;
}
.pt20 p{
	color:#8e8e8e;
	text-align: left;
	padding: 0 20px;
}
#privacy{
	width:90%;
	margin:0 auto;
}
#privacy{
	border: solid 1px #ccc;
	max-height: 220px;
	overflow-y: scroll;
	padding: 10px;}
#privacy h4, #privacy h5, #privacy p{
	color:#8e8e8e;
}
#privacy h4{
	font-size:14px;
}
#privacy h5{
	font-size:13px;
}
#privacy p{
	font-size:12px;
	text-align:left;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}

#footer .footer-top {
  padding: 2.5rem 1rem 1.875rem;
}

#footer .footer-contact {
  margin-bottom: 1.875rem;
}
#footer .footer-contact .footer-contact-wrapper{
  width: 80%;
  margin: 0 auto;
}
#footer .footer-contact .footer-contact-wrapper h3 {
  font-size: 1.5rem;
  margin: 0;
  padding: 1.5rem 0 0.5rem 0;
  font-weight: bold;
}
#footer .footer-contact .footer-contact-wrapper p.address{
  padding: 0 0 0.5rem 0;
}
#footer .footer-contact .footer-contact-wrapper p.address a{
  text-decoration: none;
  color: #040000;
}
#footer .footer-contact .footer-contact-wrapper p.address a:hover{
  color: #8d8d8d;
}
#footer .footer-contact .footer-contact-wrapper p.address span {
  font-size: 1.125rem;
}

#footer .footer-contact p.btn-center a.btn-luxe-primary{
  width:100%;
  display: inline-block;
}
#footer .footer-map img{
  padding-bottom: 0.625rem;
}
#footer .footer-map dl{
  margin: 0 1rem;
}
#footer .footer-map dl dt{
  padding: 0.625rem 0;
  margin-bottom: 0.625rem;
  border-bottom: #040000 1px solid;
  font-weight: bold;
}
#footer .footer-map dl dd{
  font-size: 1rem;
  font-feature-settings: "palt";
}
#footer .copyright{
  padding-top: 1.25rem;
  font-weight: 500;
}




