@charset "utf-8";
/* CSS Document */

/* 2022年にソフトコムさんがつくったっぽいcss */

/*ヘッダー全体
------------------------------------------*/

.header{
  position:fixed;
  top:0;
  margin:0;
  padding:0;
  width:100%;
  z-index:9999;
  height:90px;
  border-bottom: 1px solid #000080;

}

.header .h_content .__wrap{
	display: flex;
	justify-content: space-between;
	margin: auto;
	overflow-y: hidden;
	/* border-bottom: 1px solid #000000; */
}



.header .h_content a{
	text-decoration: none;
	display: block;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "メイリオ", sans-serif;
}

@media screen and (min-width: 1280px){
	.header .h_content {
		max-width: 1400px;
	}
}

@media screen and (min-width: 960px){
	.header .h_content {
		padding-right: 1em;
		padding-left: 1em;
	}
}

@media screen and (max-width: 599px){
	.header{
	  height:45.5px;
	}
	.header .h_content .__wrap{
		justify-content: flex-start;
		height:45.5px;
	}
}



/* ロゴ
------------------------------------------*/

.header .h_content .logo{
	max-width: 230px;
	padding: 1.2% 5px 0;
}

.header .h_content .logo img{
	max-height: 65px;

}

@media screen and (max-width: 959px){
	.header .h_content .logo{
		padding: 1% 0 0 5px;
		margin: auto;
	}
}

@media screen and (max-width: 700px){
	.header .h_content .logo{
		width: 28%;
	}
}

@media screen and (max-width: 599px){
	.header .h_content .logo{
		padding: 5px 0;
		text-align: left;
	}
	.header .h_content .logo img{
		max-height: 33px;
	}
}

/* ヘッダーメニュー
------------------------------------------*/

.header .h_content .info{
	flex-grow: 3;
}

.header .h_content .info ul{
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.header .h_content .info ul li{
	margin: 0;
	padding: 0 2em 0 1.5em;
	list-style: none;
	font-size: 14px;
	font-weight: bold;
	line-height: 90px;
	position: relative;
}
.header .h_content .info ul li::after{
	 content: "　/";
	position: absolute;
	right: 0;
	top: 0;
}
.header .h_content .info ul li:last-child:after{
	 display: none;
}

.header .h_content .info ul li a{
	color: #000000;
}
.header .h_content .info ul li a:hover{
	opacity: 0.6;
}

@media screen and (max-width: 1279px){
	.header .h_content .info ul li{
		font-size: 11px;
		padding: 0 1.5em 0 1em;
	}
}

@media screen and (max-width: 959px){
	.header .h_content .info ul li{
		font-size: 1.0vw;
	}
}

@media screen and (max-width: 599px){
	.header .h_content .info{
		display: none;
	}
}


/* アカウント
------------------------------------------*/

.header .h_content .mypage{
	margin: 0;
	padding: 0;
}

.header .h_content .mypage ul{
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
}

.header .h_content .mypage ul li{
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: bold;
	line-height: 90px;
}

.header .h_content .mypage ul li a{
	background-repeat: no-repeat;
    background-size: auto 43px;
    background-position: 18px center;
    color: #010080;
    display: block;
}

.header .h_content .mypage ul li a:hover{
	color: #6666B3;
}

.header .h_content .mypage ul li.ic_login a,
.header .h_content .mypage ul li.ic_mypage a{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i1_login_a.png);
}
.header .h_content .mypage ul li.ic_member a{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i2_member_a.png);
}
.header .h_content .mypage ul li.ic_cart a{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i3_cart_a.png);
}
.header .h_content .mypage ul li.ic_logout a{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i4_logout_a.png);
}

