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

/* ========================================
    リセットcss
========================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}

/* micro clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {clear: both;}
.cf {*zoom: 1;}

/* ========================================
    全体設定
========================================= */
html {
	animation: fadein 3s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
body {
	font-family: 'BIZ UDPGothic', sans-serif;
}
a {
	text-decoration: none;
}

/* スクロールバー　*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(77,76,76,0.5);
  border-radius: 5px;
}

/* ========================================
    ヘッダー
========================================= */
header {
	width: 100%;
	padding: 0 8%;
	border-bottom: 1px solid rgba(141,141,141,0.2);
	position: fixed;  /* ヘッダーを */
 	z-index: 999;	  /* 透かしてスクロール */
  	top: 0;
  	background: rgba(255,255,255,0.8);
  	box-sizing: border-box; /* 要素サイズ制御 */
	color: #2a2626;
}

.top_logo {
	width: 320px;
	margin-top: 20px;	
}
.top_logo h1 {
	float: left;
}
.top_sns img {
	padding-top: 20px;
}
#top_logo h1 a img:hover {
	opacity:0.6;
	transition:0.3s;
	background-color: #888;
	border-radius: 7px;
}

/* ====================
	ナビゲーション　
======================*/

header a {
	color: #000;
	
}
.home_top a {         /* ホームのみオレンジ */
	color: #f17222;
	font-size: 19px;
	line-height: 0.8;
}
header nav {
	max-width: 800px;
	right: 15%;
	top: 40px;
	position: fixed;	
}
header nav ul li {
	float: left;
	padding: 0 20px; 
	height: 30px;
	margin-top: 20px;/*セカンド枠も影響あり！*/	
}
header nav ul li a:hover {
	color: #f17222;	
} 


/* ショップボタン */
.online_shop {
	position: absolute;
	right: 5%;
	top: 40px;
}

.online_shop a {
	color: #fff;
	font-weight: 900;
	background-color: #F9914F;
	display:inline-block;
	border-radius: 5px;
	padding: 0 25px;
	line-height: 40px;
}
.online_shop a:hover {
	transition: 0.7s;
	color: #7C7C7C;
}


/* ========================================
    メインイメージ
========================================= */
.main {
	width: 100%;
	height: 450px;
	position: relative;
  	overflow: hidden;
	margin-top: 87px;
}
.main img {
	object-fit: cover;
	display: block;
	position: absolute;   /* 画像サイズ表示エリアに合せる */                   
	width: inherit;
	height: inherit;
	opacity: 0;
	animation: slideAnime 36s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */

.main img:nth-of-type(1) { animation-delay: 0s }
.main img:nth-of-type(2) { animation-delay: 9s }
.main img:nth-of-type(3) { animation-delay: 18s }
.main img:nth-of-type(4) { animation-delay: 27s }
 
 /*=== スライドのアニメーション ========================= */

@keyframes slideAnime{
   0% { opacity: 0 }
   15% { opacity: 1 }
  25% { opacity: 1 }
  40% { opacity: 0 }
 100% { opacity: 0 }
}

div#mainimage_text {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 72px 0;
	color: rgba(255,255,255,0.8);
	text-align: center;
	position: absolute;  /* 文字消えるの防止*/
  	z-index: 100;		 /* 文字消えるの防止*/ 	
}
.main_text {
	font-size: 120px;	
	padding-bottom: 50px; /* テキスト行の間隔と外色 */
	letter-spacing : 1px;
  	-webkit-text-stroke: 1px #DDDDDD;	
}
.center_text {
	font-size: 28px;
	padding-bottom: 60px;
	line-height: 1.2;
  	-webkit-text-stroke: 1px #C4C4C4;	
}
.bottom_text {
	font-size: 34px;
  	-webkit-text-stroke: 1px #C4C4C4;
}

/* ========================================
    おすすめ商品＆おすすめボタン
========================================= */

.content_osusume {
	width: 100%;
	height: 180px;
	text-align: center;
}
.content_osusume a {
	color: #fff;
	font-weight: 900;
	background-color: #48677f;
	display: inline-block;
	border-radius: 5px;
	padding: 0 25px;
	line-height: 40px;
	text-decoration: none;
	margin-top: 100px;
}
.content_osusume a:hover {
	transition: 0.7s;
	color: #A6A6A6;	
}

/* ========================================
    コンテンツ商品
========================================= */

div#content_item {
	width: 100%;
	height: auto;
}

.content_list {
	max-width: 1110px;
	height: auto;
	margin: 0 auto;	
}

.content_list ul li {
	float: left;
	margin: 0 14px 28px 14px;
	background-color: rgba(223,223,223,0.10);
	border: 1px solid rgba(146,146,146,0.3);	
}
.item_flame img {
	width: 100%;
	max-width: 100%;
	object-fit: cover;
}

.item_flame img:hover {
	transition: 0.7s;
	opacity: 0.5;
}
.text_fast {
	font-size: 16px;
	font-weight: 600;
	color: #3E3E3E;
	padding: 8px 0 8px 8px;
}
.text_second {
	font-size: 16px;
	color: #454545;
	padding: 8px 0 20px 8px;
}

