@charset "UTF-8";
/* ----------------------------------------
 * PCとスマホ切り替え
 * ---------------------------------------- */
.br_none {
  display: inherit;
}

.br_sp {
  display: none;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.6;
  color: #231c1c;
  -webkit-text-size-adjust: none;
  font-size: 14px;
  font-weight: 500;
  height: 100%;
  margin: 0px;
  padding: 0px;
  min-width: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

img {
  -webkit-touch-callout: none; /* リンク長押しのポップアップを無効化 */
  -webkit-user-select: none; /* テキスト長押しの選択ボックスを無効化 */
}

/* アニメーション
=============================================== */
/*画面切り替えのフェードイン*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#wrap {
  background: #f1f5fa;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#hd-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 84px;
  padding: 0;
  box-sizing: border-box;
  z-index: 10000;
  transition: 0.3s;
  background-color: rgba(121, 76, 54, 0.9);
}

#f-nav {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1% 0;
  box-sizing: border-box;
  transition: 0.3s;
  background: #87898c;
  overflow: hidden;
}

nav ul.f-ul > li + li::before {
  content: "／";
  color: #FFF;
}

.logo {
  max-width: 260px;
  position: fixed;
  float: left;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 6px;
}
.logo a {
  text-decoration: none;
  color: #fff;
}
.logo a img {
  width: auto;
  height: 84px;
}

nav.black {
  background: linear-gradient(to bottom, #8e8e8e, rgba(255, 0, 0, 0));
  height: 82px;
  padding: 0;
}
nav .logo {
  height: 100px;
  float: left;
  font-size: 28px;
  transition: 0.3s;
}
nav.black ul li a {
  color: #fff;
}
nav ul li a:focus {
  outline: none;
}

#hd-nav ul {
  display: flex;
  list-style: none;
  float: right;
  margin: 1% 2%;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
#hd-nav ul li {
  display: flex;
  min-width: 32%;
  list-style: none;
  font-family: eb-garamond, serif;
  font-weight: 700;
  font-style: normal;
  padding: 0 2%;
}
@media (max-width: 1024px) and (min-width: 768px) {
  #hd-nav ul li {
    min-width: 0;
    padding: 0;
  }
}
#hd-nav ul li a {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.85S;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 auto;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) and (min-width: 768px) {
  #hd-nav ul li a {
    font-size: 1.2em;
    padding: 16px;
  }
}
#hd-nav ul li a:hover {
  opacity: 0.6;
}
#hd-nav ul li a span {
  display: block;
  font-size: 50%;
  text-align: center;
  font-feature-settings: "palt";
  margin: -5% 0;
}
#hd-nav ul li a span .span_2 {
  font-size: 50%;
  text-align: center;
  margin: -5%;
}
#hd-nav ul li + li {
  border-left: 1px solid #ffffff;
}

#f-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  /* 子要素をflexboxにより中央に配置する */
  align-items: center;
  /* 子要素をflexboxにより中央に配置する */
}
#f-nav ul li {
  list-style: none;
  font-family: eb-garamond, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4em;
}
#f-nav ul li a {
  line-height: 60px;
  color: #fff;
  opacity: 0.85S;
  padding: 12px 30px;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 2px;
}
@media (max-width: 1024px) and (min-width: 768px) {
  #f-nav ul li a {
    padding: 12px 6px;
  }
}
#f-nav ul li a:hover {
  opacity: 0.6;
}
#f-nav .copyright {
  width: 100%;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: normal;
}
#f-nav .copyright .main-c {
  width: 100%;
  text-align: center;
  font-size: 80%;
}
#f-nav .copyright .sub_cont {
  width: 100%;
  display: flex;
  justify-content: center;
  /* 子要素をflexboxにより中央に配置する */
  align-items: center;
  /* 子要素をflexboxにより中央に配置する */
  line-height: 1.6;
}
#f-nav .copyright .sub_cont a {
  color: #fff;
  text-decoration: none;
}
#f-nav .copyright .sub_cont .sub {
  margin-left: 1%;
  font-size: 14px;
}
#f-nav .copyright h2 {
  width: 100%;
  text-align: center;
  margin: 1% 0 0 0;
}
#f-nav .copyright h2 img {
  width: 2%;
}
@media (max-width: 1024px) and (min-width: 768px) {
  #f-nav .copyright h2 img {
    width: 3%;
  }
}/*# sourceMappingURL=common.css.map */