.header .h_content .mypage ul li.ic_login a:hover,
.header .h_content .mypage ul li.ic_mypage a:hover{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i1_login_b.png);
}
.header .h_content .mypage ul li.ic_member a:hover{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i2_member_b.png);
}
.header .h_content .mypage ul li.ic_cart a:hover{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i3_cart_b.png);
}
.header .h_content .mypage ul li.ic_logout a:hover{
	background-image: url(https://files.bcart.jp/uminomuko/uploads/img_header/i4_logout_b.png);
}




.header .h_content .mypage ul li a span{
	padding: 0 0 0 60px;
}

@media screen and (max-width: 1279px){

	.header .h_content .mypage ul li{
		margin: 0 10px 0 0;
		padding: 0;
		width: 55px;
		line-height: 1em;

	}

	.header .h_content .mypage ul li a{
		padding: 55px 0 0 0;
		font-size: 10px;
		background-repeat: no-repeat;
		background-position: bottom 9px center;
		text-align: center;
	}
	.header .h_content .mypage ul li a span{
		width: 100%;
		text-align: center;
		padding: 0 0 0 0;
	}
}

@media screen and (max-width: 959px){
	.header .h_content .mypage ul li{
		margin: 20px 0 0 0;
		width: 40px;
	}
	.header .h_content .mypage ul li a{
		background-size: auto 40px;
	}
	.header .h_content .mypage ul li a span{
		display: none;
	}


}

@media screen and (max-width: 599px){
	.header .h_content .mypage{
		flex-grow: 3;
	}
	.header .h_content .mypage ul li{
		margin: 0 5px 0 0;
		width: 40px;
	}
	.header .h_content .mypage ul li a{
		background-size: auto 40px;
		background-position: 0px 5px;
	}
	.header .h_content .mypage ul li.ic_member{
		display: none;
	}
	.header .h_content .mypage ul li a{
		padding: 45px 0 0 0;
	}
}


/*固定ヘッダー分確保
------------------------------------------*/

body {
    margin-top: 90px;
}
.gnav-pc {
	display: none;
}
@media screen and (max-width: 599px){
	body {
		margin-top: 45.5px;
	}

}

/*その他調整
------------------------------------------*/

.bx-wrapper .bx-controls-direction a {
    z-index: auto !important;
}
.pc_slides_area .bx-wrapper,
.sp_slides_area .bx-wrapper
 {
    border: 0;
}
.__more.c-more {
	max-width: 80%;
	margin-bottom: 2em;
}

.__is-guest .ic_login,
.__is-guest .ic_member{
	display: block;
}
.__is-guest .ic_mypage,
.__is-guest .ic_logout,
.__is-guest .ic_cart{
	display: none;
}

.__is-member .ic_login,
.__is-member .ic_member{
	display: none;
}
.__is-member .ic_mypage,
.__is-member .ic_logout,
.__is-member .ic_cart{
	display: block;
}

/* 通知 */
section.__news-notifier.p-news-notifier {
	/*max-width: 1400px;*/
    margin: auto;
    /*padding-right: 1em;
    padding-left: 1em;*/
	/*border-top: 1px solid #000080;*/
}
.p-news-notifier > ul li.__item .__inner {
    max-width: 1250px;
}



@media screen and (max-width: 1279px){
	.p-news-notifier > ul li.__item .__inner p.__content {
		padding: 0.5rem 2rem 0.5rem 0.5rem;
	}
	.p-news-notifier > ul li.__item .__inner span.__close {
		right: 0.5em;
	}
}
@media screen and (max-width: 959px){
	section.__news-notifier.p-news-notifier {
		/*max-width: 960px;*/
		padding: 0;
	}
}

.p-news-notifier > ul li.__item .__inner p.__content {
    font-size: .85em;
    margin: 0;
    padding: 0.5em 2em 0.5em 0.5em;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
}

/*TOPページコンテンツ内
------------------------------------------*/

/*ホバーのアンダーラインと透過*/
a:hover {
    text-decoration: none;
	opacity: 0.7;
}


/*サイドナビの調整*/
.aside section.__block .__heading.__heading--custom {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "メイリオ", sans-serif;
}
.aside section.__block .__heading.__heading--custom {
	padding: 2em 0 0.25em;
	font-size: 1.3em;
}
.aside section.__block:first-child .__heading.__heading--custom {
    padding-top: 0;
}


@media screen and (max-width: 959px){
	/*サイドナビSPにしたとき上の線を消す*/
	.aside section.__block .__heading.__heading--default,
	.aside section.__block .__heading.__heading--custom {
		border-top: 0px solid #000080;
	}
	/*サイドナビSPにしたとき左右余白調整*/
	.aside section.__block .__heading.__heading--custom {
		padding: 2em 1em 0.25em;
	}
	.aside section.__block:first-child .__heading.__heading--custom {
		padding-top: 2em;
	}

}


/*コンテンツごとの余白をとる*/
@media screen and (min-width: 960px){
	.__inner .main.main--home section.__block {
		/* 2023/3/30 マージンを削除 */
		/* margin-bottom: 10em; */
	}
	.__inner .main.main--home section.__block > section.__block {
		/* 2023/3/30 マージンを削除 */
		/* margin-bottom: 10em; */
	}
}

@media screen and (max-width: 959px){
	.__inner .main.main--home section.__block {
		margin-bottom: 5em;
	}
	.__inner .main.main--home section.__block > section.__block {
		margin-top: 5em;
	}
}

/* お知らせ */
.__inner .main.main--home section.__block--news {
    margin-bottom: 1.5em;
}
/* お知らせ一覧ボタンに表示グループ限定 フリースペースを利用 */
.__inner .main.main--home section.__block:first-child .__heading--htmlmode {
    margin-top: 0;
}

/* TOPページ 閲覧履歴（フッターの直前） */
.__inner .main.main--home section.__block.__block--pro-viewed{
	margin-bottom: 10em;
}


/*タイトルの幅を揃える*/
.__heading--htmlmode .top-h {
    min-width: 12em;
    margin: 0;
    padding-top: 10px;
}

/*タイトルのフォント*/
.__heading--htmlmode .top-h span {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "メイリオ", sans-serif;
}

/*閲覧履歴のタイトル*/
.__heading.__heading--default.c-heading-main {
    color: #000080;
    text-align: center;
    margin: 5em auto 2em;
    width: fit-content;
    position: relative;
    padding: 0 4em;
    border-width: 0;
    font-size: 15px;
}

.__heading.__heading--default.c-heading-main::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-bottom: 2em solid transparent;
    border-left: 2em solid #000080;
}
.__heading.__heading--default.c-heading-main::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    border-top: 2em solid transparent;
    border-right: 2em solid #000080;
}
.__heading.__heading--default.c-heading-main span {
    min-width: 12em;
    display: block;
    height: 3.5em;
    line-height: 3em;
    font-size: 1.5em;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "メイリオ", sans-serif;
	position: relative;
}
.__heading.__heading--default.c-heading-main span:after {
    position: absolute;
    bottom: 0;
	left: 36%;
    content: "HISTORY";
	font-family: "Noto Serif JP","Hiragino Mincho ProN","MS PMincho",serif;
    margin: 0;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1em;
  }

