@charset "UTF-8";
/*リスト
 1:全体
 2:ヘッダ
 3:メイン
 4:フッタ
 5:その他共通パーツ
*/
/*----------------------------------------
 1:全体
----------------------------------------*/
body {
  font-family: "Inter", "sans-serif";
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;	
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
	body{
		font-size: 2.5vw;
	}
}
/*リンク*/

a {
	color:#000;
	display: block;
}
a:visited {
	color:#000;
	display: block;
}
a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: #000;
}
a:active {
	color:#000;
}
ul,li {
	list-style: none;
}

/*画像*/

img {
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
	vertical-align: top;
	display: block;
	height: auto;
}

@media (max-width: 768px){
	img{
		max-width: 100%;
		width: 100%;
		height: auto;
	}
}

/*common layout*/
.container {
	*zoom: 1;
	margin: 0 auto;
	width: 100vw;
}
@media (min-width: 769px) and (max-width:1024px) {
	.container {
		width: 100vw;
		min-width: 100%;
	}
}
@media (max-width: 768px) {
	.container {
		width: 100vw;
		min-width: 100%;
	}
}


@media (min-width: 769px) and (max-width:1024px) {
	.contents{
		min-width: 100%;
	}
}
@media (max-width: 768px){
	.contents{
		min-width: 100%;
	}
}
@-ms-viewport {
	width: device-width;
}
h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, figure {
	margin: 0;
}
ul, ol, figure {
	padding: 0;
}
a {
	text-decoration: none;
}

h2.collection_title {
	font-family: "Inter", "sans-serif";
	font-size: 58px;
	font-weight: 400;
	margin-bottom: 18px;
	padding-left: 0;
	line-height: 1.2;
	letter-spacing: 0px;
	white-space: nowrap;
}
.collection, .lineup, .ranking, .styling, .userpost, .live, .instagram, .category, .information {
   margin: auto;
   padding: 0 0 110px;
   width: 1115px;
}
/*メインビジュアル*/
.top__mainvisual {
	width: 100vw;
	height: auto;
	aspect-ratio: 16 / 9;
	position: relative;
}
.top__mainvisual__area {
	position: relative;
    z-index: 1;
}
.top__mainvisual__image {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: -1;
	width: 100%;
	max-width: 2560px;
	height: 100dvh;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.kv-pc {
	display: block;
}
.kv-sp {
	display: none;
}
.kv-pc img,
.kv-sp img {
    opacity: 0;
    transform: scale(1.1); /* 初期状態を少し拡大 */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* フェードイン + 拡大 */
}

/* 表示時のアニメーション */
.kv-pc img.show,
.kv-sp img.show {
    opacity: 1;
    transform: scale(1); /* 元のサイズに戻す */
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute; /* メインビジュアルの下部に配置 */
    bottom: 80px; /* 余白を調整 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    z-index: 10; /* 他の要素より前面に */
}

.scroll-indicator p {
    margin: 0;
    position: relative;
    z-index: 1; /* テキストを最前面に配置 */
}

.scroll-indicator::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 110px;
    background-color: #fff;
    z-index: 0;
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        top: 20px;
        height: 0;
        opacity: 0;
    }
    30% {
        height: 50px;
        opacity: 1;
    }
    100% {
        top: 110px;
        height: 0;
        opacity: 0;
    }
}
.img_none {
	opacity: 100;
}
.img_none.opacity_0 {
	opacity: 0;
}

.contents_block {
    background: #fff;
	position: relative;
	z-index: 9;
}
/*----------------------------------------
 3:メイン
----------------------------------------*/
/*商品画像*/
ul.top__itemlist {
    display: flex;
	flex-wrap: wrap;
	font-size: 0;
	justify-content: flex-start;
	align-items: stretch;
}
li.top__itemlist__item {
  font-weight: 300;
  width: calc(20% - 10px);
  max-width: 222.6px;
  height: auto;
  flex: 1 1 calc(20% - 10px);
  box-sizing: border-box;
  margin: 0;
  text-align: left;
  padding-bottom: 44px;
  font-size: 16px;
  line-height: 1.62em;
  letter-spacing: 0.015em;
  position: relative; /* 必須 */
  overflow: hidden; /* はみ出しを制限 */
  font-family: "Inter";	
}

