@charset "utf-8";

/*
div{
	border: 1px solid red;
}
*/

/*--------------- default ---------------*/
* { 
    margin: 0px; 
    padding: 0px; 
}

html.wf-active, html.loading-delay {
  visibility: visible;
}

body{
  font-family: ten-mincho, serif;
  font-family: ten-mincho, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
  line-height: 1.6;
  color: #002A41;
  letter-spacing: 1px;
}

header {
  position: relative;
  height: 80vh;
  /* background: #000; */
}

header h1 {
  position: absolute;
  top: 40%;
  width: 100%;
  color: #000;
  font-size: 2em;
  text-align: center;
  transform: translateY(-50%);
}

header h2 {
  position: absolute;
  top: 60%;
  width: 100%;
  color: #000;
  font-size: 2em;
  text-align: center;
  transform: translateY(-50%);
}

nav {
    height: 100px;
    background: rgba(250,250,250,0.8);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

nav .main-nav {
  float: left;
}

nav .main-nav li,
nav .sub-nav li{
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
  font-size: 1.2em;
}

nav .main-nav li:first-child{
  padding-left: 30px;
}

nav .sub-nav {
  position: absolute;
  right: 30px;
  font-weight: bold;
  padding: 0;
}

/* drawer */
.drawer{
  display: none;
}

#nav-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  height: 52px;
  cursor: pointer;
  padding: 10px 7px;
}

#nav-toggle > div {
  position: relative;
  width: 36px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: top .1s ease, -webkit-transform .1s ease-in-out;
  transition: transform .1s ease-in-out, top .1s ease;
  transition: transform .1s ease-in-out, top .1s ease, -webkit-transform .1s ease-in-out;
  will-change: transform;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 12px;
}
#nav-toggle span:nth-child(3) {
  top: 24px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 3px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 21px;
}

.open #nav-toggle{
  border-color: #fff;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#gloval-nav {
  background: #000;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  /* text-align: center; */
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .4s ease, visibility .4s ease;
}

#gloval-nav .m-logo img{
  width: 100px;
}

#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 0 5px;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #fff;
}

#gloval-nav .menu-sns{
  margin-top: 30px;
}

#gloval-nav .menu-sns a.m-icon{
  display: inline;
}

#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  transition: transform .3s ease, opacity .1s ease, -webkit-transform .1s ease;
  font-size: 0.8em;
}

#gloval-nav ul li.ttl {
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin:20px 0 10px 0;
  font-size: 1em;
}

#gloval-nav ul li:nth-child(2) {
  transition-delay: .1s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: .2s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: .3s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: .4s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: .5s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: .6s;
}
#gloval-nav ul li:nth-child(8) {
  transition-delay: .7s;
}
#gloval-nav ul li:nth-child(9) {
  transition-delay: .8s;
}
#gloval-nav ul li:nth-child(10) {
  transition-delay: .9s;
}
#gloval-nav ul li:nth-child(11) {
  transition-delay: 1.1s;
}
#gloval-nav ul li:nth-child(12) {
  transition-delay: 1.2s;
}
#gloval-nav ul li:nth-child(13) {
  transition-delay: 1.3s;
}
#gloval-nav ul li:nth-child(14) {
  transition-delay: 1.4s;
}
#gloval-nav ul li:nth-child(15) {
  transition-delay: 1.5s;
}
#gloval-nav ul li:nth-child(16) {
  transition-delay: 1.5s;
}
/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 0.9;
}
.open #gloval-nav li {
  opacity: 0.9;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: transform .1s ease, opacity .9s ease, -webkit-transform .5s ease;
  will-change: transform;
}

#gloval-nav .nav-icon a{
display: inline-block;
padding: 20px 0;
}



/*  added */

.bg-gray{
  background-color: #F4F5F5;
}

.about,
.kiyomizu,
.news{
  padding: 120px 0;
}

.about h1{
  font-size: 3em;
}

.about p{
  font-size: 1.4em;
  line-height: 2em;
  margin-top: 80px;
}

