@charset "utf-8";
/* --------
[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・トップページはロゴを<h1>、他のページはロゴを<p>でページタイトルを<h1>にする
・メディアクエリーはPCファーストで、@media screen and (max-width: 767px) {}を使用
-------- */

/* reset -------- */
*, *:before, *:after {
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: Helvetica Neue, Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;*/
  font-size: 13px;
  color: #1e1e1e;
  overflow-y: scroll;
  /*
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  */
}
article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}
h1, h2, h3, h4, h5, h6, p, th, td, address, small, i {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}
ol, ul, dl, dt, dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
img, object, embed {
  border: 0;
  vertical-align: bottom;
}
img {
  max-width: 100%;
  /*
  backface-visibility;
  -webkit-backface-visibility;
  */
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
th {
  text-align: left;
}
em {
  font-style: normal;
  font-weight: bold;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}

@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 500;
  src: url(./fonts/NotoSerifCJKjp-Medium.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/NotoSerifCJKjp-Bold.otf) format('opentype');
}

@media screen and (max-width: 767px) {
}

/* body -------- */
body.is-fix {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.body-inner {
  position: relative;
  transition: transform .3s;
}
.body-inner.is-fix {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-280px);
}
.body-inner-over {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0,0,0,.5);
  opacity: 0;
  transition: transform .3s, opacity .3s, z-index 0s .3s;
}
.body-inner-over.is-fix {
  z-index: 1;
  opacity: 1;
  transform: translateX(-280px);
  transition: transform .3s, opacity .3s, z-index 0s;
}

@media screen and (max-width: 767px) {
  .body-inner.is-fix {
    transform: translateX(-200px);
  }
  .body-inner-over.is-fix {
    transform: translateX(-200px);
  }
}

/* header -------- */
.header {
}
.header-inner {
  position: relative;
  background: url(/static/full/tnf/special/tnf-yosemite/images/h-bg.jpg) no-repeat center center;
  background-size: cover;
}

.header .logo {
  position: absolute;
  left: 60px;
  top: 60px;
}

@media screen and (max-width: 767px) {
  .header-inner {
    background-image: url(/static/full/tnf/special/tnf-yosemite/images/sp-h-bg.jpg);
  }
  .header .logo {
    left: 20px;
    top: 40px;
  }
}

.menu-btn {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 10;
}
.menu-btn a {
  display: block;
  position: relative;
  padding: 15px;
  width: 55px;
  height: 50px;
  transition: all .3s;
}
.menu-btn a.is-open {
}
.menu-btn a span,
.menu-btn a span:before,
.menu-btn a span:after {
  content: '';
  display: block;
  position: absolute;
  left: 15px;
  top: 15px;
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: all .3s;
}
.menu-btn a span:before {
  left: 0;
  top: 9px;
}
.menu-btn a span:after {
  left: 0;
  top: 18px;
}
.menu-btn a.is-open span {
  transform: translateY(10px) rotate(45deg);
}
.menu-btn a.is-open span:before {
  opacity: 0;
}
.menu-btn a.is-open span:after {
  top: 0;
  right: 0;
  transform: rotate(-90deg);
}

@media screen and (max-width: 767px) {
  .menu-btn {
    right: 5px;
    top: 5px;
  }
}

.header .scroll {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  text-align: center;
}
.header .scroll a {
  display: block;
  height: 60px;
  padding-top: 16px;
}

@media screen and (max-width: 767px) {
  .header .scroll a {
    height: 50px;
    padding-top: 15px;
  }
}

.gnav {
  position: fixed;
  right: -280px;
  top: 0;
  width: 280px;
  background-color: #fff;
  transition: all .3s;
  overflow-y: auto;
}
.gnav.is-open {
  right: 0;
}
.gnav .gnav-inner {
  padding: 78px 30px 40px;
  text-align: center;
}
.gnav .list {
  position: relative;
  border-bottom: 2px solid #000;
}
.gnav .list:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.gnav li a {
  display: block;
  padding: 6px 0;
}
.gnav li.parent {
  position: relative;
  padding: 11px 0;
  border-top: 2px solid #000;
}
.gnav li.parent:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.gnav .logo {
  padding-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .gnav {
    right: -200px;
    width: 200px;
  }
  .gnav .gnav-inner {
    padding: 58px 20px 40px;
  }
  .gnav li a {
    padding: 3px 0;
  }
  .gnav li.parent {
    padding: 8px 0;
  }
  .gnav li img {
    height: 11px;
  }
  .gnav li.parent li img {
    height: 10px;
  }
  .gnav .logo img {
    width: 62px;
  }
  .gnav .logo {
    padding-bottom: 20px;
    text-align: center;
  }
}

/* content -------- */
.content {
  line-height: 2;
  font-size: 16px;
  letter-spacing: .1em;
}
.content-inner {
}
.content-title {
  padding: 15px;
  background-color: #ddd;
  text-align: center;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .content {
    line-height: 1.85;
    font-size: 14px;
  }
}

/* footer -------- */
.footer {
  border-top: 2px solid #000;
}
.footer-inner {
  padding-top: 100px;
}
.footer .bnrs {
  padding-bottom: 56px;
  text-align: center;
}
.footer .bnrs .cap {
  margin-top: 28px;
  font-size: 12px;
  font-weight: bold;
}
.footer .copyright-wrap {
  height: 52px;
  padding-top: 17px;
  border-top: 2px solid #000;
  text-align: center;
  font-size: 12px;
}

.page-watw .cap p {
  font-family: 'Noto Serif Japanese';
}

@media screen and (max-width: 767px) {
  .footer-inner {
    padding-top: 50px;
  }
  .footer .bnrs {
    padding-bottom: 40px;
    text-align: center;
  }
  .footer .bnrs .cap {
    margin-top: 12px;
    font-size: 9px;
  }
  .footer .copyright-wrap {
    height: 40px;
    padding-top: 11px;
    font-size: 8px;
  }
}
