
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Helvetica neue', Helvetica, '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  color: #515151;
  font-feature-settings: "palt";
  font-weight: normal !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: YuMincho,'Yu Mincho', serif !important;
}

@font-face {
  font-family: "lora";
  src: url("../font_lora/Lora-Italic.eot") format('eot'),
       url("../font_lora/Lora-Italic.woff2") format('woff2'),
       url("../font_lora/Lora-Italic.woff") format('woff');
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 30px;
  z-index: 996;
  background: #aa872e;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: rgba(170, 135, 46, .8);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar .main-nav {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar .main-nav li {
  position: relative;
}

.navbar .main-nav li a {
  text-align: center;
  padding: 15px 15px 17px 15px;
  margin-left: 5px;
  font-size: 18px;
  font-family:  YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar .main-nav li a span{
  font-size: 18px;
  color: #515151;
  transition: 0.3s;
}
.navbar .main-nav li a:hover span{
  color: #aa872e
}

/*.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}*/

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #aa872e;
}
.navbar ul.sub-nav{
  display: none;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #aa872e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar .main-nav {
    display: none;
  }
  .navbar ul.sub-nav{
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile .main-nav {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .9);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile .main-nav a{
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #333; 
}
.navbar-mobile .main-nav a:hover,
.navbar-mobile .main-nav .active,
.navbar-mobile .main-nav li:hover > a {
  color: #aa872e;
}

.navbar-mobile .getstarted {
  margin: 15px;
}
.navbar-mobile ul.sub-nav{
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.navbar-mobile ul.sub-nav li{
  padding: 5px 15px;
}
.navbar-mobile ul.sub-nav li a{
  font-family: 'Helvetica neue', Helvetica, '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif !important;
  font-weight: bold;
  color: #213e4c;
  text-align: left;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 930px;
  overflow: hidden;
  position: relative;
  background: url("../img/top/img_mv.jpg")50% 100% no-repeat;
  padding-top: 160px;
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 200px 0 0;
  overflow: hidden;
}
section h3{
  text-align: center;
  line-height: 2.8rem;
  color:#333;
}
section p{
  font-size: 20px;
  line-height: 2rem;
  width: 85%;
  margin: 0 auto;
  padding-top: 40px;
}

.btn_basic{
  text-align: center;
}
.frame-btn {
  margin-top: 50px;
  line-height: 10px;
  display: inline-block;
  padding: 25px 30px;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
}
.frame-btn__text {
  color: #aa872e;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  position: relative;
}
.frame-btn:hover .frame-btn__text {
  color: white;
}
.frame-btn__solid {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
  background-color: #aa872e;
  width: calc(100% - (5px * 4));
  height: calc(100% - (5px * 4));
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  opacity: 0;
  -webkit-transition: 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.frame-btn:hover .frame-btn__solid {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.frame-btn__outline {
  position: absolute;
  top: 0;
  left: 0;
}
.frame-btn__outline--tall {
  margin: 0 5px;
  width: calc(100% - (5px * 2));
  height: 100%;
}
.frame-btn__outline--flat {
  margin: 5px 0;
  height: calc(100% - (5px * 2));
  width: 100%;
}
.frame-btn__line {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.frame-btn__line--tall:before, .frame-btn__line--tall:after {
  height: 100%;
  width: 1px;
  top: 0;
}
.frame-btn:hover .frame-btn__outline--flat .frame-btn__line--tall:before, .frame-btn:hover .frame-btn__outline--flat .frame-btn__line--tall:after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.frame-btn:hover .frame-btn__outline--tall .frame-btn__line--tall:before, .frame-btn:hover .frame-btn__outline--tall .frame-btn__line--tall:after {
  margin: 5px 0;
  height: calc(100% - (5px * 2));
}
.frame-btn__line--tall:before {
  left: 0;
}
.frame-btn__line--tall:after {
  right: 0;
}
.frame-btn__line--flat:before, .frame-btn__line--flat:after {
  width: 100%;
  height: 1px;
  left: 0;
}
.frame-btn:hover .frame-btn__outline--tall .frame-btn__line--flat:before, .frame-btn:hover .frame-btn__outline--tall .frame-btn__line--flat:after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.frame-btn:hover .frame-btn__outline--flat .frame-btn__line--flat:before, .frame-btn:hover .frame-btn__outline--flat .frame-btn__line--flat:after {
  margin: 0 5px;
  width: calc(100% - (5px * 2));
}
.frame-btn__line--flat:before {
  top: 0;
}
.frame-btn__line--flat:after {
  bottom: 0;
}
.frame-btn__line:before, .frame-btn__line:after {
  content: '';
  display: block;
  position: absolute;
  background-color: #aa872e;
  -webkit-transition: 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.frame-btn:hover .frame-btn__line:before, .frame-btn:hover .frame-btn__line:after {
  -webkit-transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog h4.archive-title{
  padding-bottom: 2rem; 
  text-align: center;
}

.blog .post {
  background-color: #fff;
  box-shadow: 2px 2px 4px 1px rgba(55, 55, 55, .3);
  padding: 2.5rem 1rem 2.5rem;
  margin: 1.5rem 0.75rem;
  max-width: calc(50% - 1.5rem);
}
.blog .post.post-single{
  max-width: calc(100% - 1.5rem);
}

.blog .post p.go-on {
  font-size: 1rem;
  padding: 0 0 1.5rem;
  text-align: right;
}
.blog .post p.go-on a {
  text-decoration: none; 
  color: #515151;
}
.blog .post p.go-on a:hover {
  text-decoration: underline; 
}

.blog .post h4.post-title{
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing:0;
}
.blog .post h4.post-title a{
	color: #333;
}
.blog .post h4.post-title a:hover,
.blog .post h4.post-title a:active{
	color:#8d8d8d;
}
.blog .post .post-content p{
  font-size: 1.25rem;
  color:#515151;
  padding: 0 0 1.5rem 0;
  text-align: left;
}
.blog .post .post-content img{
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 1.25rem;
}
.blog .post .post-content .post-meta span.post-date{
  font-size: 1rem;
}









 /* contact.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: 120px;
}
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;
}
.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 #aa872e;
  color:#aa872e;
  background-color:#fff;
  padding:12px 30px;
  font-size:17px;
  border-radius:4px;
  margin-top: 16px;
  
}
.message-btn:hover {
  background-color:#aa872e;
  color:#fff;
  transition-duration: 0.5s;
}
.pt20{
  padding: 14px 0 14px 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;
  line-height: 1.6rem;
  width: 100%;
  margin: 0 10px;
  padding: 10px 10px 20px;
}

.nofound{
  padding: 12.5rem 0 6.25rem;
}
.nofound p{
  text-align: center;
}





