@charset "utf-8";
/* CSS Document */
/* -------------------- header -------------------- */
/* 背景色変更 不要な場合は削除 */
header {
  background: #f5f5f5;
}
body {
  background: #F7F7F7;
}
footer {
  margin-top: 0;
}
/* -------------------- contents -------------------- */
img {
  width: 100%;
}
div#content-wrapper {
  margin-top: 6%;
}
.intro {
  max-width: 1080px;
  margin: 0 auto;
  color: #222;
}
.intro p {
  padding: 10% 0% 12%;
  font-size: 22px;
  line-height: 2.2;
  font-weight: 600;
  width: 85%;
  max-width: 620px;
  margin: 0 auto;
}
section {
  width: 100%;
}
section .section_innner {
  max-width: 750px;
  margin: 0 auto;
  padding: 5% 0 2%;
}
section p {
  color: #fff;
}
#vest {
  background-color: #5C6A51;
}
#cut {
  background-color: #B2958F;
}
#sweat {
  background-color: #AE9F78;
}
.box {
  margin-bottom: 15%;
}
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 140px 0;
  color: #222;
  word-break: break-word;
  line-break: strict;
  word-wrap: normal;
}
h1 {
  font-weight: normal;
  width: 60%;
  margin: auto;
  max-width: 600px;
}
h2 {
  padding: 2px 0 2px 0px;
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1px;
  text-align: center;
}
h3 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.35rem;
  color: #FFF;
  padding-bottom: 3%;
}
.text {
  font-size: 16px;
  line-height: 2;
  font-weight: 600;
}
.number {
  text-align: center;
  color: #FFF;
  font-size: 100px;
  font-weight: bold;
  font-family: 'Cabin Sketch', cursive;
}
.ns_style {
  text-align: center;
  color: #FFF;
  font-size: 70px;
  font-family: 'Cabin Sketch', cursive;
  line-height: 1.1;
}
.point {
  color: #FFF;
  font-size: 50px;
  font-family: 'Cabin Sketch', cursive;
}
.coordi {
  letter-spacing: 0.05em;
}
.coordi a {
  color: #FFF;
  content: "|";
}
.coordi a:after {
  content: " | ";
}
.coordi a:last-of-type:after {
  content: "";
}
@media screen and (max-width: 1060px) {
  div#content-wrapper {
    margin-top: 15%;
  }
  .intro p {
    font-size: 16px;
  }
  .text {
    font-size: 14px;
  }
  section p {
    color: #fff;
    width: 80%;
    margin: 0 auto;
  }
  .content {
    padding: 40px 20px 60px;
  }
  h1 {
    width: 84%;
  }
  h3 {
    font-size: 16px;
    letter-spacing: 0.15rem;
    padding-bottom: 6%;
    width: 90%;
    margin: 0 auto;
  }
.number {
	line-height: 1.2;
	padding-top: 5%;
}

.ns_style {
  text-align: center;
  color: #FFF;
  font-size: 50px;
  font-family: 'Cabin Sketch', cursive;
  line-height: 1.1;
}
  .point {
    font-size: 32px;
  }
  .coordi {
    font-size: 11px;
  }
}
/*== 商品一覧へのリンク） */
.all_link {
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 6%;
}
.btn {
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 2px solid #333;
  /* ボーダーの色と太さ */
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  width: 100%;
}
.btn span {
  position: relative;
  z-index: 3;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
}
.btn:hover span {
  color: #fff;
}
.all_link a:hover {
  opacity: 1;
}
@media screen and (max-width: 1060px) {
  .all_link {
    width: 90%;
  }
}
/*== 背景が流れる（下から上） */
.bgbottom:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #333;
  /*背景色*/
  width: 100%;
  height: 0;
  /*アニメーション*/
  transition: .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
/*hoverした際の形状*/
.bgbottom:hover:before {
  height: 100%;
  background-color: #333;
}
/*== 商品一覧へのリンク　ここまで */
/* -------------------- フェードアップ -------------------- */
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.photo_module {
  opacity: 0;
}
/* -------------------- pagetop -------------------- */
/* ページの上部へ　右下固定版 */
#pagetop--fixed {
  position: fixed;
  bottom: 10vh;
  right: 1vw;
  background: #222;
  opacity: 0.7;
  border-radius: .2rem;
}
#pagetop--fixed a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#pagetop--fixed a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: auto;
  text-align: center;
}
/* -------------------- 表示非表示 -------------------- */
@media screen and (min-width: 1061px) {
  .sp {
    display: none
  }
}
@media screen and (max-width: 1060px) {
  .pc {
    display: none
  }
}