@charset "utf-8";
/* CSS Document */

html{
	font-size: 100%;
}

body{
	position: relative;
	margin:3.375rem 0 0;
	font-size: 75%;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
	font-weight: 500;
	line-height: 1.8;
	font-feature-settings: "palt";
	font-smoothing:auto;
	color:#000;
	background: #f7f7f7;
}


/* tablet */
@media screen and (min-width: 48rem) {

body {
    margin:4.3rem 0 0;
}	
	
}

/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape){

body {
	font-size: 87.5%;
}	
	
}

/* PC */
@media screen and (min-width: 65rem) {

body {
    margin:6rem 0 0;
	font-size: 100%;
}	
	
}

div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

a:link, a:visited, a:active, a:hover {
    text-decoration: none;
	color: #000;
}

ul,ol{
	list-style: none;
	padding: 0;
}

i{
	font-family:"Font Awesome 6 Free";
    font-weight: bold;
}

*, *::after, *::before {
  box-sizing: border-box;
}

img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

[type="hidden"], [type="text"], [type="search"], [type="tel"], [type="url"], [type="email"], [type="password"], [type="datetime"], [type="date"], [type="month"], [type="week"], [type="time"], [type="datetime-local"], [type="number"], select, textarea {
    border: none;
    border-radius: 0;
    padding: 0 1rem;
    line-height: 3;
    width: 100%;
	font-size: inherit;
	background-color: #FFF;
}




select{
	background-image: url("../images/svg/caret-down-solid.svg");
	background-position: right 1rem center ;
	background-repeat: no-repeat;
	background-size: 1rem;
	background-color: #FFF;
}

.fs-c-dropdown__menu {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    background: #FFF;
    color: #000;
    width: 100%;
    padding: 0 1rem;
    background-image: url(../images/svg/caret-down-solid.svg);
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}
.fs-c-dropdown::after{
	display: none;
}


.fs-c-inputGroup,
.fs-c-inputGroup--vertical,
.fs-c-inputGroup--inline {
    border: none;
    border-radius: 0;
    background: #ffffff;
    display: flex;
    align-items: stretch;
    min-height: auto;
    position: relative;
}

.fs-c-radio__radio {
    display: none;
}

.fs-c-radio__radioMark {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 4px 0 0;
    position: relative;
    min-width: 16px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #666666;
    cursor: pointer;
}

.fs-c-radio__radioMark {
    border-color: #999999;
}

.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark {
    border-color: #2559A8;
    transition: all 0.5s 0s ease;
}

.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark {
    border-color: #2559A8;
}

.fs-c-radio__radioMark::before {
    border-radius: 50%;
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
}


.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark::before {
    background: #2559A8;
    opacity: 1;
    width: 8px;
    height: 8px;
}


.fadein{
    opacity : 0;
    transition : all 1.4s;
	transform: translateY(-50px);
}

.fadein.fadein-on{
    opacity : 1;
	transform: translateY(0);
}



/* ログインログアウト　表示切替 */

.logout.is-loggedIn--false{
	display: none;
}

.login.is-loggedIn--true{
	display: none;
}

.my-true{
	display: none;
}

/* タイトルタグ */

h1,h2,h3,h4,h5{
	font-weight: bold;
	line-height: 1.8;
}

.contents_title{
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.contents_title span:before{
	font-size: 0.75rem;
	content: "-";
	display: inline-block;
	margin: 0 0.5rem;
}

.contents_title span{
	font-size: 0.75rem;
}


/* ボタン */
.fs-c-button--primary {
    background: #29abe2;
    border: 1px solid #29abe2;
    border-radius: 0px;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    text-align: center;
    padding: 0;
    box-shadow: none;
	max-width: 360px;
    width: 100%;
    margin: auto;
}

.fs-c-button--secondary {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 0px;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-size: inherit !important;
    line-height: 3;
    text-decoration: none;
    text-align: center;
    padding: 0;
    box-shadow: none;
    max-width: 360px;
    width: 100%;
    margin: auto;
}

.fs-c-button--standard {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-size: inherit !important;
    line-height: 3;
    text-decoration: none;
    text-align: center;
    padding: 0;
    box-shadow: none;
    width: 100%;
    max-width: 360px;
    margin: auto;
}

.box_border_link{
	padding:0.625rem 1rem;
	border: 1px solid #000;
	display: block;
	width: 60%;
	text-align: center;
	margin: auto;
}

.fs-c-button--primary,
.fs-c-button--plain,
.fs-c-button--standard,
.fs-c-totalAndActions button:not(.fs-c-button--image){
	font-size: inherit;
    line-height: 3;
    padding: 0;
}



/* tablet */
@media screen and (min-width: 48rem) {
	
.contents_title {
    margin-bottom: 2rem;
}
	
.box_border_link{
	max-width: 20rem;
}
	
}

/* PC */
@media screen and (min-width: 65rem) {
	
.contents_title{
	font-size: 1.5rem;
	margin-bottom: 3rem;
}
.contents_title span:before{
	font-size: 1rem;
	content: "-";
	display: inline-block;
	margin: 0 0.5rem;
}

.contents_title span{
	font-size: 1rem;
}
	
	
}










/* ヘッダー */
header{
	position: fixed;
	top:0;
	left: 0;
	padding: 1rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 99;
}

.header_logo{
	display: block;
}

.header_logo #hms_logo {
    display: block;
    width: auto;
    height: 1.25rem;
    fill: #000;
}