li.top__itemlist__item img {
  display: block;
  width: 100%; /* 親要素の幅に合わせる */
  height: auto; /* アスペクト比を維持 */
  aspect-ratio: 5 / 6; /* 5:6の比率を指定 */
  object-fit: cover; /* 親要素内に収める */
  transition: transform 0.3s ease-out;
  -webkit-transform: scale(1); /* 初期状態 */
          transform: scale(1);
}

li.top__itemlist__item:hover img {
  -webkit-transform: scale(1.05); /* 拡大 */
          transform: scale(1.05);
}
.hover__img {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}


.item-name {
    margin: 10px 0 0 20px;
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
	font-family: "Inter";
}
.lineup li.top__itemlist__item.product {
    display: none;
}
.lineup li.top__itemlist__item.product.visible {
    display: block;
}
@media (min-width: 769px) {
.lineup li.top__itemlist__item:nth-child(n+11) {
    display: none; 
}
}
.item-price {
	margin-left: 20px;
}
.item-price__sale {
	margin-left: 20px;
    color: #9D0000;
}
span.per {
	font-size: 13px;
}
.top__itemlist__dateArea {
    display: flex;
	margin: 10px 0 -10px 20px;
}
.top__itemlist__mark {
    margin-right: 8px;
}

/*スライダー*/
.banner-section_slide {
    padding: 120px 0 110px;
	width: 100vw;
}
.banner-section {
    padding: 0 0 110px;
	width: 100vw;
}

.banner-section_zoom  {
    position: relative;
	padding-bottom: 110px;
}
.banner-section_zoom .slider {
    height: 53vw;
    margin-inline: auto;
    overflow: hidden; /* 画像がはみ出ないようにする */
    width: 100vw;
}
.banner-section_zoom .slider img {
    width: 100%; /* 画像の幅をスライダーに合わせる */
}
@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.45); /* 拡大率 */
    }
}
.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}
.banner-text {
    position: absolute;
    top: 36%; /* 垂直方向中央 */
    left: 10%; /* 水平方向中央 */
    transform: translateY(-36%); 
    text-align: left; /* テキストの中央揃え */
    color: #fff; /* テキスト色 */
    z-index: 10; /* スライダーよりも上に表示 */
}
.banner-text p {
    font-size: 72px; 
    margin: 0;
	font-weight: 400;
	line-height: 1;
}

.banner-text span {
    font-size: 42px;
    margin: 0;
    font-weight: 100;
	letter-spacing: 0.06em;
	font-family: "Inter";
}
.pc_img {
    display: block; /* デフォルトでPC用画像を表示 */
}
.sp_img {
    display: none; /* デフォルトでSP用画像を非表示 */
}

@media screen and (max-width: 768px) {
    .pc_img {
        display: none; /* モバイルではPC用画像を非表示 */
    }
    .sp_img {
        display: block; /* モバイルではSP用画像を表示 */
    }
.banner-section_zoom .slider {
    height: 88vw;
    margin-inline: auto;
    overflow: hidden; /* 画像がはみ出ないようにする */
    width: 100vw;
}
	.banner-text p {
    font-size: 24px; 
    margin: 0;
	font-weight: 400;
	line-height: 1;
}

.banner-text span {
    font-size: 18px;
    margin: 0;
    font-weight: 100;
	letter-spacing: 0.01em;
}
.banner-text {
    position: absolute;
    top: 50%; /* 垂直方向中央 */
    left: 8%; /* 水平方向中央 */
    transform: translateY(-97%); 
    text-align: left; /* テキストの中央揃え */
    color: #fff; /* テキスト色 */
    z-index: 10; /* スライダーよりも上に表示 */
}
.banner-section_zoom  {
    position: relative;
	padding-bottom: 55px;
}	
}



/*カテゴリー*/
.category-section {
    margin-bottom: 40px;
}
.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px 20px;
    margin-top: 85px;
	width: 742px;
}
.category_list {
	width: 233px;
    border-bottom: 1px solid #000;
    padding-bottom: 16px;
	font-weight: 300;
	position: relative;
	font-family: "Inter";
	font-size: 16px;
}
.category_list a {
	font-family: "Inter";
	font-weight: 300;
}
.category, .information {
    display: flex;
	flex-wrap: nowrap;
    justify-content: space-between;
}
.btn__more {
   display: flex;
   justify-content: flex-end;
   max-width: 1115px;
  font-size: 16px;
  padding-right: 0;
}
.btn__more a {
   position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    line-height: 1;
    text-align: left;
    border-bottom: 1px solid #000;
	padding: 0 3px 7px 0;
	width: 194px;
}
.btn__more a::after,
.category_list a::after {
  position: absolute;
  right: 0;
  top: 16%; /* 元のスタイルを維持 */
  transform: translateY(-50%); /* 垂直方向の位置調整を維持 */
  width: 10px;
  height: 10px;
  content: ">";
  transition: transform 0.3s ease; /* transformのスムーズなアニメーション */
}