/* ======================
全ての商品ボタン 
======================== */

div#item_bottom {
	width: 100%;
	height: auto;
	text-align: center;
}

.online_item a ,.online_item2 a {
	color: #fff;
	font-weight: 900;
	background-color: #48677f;
	display: inline-block;
	border-radius: 5px;
	padding: 0 25px;
	line-height: 40px;
	margin: 45px 0;
    text-decoration: none;
}	
.online_item a:hover,.online_item2 a:hover {
	transition: 0.7s;
	color: #A6A6A6;
}

div#item_bottom ul p {
	padding: 0 8% 5%;
	font-weight: 600;
	color: #676767;
	text-align: center;	
}

/* ========================================
    代表
========================================= */
 

.list_top {
	color: #676767;
	font-size: 26px;
	font-weight: 600;
	margin-top: 30px;
}


div#daihyo ul li {
	color: #1B1B1B;
	font-size: 18px;
	line-height: 1.5;
	padding-bottom: 20px;
}
 



/* ========================================
    仲間たちスクロール
========================================= */
.nakama_fans {
	width: 100%;
	height: auto;
	position: relative;
}

@keyframes infinity-scroll-left {
from {
    transform: translateX(0);
	}
to {
	transform: translateX(-100%);
	}
}

.nakama_wrap {
	  display: flex;
	  overflow: hidden;
}

.nakama__list {
	  display: flex;
	  list-style: none;
}

.nakama__list--left{
	animation :infinity-scroll-left 95s infinite linear 0.5s both;
}

.nakama_item {
  	width: calc(100vw / 6);
}
.nakama_item > img{
   	width: 100%;
}
.nakama_text {
	width: 100%;
	font-size: 46px;
	font-weight: bold;
	position: absolute;
	z-index: 999;
	color: #fff;
	top:40%;
	text-align: center;
}


/* ========================================
    フッター
========================================= */

	footer {
		width: 100%;
		height: 85px;
		background-color: #323232;
		color: #FFFFFF;
		text-align: center;
		line-height: 85px;
}

/* sp */

@media screen and (min-width: 1281px) {  /*-- 1281px以上に適用 --*/
	#daihyo {
		width: 1100px;
		height: auto;
		margin: 0 auto;
	}
	#daihyo_message {
		height: auto;
		margin-top: 50px;
		float: left;
		
	}
	#daihyo ul {
		width: 440px;
		height: auto;
		float: left;
		margin-left: 50px;
		margin-bottom: 90px;	
	}
}


@media screen and (max-width: 1600px) {
	header nav {
		right: 20%
}
	header nav ul li {
		padding: 0 8px; 
		height: 30px;
		margin-top: 20px;
}

}


@media screen and (max-width: 1280px) {
	header {
		padding-left: 3%;
}	
	header nav {
		right: 3%;	
}
	.online_shop {
		top: 10px;	
}
	.main img {
		max-width: 100%;
		max-height: 90%;
		object-fit: cover;
}
	.main_text {
		font-size: 100px;
}
	.center_text {
		font-size: 26px;
}
	.bottom_text {
		font-size: 30px;
}
	.nakama_text {
		font-size: 38px;
}
	
	.content_list {
		max-width: 1060px;	
}
	.content_list ul li {
		margin: 0 5px 10px 5px;	
}
	.content_osusume {
		height: 150px;
}
	.content_osusume a {
		margin-top: 0;	
}
	#daihyo {
		width: 100%;
		height: auto;
		text-align: center;
		margin: 0 auto;
	}

	
}

@media screen and (max-width: 1070px) {
	header {
		height: 120px;
}
	.top_logo {
		margin-top: 30px;
	
}
	
	.top_logo h1 img {
		max-width: 180px;
		
}
	.top_sns img {
		max-width: 38px;
}
	
	header nav {
		right: 10px;
		top: 75px;
}
	.online_shop {
		margin-top: 10px;
	}
	
	
	.main {
		margin-top: 117px; 
	}
	
	.content_osusume {
		height: 100px;
}
	
	.content_list {
		max-width: 870px;
		height: 900px;
	}

	.content_list ul li {
		margin: 0 4px 10px 4px;
		
}
	.item_flame img {      /* 1070で　280px */
		width: 100%;
		max-width: 280px;
		object-fit: cover;
}
	.text_fast {
		font-size: 14px;
		
}
	.text_second {
		font-size: 14px;
}		
	.online_item2 a {
		margin: 25px 0;
	
}
	
	
}

