/* ブラウザがそれぞれ持っているCSSをリセットするため */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*  ページ全体の設定/START ===================================== */
body {
	font-weight: 100;
	color: #4a4539;
}


p { line-break:strict;
    font-feature-settings: "palt"; /* 文字詰め設定 */
}



h1 {
	font-weight: 300;
	color: #4a4539; /* 2020.9.14 #8C877Dより変更 */
	margin: 80px 0 40px;
  /*text-align: center; */
  font-size: 50px;
}

/* 読み込み時にフェードイン */
.fade{
  opacity : 0;
  transition: opacity 5s;
}

.fade.view{
  opacity: 1;
}


/* スクロール時にフェードイン */
/*.fade-contents{
  opacity : 0;
  transition: opacity 3s;
}

.fade-contents.view{
  opacity: 1;
} */
/*  ページ全体の設定/END ===================================== */





/*  ヘッダー全体の設定/START ===================================== */

header {
	width: 100%;
/*	height: 200px; */
  margin: 0 auto;
}


.title {
	float: left;
  margin-left: 80px;
}

.header-content {
	width: auto;
	display: block;
}



    /* ****** メニューバーの設定/START ****** */

.header-content {
  justify-content: space-between;
  padding: 0px;

}

.nav-button {
  display: none;
}

.menu {
  float: right;
  margin-right: 80px;

}

.menu a{
    color: #4a4539;
    text-decoration: none;
  }

.menu ul {
    list-style: none;
}

.menu li {
    display: inline-block;
    margin: 20px 20px;
    transition: .3s;  /*ゆっくり透明に*/
  }


    .menu li:hover {
      opacity: 0.5;   /*ホバー時に透明度50%*/
    }

    .menu ul li:nth-of-type(4){
      margin: 0 30px 0 0;
    }


.nav-wrap.open {
  display: block;
}
.nav-wrap.close {
  display: none;
}


@media screen and (min-width: 481px) {
  .nav-wrap {
    display: block !important;
  }
}

    /* ****** メニューバーの設定/END ****** */



/*  ページ全体の設定/END ===================================== */




/*  アイキャッチの設定/START ===================================== */

.eye-catching {
	margin-bottom: 100px;
}

.eye-catching-video {
	text-align: center;
	margin-bottom: 60px;
}

video {
	width: auto;
	height: 700px;
}

.eye-catching_img {  /* 仮イメージ挿入用タグ */
	background-image: url(img/flule_mv_img01.jpg);
	width: auto;
	height: 700px;
	background-repeat: no-repeat; /* 画像の繰り返し指定を無しに */
	background-size: cover;
  background-position: center;

    /* 指定サイズでトリミング */


}
/*  アイキャッチ全体の設定/END ===================================== */






/* ****** footerの設定/START ****** */

footer {
  width: 100%;
	height: 100px;
}

.header-text {
	text-align: center;
	margin-top: 80px;
}

/* ****** footerの設定/END ****** */






/*  レスポンシブ設定/START ===================================== */


/* ****** SP設定/START ****** */

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


header {
  width: 100%;
  height: 200px;
  margin: 0 auto;
}

.title {
  float: left;
  margin-left: 20px;
}


  .nav-button {
    display: block;
    cursor: pointer;
    float: right;
    margin: 70px 20px 50px 30px;
  }

  .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
  }
    .nav {
      height: 100%;
      position: relative;
      overflow-x: hidden;
      overflow-y: auto;
    }
    li {
      display: block;
      margin: 2em;
    }
      a {
        color: #8A7D67;
        font-size: 18px;
      }

  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    z-index: 20;
    position: relative;
    width: 40px;
    height: 36px;
    text-align: right;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #8A7D67;
    border-radius: 2px;
  }

  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 16px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
  }
}
















/* ****** SP設定/END ****** */



/* ****** tablet設定/START ****** */


/* ****** tablet設定/END ****** */



/* ****** PC設定/START ****** */



/* ****** PC設定/END ****** */
