/* Nomarl */
@font-face {
  font-family: "Line Seed";
  src: url("../css/font/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;  
}
@font-face {
  font-family: "Line Seed";
  src: url("../css/font/LINESeedJP_OTF_Th.woff2") format("woff2");
  font-weight: thin;
  font-style: normal;  
}
@font-face {
  font-family: "Line Seed";
  src: url("../css/font/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;  
}
body {
  font-family: 'Line Seed', sans-serif;
  font-weight: normal;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
}

/* Loading */
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: white;
	text-align:center;
	color:#fff;
	border: 10px solid olivedrab;
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img {
	width:128px;
}
.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);
  }
}
/* Site */

ul {
	list-style: none;
	max-width: 300px;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0 10px;
	cursor: pointer;
}
header {
	border: 10px solid white;
	width: 100%;
	height: 100svh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
header.bg1 {
	background-image: url("../img/full.JPG");
}
header.bg2 {
	background-image: url("../img/top2.jpeg");
}
/*
header .bg3 {
	background-image: url("../img/full2.JPG");
}
*/
header .warp {
	position: relative;
	padding: 10px;
}
header .title {
	color: white;
	font-size: 42px;
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
}
header .title:nth-child(1){
	opacity: 0.8;
}
header .list-num {
	background-color: rgba(255,255,255,.8);
	color: olivedrab;
	display: inline;
	padding: 10px;
	border-radius: 10px;
}
header .description {
	color: white;
	text-align: center;
	width: 100%;
}
@media screen and (max-width: 960px){
body {
	padding: 0;
}
header .title{
	width: 100%;
}
}

header .filter {
	display: block;
	position: absolute;
	/* text-align: center; */
	z-index: 2;
	bottom: 8%;
	width: 100%;
	
}

header .search-box {
	height: 70px;
	border: 3px solid olivedrab;
	border-radius: 100vh;
	font-weight: bold;
	width: 35%;
	bottom: 8%;
	padding: 0 30px;
	/* position: absolute; */
}
::placeholder {
	color: rgba(107,142,35,.7);
	text-align: center;
}
header .search-btn {
  color: white;
	font-weight: bold;
  background-color: olivedrab;
	width: 100px;
	padding: 10px;
	border: 3px solid white;
	border-radius: 100vh;
}

@media screen and (max-width: 960px){
	header .search-box {
		height: 60px;
		width: 90%;
	}
}

main {
	padding : 20px auto;
}
main #container{
	margin: 0 auto;
	width: 980px;
}
@media screen and (max-width: 960px){
main #container{
	width: 100%;
}
}

main .c-count {
	text-align: center;
	color: rgba(0,0,0,.54);
	font-size: 38px;
}

.s-menu {
	display: flex;
	width: 960px;
	max-width: 960px;
	justify-content: space-around;	
}


.s-menu .noselect{
	color: gray;
}

.flowers-list {
	width: 960px;
	max-width: 960px;
	margin: 10px auto;
	padding: 0 10px;
}

.flowers-list-item {
	display: grid;
	grid-gap: 5px;
	grid-template-columns: repeat(auto-fit, 200px);
	justify-content: space-around;

}
@media screen and (max-width: 960px){
	.s-menu {
		width: 100%;
		max-width: 100%;
	}
	.flowers-list {
		width: 100%;
		max-width: 100%;
	}
	.flowers-list h2 {

	}
	.flowers-list-item {
		grid-template-columns: repeat(auto-fit, 170px);
	}

}

.card {
	border: 0 !important;
	border-radius: 0 !important;
}

.card-body {
	padding: 0.5rem 0 !important;
	font-size: 15px;
}
.card-body h5{
	font-size: 16px;		
}

.card-img-top {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}
.card-title {
	margin-bottom: 0 !important;
	color: olivedrab;
	font-weight: bold;
}
.card-family {
	text-align: right;
	color: #4d4d4d;
	/* font-size: 14px; */
	font-weight: bold;
}
.card-place {
	text-align: right;
	color: #666;
	font-size: 14px;
	font-weight: bold;
}

.f-family{
	color: #333;
}
footer {
	width: 100%;
	height: 50px;
	/* text-align: center; */
}

footer div{
	width: 80%;
	margin: 0 auto;
}

h2 {
	font-size: 58px;
	font-weight: bold;
	text-align: center;
	color: olivedrab;
	margin: 20px auto;
}
.arrowup {
	position:fixed;
	bottom: 20px;
	right: 15px;
	width: 64px;
}
