@charset "UTF-8";
/* --------------------------------
[SCSSについて注意]
・/css-scss/styles.scss を /css/styles.css?v190422a にコンパイルしてコーディングしているため、
  可能であればCSSを直接編集せずに、SCSS を編集＆コンパイルしてCSSを生成する
・または、CSSを直接編集した場合は、SCSS 内の記述も同様に編集する方法でも可
・もし、CSSのみ編集した形跡があった場合など、CSSとSCSSの保持ができなくなった場合はSCSS一式を削除しても良い
-------------------------------- */
/* --------------------------------
[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・トップページはロゴを<h1>、他のページはロゴを<p>でページタイトルを<h1>にする
・メディアクエリーはPCファーストで、@media screen and (max-width: 767px) {}を使用
-------------------------------- */
/* reset -------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, th, td, address, small, i {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  font-style: normal;
}

ol, ul, dl, dt, dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img, object, embed, video {
  border: 0;
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

th {
  text-align: left;
}

em {
  font-style: normal;
  font-weight: bold;
}

a {
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a:hover {
    color: #000;
  }
}

/* body -------- */
body {
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #333;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
  .sp-body {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .is-remodal-open .sp-body {
    position: fixed;
    overflow: hidden;
  }
}

/* header -------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .header {
    pointer-events: none;
  }
  .header:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
  }
  .header.is-open:before {
    z-index: 1;
    pointer-events: auto;
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .header .header-inner {
    width: calc(100% - 15px);
    pointer-events: auto;
  }
}

.header .logo-wrap {
  position: absolute;
  left: 30px;
  top: 30px;
}

.header .tnf {
  position: absolute;
  right: 30px;
  top: 30px;
}

@media screen and (max-width: 767px) {
  .header .tnf {
    right: 15px;
    top: 15px;
  }
}

.header .gnav {
  position: absolute;
  left: 0;
  top: 0;
}

.header .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.header .gnav ul li {
  padding: 10px 0 10px 30px;
}

.header .gnav ul li a {
  position: relative;
  display: block;
}

.header .gnav ul li .off {
  display: block;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.header .gnav ul li .on {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

body.body-climb .header .gnav.is-current ul li:nth-child(1) .off {
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

body.body-climb .header .gnav.is-current ul li:nth-child(1) .on {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

body.body-pure .header .gnav.is-current ul li:nth-child(2) .off {
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

body.body-pure .header .gnav.is-current ul li:nth-child(2) .on {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

body.body-natural .header .gnav.is-current ul li:nth-child(3) .off {
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

body.body-natural .header .gnav.is-current ul li:nth-child(3) .on {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

body.body-world .header .gnav.is-current ul li:nth-child(4) .off {
  opacity: 0;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s;
}

body.body-world .header .gnav.is-current ul li:nth-child(4) .on {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.header .sp-menu {
  width: 48px;
}

.header .sp-nav {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow-y: auto;
  background-color: #fff;
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header .sp-nav.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.header .sp-nav .sp-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .sp-nav .sp-logo {
  padding: 10px 0;
  text-align: center;
}

.header .sp-nav ul {
  width: 130px;
  padding: 0 20px 15px;
}

.header .sp-nav ul li {
  margin-bottom: 5px;
}

.header .sp-nav ul li a {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

/* content -------- */
.content {
  line-height: 1.8;
  font-size: 14px;
}

.content .content-title {
  padding: 15px;
  background-color: #ddd;
  text-align: center;
  font-size: 24px;
}

/* footer -------- */
.footer .fnav {
  margin: 8.33% 0;
}

.footer .fnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 .5%;
}

.footer .fnav ul li {
  padding: 0 .5%;
}

.footer .fnav ul li a {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  -webkit-transition: background-size .3s;
  -o-transition: background-size .3s;
  transition: background-size .3s;
}

.footer .fnav ul li a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.footer .fnav ul li a img {
  display: block;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer .fnav ul li a:hover {
    background-size: 110%;
  }
  .footer .fnav ul li a:hover:before {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .footer .fnav {
    margin: 12.4% 0;
  }
  .footer .fnav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 .933%;
  }
  .footer .fnav ul li {
    width: 50%;
    padding: .933% .933%;
  }
}

.footer .footer-inner {
  margin: 0 80px;
  padding: 18px 15px;
  border-top: 2px solid #000;
  text-align: center;
  font-family: Helvetica, Arial;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .footer .footer-inner {
    margin: 0;
    padding: 10px;
    font-size: .8rem;
  }
}