.header_menu{
    display: flex;
    grid-gap: 0.8rem;
    padding-right: 0.8rem;
    margin-right: 1.375rem;
}
.header_menu i {
    font-size: 1.1rem;
    line-height: 1;
    vertical-align: middle;
}

/*　ハンバーガーボタン　*/
.hamburger {
	display: block;
	position: fixed;
	z-index: 3;
	right: 1rem;
	top: 1rem;
	width: 20px;
	height: 20px;
	cursor: pointer;
	text-align: center;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 20px;
	height  : 2px ;
	left    : 0;
	background : #000;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	top: 9px;
}
.hamburger span:nth-child(3) {
	top: 18px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition     : all 0.3s ease-in-out;
	transition        : all 0.3s ease-in-out;
	-webkit-transition-delay: 0.6s;
	-o-transition-delay     : 0.6s;
	transition-delay        : 0.6s;
	-webkit-transform: rotate(45deg);
	-ms-transform    : rotate(45deg);
	-o-transform     : rotate(45deg);
	transform        : rotate(45deg);
}

.hamburger.active span{
	width: 26px;
	left: -2px;
}
.hamburger.active span:nth-child(2){
		width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
	background :#000;
	-webkit-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
	-webkit-transform: translateY(9px);
	-ms-transform    : translateY(9px);
	-o-transform     : translateY(9px);
	transform        : translateY(9px);
}

.hamburger.active span:nth-child(3){
	-webkit-transform: translateY(-9px) rotate(90deg);
	-ms-transform: translateY(-9px) rotate(90deg);
	-o-transform : translateY(-9px) rotate(90deg);
	transform    : translateY(-9px) rotate(90deg);
}

/* メニュー */
nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #000;
	background: #FFF;
	width: 0;
	height: 0;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease ,height .1s ease 1s ,width .1s ease 1s;
	padding:0;
	overflow-y: scroll;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	opacity: 100;
	min-height: 100vh;
	width: 100%;
	transition: opacity .6s ease .2s , visibility .6s ease .2s , height .1s ease ,width .1s ease;
	padding-bottom: 4rem;
}

nav.globalMenuSp > div{
	width: 100%;
    padding: 3rem 1.5rem 1rem;
	font-size: 0.75rem;
}

nav.globalMenuSp > div > div {
    margin-bottom: 1.5rem;
}

nav.globalMenuSp > div > div > div {
    margin-bottom: 0.5rem;
}

nav.globalMenuSp > div > div:last-child,
nav.globalMenuSp > div > div > div:last-child{
    margin-bottom: 0;
}

.welcomeMsg{
	font-size: 1rem;
    font-weight: bold;
}


.drawer__loginLogout__login:after,
.drawer__loginLogout__mypage:after,
.drawer__loginLogout__mycatalog:after{
    content: "/";
    display: inline-block;
    padding: 0 0 0 0.5rem;
}

.header_menu_search form{
	display: grid;
	grid-template-columns: 1fr 2.25rem;
	border: 1px solid #000;
}

.header_menu_search input[type="submit"] {
    font-size: 0;
    background-image: url(../images/svg/search-solid.svg);
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: center center;
	cursor: pointer;
}

.header_menu_search input {
	border: none;
	background-color: transparent;
}

.header_tag_list {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
}

.header_tag_list h3{
	display: inline-block;
    font-size: 0.75rem;
    line-height: 2;
    font-weight: normal;
    flex: none;
}

