@charset "UTF-8";
body{font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;font-size: 16px; background-color: #000;color:white;}
h1{font-size:28px; font-weight: bold;text-align: center;}
h1 a{text-decoration: none;color:black;}
h1 a:hover{text-decoration: none;color:sliver;}
h2{ font-size:20px;}
h3{ font-size:18px;}
a{text-decoration: none;color:#000}
a:visited{text-decoration: none;color:#FFF}
a:hover{text-decoration: none;color:#000}
img{ max-width:100%;  margin: 2px 2px 0;border-radius: 15px;}
header a{ color: #eee; }
header{background-image: url(images/vroom.png);background-size: cover;}
header p{
	padding:15px 0;
	color: white;
	text-align: center;
	width:100%;
}
.inner{
	width: 90%;
	margin: 185px auto;
	max-width: 1024px;
}
#indexs{
	width: 90%;
	/*margin: 185px auto;*/
	margin: 100px 0 0 0;
	max-width: 1024px;
	text-color: white;
}
/* ハンバーガーメニュー */
.header {
  display: flex;
  justify-content: space-between;
  background: #FFF;
  padding: 50px 20px 0 20px ;
  .logo {
    font-size: 20px;
  }
}
.nav-button {
  display: none;
}
.nav {
  a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    color: #448aff;
  }
  li {
    display: inline-block;
    margin: 0 10px;
  }
}
.nav-wrap.open {
  display: block;
}
.nav-wrap.close {
  display: none;
}

.menu-wrapper {
  position: relative;
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に左上固定 */
  top: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #888;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
  position: fixed;
  top: 0;
  left: -250px; /* ← 初期位置を左へ */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 2;
}

#menu-toggle:checked ~ .menu {
  left: 0; /* ← 開いたときは左0へ */
}

.menu ul {
  list-style: none;
  padding: 60px 20px;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #007bff;
}
.index_area{
	float:left;
	width:18%;
	padding:0 5px;
}
.index_area img{
	width:100%;
	object-fit: cover;
	height: 100%;
}
.index_area .catg{bottom: 0px;background-color: yellow;}
.index_area p{position: absolute;margin:0 0 6px 10px;color:#888;}
.index_pagination{clear:both;}
.pagination {
	clear: both;
	/*padding: 20px 0;*/
	/*position: relative;*/
	/*font-size: 14px;*/
	/*line-height: 14px;*/
	text-align: center;
}
.pagination-box {
	display: inline-block;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 5px 5px 5px 5px;
	text-decoration: none;
	width: auto;
	color: #FFF; /* 通常の文字色 */
	background: sliver; /* 通常の背景色 */
}
.pagination a:hover{
	color: black; /* マウスホバー時の文字色 */
	background: white; /* マウスホバー時の背景色 */
}
.pagination .current{
	padding: 10px 15px 10px 15px;
	color: white; /* 現在のページの文字色 */
	background: red; /* 現在のページの背景色 */
}
.pagination li {
	/*border=top: 1px solid #888;*/
}
/*ranking*/
.ranking {
  counter-reset: rank;
}
.ranking{list-style: none;}
.ranking li {
  position: relative;
  padding:20px;
  display: inline-block;
}
 
.ranking li:not(:last-child) {
  margin-bottom: 10px;
}
 .ranking li:nth-child(-n + 3)::before { /* 王冠のスタイル */
  font-family: "Font Awesome 5 Free";
  content: "\f521";
  font-weight: 900;
  position: absolute;
  top: -45px; /* 王冠の位置（縦軸） */
  left: -20px; /* 王冠の位置（横軸） */
  font-size: 80px; /* 王冠の大きさ */
}
 
.ranking li:nth-child(1)::before { /* 1位（王冠）のスタイル */
  color: #e6c300;
}
 
.ranking li:nth-child(2)::before { /* 2位（王冠）のスタイル */
  color: #a9a9a9;
}
 
.ranking li:nth-child(3)::before { /* 3位（王冠）のスタイル */
  color: #815a2b;
}
 
.ranking li:nth-child(n + 4)::before { /* 3位以下のスタイル */
  content: "";
  position: absolute;
  border-bottom: 60px solid transparent;
  border-left: 60px solid rgba(0,0,0,0.8);
}

.ranking img { /* 画像のスタイル */
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.ranking p { /* タイトルのスタイル */
  position: absolute;
  bottom: 0;
  width: 150px; /* 画像の横幅に合わせる*/
  padding: 3px;
  color: #fff;
  background: rgba(0,0,0,0.8);
  text-align: center; /* タイトルの位置 */
}
/*lists*/
.lists {
  /*counter-reset: rank;*/
}
.lists {list-style: none;}
.lists li {
  position: relative;
  padding: 20px;
  display: inline-block;
}
 
.lists li:not(:last-child) {
  margin-bottom: 10px;
}

 
.lists img { /* 画像のスタイル */
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.lists p { /* タイトルのスタイル */
  position: absolute;
  bottom: 0;
  width: 150px; /* 画像の横幅に合わせる*/
  padding: 3px;
  color: #fff;
  background: rgba(0,0,0,0.8);
  text-align: center; /* タイトルの位置 */
}
.lists a{ /* タイトルのスタイル */
  color: #fff;
  text-align: center; /* タイトルの位置 */
}

body {
    padding-top: 0px; /* ヘッダーの後ろに要素が隠れないようにするため */
}

header {
	z-index:1000;
    width: 100%; /* 幅いっぱいを指定 */
    /*height: 185px; */ /* 高さを50pxに指定 */
    /* padding: 20px 50px; */ /* ヘッダーに上下左右それぞれ余白を指定 */
    box-sizing: border-box; /* padding分を含んで幅を100%にするため */
    position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
    /*display: flex; *//* 中の要素を横並びにする */
    align-items: center; /* 中の要素を上下中央に並べる */
    background-repeat: no-repeat;
    background-position: center;
}
.flex-row {display: flex;gap: 2px;}
.flex-row+.flex-row {margin-top: 2px;}
.flex-item {background: #888;padding: 2px;text-align: center;}
.flex-item:nth-child(1) {width:40%;}
.flex-item:nth-child(2) {width:20%;}
.flex-item:nth-child(3) {width:33%;}
.flex-item:nth-child(4) {width:25%;}
.flex-item:nth-child(5) {width:15%;}
.card-review_star {
    position: relative;
    display: inline-block;
}

.card-review_star::before {
    content: "★★★★★";
    color: #CCCCCC; /* 星が塗られていない土台の色 */
}

.card-review_star::after {
    content: "★★★★★";
    position: absolute;
    width: 80%; /* ここの%によってどれぐらい星が塗られるのかが変わる */
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffcf32; /* 星自体の色 */
}

.card-review_number {
    display: none; /* 親要素のwidthから見て何%かを正しく反映させるために消す */
}
.reviews{list-style: none;}
.profile{
    display: flex;
    border: 1px solid #333;
    padding: 1px;
    /*background: #dff0ff;*/
}
.profile>div{
    flex: 1;
    /*border: 1px solid #333;*/
    padding: 1px;
    /*background: #ffffff;*/
    margin: 1px;
}
.history{
    display: flex;
    border: 1px solid #333;
    padding: 1px;
    /*background: #dff0ff;*/
}
.history>div{
    flex: 1;
    /*border: 1px solid #333;*/
    padding: 1px;
    /*background: #ffffff;*/
    margin: 1px;
}
header .gnav .menu {
    display: flex; /* 中の要素を横並びにする */
}

header .gnav .menu li {
    list-style: none; /* リストの[・]を消す */
}

header .gnav .menu li + li {
    margin-left: 40px; /* メニューそれぞれに間隔をあけるため */
}

main {
    height: 100vw; /* スクロールの演出を見れるようにmainに高さを指定 */
}
footer{ 
	z-index:1000;
	position: fixed;
	bottom: 0px;
	/*background-color: rgba(201, 187, 155, 0.5); */
	width: 100%; /* 幅いっぱいを指定 */
	background: #000; /* 背景色にグレーを指定 */
	box-sizing: border-box;
}
footer p{
	padding: 0;
	color: white;
}
.description {
	/*background-image: url("");*/
	background-repeat: no-repeat;
	background-position: center;
	font-size: 16px;
	color: white;
	/*text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;*/
}
.footer ul{
	display: flex;
}
.footer li{
	display: inline-block;
	list-style: none; 
	margin-left: 20px;
	font-size: xxx-large;
}
.center {
	text-align: center;
}
.logo_img{position: absolute;left:0;top:0;width:100px;height:100px;padding: 5px;}
.index_area{position: relative;text-align:center;}
.top-left {position: absolute;bottom: 25px;left: 25px;font-weight: bold;text-shadow: 1px 1px 2px white;}
.index_area img{width: 150px;  height: 150px;  object-fit: cover;}
.nav-wrap {text-align:center;position: relative;width:100%;}
.nav-wrap ul li{list-style:none;float:left;}
.index_area .nav-wrap a{text-decoration: none;color:#333}
.index_area .nav-wrap a:visited{text-decoration: none;color:#333}
.index_area .nav-wrap a:hover{text-decoration: none;color:#333}
.img-radius{border-radius: 15px;}
.waku{border-style:solid;border-color: silver;border-width:1px;padding:15px;border-radius: 15px;}
.itemList{
	width: 480px;
}
.itemList .thumb a {
position: relative;
display: block;
text-decoration: none;
}

.itemList .thumb a:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  //border: 6px solid #E6C612;
  border: 6px solid red;
  width: 60px;
  height: 60px;
}
 
.itemList .thumb a:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  //border-color: transparent transparent transparent #E6C612;
  border-color: transparent transparent transparent red;
  border-width: 15px 0 15px 25px;
}
.moromie{text-align: center;}
.fa-arrow-alt-circle-up {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 50px;
  width: 50px;
  height: 50px;
  font-size: 50px;
  /*color: rgba(0,0,255,0.5);*/
  /*color: white;*/
  cursor: pointer;
  @media screen and (max-width:499px) {
    right: 5px;
    bottom: 5px;
    /*color: rgba(0,0,255,0.2);*/
  }
}

/* pc */
@media screen and (min-width: 769px) {
/*ここにpc用スタイルを記述*/
}
 
/* tablet  */
@media only screen and (min-width: 641px) and (max-width: 960px) {
/*ここにtablet用スタイルを記述*/
.logo_img{display:none;}
}
/* smartPhone */
@media only screen and (max-width: 640px) {
	.pagination {
		font-size: 12px;
		line-height: 12px;
	}
	.pagination span, .pagination a {
		padding: 8px 10px 8px 10px;
	}
	.pagination .current{
		padding: 8px 10px 8px 10px;
	}
	.index_area{
		float:left;
		width:100%;
		padding:0 5px;
	}
	.description {
		display: block;
	}
	.logo_img{display:none;}
	.index_area .catg{bottom: 0px;background-color:transparent;color:yellow;}
	.index_area img{width: 250px;  height: 250px;  object-fit: cover;}
	.index_area p{position: absolute;color:yellow;}
	.catg a{background-color:yellow;
	}
.ranking img { /* 画像のスタイル */
  width: 250px;
  height: 250px;
  object-fit: cover;
}
.ranking p { /* タイトルのスタイル */
  position: absolute;
  bottom: 0;
  width: 250px; /* 画像の横幅に合わせる*/
  padding: 3px;
  color: #fff;
  background: rgba(0,0,0,0.8);
  text-align: center; /* タイトルの位置 */
}
.lists img { /* 画像のスタイル */
  width: 250px;
  height: 250px;
  object-fit: cover;
}
.lists p { /* タイトルのスタイル */
  position: absolute;
  bottom: 0;
  width: 250px; /* 画像の横幅に合わせる*/
  padding: 3px;
  color: #fff;
  background: rgba(0,0,0,0.8);
  text-align: center; /* タイトルの位置 */
}
}