/* --------------------------------
[module.cssについて]
・共通レイアウトと共通タグを記述
-------------------------------- */
/* all -------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.over {
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.5;
  }
}

.container {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-block {
  display: block;
}

.display-table {
  display: table;
}

.display-table-cell {
  display: table-cell;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.image-cover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.fix-bg .fix-bg-image {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 0;
}

.fix-bg .fix-bg-image span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/* wordpress editor -------- */
.format .aligncenter {
  display: block;
  margin: 0 auto;
}

.format .alignright {
  float: right;
}

.format .alignleft {
  float: left;
}

.format img[class*="wp-image-"],
.format img[class*="attachment-"] {
  max-width: 100%;
  height: auto;
}

/* format -------- */
.format a {
  color: #03c;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .format a:hover {
    color: #69f;
  }
}

.format h2 {
  margin: 30px 0 20px;
  font-size: 24px;
  font-weight: bold;
}

.format h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold;
}

.format p, .format ul, .format ol, .format table {
  margin-bottom: 20px;
}

.format li {
  margin-bottom: 10px;
}

.format ul {
  list-style-type: disc;
  padding-left: 1.5em;
}

.format ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}

.format hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #999;
}

.format table {
  width: 100%;
}

.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee;
}

.format td {
  padding: 10px 20px;
  border: 1px solid #999;
}

.m-sec-bnr .sec-inner {
  padding: 1px 0 80px;
  background-color: #f9f9f9;
  text-align: center;
}

.m-sec-bnr .sec-inner h2 {
  margin: 48px 0 20px;
  font-size: 1px;
  line-height: 1;
}