@media screen and (max-width: 599px){
	.__heading.__heading--default.c-heading-main span {
		min-width: 7em;
	}
	.__heading.__heading--default.c-heading-main span:after {
		width: 100%;
		left: 0;
	}
}


/* MOREボタン */
.__more.c-more {
    width: 400px;
    margin: auto;
    text-align: center;
     padding: 0;
}
.__more.c-more a {
    color: #000080;
	font-size: 13px;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
	padding: 0.385em;
	text-align: center;
	background-color: #DEDEF0;
	position: relative;
}

.__more.c-more a:hover {
    text-decoration: none;
	opacity: 0.5;
}

.__more.c-more a:before {
	display: none;
  }

.__more.c-more a:after {
   content: "";
	padding-left: 0.5em;
	padding-top: 1.5em;
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(https://files.bcart.jp/uminomuko/uploads/banner/ic_btn.png);
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: 5px 10px;
	vertical-align: middle;
  }

@media screen and (max-width: 599px){
	.__more.c-more {
		margin: 2em auto;

	}
	.__more.c-more a {
		font-size: 1.0em;
	}
}

p.sideSnsLink {
    padding: 1em;
    margin: 0;
}
p.sideSnsLink a {
    padding: 0.1em 0;
    margin: 0.25em 0;
    display: inline-block;
}

/* 商品詳細ページ下のおすすめエリア */
.main.main--product-detail section.__block.__block--recommend {
    margin: 10em auto;
}

.main.main--product-detail section.__block.__block--recommend .__heading {
    height: 3.5em;
    line-height: 3.5em;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.main.main--product-detail section.__block.__block--recommend .__more.c-more {
    margin-top: 2em;
}

@media screen and (max-width: 599px) {
    .main.main--product-detail section.__block.__block--recommend {
        margin: 5em auto;
    }
}