@charset "UTF-8";

/*基本CSSの設定*/

html,body{
	font-family:YakuHanJP,"Noto Sans", sans-serif;
	line-height:1.4;
	word-break: break-all;
}

#contents{
	width:500px;
	height:auto;
	padding-top:0px;
	padding-bottom:255px;
}

br.pcoff{
	display: none;
}
#contents br.minion{
			display: none;
		}


#sp-gototop{
	display: none;
}

a.anchor{
    display: block;
    padding-top: 55px;
    margin-top: -55px;
}


#contents p{
	font-size: 18px;
	text-align: justify;
}
#contents p.first{
	padding-top:20px;
}

#contents h2{
	font-size: 50px;
	line-height: 1.2;
	margin:0;
	padding: 0;
}
#contents h3{
	font-size: 30px;
	line-height: 1.2;
	margin:0;
	padding-top:30px;
}

header.header{
	width:500px;
	height: 55px;
	margin:0 auto;
	position:fixed;
	top:0;
	left: 50%;
transform:translate(-50%, 0);
	z-index: 999;
	padding-top:10px;
	background:none;
}
header.header nav {
    position: fixed;
    top: 0;
    width: 500px;
    z-index: 10;
}
header.header ul {
    /*最初はナビゲーションボタンは非表示*/
    display: none;
    list-style:none;
	width:500px;
	background:#000;

}
header.header ul li{
	height: 50px;
	line-height: 50px;
	    text-align: left;
	border-bottom:1px solid #666;
	    font-size: 22px;
	font-weight: bold;
	width:470px;
		padding-left: 30px;
}
header.header ul li.komidashi{
	font-size: 18px;
	font-weight: lighter;
}
header.header ul li:last-of-type,
header.header ul li.midashi{
	border-bottom:none;
}
header.header ul li.midashi{
	height: 40px;
	line-height: 40px;
	margin-top:10px;
}

header.header ul li a{

    color: #fff;
    display: block;
    text-decoration: none;
}
header.header ul li a:hover{
    color: #666;
}

.hamburger {
    position: absolute;
    top: 10px;
    right:25px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    z-index: 10;
	background:none;
}
.hamburger.haikei{
	background:#000;
}
.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #fff;
    width:100%;
    z-index: 10;
}

.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 7px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 15px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 24px;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
}





/***********************
TOP 100%表示
************************/

#wrap{
	width:500px;
	height: auto;
	margin:0px auto 0;
}
/* --- 全体のBOX定義 ------- */
.box {
  position   : relative;
  height     : 100vh;
  margin     : auto;
  overflow   : hidden;
}

/* --- 背景の指定 ----------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
	-webkit-animation  : bgAnime 20s infinite;   /* 4画像 × 各5s = 20s */
  animation  : bgAnime 20s infinite;   /* 4画像 × 各5s = 20s */
}

/* --- 段差で背景画像のアニメーションを実行 -------- */
.box .src1 {
  background-image : url("../new_img/nwz_top.png");   /* 背景の画像を指定 */
	background-position:top left;
	background-size:cover;
	background-repeat: no-repeat;
	-webkit-animation-delay  :-1s;
}


@-webkit-keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 0; }
  25% { opacity: 1; }
  30% { opacity: 1; }
 100% { opacity: 1; }
}

@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 0; }
  25% { opacity: 1; }
  30% { opacity: 1; }
 100% { opacity: 1; }
}

.box .boxString{
  position: relative;
	top: 50%;
  left: 50%;
transform:translate(-50%, 0);
	display: block;
	z-index: 1;
	width: 300px;
}

.box a {
	position: absolute;
  display: inline-block;
bottom: 5%;
    left: 50%;
	-webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  z-index: 1;
  text-decoration: none;
	color:#fff;
	text-align: center;
}

.box a {
  padding-top: 60px;
}
.box a span {
  position: absolute;
  top: 0;
  left: 50%;
transform:translate(-50%, 0);
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 100%;
	background-color:rgba(0,0,0,0.6);
  box-sizing: border-box;
}
.box a span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.box a span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 44px;
  height: 44px;
  box-shadow: 0 0 0 0 rgba(255,255,255,.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


#contents .center{
	text-align: center;
}