.header_tag_list > div {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0.25rem;
    align-content: center;
}

.header_tag_list h3:after{
	content: "：";
}
.header_tag_list a {
    display: inline-block;
    padding: 0 0.25rem;
    font-size: 0.625rem;
    line-height: 2;
    border: 1px #000 solid;
}

.header_menu_productmenu,
.header_menu_contents,
.header_menu_information,
.header_menu_about{
	display: grid;
	grid-template-columns: 1fr 1fr;
	line-height: 2.4;
}



.header_menu_productmenu a i,
.header_menu_contents a i{
	margin-right: 0.5rem;
}


.header_menu_sns i {
    font-size: 1.5rem;
	line-height: 2;
}



.header_text_info_wrap{
	line-height: 3;
    padding: 0 1rem;
    display: block;
    font-size: 0.75rem;
    height: 2.25rem;
}


#header_text_info{
	animation-name:header_text_info_fadeIn;
	animation-delay: 1.1s;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
	display: grid;
	grid-template-columns: 1.25rem 1fr;
    height: 2.625rem;
}

#header_text_info a {
    width: 100%;
    display: inline;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@keyframes header_text_info_fadeIn{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



#header_text_info:before{
	content: "\f028";
	font-family:"Font Awesome 6 Free";
    font-weight: bold;
}

#header_text_info:empty:after{
	content: "税込11,000円以上で全国送料無料";
}









/* tablet */
@media screen and (min-width: 48rem){

	
header{
	padding: 1.25rem 2rem;
}	
	
.header_logo #hms_logo {
    height: 1.5rem;
}   
    
.header_menu{
    display: flex;
	grid-gap: 1rem;
    padding-right: 1rem;
    margin-right: 2rem;
}
.header_menu i {
    font-size: 1.25rem;
    line-height: 1;
    vertical-align: middle;
}	
	
.hamburger {
    right: 2rem;
    top: 1.3rem;
    width: 1.5rem;
    height: 1.5rem;
}	
.hamburger span {
    width: 1.5rem;
}	
.hamburger span:nth-child(2) {
    top: 11px;
}
.hamburger span:nth-child(3) {
    top: 22px;
}
	
.hamburger.active span:nth-child(1){
	-webkit-transform: translateY(11px);
	-ms-transform    : translateY(11px);
	-o-transform     : translateY(11px);
	transform        : translateY(11px);
}

.hamburger.active span:nth-child(3){
	-webkit-transform: translateY(-11px) rotate(90deg);
	-ms-transform: translateY(-11px) rotate(90deg);
	-o-transform : translateY(-11px) rotate(90deg);
	transform    : translateY(-11px) rotate(90deg);
}	
	
nav.globalMenuSp > div {
    width: 80%;
    padding: 0;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
	
.welcomeMsg {
    font-size: 1.25rem;
}

	
.header_menu_search form{
	grid-template-columns: 1fr 4rem;
}
	
	
.header_tag_list h3 {
    display: inline-block;
    font-size: 1rem;
}	


.header_text_info_wrap{
    padding: 0 2rem;
}	

    

.header_tag_list a {
    font-size: 0.75rem;
    padding: 0 0.5rem;
}    
    
    
    
    
}






/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation: landscape){
	
	nav.globalMenuSp {
		overflow: hidden;
		padding: 0 !important;
	}
	
	nav.globalMenuSp > div {
		max-width: 800px;
	}	
	
	.header_menu_productmenu,
	.header_menu_contents,
	.header_menu_information,
	.header_menu_about {
		grid-template-columns: 1fr 1fr 1fr;
	}	

}

