@charset "UTF-8";
/* CSS Document */

/* ヘッダー
------------------------------------------------------------*/

.header {
	background-image: linear-gradient(to bottom, rgba(77,71,63,0.90) 0%, rgba(46,41,35,0.90) 100%);
  /* background-color: rgba(0,0,0,0.80);*/
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
	box-shadow: 0px 7px 15px -7px rgba(0, 0, 0, 0.15);
}
/* スクリーンサイズが960px以上の場合に適用（PC用） */
@media screen and (min-width: 960px) {
  .header { height: 80px; box-shadow: 0px 8px 20px -7px rgba(0, 0, 0, 0.15); }
}

.header__inner {
  padding: 0 0.6em 0 0.3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title { width: 85px; } /* SPサイズ */

@media screen and (min-width: 960px) {
  .header__inner {
    padding: 0 15px 0 5px;
  }
  .header__title { width: 120px; } /* PCサイズ */
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: rgba(0,0,0,0.85);
  transition: ease .3s;
}


@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 65%;
  }
}

.nav_ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

@media screen and (min-width: 960px) {
  .nav_ul {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: end;
  }
}

/* ナビのリンク */
.nav_li a {
	font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #FFFFFF !important;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 2.3rem;
	letter-spacing: 0.0rem;
  margin-bottom: 0.8em; /* SP行間 */
}
.nav_li a.sub-menu_sukima {
  margin-bottom: 6px;
}

/* .nav_li:last-child a {
  margin-bottom: 0;
} */

.nav_li a:hover {
	color: #EADECD !important; /* リンクカラー */
}

@media screen and (min-width: 960px) {
  .nav_li a {
		color: #FFFFFF !important;
    margin-bottom: 0;
		font-size: 2.3rem;
		letter-spacing: 0.0rem;
    margin-right: 2.5rem; /* 各メニュー隙間 */
  }
  .nav_li a.sub-menu_sukima {
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 960px) {
	#slide-line {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color:#D6133C;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	}
}

.nav_sub {
  position: relative;
  display: block;
  text-align: center;
}

/* サブメニュー */
nav .sub-menu {
  position: relative;
	top: -0.5em; /* SP sub-menuの隙間 */
  padding: 0;
}
nav .sub-menu a {
  font-size: 1.5rem;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	color: #DDD6C6 !important;
  margin-bottom: 0.1em; /* SP行間 */
}
nav .sub-menu li:last-child {
  margin-bottom: 0.5em; /* SP行間 */
}


@media screen and (min-width: 960px) {
  .nav_sub {
    position: relative;
    display: block;
    text-align: center;
    line-height: 80px;
  }

  /* サブメニュー */
  nav .sub-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    display: block;
    position: absolute;
    font-size: 1.6rem;
    top: 50px;
    left: 50%;
    margin-left: -90px;
    width: 180px;
    background: rgba(77,71,63,0.90);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  nav .sub-menu a {
    display: block;
    border-bottom: 1px rgba(206,195,157,0.50) solid;
    padding: 15px 0px;
    line-height: 1.2em;
		margin-bottom: 0px;
  }
  nav .sub-menu a:hover:after {
    content: none;
  }
  nav .sub-menu li {
    display: block;
  }
  nav .sub-menu li a {
    font-size: 1.6rem;
  }
  nav .sub-menu li:last-child {
    border-bottom: none;
		margin-bottom: 0px;
  }
  nav ul > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  nav li:hover ul.sub-menu {
    top: 80px;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
  }
  nav li ul li:after {
    content: none;
  }
  nav li:hover ul.sub-menu a {
    color: #F9F4E9 !important;
  }
  nav li:hover ul.sub-menu a:hover {
    color: #DDD6C6 !important;
    background: rgba(42,36,29,0.90);
  }
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 43px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #CEC1B6;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  background-color: #CEC1B6;
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  background-color: #CEC1B6;
  top: -10px;
  transform: rotate(-45deg);
}

.img-tw {
  max-width: 25px;
	padding-top: 0.5em;
}

@media screen and (min-width: 960px) {
  .img-tw {
    max-width: 21px;
		padding-top: 5px;
  }
}