.arrow-top {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: rotate(45deg);
}


/***********************
TOPメッセージ
************************/
article#nwz_message{
	width:450px;
	height:auto;
	padding:70px 25px 0;
	margin:0 auto;
}

#contents h1{
	font-size:45px;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}

#contents article#nwz_message h1{
	font-size: 25px;
}
/*小文字*/
#contents h1 span.komoji{
	font-size:25px;
}
#contents h1.nihongo{
	font-size:25px;
	font-weight: bold;
}

/*フォントlibre-baskerville*/
.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight:normal;
  font-style: normal;
}
/*フォント明朝体*/
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

/*続きを読む*/
.readmore{
    position: relative;
    box-sizing: border-box;
}

.readmore-content{
    position: relative;
    overflow: hidden;
    /*高さの初期値*/
    height: 50px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 50px;
    background-color: rgba(0,0,0,0.8);
}

/* 続きを読むボタン */
.readmore-label{
    display: table;
    bottom: 5px;
    position: absolute;
    left: 50%;
	    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 50px;
    color: #000;
	width:150px;
	height: 35px;
	line-height: 35px;
}
.readmore-label:before{
    content: 'Read more';
}
.readmore-label:hover{
    color: #666;
}

.readmore-check{
    display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
	position: static;
	    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.readmore-check:checked ~ .readmore-label:before{
    content: 'Close';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}

/*ブランドNWZ*/
/*ブランドEXIT*/
#contents article.nwz_brand{
	position: relative;
	width:500px;
	height: 100vh;
	margin:100px auto 0;
	background-image : url("../new_img/nwz_haikei1.png");   /* 背景の画像を指定 */
	background-position:top left;
	background-size:cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#contents article.exit_brand{
	position: relative;
	width:500px;
	height: 100vh;
	margin:30px auto 0;
	background-image : url("../new_img/nwz_haikei2.png");   /* 背景の画像を指定 */
	background-position:top left;
	background-size:cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#contents .contentsbox{
	width:450px;
	height: auto;
}

#contents .buttonbox{
	display: flex;
	width:420px;
	height: auto;
	margin:0 auto;
	align-items:center;
	justify-content:space-between;
}

#contents p.button{
	display: block;
	margin:20px auto 0;
	background-color: #fff;
	border-radius: 50px;
	width:180px;
	height: 35px;
	line-height: 35px;
	text-align: center;
}
#contents p.button a{
	text-decoration: none;
	color:#000;
}
#contents p.button a:visited{
	color:#000;
}
#contents p.button a:hover{
	color:#666;
}

#contents p.button2{
	display: block;
	margin:80px auto 0;
	background-color: #333;
	border-radius: 50px;
	width:180px;
	height: 35px;
	line-height: 35px;
	text-align: center;
}
#contents p.button2 a{
	text-decoration: none;
	color:#fff;
}
#contents p.button2 a:visited{
	color:#fff;
}
#contents p.button2 a:hover{
	color:#666;
}

/*NWZとは*/
#contents article.about{
	width:500px;
	height: auto;
	margin:150px auto 0;
}
#contents .midashibox1,
#contents .midashibox2,
#contents .midashibox3{
	position: relative;
	width:500px;
	height: 100vh;
	background-position:top left;
	background-size:cover;
	background-repeat: no-repeat;
	display: flex;
	padding:0;
	margin:0 auto;
}
#contents .midashibox1{
	background-image : url("../new_img/about_haikei.png");   /* 背景の画像を指定 */
	align-items: center;
	justify-content: center;
}
#contents .midashibox2{
	background-image : url("../new_img/yama_image.png");   /* 背景の画像を指定 */
	align-items:flex-end;
	justify-content:center;
}
#contents .midashibox3{
	background-image : url("../new_img/per_image1.png");   /* 背景の画像を指定 */
	align-items:center;
	justify-content:center;
}

