﻿@charset "UTF-8";

/* header 検索モーダル */
.block-suggest {
  background: rgb(0, 0, 0, 0.6);
  position: absolute;
  top: -100%;
  left: 0px;
  z-index: 1001;
  display: none;
  height: 100lvh;
}
.block-suggest * {
	box-sizing: border-box;
}

.block-suggest-content {
  padding-top: 0px;
  padding-bottom: 48px;
  height: 100%;
  max-height: fit-content;
  position: relative;
  z-index: 2;
}

.block-suggest-scroll {
  height: 100%;
  overflow-y: auto;
  background: #fff;
  position: relative;
  top: -1px;
  padding: 10px 15px 20px;
  border-top: 1px solid #D5D5D5;
  height: auto;
  max-height: calc(100% - 100px);
}

.block-suggest-overlay {
  height: 50vh;
  position: relative;
}

.block-suggest-close {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 8px;
  top: 8px;
}

.block-suggest-close::before,
.block-suggest-close::after {
  content: '';
  width: 35px;
  height: 2px;
  background: #Fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.block-suggest-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.block-suggest-close::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.block-suggest-keyword-box,
.block-suggest-category-box1 {
  margin-bottom: 20px;
}

.block-suggest-keyword-heading {
  font-size: 14px;
  font-weight: bold;
  color: #515151;
  margin-bottom: 10px;
}
.js-suggest-keyword-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
a.block-suggest-keyword-link {
  border: 1px solid #D5D5D5;
  border-radius: 20px;
  padding: 5px 14px;
  text-decoration: none;
}

body.js-block-suggest-open {
  /* position: fixed; */
  /* width: 100%; */
  /* height: 150lvh; */
  overflow-y: hidden;
}
.block-suggest-category-heading {
  font-size: 14px;
  font-weight: bold;
  color: #515151;
  margin-bottom: 10px;
}
.js-suggest-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
a.block-suggest-link {
  width: calc((100% - 16px) / 3);
  color: #333333;
  text-align: center;
  text-decoration: none;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  border: 1px solid #D5D5D5;
  line-height: 17px;
}
a.block-suggest-link.-full {
  width: 100%;
}
a.block-suggest-link-line {
  line-height: 1.4;
}

.block-suggest-brand-heading {
  font-size: 14px;
  font-weight: bold;
  color: #515151;
  margin-bottom: 10px;
}
.js-suggest-brand-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
a.block-suggest-brand-link {
  width: 100%;
  border: 1px solid #D5D5D5;
  padding: 7px 14px;
  text-align: center;
  text-decoration: none;
}

form.search_form_ {
  border: 1px solid #D5D5D5;
  padding: 7px 10px;
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: none;
}
form.search_form_ input.keyword_{
	width: calc(100% - 65px);
	height: 24px;
	margin:0;
	line-height:24px;
	font-size: 14px;
	text-indent: 0;
	border: 0;
	padding: 0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius:0;
	background: transparent;
	box-shadow: none;
}
form.search_form_ input.keyword_:focus-visible {
	outline: none;
}
form.search_form_ .placeholder_ {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #999;
	font-size:12px;
	display: none !important;
}
form.search_form_ .search_button_ {
  width: 60px;
  height: 33px;
  border:none;
  margin: 0;
  font-size: 14px;
  border-radius: 3px;
  display: block;
  position: absolute;
  top: 50%;
  right: 5px;
  background-color: #000000;
  transform: translateY(-50%);
  color: #fff;
}