.m-sec-bnr .sec-inner a {
  position: relative;
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

.m-sec-bnr .sec-inner a .off {
  display: block;
}

.m-sec-bnr .sec-inner a .on {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.m-sec-bnr .sec-inner a:hover .on {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .m-sec-bnr .sec-inner {
    padding: 1px 30px 50px;
  }
  .m-sec-bnr .sec-inner h2 {
    margin: 32px 0 10px;
  }
}

/* remodal */
body .remodal-wrapper {
  padding: 0;
  bottom: auto;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

body .remodal {
  padding: 0;
  max-width: none !important;
  margin-bottom: 0;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

body .remodal-close {
  display: none;
  position: fixed;
  left: auto;
  right: 0;
  top: 0;
  z-index: 10;
  width: 60px;
  height: 60px;
  -webkit-transition: opacity 0;
  -o-transition: opacity 0;
  transition: opacity 0;
}

body .remodal-close:before {
  display: none;
}

body .remodal-close:after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background: url(/static/full/tnf/special/climb2019ss/images/module/modal-close.svg) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  body .remodal-close {
    width: 50px;
    height: 50px;
  }
  body .remodal-close:after {
    width: 50px;
    height: 50px;
  }
}

body.is-remodal-scrollbar .remodal-close {
  right: 15px;
}

body .remodal.remodal-is-opening {
  opacity: 1;
}

body .remodal.remodal-is-opened {
  opacity: 1;
}

body .remodal.remodal-is-opened .remodal-close {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

body .remodal-title {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  background-color: #fff;
  line-height: 1;
  font-size: 1rem;
  padding-top: 27px;
  -webkit-transition: opacity 0;
  -o-transition: opacity 0;
  transition: opacity 0;
  pointer-events: none;
  text-align: center;
}

@media screen and (max-width: 767px) {
  body .remodal-title {
    height: 50px;
    padding-top: 25px;
  }
}

body .remodal.remodal-is-opened .remodal-title {
  opacity: 1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

body .remodal-mv {
  position: fixed;
  left: 0;
  top: 60px;
  width: 50%;
  height: calc(100%- 60px);
  height: calc(var(--vh, 1%) * 100 - 60px);
}

body .remodal-mv span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

body .remodal-mv .mv-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

body .remodal-mv .mv-text2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  body .remodal-mv {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
    margin-top: 50px;
    padding-top: 123.33%;
  }
  body .remodal-mv:after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    bottom: -40px;
    width: 40px;
    height: 15px;
    background: url(/static/full/tnf/special/climb2019ss/images/module/modal-arrow.svg) no-repeat center center;
    background-size: contain;
  }
}

@media screen and (max-width: 767px) {
  body .remodal-mv.type-climb-modal2 {
    margin-top: 0;
    border-bottom: 40px solid #b50005;
  }
  body .remodal-mv.type-climb-modal2:after {
    display: none;
  }
}

body .modal-fullimage {
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  body .modal-fullimage {
    padding-top: 50px;
  }
}

body .modal-inner {
  position: relative;
  margin-left: 50%;
  width: 50%;
  text-align: left;
  padding: 120px 60px 60px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.88;
}

@media screen and (max-width: 767px) {
  body .modal-inner {
    margin-left: 0;
    width: auto;
    padding: 40px 30px 40px;
    font-size: 1.5rem;
  }
}

body .modal-inner a {
  text-decoration: underline;
}

body .modal-inner a:hover {
  text-decoration: none;
}

body.is-remodal-scrollbar .modal-inner {
  margin-top: 50px;
}

body .modal-inner.type-text-white {
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body .modal-inner.type-text-white a {
  color: #fff;
}

body .modal-inner.type-climb-modal2 {
  background-color: #b50005;
}

body .modal-inner h3 {
  position: relative;
  margin-bottom: 80px;
  padding-bottom: 60px;
}

body .modal-inner h3.type-no-margin {
  margin: -60px -60px  -60px;
}

body .modal-inner h3.type-no-margin:after {
  display: none;
}

body .modal-inner h3:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 1px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  body .modal-inner h3 {
    margin-bottom: 70px;
    padding-bottom: 40px;
  }
  body .modal-inner h3.type-no-margin {
    margin: 0 -30px 0;
  }
  body .modal-inner h3:after {
    width: 40px;
  }
}

body .modal-inner .lead {
  position: relative;
  margin-bottom: 120px;
  padding-bottom: 1px;
}

body .modal-inner .lead p {
  margin-bottom: 60px;
  font-weight: bold;
  letter-spacing: .2em;
}

body .modal-inner .lead:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 1px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  body .modal-inner .lead {
    margin-bottom: 70px;
  }
  body .modal-inner .lead p {
    margin-bottom: 40px;
  }
  body .modal-inner .lead:after {
    width: 40px;
  }
}

body .modal-inner.type-text-white .lead:after {
  background-color: #fff;
}

body .modal-inner h4 {
  margin: 4em -0px 2em;
  font-weight: bold;
}

body .modal-inner p {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  body .modal-inner p {
    margin-bottom: 40px;
  }
}

body .modal-inner .block-image {
  margin-bottom: 4em;
}

body .modal-inner .block-image .image {
  margin-bottom: 16px;
}

body .modal-inner .block-image .cap {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.54;
}

@media screen and (max-width: 767px) {
  body .modal-inner .block-image .cap {
    font-size: 1.1rem;
  }
}

body .modal-inner .block-image + .block-image {
  margin-top: -1.5em;
}

body .modal-inner .info {
  border: 1px solid #000;
  margin-top: 75px;
  padding: 23px 16px 23px;
  font-size: 1.3rem;
  line-height: 1.54;
}

body .modal-inner .info .name {
  margin-bottom: 11px;
  font-size: 1.4rem;
  font-weight: bold;
}

body .modal-inner .info p {
  margin-bottom: 0;
}

body .modal-inner .info p + p {
  margin-top: .75em;
}

@media screen and (max-width: 767px) {
  body .modal-inner .info {
    margin-top: 0;
    padding: 15px 18px;
    font-size: 1.1rem;
  }
  body .modal-inner .info .name {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
}

body .modal-inner.type-text-white .info {
  border-color: #fff;
}

body .remodal-add {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
}

body .remodal-add .remodal-title {
  display: block;
}

body .remodal-add .remodal-close {
  display: block;
}

/* --------------------------------
[page.cssについて]
・各ページごとのCSSを記述
・必ず.page-homeなど各ページごとのclassを付ける
-------------------------------- */
/* page-climb -------- */
.page-climb .sec-mv .sec-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.page-climb .sec-mv .sub-text {
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-mv .sub-text {
    top: 20px;
  }
}

.page-climb .sec-mv .title-wrap {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

.page-climb .sec-mv .title-wrap a {
  display: inline-block;
}

.page-climb .sec-mv .title {
  margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-mv .title {
    margin-bottom: 38px;
  }
}

.page-climb .sec-mv2 .sec-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.page-climb .sec-mes .sec-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 767px) {
  .page-climb .sec-mes .sec-inner {
    min-height: 780px;
  }
}

.page-climb .sec-mes .title {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-climb .sec-logo .sec-inner {
  position: relative;
}

.page-climb .sec-logo .title {
  padding: 200px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-logo .title {
    padding: 150px 0;
  }
}

.page-climb .sec-logo .sub-text {
  padding-bottom: 20px;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-logo .sub-text {
    padding-bottom: 15px;
  }
}

.page-climb .sec-lead .sec-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 767px) {
  .page-climb .sec-lead .sec-inner {
    min-height: 710px;
  }
}

.page-climb .sec-lead .title-wrap {
  position: relative;
  top: 10%;
  padding-left: 115px;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-lead .title-wrap {
    top: 15%;
    padding-left: 30px;
  }
}

.page-climb .sec-lead .text {
  margin-top: 50px;
}

.page-climb .sec-lead .text p {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.75;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-lead .text p {
    font-size: 1.4rem;
  }
}

.page-climb .sec-image .sec-inner {
  padding: 8% 0;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-image .sec-inner {
    padding: 13.33% 0;
  }
}

.page-climb .sec-image .block {
  position: relative;
  margin-bottom: 8%;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-image .block {
    margin-bottom: 13.33%;
  }
}

.page-climb .sec-image .block .image {
  position: relative;
}

.page-climb .sec-image .block .image img {
  width: 100%;
}

.page-climb .sec-image .block .sub-text {
  display: block;
  position: absolute;
  right: 5.25%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.page-climb .sec-image .block .texts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 55px;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-image .block .texts-wrap {
    display: block;
    padding-top: 28px;
  }
  .page-climb .sec-image .block .texts-wrap.type-sp-nopadding {
    padding-top: 0;
  }
}

.page-climb .sec-image .block .texts {
  padding: 0 40px;
  text-align: center;
}

.page-climb .sec-image .block .texts h3 {
  margin-bottom: 14px;
}

.page-climb .sec-image .block .texts .text p {
  margin-bottom: 6px;
  line-height: 1.1;
  font-size: 1.2rem;
}

.page-climb .sec-image .block .texts .text p .buy {
  margin-left: 7px;
}

@media screen and (max-width: 767px) {
  .page-climb .sec-image .block .texts:first-child h3 {
    margin-top: 0;
  }
  .page-climb .sec-image .block .texts h3 {
    margin-top: 28px;
    margin-bottom: 13px;
    line-height: 1;
  }
  .page-climb .sec-image .block .texts .text p {
    font-size: .9rem;
  }
  .page-climb .sec-image .block .texts .text p .buy {
    margin-left: 4px;
  }
  .page-climb .sec-image .block .texts .text p .buy img {
    width: 18px !important;
  }
}

/* page-pure -------- */
.page-pure .sec-mv .sec-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 767px) {
  .page-pure .sec-mv .sec-inner {
    min-height: 755px;
  }
}

.page-pure .sec-mv .title-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  width: 92%;
  max-width: 540px;
  margin-left: 8%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-pure .sec-mv .title-wrap a {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-mv .title-wrap {
    width: 100%;
    margin-left: 0;
  }
}

.page-pure .sec-mv .title {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-mv .title {
    margin-bottom: 75px;
  }
}

.page-pure .sec-mv .text p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.page-pure .sec-mv .scroll {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

.page-pure .sec-mv .scroll a {
  display: inline-block;
}

.page-pure .sec-sub .sec-inner {
  padding: 127px 0 19px;
  background-color: #f9f9f9;
}

.page-pure .sec-sub .sec-inner .sub-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-sub .sec-inner {
    padding: 76px 0 14px;
  }
}

.page-pure .sec-image .sec-inner {
  position: relative;
  padding-top: 1px;
  padding-bottom: 100px;
}

.page-pure .sec-image .sec-inner:after {
  content: '';
  display: block;
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 100px;
  height: 1px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-image .sec-inner {
    padding-bottom: 60px;
  }
  .page-pure .sec-image .sec-inner:after {
    left: 30px;
    right: 30px;
    bottom: 50px;
  }
}

.page-pure .sec-image .title-wrap {
  position: relative;
  margin: 100px 80px 38px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
}

.page-pure .sec-image .title-wrap .cat {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .page-pure .sec-image .title-wrap {
    margin: 50px 30px 28px;
  }
  .page-pure .sec-image .title-wrap .cat img {
    width: 9px !important;
  }
}

.page-pure .sec-image .lead {
  margin-bottom: 58px;
}

.page-pure .sec-image .lead p {
  font-size: 1.4rem;
  line-height: 1.71;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

.page-pure .sec-image .lead.lead-no {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-image .lead {
    margin: 0 30px 38px;
  }
  .page-pure .sec-image .lead p {
    text-align: left;
    font-size: 1.2rem;
  }
  .page-pure .sec-image .lead.lead-no {
    margin-bottom: 40px;
  }
}

.page-pure .sec-image h3 {
  margin-bottom: 40px;
  text-align: center;
}

.page-pure .sec-image .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.page-pure .sec-image .products.type-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-pure .sec-image .products.type-b {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.page-pure .sec-image .products .product {
  width: 50%;
  padding-bottom: 34px;
  text-align: center;
}

.page-pure .sec-image .products .product .image {
  margin-bottom: 19px;
}

.page-pure .sec-image .products .product .name {
  margin-bottom: 6px;
  line-height: 1.1;
  font-size: 1.2rem;
}

.page-pure .sec-image .products .product .name .buy {
  margin-left: 7px;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-image .products {
    margin: 0 30px;
  }
  .page-pure .sec-image .products .product {
    padding-bottom: 28px;
  }
  .page-pure .sec-image .products .product .image {
    margin-bottom: 15px;
  }
  .page-pure .sec-image .products .product .name {
    font-size: .9rem;
    line-height: 1.5;
  }
  .page-pure .sec-image .products .product .name .buy {
    margin-left: 4px;
  }
  .page-pure .sec-image .products .product .name .buy img {
    width: 18px !important;
  }
}

.page-pure .sec-image .des {
  max-width: 700px;
  margin: 0 auto 80px;
  padding: 20px;
  background-color: #f9f9f9;
}

.page-pure .sec-image .des p {
  font-size: 1.2rem;
  line-height: 1.67;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-image .des {
    margin: 0 30px 40px;
    padding: 12px;
  }
  .page-pure .sec-image .des p {
    font-size: 1rem;
  }
}

.page-pure .sec-image .photo {
  margin: 100px 0;
}

.page-pure .sec-image .photo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .page-pure .sec-image .photo {
    margin: 50px 0;
  }
}

/* page-natural -------- */
.page-natural .sec-mv .sec-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 767px) {
  .page-natural .sec-mv .sec-inner {
    min-height: 730px;
  }
}

.page-natural .sec-mv .title-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-natural .sec-mv .title-wrap a {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-mv .title-wrap {
    top: 50%;
  }
}

.page-natural .sec-mv .title {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-mv .title {
    margin-bottom: 225px;
  }
}

.page-natural .sec-mv .text {
  max-width: 350px;
}

.page-natural .sec-mv .text p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-mv .text {
    max-width: none;
  }
}

.page-natural .sec-mv .scroll {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

.page-natural .sec-mv .scroll a {
  display: inline-block;
}

.page-natural .sec-sub .sec-inner {
  padding: 127px 0 19px;
  background-color: #fff;
}

.page-natural .sec-sub .sec-inner .sub-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-sub .sec-inner {
    padding: 76px 0 14px;
  }
}

.page-natural .sec-image .block {
  position: relative;
  margin-bottom: 8%;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-image .block {
    margin-bottom: 13.33%;
  }
}

.page-natural .sec-image .block .image img {
  width: 100%;
}

.page-natural .sec-image .block .sub-text {
  position: absolute;
  right: 3.8%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.page-natural .sec-image .block .texts-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px 80px;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-image .block .texts-wrap {
    position: relative;
    left: auto;
    bottom: 0;
    padding: 8% 8% 0;
  }
  .page-natural .sec-image .block .texts-wrap.type-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-natural .sec-image .block .texts-wrap.type-cols .texts {
    margin-right: 30px;
  }
  .page-natural .sec-image .block .texts-wrap.type-cols .texts + .texts {
    margin-top: 0;
  }
}

.page-natural .sec-image .block .texts h3 {
  margin-bottom: 14px;
}

.page-natural .sec-image .block .texts .text p {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 1.2rem;
}

.page-natural .sec-image .block .texts .text p .buy {
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-image .block .texts .text p {
    font-size: .9rem;
    line-height: 1.5;
  }
  .page-natural .sec-image .block .texts .text p .buy img {
    width: 18px !important;
  }
}

.page-natural .sec-image .block .texts + .texts {
  margin-top: 30px;
}

.page-natural .sec-image .block.type-ttext .texts-wrap {
  top: 0;
  bottom: auto;
}

.page-natural .sec-image .block.block-ltext {
  padding-left: 25%;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-image .block.block-ltext {
    padding-left: 8%;
  }
  .page-natural .sec-image .block.block-ltext .texts-wrap {
    padding-left: 0;
  }
}

.page-natural .sec-image .block.block-rtext {
  padding-right: 25%;
}

.page-natural .sec-image .block.block-rtext .texts-wrap {
  left: auto;
  right: 0;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .page-natural .sec-image .block.block-rtext {
    padding-right: 8%;
  }
  .page-natural .sec-image .block.block-rtext .texts-wrap {
    padding-right: 0;
  }
}

.page-natural .sec-image .block.block-rtext-wide .texts-wrap {
  left: auto;
  right: 0;
  text-align: right;
}

/* page-world -------- */
.page-world .sec-mv .sec-inner {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 767px) {
  .page-world .sec-mv .sec-inner {
    min-height: 760px;
  }
}

.page-world .sec-mv .title-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-world .sec-mv .title-wrap a {
  display: inline-block;
}

.page-world .sec-mv .title {
  margin-bottom: 52px;
}

@media screen and (max-width: 767px) {
  .page-world .sec-mv .title {
    margin-bottom: 42px;
  }
}

.page-world .sec-mv .text p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.page-world .sec-mv .scroll {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

.page-world .sec-mv .scroll a {
  display: inline-block;
}

.page-world .sec-sub .sec-inner {
  padding: 47px 0 19px;
  background-color: #fff;
}

.page-world .sec-sub .sec-inner .sub-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .page-world .sec-sub .sec-inner {
    padding: 76px 0 14px;
  }
}

.page-world .sec-image .sec-inner {
  position: relative;
  padding: 6.66% 0 3.33%;
}

.page-world .sec-image .sec-inner:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5vw;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-world .sec-image .sec-inner {
    padding: 2px 0;
  }
}