#contents .midashibox1 .titlebox{
	width:450px;
	height: auto;
}
#contents .midashibox2 .titlebox{
	width:450px;
	height: auto;
	padding-bottom:40px;
}
#contents .midashibox2 .titlebox h1{
	font-size: 40px;
}
#contents .midashibox1 .titlebox h1{
	text-align: right;
}
#contents .midashibox1 .titlebox h1.komoji,
#contents .midashibox3 .titlebox h1.komoji{
	padding-top:10px;
	font-size: 25px;
}

#contents article.about h2.title{
	text-align: center;
	font-size: 35px;
}
#contents article.about h2.komoji{
	font-size: 20px;
	padding-top:40px;
}

#contents .graybox{
	width:420px;
	height: auto;
	margin:40px auto 40px;
	background-color: #333;
	padding:0 15px 20px;
	text-align: left;
}
#contents .graybox dl dt{
	font-size: 25px;
	color:#ff0000;
	padding-top:20px;
	padding-bottom:10px;
}
#contents .graybox dl dt.komoji{
	font-size: 22px;
}
#contents .graybox dl dd{
	font-size: 17px;
}

#contents article.about p.bigcenter{
	font-size: 30px;
	text-align: center;
	margin:30px auto;
	font-weight: bold;
	line-height: 1.2;
}

/*三角形*/
span.triangle {
	display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 45px solid transparent;
  border-left: 45px solid transparent;
  border-top: 25px solid #ffffff;
  border-bottom: 0;
	margin:0 auto;
}

#contents .about_textbox1,
#contents .about_textbox2{
	width:500px;
	height: auto;
	margin:50px auto 80px;
}
#contents .about_textbox1 p{
	text-align: center;
	font-size: 20px;
	line-height: 1.6;
	font-weight: bold;
}
#contents .about_textbox2 p{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
#contents .about_textbox2 p.bigcenter2{
	font-size: 55px;
	line-height: 1.2;
	font-weight: bold;
}

#contents p.zu1{
	padding-bottom:20px;
}
#contents p.zu2{
	padding-top:20px;
}

#contents p.centerimg img{
	display: block;
	margin:40px auto 0;
}

#contents .about_textbox3{
	width:450px;
	height: auto;
	padding:0 25px;
	margin:40px auto 0px;
}
#contents article.about .about_textbox3 h2{
	text-align: left;
	font-size: 26px;
}
#contents .about_textbox3 p{
	text-align: justify;
}

#contents .about_textbox4{
	width:450px;
	height: auto;
	padding:0 25px;
	margin:50px auto 80px;
}
#contents .about_textbox4 p{
	text-align: justify;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.4;
}
#contents .about_textbox4 p.bigcenter3{
	font-size: 50px;
	line-height: 1.2;
	font-weight: bold;
}

#contents .underline{
	width:450px;
	height: auto;
	padding-bottom:5px;
	border-bottom:solid 5px #ff0000;
	margin:40px auto 0;
	text-align: justify;
}
#contents .underline h2{
	font-size: 32px;
}
#contents .per_box{
	width:450px;
	height: auto;
	margin:0 auto;
}
#contents .per_box h3{
	text-align: left;
	padding-bottom:10px;
	padding-top:40px;
}
#contents .per_box h3.first{
	padding-top:20px;
}
#contents .per_box h3.red{
	color: #ff0000;
}
#contents .per_box p img{
	padding-bottom:10px;
}

#contents .snsbox{
	width:450px;
	height: auto;
	margin:40px auto 0;
}
#contents .snsbox .buttonbox{
	display: flex;
	width:450px;
	height: auto;
	margin:40px auto 0;
	align-items:flex-end;
	justify-content:flex-end;
}
#contents .snsbox .buttonbox p.insta{
	padding-left: 45px;
}




footer{
	background:#000;
}

.footerbox{
	width:500px;
	height:auto;
	margin:0 auto;
	border-top:1px solid #fff;
}
.footerbox p img{
	display: block;
	width:272px;
	height: auto;
	margin:60px auto 30px;
}


