@charset "UTF-8";
/* CSS Document */

/* ヘッダー
------------------------------------------------------------*/

.header {
	background-image: linear-gradient(to bottom, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.50) 100%);
  /* background-color: rgba(0,0,0,0.80);*/
  width: 100%;
  height: 50px;
  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;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title { width: 105px; } /* SPサイズ */

@media screen and (min-width: 960px) {
  .header__inner {
    padding: 0 45px 0 15px;
  }
  .header__title { width: 170px; } /* 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.80); /* SP背景 */
  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-weight: 600;
  font-style: normal;
  color: #FFFFFF !important;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 18px;
	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: #8E420C !important; /* リンクカラー */
}

@media screen and (min-width: 960px) {
  .nav_li a {
		color: #000000 !important;
    margin-bottom: 0;
		font-size: 18px;
		letter-spacing: -0.03rem;
    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: 15px;
  margin-bottom: 0.0em; /* 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: 15px;
    top: 50px;
    left: 50%;
    margin-left: -90px;
    width: 180px;
    background: rgba(0,0,0,0.85);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  nav .sub-menu a {
    display: block;
    border-bottom: 1px rgba(186,174,130,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: 15px;
  }
  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: #F1DE61 !important;
    background: rgba(0,0,0,0.15);
  }
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  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: #B84D21;
  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: #ED6228;
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  background-color: #ED6228;
  top: -10px;
  transform: rotate(-45deg);
}

.img-tw {
  max-width: 35px;
	padding-top: 0px;
}

@media screen and (min-width: 960px) {
  .img-tw {
    max-width: 22px;
		padding-top: 4px;
  }
}