/* PC */
@media screen and (min-width: 65rem) {

	header {
		padding: 2rem 2rem;
	}	
	
    .header_logo #hms_logo {
        height: 2rem;
    }   

	.header_menu {
		grid-gap: 1rem;
		padding-right: 2rem;
		margin-right: 2rem;
	}	
	
	.header_menu i {
		font-size: 2rem;
	}
	
	.hamburger {
		right: 2rem;
		top: 2rem;
		width: 30px;
		height: 30px;
	}	
	
	.hamburger span {
		width: 30px;
	}	
	
	.hamburger span:nth-child(2) {
		top: 14px;
	}	
	
	.hamburger span:nth-child(3) {
		top: 28px;
	}
	
	.hamburger.active span:nth-child(1) {
		-webkit-transform: translateY(16px);
		-ms-transform: translateY(16px);
		-o-transform: translateY(16px);
		transform: translateY(16px);
	}
	
	.hamburger.active span:nth-child(3) {
		-webkit-transform: translateY(-12px) rotate(90deg);
		-ms-transform: translateY(-12px) rotate(90deg);
		-o-transform: translateY(-12px) rotate(90deg);
		transform: translateY(-12px) rotate(90deg);
	}	
	
	.hamburger.active span {
		width: 36px;
		left: -3px;
	}

	
	
	.header_text_info_wrap{
		font-size: 0.875rem;
	}	

	
	nav.globalMenuSp > div {
		max-width: 800px;
		font-size: 1rem;
	}	
	
	.welcomeMsg {
		font-size: 1.5rem;
	}

    .header_menu_productmenu,
    .header_menu_contents,
    .header_menu_information,
    .header_menu_about{
        line-height: 3;
    }

    
}




/* ヘッダーバナー */


.header_banner {
    text-align: center;
    height: 16vw;
}


.header_banner_box{
	background-position: center;
	background-repeat: repeat-x;
	background-size: cover;
	width: 100%;
    height: 60px;
}

.header_banner_box a{
	display: block;
	width: 100%;
	height: 100%;
	min-height: 60px;
}

.header_banner img {
    width: 100%;
    height: auto;
}







/* Tablet */
@media screen and (min-width: 48rem) {

.header_banner {
    height: 40px;
}    
    
.header_banner_box a{
	min-height: 40px;
}
	
	
.header_banner_box{
	min-height: 40px;
}
	
.header_banner img {
	display: none;
}	
}



/* PC */
@media screen and (min-width: 65rem) {

.header_banner {
    height: 60px;
}    
    
.header_banner_box a{
	min-height: 60px;
}
		
.header_banner_box{
	background-size: contain;
	min-height: 60px;
}
	
.header_banner img {
	display: none;
}	
}









/* コンテナ */
main{
	padding:0;
}


#fs_Top .fs-l-pageMain,
.fs-l-pageMain {
    padding: 0;
    margin: 0;
    max-width: 100%;
}


#fs_Top .fs-l-main {
    margin: 0;
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.fs-l-main {
    padding: 0 1rem 2rem;
    margin:0 auto 4rem;
	max-width: 100%;
	max-width: 1400px;
}



#fs_Top section{
	padding:0 1rem;
	margin-bottom: 4rem;
}

section{
	padding:0;
	margin-bottom: 4rem;
}



/* tablet */
@media screen and (min-width: 48rem) {
	
main{
	padding:0;
}

	
#fs_Top section{
	padding:0 2rem;
	margin-bottom: 6rem;
}
	
section{
	padding:0;
	margin-bottom: 6rem;
}	

.fs-l-main {
    padding: 0 2rem 3rem;
    margin:0 auto 6rem;
}	
	
}

/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape) {
	
main{
	padding:0;
}

#fs_Top section{
	padding:0 6vw;
	margin-bottom: 10vw;
}
	
section{
	padding:0;
	margin-bottom: 10vw;
}	
	
.fs-l-main {
    padding: 0 6vw 6vw;
    margin:0 auto 6vw;
}	
	
}


/* PC */
@media screen and (min-width: 65rem) {

.fs-l-main{
	box-sizing: content-box;
}	
	
#fs_Top main .fs-l-pageMain {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
}
	
#fs_Top main .fs-l-pageMain .news,
#fs_Top main .fs-l-pageMain .new_product,
#fs_Top main .fs-l-pageMain .brand,
#fs_Top main .fs-l-pageMain .ranking,
#fs_Top main .fs-l-pageMain .pick_up,
#fs_Top main .fs-l-pageMain .blog,
#fs_Top main .fs-l-pageMain .press,
#fs_Top main .fs-l-pageMain .instagram,
#fs_Top main .fs-l-pageMain .about{
    grid-column: 1/3;
}


section {
    padding: 0 6vw;
	width: 100%;
    max-width: 100%;
    margin: 0 auto 10vw;
}	


	
}




/* ページタイトル */
.page_title_box {
	padding: 2rem 1rem;
}

.page_title_box h1 {
	border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin: 0;
    padding: 0;
}



/* tablet */
@media screen and (min-width: 48rem) {
	
.page_title_box {
	padding: 3rem 2rem;
}

}