.btn__more a:hover::after, 
.category_list a:hover::after {
  transform: translateY(-50%) translateX(5px); /* Y方向を維持しつつ、X方向だけ動かす */
}

.category_list a　{
  display: block;
}
.category_list a:hover　{
  color: #000;
}

/* INFORMATION */
.information-list {
    margin-top: 85px;
	width: 742px;
}
.info-item {
    display: flex;
	flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: 1px solid #000;
    padding: 25px 0;
}

.info-item p {
    font-size: 16px;
    margin: 0;
}
.info-item span {
    font-size: 14px;
	font-weight: 300;
	font-family: "Inter";
}
.info-item a:hover {
    opacity: 0.4;
}

/* ranking */
.ranking {
	counter-reset: ranking;
}
.top__ranking__list > li::before {
  content: counter(ranking);
  counter-increment: ranking;
  display: inline-block;
  font-size: 24px;
  font-family: "Josefin Sans";
  font-weight: 200;
  color: #fff;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 9;	
}
/*coordinate*/


/*snap*/
.top__snap{
}

.top__snap__container{
	width: 100%;
}

.top__snap__list{
	list-style: none;
	font-size: 0;
	display: flex;
}
.top__snap__item{
	display: inline-block;
	font-size: 1rem;
	width: 25%;
	padding-right: 12px;
}
.top__snap__item:nth-child(4n){
	padding-right: 0;
}
.top__snap__item img{
	width: 100%;
}
@media (min-width: 769px){
	.top__snap__title{
	}
	.top__snap__item:nth-child(n+5){
		display: none;
	}
	.top__snap__item:nth-last-child(-n+4){
		padding-bottom: 0;
	}
}
@media (max-width: 768px){
	
	.top__snap{
	}
	.top__snap__list{
		flex-wrap: wrap;
	}
	.top__snap__item{
		width: 26%;
		padding: 0vw 3.3% 3.5vw 4%;
	}
	.top__snap__item:nth-last-child(-n+3){
		padding-bottom: 0;
	}
	.top__snap__item:nth-child(4n){
		padding-right: 3.3%;
	}
}

/*----------------------------------------
 4:フッター
----------------------------------------*/
/*----------------------------------------
 ex:パンくずリスト　
----------------------------------------*/
.breadcrumb_box {
	width: 100%;
	font-size: 10px;
	border-bottom: black 1px solid;
	font-weight: 300;
	overflow: hidden;
	background: #fff;
	position: relative;
	z-index: 2;
}
.breadcrumb_box .container{
	padding-top:15px;
	max-width: 1115px;
	margin: auto;
}
.breadcrumb_box .container ol{
	padding-left: 20px;
	display: flex;
}

.breadcrumb {
	padding-left:0;
	margin-left:0;
}

.breadcrumb li{
	display: contents;
	list-style: none;
}

.breadcrumb li:after {/* >を表示*/
	content: '>';
	padding: 0 3px;
}

.breadcrumb li:last-child:after {
	content: '';
	padding: 0;
}

.breadcrumb li a {
	text-decoration: none;
}
@media (max-width: 768px) {
	.breadcrumb_box{
		line-height: 1.4em;
		margin-bottom: 0;
	}
	.breadcrumb_box .container{
		padding: 1.5vw 0;
	}
	.breadcrumb{
		padding-left: 0;
		padding-left: 4.5vw;
	}
	.breadcrumb li a{
		display: inline-block;
	}
}
.breadcrumb li a:hover {
	text-decoration: underline;
}

/*フッター*/
#footer {
	background: #fff;
	z-index: 2;
    position: relative;	
}
.footer {
	display: block;
	min-width: 1115px;
	width: 100%;
}
.footer__main {
	padding-top: 87px;
	font-size: 10px;
}
.footer-logo__area {
	display: flex;
	flex-wrap: wrap;
	width: 300px;
	justify-content: center;
	padding-bottom: 97px;
	margin: auto;
	font-family: "Noto Sans JP", Meiryo, "sans-serif";
}
.logo_mark {
	width: 35px;
	margin-bottom: 34px;
}
.logo_type {
	width: 283px;
	margin-bottom: 30px;
}