@media screen and (max-width: 900px) {
	
	.top_logo {
		margin-top: 20px;
}
	
	.top_sns {
		margin-top: -5px;
}
	.main_text {
		font-size: 80px;
		letter-spacing: -2px;
}
	.center_text {
		font-size: 24px;
}
	.bottom_text {
		font-size: 26px;
}
	.nakama_text {
		font-size: 28px;
}
	
	.content_list {
		width: 596px;
		height: auto;
		
}
	.item_flame img {
		width: 280px;
		max-width: 100%;
		object-fit: cover;
		
}
	.content_list ul li{
		max-width: 100%;
		height: auto;
		position: relative;
		margin: 0 8px 10px 8px;	
	}
	
	.text_fast {
		position: absolute;
		background-color: rgba(240,248,255,0.8);
		width: 100%;
		top: 78%;
		border-radius: 3px;
		text-align: center;
		
}
	.text_second {
		position: absolute;
		background-color: rgba(240,248,255,0.8);
		width: 100%;
		top:88%;
		text-align: center;
}	

}
@media screen and (min-width: 651px) {
	
	.init-bottom:after {
		content: '';
		display: inline-block;
		width: 6px;
		height: 6px;
		margin: 0 0 0 15px;
		border-right: 1px solid #000;
		border-bottom: 1px solid #000;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
}
	
	/* ドロップダウン　基本　*/
	
	.menu > li.menu__single {
		position: relative;
}

	li.menu__single ul.menu__second-level { /* セカンド位置や時間 */
		position: absolute;
		top: 50px;   
		background: rgba(255,255,255,0.7);
		-webkit-transition: all .5s ease;
		transition: all .7s ease;
		border-radius: 3px;
}

	li.menu__single:hover ul.menu__second-level {
		top: 30px;
		visibility: visible;      /* セカンド最終位置 */
		opacity: 1;
}

	/* ドロップダウン　追加　*/

	ul.menu__second-level {
		visibility: hidden;
		opacity: 0;	
}
	.menu__second-level li {
		width: 150px;
		border-bottom: 1px solid #111;
		border-radius: 3px;
}
	.menu__second-level li a:hover {
		color: #f17222;
}
	.menu__second-level li a {
		font-size: 16px;
		font-weight: 500;
		position: absolute;
		z-index: 999;
}	

}


@media screen and (max-width: 650px) {
	
	header nav {
		width: 130px;
		border-radius: 5px;
		margin-top: 50px;
		background-color: rgba(239,239,239,0.9);
		display: block;
		left: 1%;
}
	header nav ul li {
		padding: 5px 10px; 
		height: 20px;
		margin-top: 30px;/*セカンド枠も影響あり！*/
		display: block;
}
	li.menu__single ul.menu__second-level { /* セカンド位置や時間 */
		top: 30px;
		left: 130px;
}

	li.menu__single:hover ul.menu__second-level {
    	top: -10px;
}
	
	ul.menu__second-level {
		display:block;
}

	.menu__second-level li {
		padding-top: 4px;
		width: 130px;
		border-bottom: 1px solid rgba(189,189,189,0.80);
}
	
	.online_shop a {
		padding: 0 10px;
		line-height: 35px;
}
	.top_logo {
		margin-top: 55px;		
}
	.top_sns {
		float: left;
		padding-left: 5px;
}	
	.top_sns img {
		max-width: 33px;
}
	
	.menu__second-level li {
		display: none;
	}

/* ===================
	ハンバーガーメニュー　
=================== */
	
	.toggle-btn {
		display: block;
		position: fixed;
		top: 75px;
		right: 40px;
		width: 30px;
		height: 30px;
		z-index: 3;
		cursor: pointer;
	}
	
	.toggle-btn span {
		position: absolute;
		display: block;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #333;
		transition: all 0.5;
		border-radius: 2px;
}
	
	.toggle-btn span:nth-last-child(1) {
		top: 4px;
}
	.toggle-btn span:nth-last-child(2) {
		top: 14px;
}
	.toggle-btn span:nth-last-child(3) {
		bottom: 4px;
}
	
	.menu {
		display: none;	
	}
	.open .menu {
		display: block;		
}
	
	
	.main_text {
		font-size: 62px;
		margin: 0 3%;
		color: rgba(255,255,255,1.00);
}
	.center_text {
		font-size: 18px;
		margin: 0 3%;
}
	.bottom_text {
		font-size: 22px;
		margin: 0 3%;
		color: rgba(255,255,255,1.00);		
}
	
	#daihyo_message img {
		width: 100%;
		max-width: 400px;
		height: auto;
}
	.list_top  {
		margin-top: 30px;
}
	div#daihyo ul {
		padding: 0 25px;
		
}
	div#daihyo ul li {
		font-size: 16px;
		line-height: 1.5;		
}	
	
}

@media screen and (max-width: 600px) {
	
	#content_item {
		max-width: 100%;
		height: auto;
}
	.content_list {
		width: 100%;
		height: auto;	
		margin-right: 10%;
}
	.item_flame img {
		width: 600px;
		height: auto;		
}
	.text_fast {
		font-size: 18px;		
}
	.text_second {
		font-size: 18px;
}	
	div#daihyo ul li {
		font-size: 14px;
		line-height: 1.3;		
}
	.nakama_text {
		font-size: 16px;
}

}

@media screen and (max-width: 360px) {
	header {
		padding: 0 1%;
	}
	.toggle-btn {
		right: 10px;
	}
	
	.nakama_text {
		font-size: 10px;
}
}