.img-separator-about{
  height: 400px;
  width: 100%;
  background-size: cover;
  background:no-repeat url('../img/img-separator-about.jpg') center center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.img-separator-about::before{
  content: '';
  background: inherit;
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  filter:blur(2px) brightness(70%);
  z-index: -1;
}

.about h2{
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    font-size: 1.6em;
}

.img-kiyomizu01{
  margin: 80px 0 40px 80px;
}

.news h2{
  font-size: 2.4em;
}

.chrono-order li {
    padding: 10px 0 20px;
    line-height: 1.6em;
    border-bottom: 1px dotted #ccc;
    font-size: 1.2em;
}

.chrono-order li span.date {
    display: inline-block;
    width: 10%;
    vertical-align: top;
}

.chrono-order li span.text {
    display: inline-block;
    width: 90%;
    word-wrap: break-word;
}


.img-separator-inquiry{
  height: 400px;
  width: 100%;
  background-size: cover;
  background:no-repeat url('../img/img-separator-inquiry.jpg') center center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-separator-inquiry::before{
  content: '';
  background: inherit;
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  filter:blur(2px) brightness(70%);
  z-index: -1;
}


/*  added */



h2{
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 20px 0;
}

h3{
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 20px;
}

h4{
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 30px;
}

.btn-next{
  background: #D0BE60 0% 0% no-repeat padding-box;
  border-radius: 25px;
  opacity: 1;
  display: inline-block;
  color: #fff;
  padding: 10px 50px;
  margin-top: 20px;
  position: absolute;
  right: 0;
  bottom: 25px;
  font-weight: bold;
}

.btn-next a{
  color: #fff;
}

footer {
  /* height: 200px; */
  background: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  margin: 100px auto 50px auto!important;
}

footer ul{
  margin: 20px 0 30px;
}

footer ul li{
  display: inline-block;
  padding: 0 10px;
  
}

footer img.logo{
  margin: 0 0 30px 0;
}

#pageTop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 170px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* header */
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
/* header */

.pdn{
  display: none;
}

.object-fit-img {
  object-fit: cover;
  object-position: 50% 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

.feature-article img{
    object-fit: cover;
    height: 260px;
    overflow: hidden;
    width: auto;
}

.product .is-3 img,
.feature-article img{
	opacity: 60%;
	border-radius: 5px;
}

h2 a.btn01{
    border: 1px solid #000;
    border-radius: 10px;
    display: inline-block;
    padding: 14px 40px;
    margin: 30px 0;
    font-size: 1.8rem;
}

h2 a.btn01:hover{
  opacity: 50%;
  border: 1px solid #ccc;
  background-color: #ccc;
}

@media screen and (max-width:1200px) {

}

@media screen and (max-width:800px) {

}

@media screen and (max-width:600px) {

}

@media (min-width: 3800px) {

}

@media (min-width: 1408px) {

}

@media (min-width: 1281px) {

}

@media (min-width: 1216px) and (max-width: 1407px) {
nav .main-nav li, nav .sub-nav li {
    padding: 0 10px;
    font-size: 1em;
}
}

@media (min-width: 971px) and (max-width: 1216px) {
nav .main-nav li, nav .sub-nav li {
    padding: 0 10px;
    font-size: 1em;
}

.container {
    margin: auto;
    position: relative;
}

nav .sub-nav {
	float: right;
    position: inherit;
    right: auto;
    font-weight: bold;
    padding: 0;
}
}

@media (min-width: 320px) and (max-width: 970px) {
  
  header {
    height: 85vh;
  }
  
  .about, .kiyomizu, .news {
      padding: 40px 0;
  }
  
  .column{
      padding-left: 1rem;
      padding-right: 1rem;
  }
  
  .about p {
      font-size: 1.2em;
      margin-top: 40px;
      text-align: left;
      padding: 0 15px;
  }
  
  .main-nav img{
    width: 80%;
  }
  
  nav .main-nav li:first-child {
      padding-left: 10px;
      text-align: center;
  }
  
  .sub-nav{
    display: none;
  }

  .img-kiyomizu01{
      margin: 40px 0; 
    }
    
#pageTop {
  right: 20px;
}

.kiyomizu h2{
  font-size: 2.6em; 
}

.mdn{
  display: none;
}

.mdb{
  display: block;
}

.chrono-order li span.date {
    width: 100%;
}

.chrono-order li span.text {
    display: inline-block;
    width: 100%;
    word-wrap: break-word;
}

.img-separator-inquiry{
  text-align: center;
}

.img-separator-inquiry img{
  width: 90%;
}

footer {
  padding: 0 10px;
}

.columns {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}


}