.footer__main__info {
	font-family: "Noto Sans JP", Meiryo, "sans-serif";
	font-weight: 300;
}

.footer__main__info ul {
	list-style: none;
	display: flex;
	justify-content: center;
	text-decoration: underline;
}

.footer__main__info li,
.footer__main__about__description {
	line-height: 2em;
	padding: 0 10px;
}

.footer__main__about .footer__main__about__description {
	padding-bottom: 35px;
}
.footer__copyright {
	padding: 30px 0 65px;
	text-align: center;
	letter-spacing: 0.05em;
	font-weight: 300;
}
.fs-l-main {
  display: none;
}


/*SP用*/
@media (max-width: 768px) {
h2.collection_title {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 8px;
	padding-left: 20px;
}
.collection, .lineup, .ranking, .styling, .userpost, .live, .instagram, .category, .information {
   margin: auto;
   overflow: hidden;
   padding: 0 0 55px;
   width: 100vw;
}
/*メインビジュアル*/
.top__mainvisual {
	width: 100vw;
	height: auto;
	aspect-ratio: 9 / 16;
	position: relative;
}
.top__mainvisual__area {
	position: relative;
    z-index: 1;
}
.top__mainvisual__image {
	position: fixed;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    max-width: 1080px;
    height: 100dvh;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.kv-pc {
	display: none;
}
.kv-sp {
	display: block;
}

/*----------------------------------------
 3:メイン
----------------------------------------*/
/*商品画像*/
ul.top__itemlist {
    display: flex;
	flex-wrap: wrap;
	font-size: 0;
	align-items: stretch;
}
li.top__itemlist__item {
	font-weight: 300;
	width: calc(50% - 10px);
	max-width: 50%;
	height: auto;
	flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
    margin: 0;
    text-align: left;
	padding-bottom: 3.68em;
	font-size: 12px;
	line-height: 1.58em;
	position: relative;
	font-family: "Inter";
}
.lineup li.top__itemlist__item:nth-child(n+11) {
    display: none; 
}	
.item-name {
    margin: 0.93em 0 0 1.25em;
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
	padding-right: 1.25em;
	font-family: "Inter";
}
.item-price {
	margin-left: 1.25em;
}
.item-price__sale {
	margin-left: 1.25em;
    color: #9D0000;
}
span.per {
	font-size: 12px;
}
.top__itemlist__dateArea {
    display: flex;
	margin: 0.93em 0 -0.93em 1.25em;
}
.top__itemlist__mark {
    margin-right: 5px;
}

/*スライダー*/
.banner-section_slide, .banner-section {
    padding: 60px 0 55px;
	width: 100vw;
}
.banner-section {
    padding: 0 0 55px;
	width: 100vw;
}
/*カテゴリー*/
.category-section {
    margin-bottom: 40px;
}
.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    margin-top: 0;
	width: 100%;
	padding: 0 20px;
}
.category_list {
	width: auto;
    border-bottom: 1px solid #000;
    padding-bottom: 0.62em;
	font-weight: 300;
	position: relative;
	font-size: 12px;
	font-family: "Inter";
}
.category_list a {
	font-family: "Inter";
	font-weight: 300;
}
.category, .information {
    display: flex;
	flex-wrap: wrap;
    justify-content: flex-start;
}

.btn__more {
   display: flex;
   justify-content: flex-end;
   max-width: 100%;
   padding-right: 20px;
   font-size: 16px;
	font-weight: 400;
}
.btn__more a {
   position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    line-height: 1;
    text-align: left;
    border-bottom: 1px solid #000;
	padding: 0 3px 7px 0;
	width: 134px;
}
.btn__more a::after, .category_list a::after {
    width: 10px;
    height: 10px;
    content: ">";
}

/* INFORMATION */
.information-list {
    margin-top: 0;
	width: 100%;
	padding: 0 20px;
}
.info-item {
    display: flex;
	flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: 1px solid #000;
    padding: 16px 0;
}

.info-item p {
    font-size: 12px;
    margin: 0;
}
.info-item span {
    font-size: 10px;
	font-weight: 300;
	font-family: "Inter";
}

/* ranking */
.ranking {
	counter-reset: ranking;
}
.top__ranking__list > li::before {
  content: counter(ranking);
  counter-increment: ranking;
  display: block;
  font-size: 2em;
  color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 1.25em;
  left: 1.25em;
  z-index: 9;
}
.footer {
	display: block;
	min-width: 640px;
	width: 100%;
	z-index: 1;
    position: relative;
}
.footer__main {
	padding-top: 87px;
	font-size: 10px;
}
.footer-logo__area {
	display: flex;
	flex-wrap: wrap;
	width: 65%;
	justify-content: center;
	padding-bottom: 117px;
	margin: auto;
}
.logo_mark {
	width: 35px;
	margin-bottom: 34px;
}
.logo_type {
	width: 283px;
	margin-bottom: 30px;
}
.footer__main__info {
	font-family: "Noto Sans JP", Meiryo, "sans-serif";
	font-weight: 300;
	font-size: 2vw;
}	
	
}