/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape) {

.page_title_box {
	padding: 3rem 6vw;
}
	
	
.page_title_box h1 {
    font-size: 1.5rem;
}	
}

/* PC */
@media screen and (min-width: 65rem) {
.page_title_box {
    padding: 6vw;
}

}








/*ページメイン画像*/

.page_main_img{
	padding: 0;
	width: 100%;
	height: 30vh;
	overflow: hidden;
	position: relative;
}

.page_main_img img{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape) {
.page_main_img{
	padding: 0;
	width: 100%;
	height: 70vh;
	overflow: hidden;
	position: relative;
}
	
}












/*タブ切り替え全体のスタイル*/
.tabs {
}

/*タブのスタイル*/
.tab_item {
  text-align: center;
  color: #cdcdcd;
  display: inline-block;
  transition: all 0.2s ease;
	margin-bottom: 1.5rem;
	font-weight: bold;
}


/*ラジオボタンを全て消す*/
input[name="tab_item1"],
input[name="tab_item2"],
input[name="tab_item3"]{
  display: none;
}

.tabs label.after_slash:after{
	content: "/";
	color: #000;
	margin-left: 0.5rem;
}


/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 0;
	opacity: 0;
}


/*選択されているタブのコンテンツのみを表示*/
#mens_new:checked ~ #mens_new_content,
#womens_new:checked ~ #womens_new_content,
#kids_new:checked ~ #kids_new_content,
#mens_ranking:checked ~ #mens_ranking_content,
#womens_ranking:checked ~ #womens_ranking_content,
#kids_ranking:checked ~ #kids_ranking_content,
#mens_week_ranking:checked ~ #mens_week_ranking_content,
#mens_month_ranking:checked ~ #mens_month_ranking_content,
#womens_week_ranking:checked ~ #womens_week_ranking_content,
#womens_month_ranking:checked ~ #womens_month_ranking_content,
#kids_week_ranking:checked ~ #kids_week_ranking_content,
#kids_month_ranking:checked ~ #kids_month_ranking_content{
display: block;
opacity: 1;
transition: all 1s ease;
}

/*選択されているタブのスタイルを変える*/

.tabs input.mens:checked + .tab_item {
    color: #1a5d87;
}

.tabs input.womens:checked + .tab_item {
    color: #993c3c;
}

.tabs input.kids:checked + .tab_item {
    color: #ff9900;
}













/* パンくず */
.fs-c-breadcrumb {
    font-size: 0.75rem;
	padding: 0 1rem 0.5rem;
}

.fs-c-breadcrumb__list{
	padding: 0;
}

.fs-c-breadcrumb__list > li {
    box-sizing: border-box;
    display: inline;
}

.fs-c-breadcrumb__listItem a {
    text-decoration: underline;
}

/* tablet */
@media screen and (min-width: 48rem) {
.fs-c-breadcrumb {
    padding: 0 2rem 0.5rem;
}
}

/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape) {
.fs-c-breadcrumb {
    padding: 0 6vw 1rem;
}
}

/* PC */
@media screen and (min-width: 65rem) {
.fs-c-breadcrumb {
    padding: 0 6vw 1rem;
}
}


/* フッター */
footer{
	padding: 2rem 1rem 1rem;
	background: #f5f5f5;
	
}

footer > div{
	margin-bottom: 2rem;
}

.footer_menu {
	display: grid;
    line-height: 2.4;
    grid-template-columns: 1fr 1fr;
    font-size: 0.625rem;
}

.footer_sns {
    display: flex;
    justify-content: center;
    grid-gap: 0.5rem;
}

.footer_sns i {
    font-size: 1rem;
}


footer copy{
    font-size: 0.625rem;
    text-align: center;
    display: block;
    line-height: 1;
}

/* tablet */
@media screen and (min-width: 48rem) {
footer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 3rem 2rem 2rem;
}
	
footer > div {
    margin-bottom: 4rem;
}	
	
.footer_sns{
    align-self: end;
    display: flex;
    justify-content: flex-end;
    grid-gap: 0.5rem;
}	
	
footer copy {
    grid-column: 1/3;
}	
	
}


/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape) {

	
footer {
    padding: 3rem 6vw 2rem;
}	
	
}




/* PC */
@media screen and (min-width: 65rem) {

footer {
    grid-template-columns: 1fr 200px;
    padding: 3rem 6vw 2rem;
}	
	
footer > div {
    margin-bottom: 2rem;
}	
	
.footer_menu {
    display: flex;
    font-size: 0.75rem;
    grid-gap: 1.5rem;
    flex-wrap: wrap;
}	

footer copy {
    text-align: right;
}	
	
}





