@charset "utf-8";
/* CSS Document */

/* //////////////////////////////////////////////////////////////////// */
/* ///// TB /////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////// */

/* ==================================================
	selected text
================================================== */
::selection {
	background: #000; /* Safari */
	color: #fff;
}
::-moz-selection {
	background: #000; /* Firefox */
	color: #fff;
}

/* ==================================================
	font anti alias
================================================== */
html {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	color: #5d5d5d;
	line-height: 1;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/*ゴシック系*/
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* ==================================================
	link
================================================== */
a:focus, *:focus {
	outline: none;
}
a:link {
	color: #5d5d5d;
	text-decoration: none;
}
a:visited {
	color: #5d5d5d;
	text-decoration: none;
}
a:hover {
	color: #ddd;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
a:active {
	color: #1a0d0c;
	text-decoration: none;
}
a:hover img {
	opacity: 0.3;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

/* ==================================================
	base (reset)
================================================== */
body {
	min-width: 100%;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	text-align: left;
	overflow-x: hidden;
	background: #000;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
ul, ol, dl, dt, dd {
	margin: 0;
	padding: 0;
}
ol, li {
	list-style: none;
}
img {
	border: none;
	line-height: 0;
	font-size: 0;
	vertical-align: text-bottom;
}
a {
	margin: 0;
	padding: 0;
	font-size: inherit;
	background: transparent;
}
th, td {
	font-style: normal;
	font-weight: normal;
	font-size: inherit;
	empty-cells: show;
}
input, select {
	vertical-align: middle;
}
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
pre {
	white-space: -moz-pre-wrap;	/* Mozilla */
	white-space: -pre-wrap;	/* Opera 4-6 */
	white-space: -o-pre-wrap;	/* Opera 7 */
	white-space: pre-wrap;	/* CSS3 */
	word-wrap: break-word;	/* IE 5.5+ */
}

/* ==================================================
	layout
================================================== */


/* ==================================================
	common
================================================== */
.tb_none {
	display: none !important;
}
.adj_bottom {
	margin-bottom: 20px !important;
}


/* ==================================================
	contents
================================================== */
/* -------------------------
	header
------------------------- */
.header {
  background-color: #111;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px #777;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 150px;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #333;
  transition: ease .4s;
}

.nav-logo {
  width: 200px;
  display: block;
  margin: 0 auto 72px auto;
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 24px;
  margin: 0 auto 48px auto;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}


/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}


/* -------------------------
	main
------------------------- */
div.main {
	display: none;
}


/* -------------------------
	wrap
------------------------- */
div#wrap /*img*/ {
	width: 100%;
	background-color: #000;
}

.contents {
	margin: 0 auto;
	padding: 0;
}


/* -------------------------
	buybtn
------------------------- */
.buybtn {
	margin: 20px 0 0 !important;
	padding: 0;
}


/* -------------------------
	lnkbnr
------------------------- */
.lnkbnr {
	margin: 20px 0 0 !important;
	padding: 0;
}


/* ==================================================
	footer
================================================== */
div.footer {
	margin: 0;
	padding: 20px 0 0;
}
div.footer_wrap {
	width: 100%;
	max-width: 90%;
	border-top: 1px solid #5d5d5d;
	margin: 0 auto;
}
div.footer_logo {
	text-align: center;	
}
div.footer_logo img {
	width: 25%;
	margin: 0;
	padding: 60px 0 40px;
	display: inline-block;
}
ul.footer_nav {
	overflow: hidden;
	list-style: none;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
ul.footer_nav ul {
}
ul.footer_nav li {
	font-family: 'Sawarabi Mincho', 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 20px;
	font-size: 2.0rem;
	letter-spacing: 0.15em;
	line-height: 1.2em;
	box-sizing: border-box;
	padding: 0 0 40px 0;
	color: #5d5d5d;
}
ul.footer_nav li:last-child {
	padding-bottom: 0;
}
ul.footer_nav a {
	color: #5d5d5d;
	text-decoration: none;
}


/* ==================================================
	copyright
================================================== */
div.copyright {
	margin: 0;
	padding: 0;
}
div.copyright p.copyright_txt {
	font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 15px;
	font-size: 1.5rem;
	letter-spacing: 0.15em;
	line-height: 1.2em;
	padding: 60px 0 20px;
	color: #5d5d5d;
	text-align: center;
}


/*---- フォント ----*/
.fred{
	color: #ff0000;
}

.fbold{
	font-weight: bold;
}

.funder{
	border-bottom: 1px dashed;
}


/* -------------------------
	contents
------------------------- */

/*---- 動画 ----*/
#video-head{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 90vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: absolute;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}


.product {
    width: 100%;
    margin: 100px auto !important;
    padding: 0;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
}

.product-img {
    width: 50%;
    margin: 0;
    padding: 0 20px;
}

.product-text {
    width: 50%;
    margin: 0;
    padding: 0 20px;
}

.product-copy {
    margin: 10px auto 10px;
    padding: 0;
    font-size: 16px;
	text-align: left;
    /*letter-spacing: 1px;*/
    line-height: 150%;
    color: #fff;
}

.product-name {
    margin: 10px auto 20px;
    padding: 0;
    font-size: 24px;
	text-align: left;
    /*letter-spacing: 1px;*/
    line-height: 150%;
    color: #e94822;
}

.product-desc {
    margin: 10px auto 20px;
    padding: 0;
    font-size: 16px;
	text-align: left;
    /*letter-spacing: 1px;*/
    line-height: 150%;
    color: #fff;
}

.product-size {
    position: relative;
    overflow: hidden;
	margin: 10px auto;
    padding: 10px 10px 10px 100px;
    font-size: 24px;
	text-align: left;
	color: #fff;
}

.product-size::before {
    position: absolute;
    top: 0;
    left: 0px;
    width: 80px;
    height: 90%;
    content: '';
	border: solid 1px #fff;
}

.product-size span {
    position: absolute;
    z-index: 1;
    top: calc(50% - 12px);
    left: 18px;
    display: block;
    color: #fff;
	font-size: 18px;
}

.product-price {
    position: relative;
    overflow: hidden;
	margin: 10px auto;
    padding: 10px 10px 10px 100px;
    font-size: 24px;
	text-align: left;
	color: #fff;
}

.product-price::before {
    position: absolute;
    top: 0;
    left: 0px;
    width: 80px;
    height: 90%;
    content: '';
	border: solid 1px #fff;
}

.product-price span {
    position: absolute;
    z-index: 1;
    top: calc(50% - 12px);
    left: 18px;
    display: block;
    color: #fff;
	font-size: 18px;
}

.product-tax {
    position: relative;
    font-size: 14px;
	text-align: left;
	color: #fff;
}


/*---- 予約販売 ----*/
.product-reserve {
	margin: 20px auto;
    font-size: 18px;
	text-align: left;
	color: #ff0000;
}


.product-btn {
    width: 100%;
    margin: 30px auto;
    padding: 20px 0;
    font-size: 18px;
	font-weight: bold;
	text-align: center;
    letter-spacing: 1px;
    color: #fff;
    background: #e94822;
    border: none;
}

.product-btn:hover{
   	opacity: 0.5;
}

.contents-title {
    margin: 80px 25px 10px;
    padding: 10px;
    border-left: 5px solid #fff;
    font-size: 30px;
    color: #fff;
	text-align: left;
}

.contents-img {
    margin: 0 auto;
	text-align: center;
}

.contents-desc {
	margin: 10px 20px 40px;
    padding: 20px;
	background: #222;
}

.contents-desc ul {
    padding:0 0 0 30px;
    background: #222;
}

.contents-desc ul li {
    position: relative;
    padding: 10px 0;
	font-size: 20px;
	color: #fff;
	text-align: left;
    line-height: 1.5em;
	list-style-type: square;
}

.contents-detail {
	margin: 10px 20px 40px;
    padding: 20px;
	background: #222;
}

.contents-detail ul {
    padding:0 20px;
    background: #222;
}

.contents-detail ul li {
    position: relative;
    padding: 5px 0;
	font-size: 18px;
	color: #fff;
	text-align: left;
    line-height: 1.5em;
}

.recommend {
    width: 100%;
    margin: 10px auto 100px !important;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	border-top: solid 1px #777;
}

.recommend:last-of-type {
	border-bottom: none;
}

.recommend-img {
    width: 30%;
    margin: 0;
    padding: 20px;
}

.recommend-text {
    width: 70%;
    margin: 0;
    padding: 20px;
}

.recommend-name {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 24px;
	text-align: left;
    /*letter-spacing: 1px;*/
    line-height: 120%;
    color: #e94822;
}

.recommend-desc {
    margin: 0 auto 20px auto;
    padding: 0;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 150%;
    color: #fff;
    text-align: left;
}



.footer-img{
  width:100%;
  height: 30vh;
  position: relative;
} 

.footer-img::after{
  content: '';
  /*position: fixed;*/
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height: 30vh;
  /*背景画像設定*/
  background:url("../images/footer_img_pc.jpg") no-repeat center;
  background-size:cover;
}



/*ページTOPへボタン*/
#page-top a{
    display: block;
    position: relative;
	padding-top: 30px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background: #000;
	border: solid 1px #fff;
    text-decoration: none;
	color: #fff;
}

#page-top a::after{
    display: block;
    position: absolute;
    content: "";
    margin: 0 auto;
    width: 25%;
    height: 25%;
    top: 40%;
    left: 0;
    right: 0;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(-45deg);
}

#page-top a:hover{
   	opacity: 0.5;
}

/*ページTOPへを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 5;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　左の動き　*/
#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/
#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