/*google adwords崩れ防止*/

iframe[name="google_conversion_frame"]{
	position: absolute;
	top: 0;
}
iframe[title="sprocket control"]{
	position: absolute;
	top: 0;
}

.header_fixed {
    position: fixed;
	z-index: 1000;
    width: 100%;
	height: 68px;
    top: 0;
	transition: 0.2s all;
}

.header_area{
	width: 100%;
	height: 68px;
    background:rgba(255,255,255,1);
	margin: 0 auto;
    position: relative;
    z-index: 2;
}
.header_area_inner{
	width: 980px;
	margin: 0 auto;
	position: relative;
}
.header_logo{
	width: 236px;
	margin: 0 auto;
	padding: 28px 0 0;
}
.header_logo a{
	padding: 0;
	margin: 0;
	display: block;
	line-height: 12px;
}
.header_logo img{
	width: 100%;
}
.header_cart{
	position: absolute;
	top: 25px;
    right: 0;
    width: 24px;
}
.header_search {
	position: absolute;
	top: 26px;
    right: 47px;
    width: 22px;
}
.header_cart img, .header_search img{
	width: 100%;
}
.header_cart .fs-p-cartItemNumber {
    background: #ef0707;
	font-size: 0.8rem;
	line-height: 1.4;
	top: -5px;
    right: -5px;
    min-width: 1.8em;
    text-align: center;
}
@media screen and (max-width: 767px) {
	.header_fixed {
		height: 60px;
		width: 100vw;
	}
	.header_logo{
		width: 150px;
		padding: 24px 0 0;
	}
	.header_cart {
		top: 20px;
		right: 20px;
		width: 17px;
	}	
	.header_search {
		top: 22px;
    right: 54px;
    width: 15px
	}
	.header_cart .fs-p-cartItemNumber {
		top: -7px;
		right: -6px;
	}
	.header_area{
		width: 100vw;
		height: 60px;
		padding: 0px 0 0px;
	}
	.header_area_inner{
		width: 100%;
	}
}

	
.nav_hamburger .fs-pt-menu a{
	text-align: center;
	display: block;
}
.nav_hamburger .fs-body-my-top .fs-p-accountInfo {
  margin-bottom: 8px !important;
}
.nav_hamburger .nav_header{
  padding: 0px 0 10px;
}
.nav_hamburger .nav_header ul{
  display: flex;
  align-items: center;
  justify-content:space-between;
}
.nav_hamburger .nav_header li{
  list-style-type: none;
}
.nav_hamburger .nav_header li a{
  text-decoration: none;
  color: #EF0507;
}

#navArea{
	position: relative;
  z-index: 1;
	margin: 0 auto;
}
/*============
nav_hamburger
=============*/
.nav_hamburger {
  display: block;
  position: fixed;
  top: -1000px;
  left: calc(50% - 490px);
  width: 430px;
  max-height: calc(100vh - 68px);
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: .5s;
  z-index: 3;
}
.open .nav_hamburger {
  top: 68px;
}
.nav_hamburger .inner {
  padding: 0 20px 40px 20px;
}
.nav_hamburger .inner .nav_hamburger_underbtn ul,
.nav_hamburger .inner .s_07 ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav_hamburger .inner .nav_hamburger_underbtn ul li,
.nav_hamburger .inner .s_07 ul li{
  position: relative;
  margin: 0;
}
.nav_hamburger .inner .nav_hamburger_underbtn ul li a,
.nav_hamburger .inner .s_07 ul li a{
  display: block;
  font-size: 14px;
  padding: 0 1em 8px;
  text-decoration: none;
  transition-duration: 0.2s;
	position: relative;
}
@media screen and (max-width: 767px) {
	.nav_hamburger {
		left: 0%;
		width: 100vw;
	}
	.open .nav_hamburger {
    top: 60px;
		right: auto;
		left: 0;
	}
}