/* アコーディオンメニュー */


.acd-check{
    display: none;
}
.acd-label {
    display: block;
    margin-bottom: 1px;
    padding: 0;
    line-height: 3;
}

.acd-content{
    max-height: 0;
    transition: max-height 0.5s;
    overflow: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
    max-height: 20rem;
}

.fs-body-product .acd-check:checked + .acd-label + .acd-content{
    max-height: 30rem;
}



.check_brandinfo_box {
    padding:1rem 0 2rem;
    position: relative;
}

.check_brandinfo_box .acd-content {
    max-height: 4rem;
}

.check_brandinfo_box .acd-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: block;
    text-align: center;
    height: 4rem;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 40%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.check_brandinfo_box .acd-check:checked + .acd-label {
    background: transparent;
}


.check_brandinfo_box .acd_mark {
    line-height: 2;
}

.check_brandinfo_box .acd-label i{
	transform: rotate(0deg);
	transition: transform .5s;
    margin: 0;
    line-height: 1;
}

.check_brandinfo_box .acd-check:checked + .acd-label i{
	transform: rotate(180deg);
}











/* 国旗 */



.jpn:after{
	background-image: url("../images/flag/jpn.png")
}
.fra:after{
	background-image: url("../images/flag/fra.png")
}
.ita:after{
	background-image: url("../images/flag/ita.png")
}
.au:after{
	background-image: url("../images/flag/au.png")
}
.bel:after{
	background-image: url("../images/flag/bel.png")
}
.den:after{
	background-image: url("../images/flag/den.png")
}
.esp:after{
	background-image: url("../images/flag/esp.png")
}
.hk:after{
	background-image: url("../images/flag/hk.png")
}
.ned:after{
	background-image: url("../images/flag/ned.png")
}
.sui:after{
	background-image: url("../images/flag/sui.png")
}
.swe:after{
	background-image: url("../images/flag/swe.png")
}
.uk:after{
	background-image: url("../images/flag/uk.png")
}
.usa:after{
	background-image: url("../images/flag/usa.png")
}
.world:after{
	background-image: url("../images/flag/world.png")
}
.idn:after{
	background-image: url("../images/flag/idn.png")
}



/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center;
    font-size: 3rem;
    transition: all 0.3s;
}


/*リンクを右下に固定*/
#page-top {
	position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    margin-bottom: 0;
}

/*　上に上がる動き　*/

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}


/* tablet */
@media screen and (min-width: 48rem) {

#page-top {
    right: 20px;
    bottom: 20px;
}	
	
}




/* メンテナンス */

.fs-p-closed .fs-p-closed__image {
    width: 30%;
	max-width: 200px;
    margin: 0 auto 2rem;
}

.fs-p-closed .fs-p-closed__logo {
	width: 50%;
    max-width: 250px;
    margin: 0 auto 2rem;
}



.fs-p-closed__heading {
    font-size: 1rem;
}






/* 海外用バナー */

.header_banner_en{
	background-position: center;
	background-repeat: repeat-x;
	background-size: cover;
    background-color: #000;
	width: 100%;
    height: 60px;
    display: none;
}

.header_banner_en a{
	display: block;
	width: 100%;
	height: 100%;
	min-height: 60px;
}

.header_banner_en img {
    width: 100%;
    height: auto;
}
    
    
/* Tablet */
@media screen and (min-width: 48rem) {

.header_banner_en {
    height: 40px;
}    
    
.header_banner_en a{
	min-height: 40px;
    width: 100%;
    display: block;
    background: url(https://select.itembox.design/item/images/header_banner/202312_oversea_store_header-pc.jpg)
}
	

.header_banner_en img {
	display: none;
}	
}



/* PC */
@media screen and (min-width: 65rem) {

.header_banner_en {
    height: 60px;
}    
    
.header_banner_en a{
	min-height: 60px;
}
		
.header_banner_en{
	background-size: contain;
	min-height: 60px;
}
	
.header_banner_en img {
	display: none;
}	
}
    
    
.en_contents_display{
    display: block !important;
    animation-name: contents_display_fadeIn;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity: 0;
}
    
@keyframes contents_display_fadeIn{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}    
   
.display_hidden{
    display: none !important;
}    

/* 海外用バナー終 */