.page-world .sec-image .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -5px 0;
  border-left: 4.16vw solid #fff;
  border-right: 4.16vw solid #fff;
  border-bottom: 5vw solid #fff;
}

@media screen and (max-width: 767px) {
  .page-world .sec-image .products {
    display: block;
    border-left: 8vw solid #fff;
    border-right: 8vw solid #fff;
    border-bottom: 5vw solid #fff;
  }
}

.page-world .sec-image .products img {
  width: 100%;
}

.page-world .sec-image .products .product-wrap {
  width: 50%;
  overflow: hidden;
  margin: -2px 0;
}

@media screen and (max-width: 767px) {
  .page-world .sec-image .products .product-wrap {
    width: auto;
    margin: 0;
  }
}

.page-world .sec-image .products .product {
  position: relative;
  margin: 0 -2px;
  border-left: 2.5vw solid #fff;
  border-right: 2.5vw solid #fff;
}

.page-world .sec-image .products .product:after {
  content: '';
  display: block;
  position: absolute;
  left: -10%;
  top: 100%;
  width: 120%;
  height: 10%;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-world .sec-image .products .product {
    margin: 0;
    border: none;
  }
}

.page-world .sec-image .products .product .info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 -2px -2px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-world .sec-image .products .product .info {
    padding-bottom: 13.33%;
  }
}

.page-world .sec-image .products .product .names {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-world .sec-image .products .product .names .name {
  margin: 0 15px;
}

.page-world .sec-image .products .product .name {
  text-align: center;
  padding: 35px 0;
  line-height: 1.5;
  font-size: 1.2rem;
}

.page-world .sec-image .products .product .name b {
  font-size: 1.4rem;
}

.page-world .sec-image .products .product .name .buy {
  margin-left: 7px;
}

@media screen and (max-width: 767px) {
  .page-world .sec-image .products .product .name {
    padding: 24px 0;
    font-size: .9rem;
  }
  .page-world .sec-image .products .product .name .buy {
    margin-bottom: 3px;
  }
  .page-world .sec-image .products .product .name .buy img {
    position: relative;
    top: -2px;
    width: 18px !important;
  }
}

.page-world .sec-image .products .product .des {
  padding: 0 2px;
  font-size: 1rem;
  line-height: 1.6;
}

/* --------------------------------
[サンプルコード]
-------------------------------- */
/* 白文字が太いとき
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  */
/* 画像文字を縮小しべぼやけるとき
  backface-visibility;
  -webkit-backface-visibility;
  */
/* SPでアドレスバーを含まない高さ100%を設定
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  */