/*検索ボックス*/
.header__searchbox {
    display: none;
    width: 360px;
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 17px;
    z-index: 101;
	font-family: "Noto Sans JP", Meiryo, "sans-serif";
	letter-spacing: 0.015em;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}
.header__searchbox h2 {
	line-height: 1.2;
}

#search_box_flag{
	display: none;
}
#search_box_popup{
	opacity: 0;
	z-index: 0;
	transition: 0.5s;
	display: none;
}
#search_box_flag:checked + #search_box_popup{
	display: block;
	width: 100vw;
	height: 100vh;
	background: #000000aa;
	position: fixed;
	top: 0;
	z-index: 9999;
	opacity: 1;
}
.header__searchbox.is--opened {
    display: block;
}
.header__searchbox__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
	font-family: "Inter", "sans-serif";
    letter-spacing: 0.15em;
    font-weight: 300;
    padding-bottom: 33px;
}
.header__searchbox__title figure {
    width: 15px;
    height: auto;
    margin-right: 8px;
}
.header__searchbox input[type="text"],
.header__searchbox input[type="number"],
.header__searchbox input[type="checkbox"],
.header__searchbox select,
.header__searchbox__submit__item button,
.header__searchbox__submit__item input[type="reset"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}
.header__searchbox input[type="text"],
.header__searchbox select {
    border: #969696 1px solid;
    width: 100%;
    line-height: 2em;
    padding: 0 5px;
    font-size: 0.9em;
    height: 28px;
    background: #fff;
	color: #000;
}
.header__searchbox__detail {
    display: flex;
    align-items: center;
    padding-top: 21px;
}
.header__searchbox__detail__title {
    width: calc(100% - 205px);
}
.header__searchbox__detail__input {
    width: 205px;
    display: flex;
}
.header__searchbox__input input[type="text"] {
    height: 44px;
    padding-right: 50px;
    font-size: 16px;
    background: #fff;
	box-sizing: border-box;
}
.header__serachbox__detail__deco {
    position: relative;
    width: 100%;
}
.header__searchbox .header__serachbox__detail__deco:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    right: 8px;
    top: 43%;
    transform: translateY(-50%) rotate(135deg);
}
.header__searchbox__detail[data-type="price"] span {
    padding: 0 2px;
    height: 28px;
    white-space: nowrap;
    min-width: 28px;
}
.header__searchbox__detail[data-type="price"] span:last-child {
    padding-right: 0;
}
.header__searchbox__detail[data-type="price"] span.header__searchbox__detail__yen {
    position: relative;
    bottom: -6px;
}
.header__searchbox__detail__input label {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.header__searchbox__detail__input label:last-child {
    padding-bottom: 0;
}
.header__searchbox__detail__input input[type="checkbox"] {
    border: #969696 1px solid;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background: #fff;
}
.header__searchbox__detail__input input[type="checkbox"]:checked {
    background-color: #5a4a43;
    border-color: #5a4a43;
}
.header__searchbox__detail[data-type="price"] .header__searchbox__detail__input {
    align-items: baseline;
}
.header__searchbox__detail[data-type="else"] .header__searchbox__detail__input,
.header__searchbox__detail[data-type="zaiko"] .header__searchbox__detail__input {
    flex-direction: column;
}
.header__searchbox__submit {
    padding-top: 48px;
    font-size: 0.9em;
}
.header__searchbox__submit__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__searchbox__submit__item button {
    background-color: #5a4a43;
    border: #5a4a43 1px solid;
    color: #ffffff;
    width: 157px;
    height: 36px;
    background-image: url(https://shirai.itembox.design/item/common/primascherrer/top/img/btn_search.svg);
    background-repeat: no-repeat;
    background-size: 14px 11px;
    background-position: 5px center;
    padding-left: 15px;
}
.header__searchbox__submit__item input[type="reset"] {
    border: #969696 1px solid;
    color: #969696;
    width: 157px;
    height: 36px;
}
.header__searchbox__closebtn {
    display: block;
    height: 15px;
    width: 15px;
    font-size: 0;
    position: absolute;
    top: 47px;
    right: 20px;
}
.header__searchbox__closebtn label{
	width: 30px;
	height: 30px;
	display: block;
	margin-top: -30px;
}
.header__searchbox__closebtn label:before,
.header__searchbox__closebtn label:after {
    content: "";
    height: 1px;
    width: 24px;
    display: block;
    position: relative;
	background: #000;
}

.header__searchbox__closebtn label:before {
    transform: rotate(45deg);
    top: 14px;
}
.header__searchbox__closebtn label:after {
    transform: rotate(-45deg);
    top: 13px;
}
.icon_search label {
    background-image: url(../images/header/search.png);
}
.header_search li {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
}
.header_search li .fs-p-cartItemNumber{
	right: -4px;
}
.header_search li a,
.header_search li label {
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-size: contain;
    display: block;
}
.header_search li.icon_search label {
    background-image: url(../images/header/search.png);
}
.header_search li.icon_cart{
	position: relative;
}
.header__searchbox__input {
	position: relative;
}
.header__searchbox__input img {
	position: absolute;
    right: 10px;
    top: 9px;
    width: 23px;
}
.nav_hamburger .header__searchbox {
	display: block;
	position: relative;
	top: 0;
	transform: none;
	left: 0;
	width: 100%;
	background-color: #f1f0ee;
	padding: 14px;
	box-sizing: border-box;
	margin-top: 20px;
}

.header__searchbox__submit__item button {
    color: #fff;
    width: 72%;
    height: 40px;
    padding-left: 15px;
    background-color: #323333;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: 10px center;
}
.header__searchbox__detail__input input[type="checkbox"]:checked {
	background-color: #323333;
	border-color: #323333;
}
.header__searchbox__submit__item input[type="reset"] {
    width: 25%;
    height: 40px;
	text-align: center;
}


/*PCのみ*/
@media screen and (min-width:768px) {
	.header__searchbox__title figure {
		margin-left: -5px;
	}
}

@media (max-width: 768px) {
    .header__searchbox__title {
        font-size: calc(100vw / 770 * 23);
        padding-bottom: calc(100vw / 770 * 70);
    }
    .header__searchbox__title figure {
        width: calc(100vw / 770 * 30);
    }
    .header__searchbox__input input[type="text"] {
        height: calc(100vw / 770 * 88);
        padding-right: 5px;
        background-repeat: no-repeat;
        background-position: calc(100% - 100vw / 770 * 20) center;
        background-size: calc(100vw / 770 * 50) calc(100vw / 770 * 50);
        font-size: calc(100vw / 770 * 30);
    }	
    .header__searchbox__input input[type="text"] {
        height: calc(100vw / 770 * 88);
        padding-right: 5px;
        background-repeat: no-repeat;
        background-position: calc(100% - 100vw / 770 * 20) center;
        background-size: calc(100vw / 770 * 50) calc(100vw / 770 * 50);
        font-size: calc(100vw / 770 * 30);
    }
    .header__searchbox__detail {
        padding-top: calc(100vw / 770 * 44);
    }
    .header__searchbox .header__serachbox__detail__deco:after {
        content: "";
        display: block;
        position: absolute;
        width: 1.8vw;
        height: 1.8vw;
        right: 2.5vw;
    }
    .header__searchbox__closebtn {
        width: calc(100vw / 770 * 40);
        height: calc(100vw / 770 * 40);
        top: calc(100vw / 770 * 20);
        right: calc(100vw / 770 * 20);
    }
    .header__searchbox__closebtn label:before,
    .header__searchbox__closebtn label:after {
        width: calc(100vw / 770 * 48);
    }
    .header__searchbox__closebtn label:before {
        top: calc(100vw / 770 * 14);
    }
    .header__searchbox__closebtn label:after {
        top: calc(100vw / 770 * -4);
    }

    .header__searchbox {
		width: calc(100vw / 770 * 650);
        padding: calc(100vw / 770 * 40) calc(100vw / 770 * 33);
        font-size: 12px;
    }
    .header__searchbox__detail .header__searchbox input[type="text"],
    .header__searchbox__detail .header__searchbox select {
        font-size: 12px;
    }
    .header__searchbox__input input[type="text"] {
        height: calc(100vw / 770 * 88);
        padding-right: 5px;
        background-repeat: no-repeat;
        background-position: calc(100% - 100vw / 770 * 20) center;
        background-size: calc(100vw / 770 * 50) calc(100vw / 770 * 50);
        font-size: 16px;
    }
    .header__searchbox__detail .header__searchbox select,
    .header__searchbox__detail .header__searchbox input[type="text"] {
        height: calc(100vw / 770 *56);
    }
    .header__searchbox .header__serachbox__detail__deco select {
        padding-right: 5vw;
    }

    .header__searchbox__detail dt {
        font-size: 12px;
        width: 80px;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }
    .header__searchbox__detail dd {
        width: calc(100vw / 770 * 407);
    }
    .header__searchbox__detail[data-type="price"] span {
        padding: 0 1vw;
    }
    .header__searchbox__detail[data-type="price"] span:last-child {
        padding-right: 0;
    }
    .header__searchbox__detail[data-type="price"] span.header__searchbox__detail__yen {
        position: relative;
        bottom: -1.5vw;
    }
    .header__searchbox__detail__input label {
        padding-bottom: calc(100vw / 770 * 22);
    }
    .header__searchbox__detail__input input[type="checkbox"] {
        width: calc(100vw / 770 * 30);
        height: calc(100vw / 770 * 30);
        margin-right: calc(100vw / 770 * 25);
    }
    .header__searchbox__submit__item button,
    .header__searchbox__submit__item input[type="reset"] {
        width: calc(100vw / 770 * 314);
        height: calc(100vw / 770 * 75);
        font-size: 12px;
    }
    .header__searchbox__submit__item button {
        background-size: calc(100vw / 770 * 27) calc(100vw / 770 * 24);
        background-position: calc(100vw / 770 * 20) center;
    }
}

@media (max-width: 767px) {
	.search_area_leftnav input[type="text"], .header__searchbox__input input[type="text"] {
		font-size: 4vw;
	}
	.header__searchbox__closebtn {
		top: 56px;
	}
	.header__searchbox__closebtn label:before {
		top: -1px;
	}
	.header__searchbox__submit__item input[type="reset"] {
		font-size: 2.4vw;
	}
	.search_area_leftnav input[type="text"],
	.header__searchbox__input input[type="text"] {
		font-size: 4vw;
	}
	.header__searchbox__title figure {
		margin-left: 0;
	}
}


/*============
.toggle_btn
=============*/
	
.toggle_btn {
  display: block;
  position: absolute;
	top: 28px;
	left: 0px;
  width: 23px;
  height: 23px;
  transition: all .5s;
  cursor: pointer;
  z-index: 1100;
}
.toggle_btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 23px;
  height: 1px;
  background-color: #000000;
  transition: all .0s;
}
.open .toggle_btn {
  right: 300px;
}

.toggle_btn span:nth-child(1) {
  top: 0px;
}
.toggle_btn span:nth-child(2) {
  top: 9px;
}
.toggle_btn span:nth-child(3) {
  top: 18px;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
  width: 30px;
  top: -2px;
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
  width: 30px;
}
@media screen and (max-width: 767px) {
	.toggle_btn {
	  top: 23px;
	  left: 20px;
	}
	.toggle_btn span {
		left: 0;
	  right: auto;
	}
	.toggle_btn span:nth-child(1) {
	  top: 0px;
	  width: 16px;
	}
	.toggle_btn span:nth-child(2) {
	  top: 7px;
	  width: 16px;
	}
	.toggle_btn span:nth-child(3) {
	  top: 14px;
	  width: 16px;
	}
	.open .toggle_btn span:nth-child(1) {
    top: -3px;
    width: 16px;
	}
	.open .toggle_btn span:nth-child(3) {
    width: 16px;
    top: 17px;
	}
  .open .toggle_btn {
    left: 20px;
  }
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/*=======　閉じるための×ボタン　========*/
.close-btn {
  position: absolute;
  top: -60px;
  right: 65px;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #fff;
}
  
.close-btn span {
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 0px;
  background-color: #000;
}

/*マーク*/
.close-btn span:nth-of-type(1) {
  top: 21px;
  left: 16px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}
.close-btn span:nth-of-type(2) {
  top: 33px;
  left: 16px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}
@media screen and (max-width: 767px) {
	.close-btn {
	  top: -56px;
	  right: 48px;
	}
}
/*visumo*/
.vsm-tile .ecbn-selection-page-wrapper li.ecbn-selection-item, .vsm-tile-goods .ecbn-selection-page-wrapper li.ecbn-selection-item { padding: 0;}
.hacobune-app-container.hacobune-app-container-no-font { padding: 0;}
.hacobune-card-slider-list-item[data-v-472ec266] { padding: 0;}
