@charset "UTF-8";
/* basic_black */

/* =================================================
	=version 3.3=
	=Index=
	Default settings
		Reset
		Element
		color
		Hyper text
		Headline
		pager
	Layout
	Maintenance
	Header
	sidemenu
	Topic path (pankuzu)
	main
		comment_header comment_footer
		shopinfo_page_top
		shopinfo_page
		itemlist_page
		user_page
		newitem_page
		recommend_page
		hotitem_page
		itemdetail_page
		subscription_page
		specific_transaction_page
		inquiry_page
		login_page
		pwreissue_page
		membersinfo_page
		members_withdraw
		members_signup
		checkcart_page
		checkout_page
		complete_order
		historylist
		history
		login
		reviewform
		review_finish
		reviewlist
		stockout_page
================================================= */
/* =================================================
	Reset
================================================= */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
th,
td,
p {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	overflow: hidden;
}

img,
a img {
	border: none;
}

ul,
ol,
li,
dl,
dt,
dd {
	list-style: none;
}

table {
	border: 0;
}

th,
td {
	padding: 0;
}

th {
	font-weight: normal;
}

fieldset {
	border: none;
}

/* =================================================
	Element
================================================= */
/* 全体のfont-sizeが10pxになるように計算して設定 */
html {
	font-size: 62.5%;
}

/*1.4remが14pxと同等*/
body {
	font-family:'Lato',
	"Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;
	color: var(--color-main);
    font-size: 1.4rem;
	background-color: var(--bg-body);
    box-sizing: border-box;
}

select{
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI4LjU3NiIgdmlld0JveD0iMCAwIDE1IDguNTc2Ij4NCiAgPHBhdGggaWQ9Ikljb25faW9uaWMtaW9zLWFycm93LWRvd24iIGRhdGEtbmFtZT0iSWNvbiBpb25pYy1pb3MtYXJyb3ctZG93biIgZD0iTTEzLjY5LDE3LjIzOGw1LjY3Mi01LjY3NmExLjA2NywxLjA2NywwLDAsMSwxLjUxNCwwLDEuMDgxLDEuMDgxLDAsMCwxLDAsMS41MThMMTQuNDUsMTkuNTExYTEuMDcsMS4wNywwLDAsMS0xLjQ3OC4wMzFMNi41LDEzLjA4NGExLjA3MiwxLjA3MiwwLDAsMSwxLjUxNC0xLjUxOFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02LjE4OCAtMTEuMjQ2KSIgZmlsbD0iIzg3ODI4MiIvPg0KPC9zdmc+DQo=);
    background-position: right 6px center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-color: var(--form-bg);
    color: var(--select-color);
    border: 1px solid var(--form-border-light);
    font-size: 1.6rem;
    position: relative;
    z-index: 999;
}

select,
textarea,
input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
    width: 100%;
    font-family:'Lato',
	"Helvetica Neue",
	Arial,
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	Meiryo,
	sans-serif;
}

input,
select,
textarea {
	padding: 4px;
	height: 28px;
	box-sizing: border-box;
    background-color: var(--bg-white);
	border:var(--form-border);
    color: var(--color-main);
	border-radius: 0;
    border-radius: 2px;
    font-size: 1.6rem;
}

input:disabled,
select:disabled,
textarea:disabled{
    background: var(--bg-disabled);
    opacity: 100;
}

select{
    padding: 4px 20px 4px 4px;
}

input[type="submit"] {
    font-size: 1.4rem;
    font-weight: normal;
}

@media screen and (max-width:840px){
    input,
    select{
        height: 52px;
    }
}

/* =================================================
	color変数 色の調整をまとめて行うことができます
================================================= */
:root {
	--color-main: #444444;
	/* 本文用 通常文章の文字色として使用 */
	--color-primary: #CCCCCC;
	/* 濃い目の文字色 タイトルや目立たせたい文字に使用 */
	--color-soft: #a3a3a3;
	/* */
	--color-white: #ffffff;
	/* 白抜き用・白い文字色*/
    --color-point: #dc6464;
	/* ※印や、注釈等の文字色*/
    --color-sale: #d73c3c;
	/* セール・SOLD OUT価格の文字色 */
    --color-link: #878282;
	/* 薄い文字色 リンク色や目立たせたい文字に使用*/

	--bg-body:#E6E6E6;
	/* 画面全体の背景色 */
	--bg-container: #ffffff;
	/* contentsの背景色 */
	--bg-white: #ffffff;
	/* 白い背景色 */
	--bg-main: #2B2B2B;
	/* 濃い部分の背景色 */
	--bg-boxshadow: #999999;
	/* 薄い背景色 */
	--bg-contents: #f2f2f2;
	/* 濃い部分の背景色 */
	--bg-attention: #ffe5e5;
	/* エラー用枠線色 */
    --bg-disabled: #bababa;
	/* disabled用文字色 */
    --bg-accent: #dc4242;
	/* accent用文字色 */

    --border-header:4px solid var(--bg-main);
	/* サイト内のメインborder */
    --border-title-top:1px dotted var(--bg-main);
    /* サイト内のh4のborder */
    --border-title-bottom:1px solid var(--color-soft);
    /* サイト内のh4のborder */
    --border-main: 1px solid var(--color-soft);
    /* サイト内の主なborder */
    --border-primary: 1px solid var(--color-main);
    /* サイト内の主なborder */
    --border-img: 1px solid var(--bg-contents);
    /* サイト内のイメージ画像のためのborder */
    --border-point: 1px solid var(--color-point);
    /* サイト内のイメージ画像のためのborder */
	--border-white: 1px solid #ffffff;
	/*白背景*/

    --form-border:1px solid #888888;
    /* formやtextareaなどのborder */
	--btn-main-color: var(--color-white);
	/* メインボタンの文字色 */
	--btn-main-bg: var(--color-main);
	/* メインボタンの背景色 */

	--btn-primary-color: var(--color-main);
	/* primaryボタンの文字色 */
	--btn-primary-bg: var(--bg-contents);
	/* primaryボタンの背景色 */
	--btn-primary-border: 1px solid var(--color-main);
	/* primaryボタンの枠線 */

    --error-color: #dc4242;
    /*エラーメッセージの文字色 */
    --error-border: 1px solid var(--error-color);
    /* エラーメッセージの枠線*/

}

/* =================================================
	Hyper text
================================================= */
a:link,
a:visited {
    color:var(--color-main);
}

a:focus,
a:hover,
a:active,
.btn_main:hover,
a.btn_main:hover,
.btn_primary:hover,
a.btn_primary:hover{
    opacity: 0.7;
}

/* =================================================
	Headline
================================================= */
/*font-size一覧
	3.2rem=32px
	2.4rem=24px
	1.8rem=18px
	1.6rem=16px
	1.4rem=14px
	1.3rem=13px
*/

h1 {
	font-size: 3.2rem;
}

h2 {
    padding: 8px 16px;
    margin: 0 0 16px;
    background: var(--bg-main);
    color: var(--color-white);
    font-size: 1.8rem;
}

h3 {
    padding: 8px 16px;
    margin: 0 0 16px;
    background: var(--bg-main);
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: normal;
}

h4,
h5 {/*side_naviのタイトル*/
    min-height: 43px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    padding: 8px;
    box-sizing: border-box;
    border-top: var(--border-title-top);
    border-bottom: 1px solid #2b2b2b;
    position: relative;
    margin: 0 0 8px;
}

h4:before,
h5:before {
    position: absolute;
    content: "";
    top: -4px;
    left: 0px;
    border-top: var(--border-title-top);
    width: 100%;
    height: 0px;
}

h5{
    margin: 0 0 24px;
    font-size: 1.4rem;
    background: var(--bg-contents);
}

@media screen and (max-width:840px){
    #header h1{
        padding: 16px;
        background: var(--bg-main);
        text-align: center;
        font-size: 1.6rem;
        color: var(--color-primary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    h3 {
        padding: 8px;
    }

    h5{
        margin: 0 0 16px;
    }
}

/* =================================================
	Layout
================================================= */
#wrap {
	width:100%;
	padding:20px 0;
}

#container {
	max-width: 1248px;
    min-height: 100vh;
	margin:0 auto;
	padding-top: 2px;
	background: var(--bg-container);
	-webkit-box-shadow: 0px 0px 6px 0px var(--bg-boxshadow);
	-moz-box-shadow: 0px 0px 6px 0px var(--bg-boxshadow);
	box-shadow: 0px 0px 6px 0px var(--bg-boxshadow);
    position: relative;
}

#header {
	position:relative;
    border-top: var(--border-header);
}

#header_sp{
    display: none;
}

#header_pc{
	border-top: var(--border-header);
}

#main {
	float:right;
	margin-right: 20px;
	width: 685px;
}

#primary {
    display: flex;
    flex-wrap: wrap;
    padding: 0 24px 240px;
    margin: 20px 0 0 0;
    position: relative;
}

#side_navi {
	width:200px;
}

#main_contents {
    padding: 0 0 0 24px;
}

@media screen and (max-width:840px){
    body{
        background-color: initial;
    }
    #wrap {
        width: 100%;
        padding: 0;
    }
    #primary {
        display: block;
        padding: 0 8px 176px;
        margin: 20px 0 0 0;
        min-height: calc(100vh - 40px);
    }
    #container {
        margin:0 auto;
        padding: 0;
        background: var(--bg-container);
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

@media screen and (max-width:560px){
    #primary {
        display: block;
        padding: 0 8px 280px;
        min-height: auto;
    }
}

/* =================================================
	Common setting
================================================= */

/* button-style
----------------------------------------*/
input[type="submit"],
input[type="button"],
button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn_main,
a.btn_main,
.btn_primary,
a.btn_primary {
    width: 100%;
    height: 28px;
    padding: 4px;
    border-radius: 2px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none !important;
}

.btn_main,
a.btn_main {
    color: var(--btn-main-color);
    background: var(--bg-main);
    border: none;
}

.btn_primary,
a.btn_primary,
input.btn_primary{
    text-align: center;
    color: var(--bg-main)!important;
    border: var(--btn-primary-border);
    background: var(--btn-primary-bg);
    border-radius: 2px;
}

.btn_main:hover,
a.btn_main:hover,
.btn_primary:hover,
a.btn_primary:hover,
input[type="submit"],
button{
    cursor: pointer;
}

.item_submit input {
    width: 100%;
    height: 40px;
    margin: 0 0 23px;
}

@media screen and (max-width:840px){
    .btn_main,
    a.btn_main,
    .btn_primary,
    a.btn_primary,
    .item_submit input,
    select{
        height: 52px;
    }
}

/* list_icon
----------------------------------------*/
.common_list_icon li a {
    padding: 0 0 0 12px;
    text-decoration: underline;
    position: relative;
}

.common_list_icon li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 7px;
    left: 0;
    border-left: 3px solid black;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

/* list_style
----------------------------------------*/
.common_list_title{
    min-width: 196px;
    min-height: 56px;
    background: var(--bg-contents);
    padding: 8px;
    margin: 0 16px 0 0;
    font-weight: bold;
    height: 100%;
    display: flex;
    box-sizing: border-box;
    align-items: center;
}

@media screen and (max-width:840px){
    .common_list_title{
        margin: 0 0 16px;
        min-height: auto;
    }
}

/*  ----------------------------------------
List_line
    新着商品_top
    おすすめ商品_top
    売れ筋商品_top
    この商品を買った方はこんな商品も買っています_商品詳細
    この商品をチェックした人はこんな商品もチェックしています_商品詳細
----------------------------------------*/

.common_list_line{
    margin: 24px 0 0;
}

.common_list_line_card{
    display: flex;
	margin: 0 0 24px;
	overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
	height: auto;
}

.common_list_line_cardItem{
    min-width: 90px;
    max-width: 90px;
    margin: 0px 24px 0 0;
}

.common_list_line_cardItem_image{
    aspect-ratio: 4 / 3;
    width: 100%;
    box-sizing: border-box;
}

.common_list_line_cardItem_image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: var(--border-img);
    box-sizing: border-box;
}

.common_list_line_cardItem_detail_name{
    display: block;
    min-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.2rem;
}

.common_list_line_cardItem_detail_price {
    overflow: hidden;
}

.newitem_list_cardItem_detail_price {
    font-weight: bold;
}


/*  common_style - 共通設定
----------------------------------------*/
.common_message {
    background: var(--bg-contents);
    box-sizing: border-box;
    max-width: 550px;
    padding: 16px;
    margin: 0 auto 80px;
}

.common_message:empty {
    display: none;
}

.common_fin_message{
    text-align: center;
    display: block;
    font-size: 2.4rem;
    margin: 0 0 40px;
}

.itemlist_main_cardItem_detail_status {
    position: absolute;
    bottom: 3px;
    left: 0;
}

.common_limited_icon {
    font-size: 1.2rem;
    padding: 0 2px;
    box-sizing: border-box;
    color: var(--bg-accent);
    background: rgba(255,255,255,0.8);
}

.common_margin_bottom_80{
    margin: 0 0 80px;
}

.common_border_bottom{
    text-decoration: underline;
}

.common_button {
    width: 330px;
    margin: 0 auto;
}

@media screen and (max-width:560px){
    .common_button{
        width: 100%;
    }
}

/*  icon - 共通アイコン設定
----------------------------------------*/
.icon_image {
    margin: 40px auto 40px;
    height: 80px;
    width: 80px;
}

.icon_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon_check {
    position: relative;
    padding: 40px 0 62px;
}

.icon_check:before {
    content: '';
    display: block;
    position: absolute;
    top: 28%;
    left: 48%;
    width: 30px;
    height: 16px;
    border-radius: 1px;
    border-left: 5px solid var(--color-main);
    border-bottom: 5px solid var(--color-main);
    transform: rotate(-45deg);
}

@media screen and (max-width:560px){
    .icon_check:before {
        left: 45%;
    }
}

/* =================================================
	error
================================================= */
.errormessage{
    color: var(--error-color);
    border: var(--error-border);
    padding: 24px;
    margin: 16px 0;
    height: 100%;
    display: block;
}

.login_error_message,
.history_order_info_message{
    color: var(--error-color);
    border: var(--error-border);
    padding: 24px;
    margin: 0 0 16px 0;
}

.login_offwrap_message{
    color: var(--error-color);
    border: var(--error-border);
    padding: 8px;
    font-size: 1.2rem;
    margin: 0 0 16px 0;
}

.login_error_message:empty,
.login_offwrap_message:empty {
    display: none !important;
    visibility: hidden; /* 念のため追加 */
}

/*在庫数オーバー*/
.stockout_page_wrap {
    margin: 40px 0 0;
}

.stockout_page_wrap_title {
    text-align: center;
    font-size: 2.4rem;
    margin: 0 0 40px;
}

.stockout_page_wrap_text {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    padding: 16px;
    background: var(--bg-contents);
}


/* =================================================
	Topic path (pankuzu)
================================================= */
#topic_path {
	clear: both;
	text-align:left;
	background:#F5F6F7;
	border:1px solid #CCC;
	margin-bottom: 10px;
	padding: 0 10px;
}

#topic_path ul {
    background:url(https://cart.fc2img.com/template/basic_black/image/breadcrumbs_home.png) no-repeat 0 5px;
    padding-left: 10px;
    zoom:100%;
}

#topic_path ul:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

#topic_path li {
	float:left;
	display:inline;
	padding:4px 10px;
}

#topic_path li.link,
#topic_path li.home {
	padding:4px 18px 4px 10px;
	background:url(https://cart.fc2img.com/template/basic_black/image/breadcrumbs.png) no-repeat center right;
}

/* =================================================
	maintenance_page
================================================= */
#main_contents {
    padding: 0 0 0 24px;
    width: calc(100% - 224px);
}

@media screen and (max-width:840px){
    #main_contents{
        width: 100%;
        padding: 0;
    }
}

/* =================================================
	Maintenance page
================================================= */
#maintenance_page {
	width:100%;
}

#maintenance_page p{
	padding:50px;
}

/* =================================================
	header
================================================= */
#header h1 {
	padding: 20px;
	background: var(--bg-main);
	text-align:left;
	color: var(--color-primary);
}

/* ヘッダーに背景画像を入れたい場合はこちら */
#header h1 {
	background-image: url(https://cart.fc2img.com/upfile/leinelight26/124.jpg);
}

#header h1 a {
	color: var(--color-white);
}

#header h1 a:link,
#header h1 a:visited{
    text-decoration: none;
}

.header_pc_nav {
    display: flex;
    justify-content: flex-end;
    margin: 24px 24px 8px;
}

.header_pc_navSearch {
    display: flex;
    margin: 0 24px;
}

.header_pc_navSearch_box_word {
    display: flex;
}

.header_pc_navSearch button.submit.btn_main {
    width: 60px;
    margin: 0 0 0 4px;
}

.header_pc_navCart a {
    width: 179px;
}

.side_menu-sp {
    display: none;
}

@media screen and (max-width:840px){
    #header_pc {
        display: none;
    }
    #header_sp {
        display: block;
    }
    #header {
        display: flex;
        width: 100%;
        background: var(--bg-main);
        justify-content: space-between;
    }
    .side_menu-sp {
        display: flex;
        width: 52px;
        padding: 0 8px;
        box-sizing: border-box !important;
        align-items: center;
        justify-content: center;
    }
}


@media screen and (max-width:840px){
  #main,
  #side_navi{
    float: none;
    width: 100%;
    margin: 0;
  }

  #main_contents{
    padding: 0;
  }
}




/* =================================================
	Side navi
================================================= */
/* Side navi common-style
----------------------------------------*/
.sidemenu-sp {
	display: none;
}

.cart_header_image {
	max-width: 500px;
	text-align: center;
	margin: 0 auto 40px;
	width: 90px;
	height: 90px;
}

.cart_header_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media screen and (max-width:840px){
    /*ハンバーガーメニュー*/
    nav#side_navi {
        display: none;
    }

	.sidemenu-sp {
		position: fixed;
		z-index: 1001;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100%;
		overflow: auto;
		background: rgba(0, 0, 0, 0.2588235294);
	}

    .side_menu_itemList li {
		margin: 0 0 16px 0;
	}

	.user_content img {
		width: 100%;
	}

	.list_title {
		width: 100%;
		margin: 0 0 4px;
	}

	.list_content {
		width: 100%;
	}

	.is-open {
		display: block;
	}

	.drawer-nav-body {
		position: fixed;
		top: 0;
		left: 0;
		padding: 80px 15px;
		background: var(--bg-soft-dark);
		color: var(--color-main);
		width: 85%;
		max-width: 320px;
		height: 100%;
		overflow: scroll;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
	}

	.drawer-nav-body ul h3 {
		margin: 0 0 16px;
		color: var(--color-main);
		font-size: 1.6rem;
	}

	.search {
		min-height: inherit;
		display: block;
	}

    .search_box_word input {
        width: 100%;
        margin: 0 0 16px;
    }

	.sidemenu-sp .login_box ul li input {
		width: 100%;
	}

	.side_navi .login_on form input {
		margin: 16px 0 0;
		height: 48px;
		background: none;
		color: var(--color-main);
		background: var(--btn-white-soft);
	}

	.side_navi .login_on .userName {
		margin: 8px 0;
	}

	.side_navi .login_on .userName:last-child,
	.side_navi .login_on .userName:only-child {
		margin-bottom: 0;
	}

	.side_navi .login_on span,
	.side_navi.login_on span {
		font-size: 1.8rem;
		font-weight: bold;
		color: var(--color-main);
	}

	.drawer-nav-body .login_on_list_item{
		display: flex;
		align-items: center;
		border-bottom: 1px solid transparent;
		height: 52px;
	}

	.drawer-nav-body .login_on_list_item a {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
		padding: 0 8px 0 10px;
		margin: 8px 0 24px;
	}

    .drawer-nav-body .login_on_list_item form {
        width: 100%;
    }

	.drawer-nav-body .search_box_category {
        display: flex;
        align-items: center;
		margin: 8px 0 0;
	}

    .side_search_wrap,
    .side_navi_wrap{
        margin: 0 0 56px;
    }

	.drawer-nav-body .search form input {
		border-radius: 0;
		box-sizing: border-box;
	}

	.side_menu-sp .login_box ul li input {
		width: 100%;
	}

    .cartcheck {
        width: 24px;
    }

    .cartcheck path {
        fill: var(--color-white);
    }

	.drawer-nav-body .search form .submit {
		box-sizing: border-box;
		width: 52px;
		height: 52px;
		background-color: var(--btn-sub);
		background-repeat: no-repeat;
		background-position: 50%;
		border-radius: 0px 3px 3px 0;
		border: none;
		cursor: pointer;
	}

	.drawer-nav-body .pw_reisue {
		margin: 8px 0 32px;
		width: 100%;
		text-align: right;
	}

	.drawer-nav-body .login_form_btn input,
	.drawer-nav-body .sidemenu_inquiry {
        color: var(--color-white);
		width: 100%;
		justify-content: center;
		align-items: center;
		display: flex;
		border-radius: 3px;
		box-sizing: border-box;
		padding: 0;
	}

    .drawer-nav-body .sidemenu_inquiry{
        color: var(--color-white);
    }

	.drawer-nav-body .search_box_category {
		margin: 8px 0 0;
	}

	.login_message a{
        margin: 0 0 8px;
		color: var(--color-main);
	}

    .login_form_input {
        margin: 0 0 16px;
    }

	.sidemenu_inquiry {
		padding: 0;
	}

    .side_navi.drawer-nav-body .sidemenu_inquiry a {
        color: var(--color-white);
    }

	.login_form_wrap {
		margin: 0 0 40px;
	}

	.pw_reisue .sidemenu_signup {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--btn--bg-light);
	}

	.sidemenu_signup {
		width: 100%;
		height: 52px;
		border: 1px solid var(--color-white);
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		border-radius: 3px;
	}

	.sidemenu_signup a {
		color: var(--color-main);
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--btn-white-soft);
	}

	.side_menu_itemList li {
		padding: 0;
        margin: 0 0 16px 0;
        display: block;
        width: 100%;
	}

	.side_menu_itemList li a {
		display: inline-grid;
        align-items: center;
        width: 100%;
	}

	.side_menu_itemList li a::before {
		left: 0;
		top: 22px;
	}

	.side_menu_itemList a:last-child {
		margin: 0;
	}

	/* ハンバーガーメニュー */
	.drawermenu-btn {
        width: 52px;
        height: 38px;
        margin: 11px 0 0;
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
	}

	.drawermenu-btn p {
		font-size: 1.2rem;
		font-weight: bold;
		position: absolute;
		bottom: 0;
		color: var(--color-white);
	}

	/* ハンバーガーアイコンの線の基本スタイル */
	.drawermenu-btn::before,
	.drawermenu-btn::after,
	.drawermenu-btn div {
		content: '';
		display: block;
		width: 20px;
		height: 2px;
		background-color: var(--bg-white);
		border-radius: 2px;
		transition: all 0.3s ease;
	}

	/* ハンバーガーアイコンの上線と下線の位置 */
	.drawermenu-btn::before {
		position: absolute;
		top: 0px;
		/* 上端からの距離 */
	}

	.drawermenu-btn::after {
		position: absolute;
		bottom: 17px;
	}

	/* 中央の線 */
	.drawermenu-btn div {
		height: 2px;
		/* 線の太さ */
		position: absolute;
		top: 10px;
	}

	/* 線の太さを変更するためのクラス */
	.thick-lines .drawermenu-btn::before,
	.thick-lines .drawermenu-btn::after,
	.thick-lines .drawermenu-btn div {
		height: 6px;
		/* 太い線 */
	}

	/* 線の色を変更するためのクラス */
	.white-lines .drawermenu-btn::before,
	.white-lines .drawermenu-btn::after,
	.white-lines .drawermenu-btn div {
		background-color: var(--bg-white);
		/* 白い線 */
	}

	/* 線の太さと色を変更するためのクラス */
	.white-thick-lines .drawermenu-btn::before,
	.white-thick-lines .drawermenu-btn::after,
	.white-thick-lines .drawermenu-btn div {
		height: 6px;
		/* 太い線 */
		background-color: var(--bg-white);
		/* 白い線 */
	}

    .drawer-nav-body {
		position: fixed;
		top: 0;
		left: 0;
		padding: 40px 15px 80px;
		background: var(--bg-white);
		width: 85%;
		max-width: 320px;
		height: 100%;
		overflow: scroll;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
	}

	.drawer-nav-body ul h3 {
		margin: 0 0 16px;
	}

	.drawer-nav-body .search form input {
		border-radius: 0;
		box-sizing: border-box;
	}

	.sidemenu-sp .login_box ul li input {
		width: 100%;
	}

	.drawer-nav-body .search form .submit {
	box-sizing: border-box;
	width: 52px;
	height: 52px;
	background-color: var(--btn-color-main);
	background-image: url("https://cart.fc2img.com/template/natural_base/image/icon/icon_search.svg");
	background-repeat: no-repeat;
	background-position: 50%;
	border-radius: 0px 3px 3px 0;
	border: none;
	cursor: pointer;
	}

	.drawer-nav-body .search_box_category{
		margin: 8px 0 0;
	}

}

/* search
----------------------------------------*/
#side_navi .input{
    width: 100%;
    margin: 0 0 16px;
}

#side_navi .search_box_category {
    margin: 4px 0 0;
    padding: 0 0 4px;
    display: flex;
    align-items: center;
}

.side_search_wrap {
    background: var(--bg-contents);
    padding: 8px;
}

#side_navi label {
    margin: 0 0 0 4px;
}

/* menu list
----------------------------------------*/
.side_navi_wrap{
    margin: 0 0 56px;
}

.side_navi_wrap_itemList li,
.side_menu_itemList li {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 0 8px;
    margin: 0 0 8px;
    box-sizing: border-box;
    border-bottom: var(--border-main);
}

/* login
----------------------------------------*/
.side_login .btn_main{
    margin: 0 0 16px;
}

.side_login p.pw_reisue {
    margin: 0 0 16px;
}

.login_offwrap,
.login_on {
    background: var(--bg-contents);
    padding: 8px 8px 16px;
}

.login_on_point {
    margin: 0 0 24px;
}

.userName {
    font-weight: bold;
}

/* calendar
----------------------------------------*/
.side_calendar{
    font-size: 1.2rem;
}

.side_calendar_wrap {
    margin: 0 0 16px;
}

.side_calendar_wrap table {
    width: 100%;
}

.side_calendar_wrap th {
    font-weight: bold;
    height: 24px;
}

.other_month,
.side_calendar_wrap_note {
    color:var(--color-soft);
}

.side_calendar_wrapcontent td{
    text-align: center;
    height: 24px;
}

/* inquiry link , signup link
----------------------------------------*/
#side_navi .inquiry,
#side_navi .signup {
	display: block;
	line-height: 3em;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background: var(--bg-main);
	text-align: center;
	color: var(--color-white);
	text-decoration: none;
}


/* =================================================
	TOPcontents
================================================= */
.contents_page_top {
    border: var(--border-main);
    margin: 0 0 32px;
}

.contents {
    margin: 0 0 56px;
}

@media screen and (max-width:840px){
    .contents {
        margin: 0 0 40px;
    }
}

/* shopinfo_top
----------------------------------------*/
.shopinfo_page_list {
    padding: 16px 16px 0;
}

.shopinfo_page_listItem{
    margin: 0 0 16px 0;
}

.shopinfo_page_listItem a {
    display: inline-block;
}

.shopinfo_page_listItem:last-child{
    margin: 0;
}

.shopinfo_page_listItem_wrap {
    display: flex;
}

.shopinfo_page_listItem a:link,
.shopinfo_page_listItem a:visited{
    text-decoration: none !important;
    margin: 0 16px 0 0;
}

.shopinfo_date {
    margin: 0 16px 0 0;
}

.shopinfo_news {
    text-decoration: underline;
}

.infoall {
    padding: 0 16px 16px;
    text-align: right;
    text-decoration: underline;
}

@media screen and (max-width:840px){
    .shopinfo_page_list {
        padding: 0 8px;
    }
    .shopinfo_page_listItem {
        margin: 0;
    }
    .shopinfo_page_listItem_wrap {
        display: inline-block;
        margin: 0 0 24px;
    }
    .shopinfo_date {
        margin: 0 0 4px;
    }
    .infoall {
        padding: 0;
    }
}

/* shopinfo_top
----------------------------------------*/
.user_content {
    margin: 16px;
    line-height: 1.7;
}


/* =================================================
	itemlist_page
================================================= */
.comment_header {
    margin: 0 0 16px;
}

.itemlist_sortbox{
    min-width: 180px;
}

.pagelink {
    display: flex;
    justify-content: flex-end;
}

fieldset {
    display: flex;
    align-items: center;
}

.pagelink p {
    min-width: 70px;
}

.pagelink input{
    width: 60px;
    margin: 0 0 0 4px;
}

.pagerbox {
    border-top: var(--border-primary);
    border-bottom: var(--border-primary);
    padding: 24px 0;
    margin: 0 0 16px;
}

.pagerbox_pager {
    max-width: 1024px;
    margin: 0 0 16px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pager_number {
    display: flex;
}

.pager_next a,
.pager_number span,
.pager_number,
.pager_number a,
.pager_back a {
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    box-sizing: border-box;
}

.pager_number a {
    background: var(--btn-primary-bg);
    border: var(--btn-primary-border);
}

.pager_next a,
.pager_number span{
    background: var(--btn-main-bg);
    color: var(--btn-main-color);
}

.pager_total {
    text-align: center;
}

.itemlist_header_sort{
    margin: 0 0 24px;
}

.itemlist_sortbox {
    display: flex;
    justify-content: space-between;
    background: var(--bg-contents);
    align-items: center;
    padding: 8px 16px;
}

.itemlist_sortbox_list {
    display: flex;
    text-decoration: underline;
}

.itemlist_sortbox_listItem {
    margin: 0 16px 0 0;
}

@media screen and (max-width:560px){
    .pagelink input{
        height: 52px;
    }
    .itemlist_sortbox{
        flex-direction: column;
        padding: 8px 8px 16px;
    }

    .itemlist_sortbox_listItem {
        margin: 8px 24px 16px;
    }
}

/* itemlist_page
----------------------------------------*/
/*商品一覧*/
#itemlist_page {
    margin: 0 0 80px 0;
}

.itemlist_notItem{
    background: var(--bg-contents);
    padding: 40px;
    font-weight: bold;
}

.itemlist_main {
    margin: 0 0 80px;
}

.itemlist_main_card.list_wrap {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(4, max(200px, 0%));
    grid-row-gap: 64px;
    row-gap: 160px;
}

.itemlist_main_card_item{
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    position: relative;
}

.item_icon {
    position: absolute;
    top: 1px;
}

.itemlist_main_cardItem_image {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
}

.itemlist_main_cardItem_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
    border: var(--border-img);
}

.itemlist_main_cardItem_detail_name,
.itemlist_main_cardItem_detail_comment1 {
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.itemlist_main_cardItem_detail_name{
    min-height: 42px;
    font-weight: bold;
    text-decoration: underline;
    line-height: 2.1rem;
    max-height: calc(2.1rem * 2);
}

.itemlist_main_cardItem_detail_comment1 {
    margin: 0px 0 8px;
    font-size: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.8rem;
    max-height: calc(1.8rem * 2);
    min-height: 36px;
}

.itemlist_main_cardItem_detail_price {
    font-weight: bold;
    height: auto;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 8px;
}

.itemlist_main_cardItem_detail_member_price {
    min-height: 28px;
    display: flex;
    align-items: center;
}

.itemlist_main_cardItem_detail_price_member_text {
    height: 40px;
    display: flex;
    align-items: center;
}

.itemlist_main_cardItem_detail_price_member_text p {
    font-size: 1.2rem;
    padding: 2px 4px;
    background: var(--bg-contents);
}

.itemlist_main_cardItem_detail_price_member_text .limited_icon{
    font-weight: normal;
}

.select_type,/*バリエーション・注文数*/
.count {
    display: flex;
    align-items: center;
    margin: 0 0 16px;
}

.price,
.stock{
    min-height: 28px;
    display: flex;
    align-items: center;
}

.price {
    font-weight: bold;
}

.stock {
    color: var(--color-soft);
    font-size: 1.2rem;
    margin: 0 0 8px;
}

.itemlist_main_cardItem_detail_selectList_type span {
    min-width: 48px;
    font-size: 1.2rem;
}

.itemlist_main_cardItem_detail_selectList_type select{
    width: 100%;
}

.itemlist_main_cardItem_detail_selectList,/*カートに入れる*/
.item_list_auction_btn {/*オークションを確認する*/
    position: absolute;
    bottom: -32px;
    width: 100%;
}

.item_soldout_label_text{/*soldout*/
    position: absolute;
    bottom: -32px;
    text-align: center;
    width: 100%;
    height: 28px;
    color: var(--color-soft);
    background: var(--bg-contents);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*オークション商品*/
.item_list_auction_priceTitle,
.is_ongoing_auction p{
    font-size: 1.2rem;
    background: var(--bg-contents);
    padding: 4px;
}

.is_ongoing_auction p {
    height: auto;
    color: var(--color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_list_auction_priceTitle{
    font-weight: bold;
}

.current_price,
.bin_price {
    display: flex;
}

.current_price {
    font-weight: bold;
}

.item_list_auction_priceAbout{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 110px;
}

@media screen and (max-width:1200px){
    .itemlist_main_card.list_wrap{
        grid-template-columns: repeat(3, max(30%, 30%));
    }
}

@media screen and (max-width:840px){
    .itemlist_main select,
    .itemlist_main textarea,
    .itemlist_main .select_type,
    .itemlist_main .count,
    .itemlist_main .stock {
        height: 34px;
    }
    .contents_page_top{
        border: none;
    }

    .itemlist_main_cardItem_detail_selectList,
    .item_list_auction_btn,
    .item_soldout_label_text {
        bottom: -56px;
    }

    .itemlist_main_card_item{
        min-height: initial;
    }

    .itemlist_main {
        margin: 0 0 160px;
    }
    .item_soldout_label_text{
        height: 52px;
    }
    .itemlist_main_card.list_wrap{
        grid-template-columns: repeat(2, max(48%, 48%));
        row-gap: 136px;
    }
}

@media screen and (max-width:560px){
    .itemlist_main_cardItem_detail_member_price{
        min-height: 40px;
    }

    .itemlist_main_cardItem_detail_selectList_type input,
    .itemlist_main_cardItem_detail_selectList_type select,
    .itemlist_main_cardItem_detail_selectList_type textarea,
    .itemlist_main_cardItem_detail_selectList_type .select_type,
    .itemlist_main_cardItem_detail_selectList_type .count,
    .itemlist_main_cardItem_detail_selectList_type .stock{
        height: 34px;
    }

    .item_soldout_label_text {
        height: 52px;
    }

    .itemlist_main_card.list_wrap{
        grid-template-columns: repeat(2, max(48%, 48%));
        row-gap: 144px;
    }
}

.itemlist_footer_sort.sort {
    margin: 0 0 24px;
}


/* =================================================
	news -おしらせ
================================================= */
.shopinfo_page_wrap {
    margin: 0 0 64px;
}

.shopinfo_page_date {
    margin: 0 0 10px;
}

.shopinfo_page_wrap .news_comment {
    padding: 0 8px;
}

@media screen and (max-width:840px){
    .shopinfo_page_date{
        font-weight: bold;
    }
}


/* =================================================
	userpage - カスタムページ
================================================= */
.userpage_content {
    padding: 16px;
}

@media screen and (max-width:840px){
    .user_content {
        margin: 16px 8px;
    }
}


/* =================================================
	itemdetail - 商品詳細
================================================= */
.comment_footer {
    margin: 0 0 24px;
}

.item_detail_wrap {
    justify-content: space-between;
    display: flex;
}

/* 商品画像
----------------------------------------*/
.item_detail_wrap_gallery {
    width: 362px;
}

.item_detail_wrap_gallery ul {
    margin: 0 40px 0 0;
}

.item_detail_wrap_gallery ul li {
    width: 100%;
    margin: 0 0 24px;
    aspect-ratio: 4 / 3;
}

.item_detail_wrap_gallery ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: var(--border-img);
    box-sizing: border-box;
}

.gallery_choice-btn {
    display: none;
}

/* 商品説明
----------------------------------------*/
.item_detail_comment {
    margin: 0px 0 24px;
}

.item_detail_comment .item_icon{
    position: initial;
}

.item_detail_comment .comment1 {
    margin: 0 0 16px;
}

.item_detail_wrap_content {
    width: calc(100% - 362px);
    height: min-content;
}

.item_detail_wrap_content_card {
    padding: 16px;
    margin: 0 0 24px;
    background: var(--bg-contents);
}

.item_detail_wrap_content_card .item_soldout_label_text{
        position: initial;
}

/*価格*/
.item_detail_wrap_content_card .price {
    font-size: 2.2rem;
    margin: 0 0 16px;
}

.item_detail_wrap_content_card_product_stock,
.item_detail_wrap_content_card_product_select_type,
.item_detail_wrap_content_card_product_count {
    height: 40px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
}

.item_detail_wrap_content_card_product_count {
        margin: 0 0 32px;
}

b.error.system_message {
    color: var(--color-error);
    margin: 0 16px 0 0;
}

.item_delivery_left span,
.item_detail_wrap_content_card_product span {
    min-width: 58px;
}

.item_detail_wrap_content_card_product select {
    height: 100%;
    width: calc(100% - 58px);
}

.item_delivery.item_detail_wrap_content_card_product_count {
    align-items: normal;
}

.item_detail_wrap_content_card_product_submit input {
    height: 40px;
    margin: 0 0 24px;
}

.item_detail_wrap_content_card_price .itemlist_main_cardItem_detail_price_member_text{
    height: 24px;
    width: 56px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    color: var(--color-white);
    background: var(--bg-main);
}

.item_detail_wrap_content_name{
    margin: 0 0 8px 0;
}

.item_detail_wrap_content_name .common_limited_icon{
    margin: 0;
}

.itemlist_main_cardItem_detail_price_member_text {
    height: 40px;
    margin: 0 0 8px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.itemlist_main_cardItem_detail_sale_price{
    height: 28px;
    display: flex;
    align-items: center;
    color: var(--color-sale);
}

/*SALE*/
.item_price_naturalprice {
    font-size: 1.6rem;
    margin: 0 0 8px;
    text-decoration: line-through;
    color: var(--color-soft);
}

.sale_discount_mode_amount {
    color: var(--color-sale);
    font-size: 1.2rem;
}

.item_detail_wrap .sale_discount_mode_amount{
    margin: 0 0 16px;
}

.item_price_sale_price{
    font-size: 2.2rem;
    color: var(--color-sale);
}

.item_price_member_price {
    font-weight: bold;
    font-size: 2.2rem;
    margin: 0 0 8px;
}

.itemdetail_category_list {
    display: flex;
    flex-wrap: wrap;
}

.itemdetail_category_listItem{
    margin: 0 16px 0 0;
}

/*期間限定商品*/
.before_sale_wrap {
    border: var(--border-main);
    padding: 16px;
    margin: 0 0 34px;
}

.before_sale_wrap_comment {
    font-size: 1.6rem;
    margin: 0 0 8px;
    font-weight: bold;
}

.social_buttons {
    display: flex;
    justify-content: end;
}

@media screen and (max-width:840px){
    .sale_discount_mode_amount{
        height: 28px;
        display: flex;
        align-items: center;
    }

    .item_detail_wrap_content_card {
        padding: 8px;
    }

    .itemlist_main_cardItem_detail_price{
        margin: 0 ;
    }

    .itemlist_main_cardItem_detail_sale_price,
    .itemlist_main_cardItem_detail .price,
    .itemlist_main_cardItem_detail .stock{
        height: 32px;
    }
    .item_detail_wrap_content_card_product select {
        height: 52px;
    }

    .item_detail_wrap_content_card_product_stock,
    .item_detail_wrap_content_card_product_select_type,
    .item_detail_wrap_content_card_product_count {
        height: auto;
        margin: 0 0 24px;
        display: flex;
        align-items: center;
    }
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-image-prev,
.slick-image-next {
	position: absolute;
	z-index: 3;
	top: calc(50% - 15px);
	cursor: pointer;
	outline: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
}

.slick-image-prev {
	/*戻る矢印の位置と形状*/
	left: 0;
}

.slick-image-next {
	/*次へ矢印の位置と形状*/
	right: 0;
}

.slick-image-next::before {
	right: calc(50% - 3px);
	transform: rotate(45deg);
}

.slick-image-prev::before {
	transform: rotate(-135deg);
	left: calc(50% - 3px);
}

.slick-image-prev::before,
.slick-image-next::before {
	position: absolute;
	content: "";
	height: 7px;
	width: 7px;
	top: calc(50% - 5px);
	border-top: 2px solid var(--btn-main-color);
	border-right: 2px solid var(--btn-main-color);
}

@media screen and (max-width:1200px){
    .item_detail_wrap_gallery {
        width: 240px;
    }

    .item_detail_wrap_content {
        width: calc(100% - 240px);
        height: min-content;
    }

	.gallery_choice-btn {
		max-width: 100%;
	}

	.item_detail_wrap_content_product_select_type select {
		height: 48px;
	}

	.item_detail_wrap_content_product_count select {
		width: 40%;
		border-radius: 3px;
		height: 48px;
	}

	.gallery_img.slick-slide.slick-current.slick-active {
		height: auto;
	}
}

@media screen and (max-width:840px){
    .itemdetail_page {
        margin: 0 0 80px;
    }

    .item_detail_wrap {
        display: block;
    }

    .item_detail_wrap_content {
        width: 100%;
    }

    .gallery_choice-btn {
        display: block;
    }

	.item_detail_wrap_gallery {
		width: 500px;
		max-width: 500px;
		aspect-ratio: 4 / 3;
        margin: 0 auto 40px;
	}

    .item_detail_wrap_gallery ul {
        margin: auto;
    }

    .itemlist_main_cardItem_detail{
        margin: 0px 0 16px;
    }

    .itemlist_main_cardItem_detail_comment1{
        margin: 0px 0 8px;
        font-size: 1.4rem;
        min-height: 36px;
    }
}

@media screen and (max-width:560px) {
	.item_detail_wrap_gallery {
		width: 100%;
		max-width: calc(100% - 16px);
	}

    .itemlist_main_cardItem_detail_price_member_text{
        height: 32px;
        margin: 0;
    }

    .itemlist_main_cardItem_detail_price_member_text,
	.item_detail_wrap_content {
		width: 100%;
		padding: 0;
	}
}

/*商品詳細　-みんなのレビュ-　*/
.itemdetail_review_average,
.score_contents {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.itemdetail_review_average{
    justify-content: space-between;
}

.review_average_score {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}

.score_title {
    margin: 0 24px 0 0;
    display: flex;
    align-items: center;
}

.reviewlist_main_card_main.comment {
    margin: 16px 0 24px;
}

.review_average_all a{
    text-decoration: underline;
}

/* みんなのレビューコメント*/
.reviewlist_main_card {
    margin: 0 0 40px;
    padding: 0 8px;
}

.reviewlist_main_card_header_wrap {
    display: flex;
}

.reviewlist_main_card_header_wrap_point {
    margin: 0 16px 0 0;
}

.reviewlist_main_card_header_wrap_title {
    font-weight: bold;
}

.reviewlist_main_card_footer_info {
        display: flex;
    justify-content: flex-end;
    text-align: right;
    font-size: 1.2rem;
    color: var(--color-soft);
}

.reviewlist_main_card_footer_info li:first-child {
	margin: 0 16px 0 0;
}

.reviewlist_main_card_opinion {
    padding: 2px;
    border: var(--border-img);
    margin: 16px 0;
}

.reviewlist_main_card_opinion:empty {
    display: none;
}

/* パスワード付き商品　*/
.itemdetail_secret {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    background: var(--bg-contents);
}

.itemdetail_secret_text{
    margin: 0 0 24px;
}

.itemdetail_secret_contents input {
    margin: 0 0 40px;
    width: 100%;
}

@media screen and (max-width:560px){
    .itemdetail_secret {
        padding: 24px;
    }

	.reviewlist_main_card_header {
		display: block;
		margin: 0 0 8px;
	}

    .reviewlist_main_card_header ul {
        display: block;
    }

    .reviewlist_main_card_main.comment {
        margin: 24px 0;
    }

    .reviewlist_main_card_header_wrap {
		width: 100%;
        display: block;
	}

    .reviewlist_main_card_header_wrap_point {
        margin: 0 0 8px;
    }

    .reviewlist_main_card_main.comment {
        margin: 8px 0;
    }

	.reviewlist_main_card_footer_info {
		width: 100%;
		margin: 16px 0 0;
		display: block;
	}

    .reviewlist_main_card_footer_info li:first-child {
        margin: 0;
    }
}

/* =================================================
	reviewlist レビュー一覧(みんなのレビュー)
================================================= */

#reviewlist .reviewlist_itemWrap_item {
	display: flex;
	justify-content: space-between;
    margin: 0 0 32px;
    padding: 0px 0 32px;
    border-bottom: var(--border-main);
}

#reviewlist .reviewlist_itemWrap_item_image {
	height: 90px;
	aspect-ratio: 4 / 3;
	margin: 0 16px 0 0;
}

#reviewlist .reviewlist_itemWrap_item_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border:var(--border-img);
	box-sizing: border-box;
}

#reviewlist .reviewlist_itemWrap_item_info {
	width: calc(100% - 140px);
	display: flex;
	justify-content: space-between;
}

#reviewlist .reviewlist_itemWrap_item_info_contents {
	width: 70%;
	margin: 0 24px 0 0;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_name {
	margin: 0 0 8px;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_tortalaverage {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 8px;
}

.reviewlist_itemWrap_item_info_contents_tortalaverage_title{
    margin: 0 16px 0 0;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_price,
#reviewlist .reviewlist_itemWrap_item_info_contents_option_stock {
	margin: 0 0 8px;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option_stock b {
	font-weight: initial;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option_count {
	display: flex;
	align-items: center;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option_type select,
#reviewlist .reviewlist_itemWrap_item_info_contents_option_stock select,
#reviewlist .reviewlist_itemWrap_item_info_contents_option_count select {
	height: 2.4px;
	border:var(--border-main);
	border-radius: 3px;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option_type,
#reviewlist .reviewlist_itemWrap_item_info_contents_option_stock {
	margin: 0 0 16px;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option_type select {
	width: 100%;
	height: 28px;
	padding: 0 40px 0 8px;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option_count span {
	min-width: 60px;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option_count select {
	width: calc(100% - 60px);
	height: 28px;
}

#reviewlist .reviewlist_itemWrap_item_info_contents_option {
	margin: 0 0 24px;
}

#reviewlist .reviewlist_main_card {
	margin: 0 0 32px;
	padding: 0 0 32px;
	border-bottom: 1px solid var(--border-light);
}

#reviewlist .reviewlist_main_card_header {
	display: flex;
	justify-content: space-between;
	margin: 0 0 16px;
}

@media screen and (max-width:840px) {
	#reviewlist .reviewlist h2 {
		text-align: left;
	}

	#reviewlist .reviewlist_itemWrap_item_info {
		display: block;
	}

	#reviewlist .reviewlist_itemWrap_item_info_contents {
		width: 100%;
	}

	#reviewlist .reviewlist_itemWrap_item_info_contents_option {
		margin: 0 0 24px;
	}

    #reviewlist .reviewlist_itemWrap_item_info_contents_option_count{
        display: block;
    }

	#reviewlist .reviewlist_itemWrap_item_info_contents_option_type select,
	#reviewlist .reviewlist_itemWrap_item_info_contents_option_count select {
		width: 100%;
        height:52px;
	}

	#reviewlist .reviewlist_main_card_header {
		flex-wrap: wrap;
	}

	#reviewlist .reviewlist_main_card_header_title {
		width: 100%;
		margin: 0 0 16px;
	}
}

/* 商品品切れ
----------------------------------------*/
.sold_out .btn_primary{
    height: 36px;
    margin: 0 0 24px;
}

.sold_out .item_soldout_label_text {
    height: 40px;
    background: var(--bg-boxshadow);
    color: var(--color-white);
    margin: 0 0 24px;
}

#arrival_notice_request_wrap {
    display: none;
}

input.soldout_form_submit{
    height: auto;
}

@media screen and (max-width:840px){
    .sold_out .btn_primary,
    .sold_out .item_soldout_label_text {
        height: 52px;
    }
}

/* 定期購入
----------------------------------------*/
.itemdetail_subscription_title {
    font-weight: bold;
}

.itemdetail_subscription_text {
    margin: 0 0 16px;
}

.itemdetail_subscription_text ul li {
    display: flex;
}

.itemdetail_subscription dl {
    padding: 16px;
    margin: 16px 0;
    border: var(--border-main);
}

.itemdetail_subscription_title {
    margin: 0 0 4px;
}

/* オークション商品
----------------------------------------*/
.auction_item_submit {
    padding: 16px;
    background: var(--bg-contents);
    margin: 0 0 24px;
}

.auction_item_submit .item_price {
    display: flex;
    align-items: center;
    margin: 0 0 16px;
}

.item_price_priority_title {
    min-width: 96px;
}

.auction_item_submit  .current_price .item_price_priority_about {
    font-size: 1.8rem;
}

.item_price_priority {
    display: flex;
    margin: 0 0 16px;
}

.content_attention.errormessage a {
    text-decoration: underline;
}

.auction_item_submit input[type="number"] {
    width: calc(100% - 24px);
    margin: 0 0 24px;
    height: 40px;
}

input.btn_submit_cart.btn_main{
    height: 40px;
}

.is_canceled_form span {
    margin: 0 0 0 8px;
}

.item_top_bidder{
    margin: 0 0 24px;
    font-weight: bold;
    position: relative;
    padding: 24px 36px 24px 56px;
    border: 1px solid var(--color-point);
}

.item_top_bidder:before{
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-point);
}

.item_top_bidder:after{
    content: '';
    position: absolute;
    left: 25px;
    top: calc(50% - 1px);
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 9px;
    border: var(--border-white);
    border-width: 0px 2px 2px 0;
}

.item_delivery {
    display: flex;
    margin: 0 0 16px;
}

@media screen and (max-width:840px){
    .auction_item_submit input[type="number"],
    input.btn_submit_cart.btn_main {
        height: 52px;
    }
}

/* オークション - 入札確認 */
.auction_bid_wrap {
    display: flex;
	justify-content: space-between;
}

.auction_bid_wrap_itemName {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 16px;
    padding: 0 16px 0 0;
}

.auction_bid_wrap_itemImage {
    height: 236px;
    max-width: 100%;
    margin: 0 auto 24px;
    border: 1px solid var(--bg-item_gallery);
    aspect-ratio: 4 / 3;
}

.auction_bid_wrap_itemImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: var(--border-img);
}

.auction_bid_about {
    width: 50%;
}

.auction_bid_price {
    width: 50%;
    max-width: calc(100% - 270px);
    padding: 0 0 0 16px;
    margin: 0 0 0 16px;
    box-sizing: border-box;
}

.auction_bid_price dl {
    margin: 0 0 40px;
}

.auction_bid_price dl dt:first-child {
    margin: 0;
}

.auction_bid_price dt {
    margin: 16px 0 0;
}

.auction_bid_price dd {
    text-align: right;
    border-bottom: 1px solid #ccc;
    padding: 0 0 16px 0;
    font-size: 24px;
}

.auction_bid_comp_btn {
    text-align: center;
    margin: 0 auto 24px;
    max-width: 550px;
    height: 52px;
    background:var(--btn-main-bg);
    border-radius: 25px;
}

.auction_bid_comp_btn a {
    width: 100%;
    color: var(--btn-main-color);
    font-weight: bold;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auction_bid_price dd span {
    font-size: 14px;
}

.auction_bid_price_bid_price {
    font-weight: bold;
    margin: 0 0 16px 0;
}

.auction_bid_price_info {
    font-weight: bold;
    margin: 0 0 24px;
}

.auction_bid_about_back a {
    color: var(--color-link);
}

@media screen and (max-width:580px){
	.auction_bid_wrap {
        display: block;
    }
    .auction_bid_price,
    .auction_bid_about {
        width: 100%;
    }
    .auction_bid_wrap_itemImage{
        margin: 0 auto 40px;
    }
    .auction_bid_price {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 0 64px;
    }
    .auction_bid_about_back {
        text-align: center;
        margin: 0 0 40px;
    }
}


/* =================================================
	specific_transaction_page - 特定商取引法
================================================= */
#specific_transaction_page h3 {
    margin: 0 0 16px;
}

.laws_list {
    display: flex;
    margin: 0 0 8px;
}

.laws_list li {
    min-height: 56px;
    display: flex;
    align-items: center;
}

.laws_list_title{
    min-width: 196px;
    min-height: auto;
    height: auto;
}

.laws_list_comment {
    width: calc(100% - 146px);
}

@media screen and (max-width:840px){
    .laws_list {
        display: block;
        margin: 0 0 8px;
    }

    .laws_list li {
        min-height: auto;
        display: flex;
        align-items: center;
    }

    .laws_list_title{
        margin: 0;
    }

    .laws_list_comment {
        margin: 16px 0 24px;
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }
}

/* =================================================
	inquiry_page - お問い合わせ
================================================= */
.inquiry_wrap,
.inquiry_confirmation {
    margin: 0 0 40px 0;
}

.inquiry_header {
    padding: 0 0 16px;
}

.inquiry_wrap_list,
.inquiry_confirmationList{
    display: flex;
    margin: 0 0 8px;
}

.inquiry_page
.inquiry_wrap_list li {
    min-height: 56px;
    display: flex;
    align-items: center;
}

.inquiry_page .common_list_title{
    height: auto;
}

.inquiry_wrap_listData {
    display: flex;
    width: 100%;
}

.inquiry_wrap_listData input {
    height: 40px;
    width: 100%;
}

.inquiry_wrap_listData textarea {
    min-height: 160px;
    width: 100%;
}

.inquiry_btn{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inquiry_btn_next .btn_main,
.inquiry_btn .btn_main{
    width: 330px;;
    margin: 0 0 40px;
}

.inquiry_btn_reset .btn_primary,
.inquiry_btn .btn_primary {
    width: 330px;
}

.inquiry_confirmationList_comment{
    display: flex;
    align-items: center;
}

.inquiry_button {
    width: 330px;;
    margin: 0 auto;
}

@media screen and (max-width:840px){
    .inquiry_wrap_list,
    .inquiry_confirmationList{
        display: block;
        margin: 0 0 40px;
    }

    .inquiry_wrap_listData input{
        height: 52px;
    }

    .inquiry_page .inquiry_wrap_list li{
        min-height: auto;
    }

    .inquiry_wrap_list li {
        min-height: auto;
    }

    .inquiry_btn_next,
    .inquiry_btn_reset{
        padding: 0 8px;
    }

    .inquiry_btn_next .btn_main,
    .inquiry_btn .btn_main,
    .inquiry_btn_reset .btn_primary,
    .inquiry_btn .btn_primary{
        width: 330px;
        margin: 0 0 56px;
    }

    .inquiry_confirmationList_comment{
        padding: 0 8px;
    }

    .inquiry_wrapcommon_fin_message,
    .inquiry_confirmation {
        margin: 0 0 80px 0;
    }

    .inquiry_button {
        width: 330px;
        margin: 0 auto;
    }
}

@media screen and (max-width:560px){
    .inquiry_btn_next,
    .inquiry_btn_reset{
        width: 100%;
    }

    .inquiry_btn_next .btn_main,
    .inquiry_btn .btn_main,
    .inquiry_btn_reset .btn_primary,
    .inquiry_btn .btn_primary{
        width: 100%;
        margin: 0 0 56px;
    }

    .inquiry_btn li {
        width: 100%;
    }

    .inquiry_button{
        width: 100%;
    }

    .inquiry_btn .btn_primary{
        -webkit-appearance: none;
        -moz-appearance: none;
    }
}


/* =================================================
	Check cart
================================================= */
#checkcart_page .table1 .tr2 .price,
#checkcart_page .table1 .tr2 .total {
	text-align: right;
}

#checkcart_page .btn_submit_delete,
#checkcart_page .btn_submit_quantity,
#checkcart_page .btn_submit_return,
#checkcart_page .btn_submit_checkout{
	color:#FFFFFF;
	background: var(--bg-main);
	border: none;
	padding: 4px 8px 3px;
	cursor: pointer;
	font-size: 12px;
	text-decoration: none;
	display: inline-block;
}

#checkcart_page .goto_cart .btn_submit_return{
	background-image: url(https://cart.fc2img.com/template/basic_black/image/btn/btn_back.png);
	background-repeat: no-repeat;
	background-position: 8px center;
	padding:4px 8px 3px 24px;
}

#checkcart_page .goto_cart .btn_submit_checkout{
	padding:4px 24px 3px;
}

@media screen and (max-width:560px){
    #checkcart_page .btn_submit_delete,
    #checkcart_page .btn_submit_quantity,
    #checkcart_page .btn_submit_return,
    #checkcart_page .btn_submit_checkout{
        font-size: 1.4rem;
    }
}


/* =================================================
	subscription　-　定期購入
================================================= */
.subscription_itemList{
    display: flex;
    min-height: 56px;
    margin: 0 0 8px;
}

@media screen and (max-width: 840px) {
    .subscription_itemList {
        display: block;
        margin: 0 0 40px;
    }
    .checkout_formWrap_contentsList_title {
        min-height: auto;
        min-width: auto;
    }

    .checkout_formWrap_contentsList_input.form_input input,
    .checkout_formWrap_contentsList_input label {
        margin: 0;
    }

}

.subscription_item_header {
    margin: 0 0 16px;
    padding: 0 8px;
    background: var(--bg-contents);
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: bold;
    height: 40px;
}

.subscription_item_header .count{
    margin: 0;
}

.subscription_item {
    margin: 0 0 40px;
}
.subscription_item_title_sp {
    display: none;
}
.subscription_item_contents_list {
    display: flex;
}

.name.subscription_item_headerTitle,
.subscription_item_name  {
    width: 40%;
}

.count.subscription_item_headerTitle,
.price.subscription_item_headerTitle,
.total.subscription_item_headerTitle,
.subscription_item_order,
.subscription_item_shipping,
.subscription_item_price{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.subscription_item_contents {
    padding: 0 8px;
}

.subscription_page .form_input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.formbutton{
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width:840px){
    .subscription_page .form_input {
        padding: 0 8px;
    }
    .subscription_item_header {
        display: none;
    }
    .subscription_item_contents_list {
        display: block;
    }
    .subscription_item_name,
    .subscription_item_order,
    .subscription_item_shipping,
    .subscription_item_price {
        width: 100%;
        margin: 0 0 8px;
    }
    .subscription_item_order,
    .subscription_item_shipping,
    .subscription_item_price {
        text-align: end;
        justify-content: flex-end;
        align-items: initial;
    }
    .subscription_item_contents_list_card.subscription_item_name>div {
        width: 100%;
    }
    .subscription_item_title_sp {
        display: block;
    }
    .subscription_item_contents {
        width: 25%;
    }
    .subscription_item_contents dl {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 560px) {
    .subscription_item_contents {
        width: 34%;
    }
}


/* =================================================
	pwreissue_page　-　パスワード再発行
================================================= */
.pwreissue_info {
    margin: 0 0 24px;
    text-align: center;
}

.pwreissue_info_wrap {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-contents);
    padding: 40px;
    text-align: center;
}

.pwreissue_info_wrap_title {
    max-width: 330px;
    margin: 0 auto 16px;
    text-align: left;
}

.pwreissue_page input[type="submit"] {
    width: 330px;
    height: 28px;
    padding: 4px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none !important;
    background: var(--bg-main);
    color: var(--color-white);
    border: none;
}

.pwreissue_page .pwreissue_info_wrap_btn{
    display: flex;
    justify-content: center;
}

.pwreissue_page input[type="email"] {
    width: 330px;
    height: 40px;
    margin: 0 auto;
    border: var(--border-main);
}

@media screen and (max-width: 840px) {
    .pwreissue_page input[type="submit"],
    .pwreissue_page input[type="email"] {
        height: 52px;
    }
}

@media screen and (max-width: 560px) {
    .pwreissue_info_wrap,
    .pwreissue_info {
        text-align:left;
    }

    .pwreissue_info_wrap{
        padding: 40px 8px;
    }

    .pwreissue_info_wrap_title {
        max-width: 100%;
    }

    .pwreissue_page input[type="submit"],
    .pwreissue_page input[type="email"] {
        width: 100%;
    }
}


/* =================================================
	members_withdraw　-　会員退会
================================================= */
.withdraw_header {
    max-width: 550px;
    margin: 0 auto 80px;
    padding: 32px;
    box-sizing: border-box;
    background: var(--bg-attention);
}

.withdraw_header_img {
    text-align: center;
}

.withdraw_header_imgIcon{
    fill: var(--error-color);
    font-size: 50px;
}

.withdraw_header_text {
    text-align: center;
}

.withdraw_header_text:last-child {
    margin: 40px 0 0;
}

.withdraw_header_text span {
    font-size: 1.6rem;
    font-weight: bold;
}

.withdrawbutton {
    display: flex;
    flex-direction: column;
}

.withdrawbutton a {
    max-width: 330px;
    margin: 0 auto;
}

.form_withdraw {
    max-width: 550px;
    margin: 0 auto;
}

.withdrawbutton input {
    margin: 0 0 56px;
}

@media screen and (max-width:840px){
    .withdrawbutton a {
        max-width: 330px;
        margin: 0 auto;
    }
}

@media screen and (max-width:560px){
    .withdrawbutton a {
        max-width: 100%;
    }
}


/* =================================================
	login_page -会員ログイン
================================================= */
.login_page_message {
    margin: 0 0 16px;
}

.login_page_wrap {
    display: flex;
    justify-content: space-between;
}

.login_page_wrap form {
    width: 48%;
}

.login_page_wrap_loginCard {
    width: 100%;
}

.login_page_wrap_registCard {
    width: 48%;
}

.login_page_wrap_loginCard_message,
.login_page_wrap_registCard_message {
    margin: 0 0 24px;
}

.login_page_wrap_loginCard_form {
    background: var(--bg-contents);
    padding: 16px;
}

.login_page_wrap_loginCard_form .common_list_title {
    padding: 0;
    margin: 0 0 8px 0;
    min-height: auto;
}

.login_page_wrap_loginCard_form_input,
.login_page_wrap_loginCard_form_input input {
    height: 40px;
    width: 100%;
}

.login_page_wrap_loginCard_form li{
    margin: 0 0 16px;
}

.pw_reisue a {
    color: var(--color-soft);
}

@media screen and (max-width:840px){
    .login_page_wrap{
        display: block;
    }

    .login_page_wrap form,
    .login_page_wrap_registCard {
        width: 100%;
    }

    .login_page_wrap form {
        margin: 0 0 56px;
    }

    .login_page_wrap_loginCard_message,
    .login_page_wrap_registCard_message {
        margin: 0 0 16px;
    }

    .login_page_wrap_loginCard_form li{
        margin: 0 0 24px;
    }

    .login_page_wrap_loginCard_form_input,
    .login_page_wrap_loginCard_form_input input {
        height: 52px;
    }
}

@media screen and (max-width:560px){
    .login_page_wrap form,
    .login_page_wrap_registCard {
        width: 100%;
        margin: 0 0 56px;
    }
}


/* =================================================
	membersinfo_page - 会員情報
================================================= */
.membersinfo_formWrap_list {
    display: flex;
    margin: 0 0 8px;
}

.membersinfo_formWrap_list_title,
.membersinfo_formWrap_list_content {
    min-height: 56px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.membersinfo_userWrap_card_info {
    display: flex;
}

/* 会員情報の変更
----------------------------------------*/
.membersinfo_formWrap_list_content.info_content input,
.membersinfo_formWrap_list_content.info_content select,
.membersinfo_formWrap_list_content.info_content textarea{
    height: 40px;
}

.membersinfo_formWrap_list input[type="submit"],
.membersinfo_formWrap_list label {
    margin: 0 8px;
}

.membersinfo_formWrap_list_content input[name="SubmitEdit"],
.membersinfo_formWrap_list_content input[name="SubmitPedit"]  {
    width: 330px;;
    height: 28px;
    color: var(--btn-main-color);
    background: var(--bg-main);
    border: none;
    text-decoration: none !important;
}

.membersinfo_formWrap_list_content input[name="Cancel"] {
    width: 330px;;
    height: 28px;
}

.membersinfo_formWrap_list_content label {
    padding: 0 16px 0 0;
}

.edit_wrap_text{
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
    margin: 0 0 40px;
}

.edit_wrap_btn {
    display: flex;
    justify-content: center;
}

.edit_wrap_btn a{
    width:330px;
    margin: 0 0 40px;
}

@media screen and (max-width:840px){
    .membersinfo_formWrap_list {
        display: block;
        margin: 0 0 40px;
    }

    .membersinfo_formWrap_list_content.info_content {
        min-height: auto;
        padding: 0 8px;
        display: flex;
        flex-wrap: wrap;
    }

    .membersinfo_formWrap_list_title,
    .membersinfo_formWrap_list_content {
        min-height: 40px;
        height: auto;
    }

    .membersinfo_formWrap_list_content.info_content input,
    .membersinfo_formWrap_list_content.info_content select,
    .membersinfo_formWrap_list_content.info_content textarea{
        height: 52px;
        width: 100%;
    }

    .membersinfo_formWrap_list_content.info_content input[type="radio"] {
        width: initial;
    }

    .membersinfo_formWrap_list_content.info_content input[type="submit"] {
        margin: 0 0 40px;
    }

    .edit_wrap_text {
        margin: 0 0 80px;
    }

    .edit_wrap_btn {
        display: flex;
    }

    .edit_wrap_btn a {
        width: 330px;
        margin: 0 0 40px;
    }
}

@media screen and (max-width:560px){
    .edit_wrap_btn a {
        width: 100%;
    }
}


/* =================================================
	会員登録　-　members_signup
================================================= */
.form_signup_info {
    margin: 0 0 16px;
    font-weight: bold;
}

.members_signup_wrap_form_list {
    margin: 0 0 16px;
}

.members_signup_wrap_form_btn input[type="submit"] {
    width: 330px;
    height: 28px;
    margin: 56px auto 0;
}


/* 新規登録入力画面
----------------------------------------*/

.members_signup_wrap_form{
    max-width: 550px;
    margin: 0 auto;
}

.members_signup_wrap_form_list {
    display: flex;
    align-items: center;
    height: 56px;
    margin: 0 0 16px;
}

.members_signup_wrap_form_listTitle{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.members_signup_wrap_form_listData {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.members_signup_wrap_form_listData input,
.members_signup_wrap_form_listData select,
.members_signup_wrap_form_listData textarea {
    display: flex;
    align-items: center;
    height: 40px;
    margin: 0 4px 0 0;
    min-width: 330px;
}

.members_signup_wrap_form_listData label {
    display: flex;
    justify-content: flex-start;
}

.members_signup_wrap_form_listData input[type="checkbox"] {
    min-width: inherit;
    height: inherit;
}

.signupbutton .btn_main{
    width: 330px;
}

.signupbutton {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.signupbutton .btn_main {
    margin: 0 0 40px;
}

.signupbutton .btn_primary {
    width: 330px;
}

.members_signup_wrap_main {
    margin: 0 0 40px;
}

.members_signup_wrap_header_title {
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
    margin: 0 0 40px;
}

.members_signup_wrap_header {
    margin: 0 auto 40px;
}

@media screen and (max-width:840px){
    .members_signup_wrap_header {
        max-width: 100%;
    }
    .members_signup_wrap_main{
        margin: 0 0 56px;
    }
    .members_signup_wrap_form {
        max-width: 100%;
    }
    .members_signup_wrap_form_list {
        display: block;
        height: auto;
        margin: 0 0 16px;
    }
    .members_signup_wrap_form_listData input,
    .members_signup_wrap_form_listData select,
    .members_signup_wrap_form_listData textarea{
        min-width: calc(100% - 14px);
        height: 52px;
    }
    .members_signup_wrap_form_btn input[type="submit"] {
        width: 100%;
        height: 52px;
    }
    .members_signup_data {
        padding: 0 8px;
    }
    .signupbutton .btn_main{
        margin: 0 0 56px;
    }
    .signupbutton .btn_main,
    .signupbutton .btn_primary {
        width: 100%;
    }
}


/* =================================================
	checkcart_page カートの中身
================================================= */
.checkcart_wrap h3 {
    margin: 0 0 24px;
}

.checkcart_page_wrap {
    margin: 0 0 56px;
}

.checkcart_title {
    margin: 0 0 16px;
    background: var(--bg-contents);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 40px;
}

.checkcart_title .name,
.checkcart_title .count,
.checkcart_title .price,
.checkcart_title .total,
.checkcart_title .edit {
    margin: 0;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-weight: bold;
}

.checkcart_title .name {
    width: 40%;
}

.checkcart_title .count {
    width: 9%;
}

.checkcart_title .price,
.checkcart_title .total,
.checkcart_title .edit {
    width: 17%;
}

.checkcart_wrap_item {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    margin: 0 0 16px;
}

.checkcart_wrap_item .name {
    padding: 0 8px;
    box-sizing: border-box;
}

.checkcart_wrap_itemImage {
    height: 90px;
    aspect-ratio: 4 / 3;
    border:var(--border-image);
    box-sizing: border-box;
}

.checkcart_wrap_itemImage img {
    width: 100%;
    height: 100%;
    border: var(--border-img);
    object-fit: cover;
    box-sizing: border-box;
}

.checkcart_wrap_name {
    display: flex;
    width: 40%;
}

.checkcart_wrap_itemContetnt {
    width: 60%;
    display: flex;
}

.checkcart_wrap_itemContetnt_title{
    display: none;
}

.checkcart_wrap_itemContetnt_countorder{
    width: 100%;
}

.checkcart_wrap_itemContetnt .price,
.checkcart_wrap_itemContetnt .name,
.checkcart_wrap_itemContetnt .count,
.checkcart_wrap_itemContetnt .price,
.checkcart_wrap_itemContetnt .total,
.checkcart_wrap_itemContetnt .edit{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 8px;
    box-sizing: border-box;
}

.checkcart_wrap_itemContetnt .price,
.checkcart_wrap_itemContetnt .total,
.checkcart_wrap_itemContetnt .edit {
    width: 28%;
}

.checkcart_wrap_itemContetnt .count {
    display: flex;
    flex-direction: column;
    width: 16%;
}

.checkcart_wrap_itemContetnt_text{
    text-align: center;
}

.checkcart_wrap_itemContetnt_text .btn_submit_quantity{
    margin: 16px 0 0;
}

.checkcart_wrap_itemContetnt select {
    min-width: 60px;
    margin: 0 0 8px;
}

.checkcart_wrap_itemContetnt input {
    min-width: 60px;
}

.checkcart_wrap_itemContetnt a.btn_main {
    max-width: 80px;
}

.checkcart_wrap_totalWrap {
    display: flex;
    justify-content: flex-end;
    padding: 8px;
    background: var(--bg-contents);
    font-size: 1.8rem;
}

.checkcart_wrap .importantmessage{
    margin: 16px 0 80px;
    text-align: right;
}

.checkcart_page .goto_cart {
    width: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
}

.checkcart_page .goto_cart_next{
    width: 100%;
    margin: 0 0 56px;
}

.checkcart_page .goto_cart_back {
    width: 330px;
}

.checkout_cart_in {
    .checkcart_title {
        .name { width: 40%; }
        .count, .price, .total { width: 20%; }
    }
    .checkcart_wrap_itemContetnt {
        .count, .price, .total { width: 33%; }
    }
}

@media screen and (max-width:1200px) {
    .checkcart_wrap_itemImage {
        height: 60px;
    }
}

@media screen and (max-width:840px) {
    .checkcart_page_wrap {
        margin: 0 0 56px;
    }

    .checkcart_title {
        display: none;
    }

    .checkcart_wrap_item {
        display: block;
        margin: 0 0 56px;
    }

    .checkcart_wrap_item :last-child{
        margin: 0;
    }

    .checkcart_wrap_name {
        display: flex;
        width: 100%;
        margin: 0 0 16px;
    }

    .checkcart_wrap_item .name {
        margin: 0 0 0 8px;
        width: 100%;
        padding: 8px;
        background: var(--bg-contents);
    }

    .checkcart_wrap_itemContetnt {
        width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .checkcart_wrap_itemContetnt_title{
        display: block;
        font-weight: bold;
    }

    .checkcart_wrap_itemContetnt .price,
    .checkcart_wrap_itemContetnt .total,
    .checkcart_wrap_itemContetnt .edit,
    .checkcart_wrap_itemContetnt .count {
        width: 100%;
        padding: 0;
        justify-content: flex-end;
    }

    .checkcart_wrap_itemContetnt .price {
        margin: 0 0 16px;
    }

    .checkcart_wrap_itemContetnt .count{
        height: auto;
    }

    .count .checkcart_wrap_itemContetnt_text {
        display: flex;
        align-items: center;
    }

    .checkcart_wrap_itemContetnt_counttext {
        max-width: 60px;
        min-width: 60px;
        text-align: center;
        margin: 0 0 0 auto;
    }

    .checkcart_wrap_itemContetnt_text .btn_submit_quantity {
        margin: 0;
        width: 60px;
    }

    .checkcart_wrap_itemContetnt_text .count {
        width: 60px;
        margin:0;
    }

    .checkcart_wrap_itemContetnt_countorder {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .checkcart_wrap_itemContetnt_text {
        min-width: 200px;
        text-align: right;
    }

    .checkcart_wrap_itemContetnt_countorder .checkcart_wrap_itemContetnt_text {
        display: flex;
        height: 40px;
    }

    .checkcart_wrap_itemContetnt select{
        margin: 0;
    }

    .checkcart_wrap_itemContetnt .edit {
        justify-content: flex-start;
        align-items: flex-end;
    }

    .checkcart_wrap_itemContetnt .btn_main {
        height: auto;
        background: none;
        color: var(--color-main);
        text-decoration: underline !important;
    }

    .checkcart_wrap_itemContetnt select,
    .checkcart_wrap_itemContetnt input{
        height: 28px !important;
    }

    .checkcart_page .goto_cart_back{
        width: auto;
    }
}

@media screen and (max-width:840px) {
    .checkout_cart_in {
        .checkcart_wrap_itemContetnt {
            .price, .count, .total { width: 100%; }
            .count { flex-direction: row; }
        }
        .count .checkcart_wrap_itemContetnt_text { display: block; }
    }
}


/* =================ac================================
	ご注文情報  - checkout_page
================================================= */
.regi_header {
    margin: 0 0 16px;
}

.checkout_formWrap {
    margin: 0 0 56px;
}

.checkout_formWrap .common_list_title {
    min-height: auto;
    height: initial;
}

.checkout_formWrap_header .point {
    margin: 0 0 16px;
}

.checkout_formWrap_contentsList {
    display: flex;
    min-height: 56px;
    margin: 0 0 8px;
}

.checkout_formWrap_contentsList_title{
    min-height: 56px;
    min-width: 282px;
}

.checkout_formWrap_contentsList_input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.checkout_formWrap_contentsList_input input,
.checkout_formWrap_contentsList_input select,
.checkout_formWrap_contentsList_input textarea {
    height: 40px;
}

.checkout_formWrap_contentsList_input input[type="checkbox"] ,
.checkout_formWrap_contentsList_input input[type="radio"] {
    min-width: inherit;
    height: inherit;
    margin: 0 4px 0 0;
}

.checkout_formWrap_contentsList_input input[type="text"] {
    width: 100%;
}

.checkout_formWrap_contentsList_input label {
    margin: 0 8px 0 0;
    display: flex;
    align-items: center;
}

.registerbutton {
    max-width: 330px;
    margin: 0 auto 56px;
}

.checkout_formWrap_another ul {
    display: flex;
    margin: 16px 0;
}

.checkout_formWrap_another_input.form_input {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checkout_formWrap_another_input textarea {
    min-height: 120px;
    min-width: 330px;
}

.checkout_formWrap_another_input>input {
    min-height: 40px;
    min-width: 330px;
}

.checkout_formWrap_another_input.form_input label {
    display: flex;
    align-items: center;
}

.checkout_formWrap_contentsList_point_input select{
    height: 40px;
}

.checkout_formWrap_regist_message {
    margin: 0 0 16px;
}

.checkout_cartInput_wrap {
    margin: 0 0 160px;
}

.goto_cart {
    max-width: 330px;
    margin: 0 auto;
}

@media screen and (max-width:840px){
    .checkout_formWrap_contentsList_input{
        display: block;
    }

    .checkout_formWrap_contentsList_input input,
    .checkout_formWrap_contentsList_input select,
    .checkout_formWrap_contentsList_input textarea {
        height: 52px;
    }

    .checkout_formWrap_contentsList_input.form_input input,
    .checkout_formWrap_contentsList_input label,
    .checkout_formWrap_contentsList_input select,
    .checkout_formWrap_contentsList_input textarea {
        width: calc(100% - 10px);
        display: inline;
    }

    .checkout_formWrap .checkout_formWrap_contentsList_input.form_input input[type="radio"],
    .checkout_formWrap .checkout_formWrap_contentsList_input.form_input input[type="checkbox"],
    .checkout_formWrap_contentsList_input label{
        width: inherit;
        height: inherit;
        margin: 0 0 16px;
    }

    input#for_check {
        width: auto;
    }
}

@media screen and (max-width:540px){
    .checkout_formWrap_another_input input{
        height: 40px;
    }
}


/* ご注文情報の確認
----------------------------------------*/
.checkcart_wrap h3 {
    margin: 0 0 24px;
}

.checkout_cartConfirm_main_wrap_header{
    margin: 0 0 16px;
    background: var(--bg-contents);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    height: 40px;
}

.checkout_cartConfirm_main_wrap_contents {
    display: flex;
    margin: 0 0 16px;
}

.checkout_cartConfirm_main_wrap_header .name,
.checkout_cartConfirm_main_wrap_header .count,
.checkout_cartConfirm_main_wrap_header .price,
.checkout_cartConfirm_main_wrap_header .total{
    margin: 0;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-weight: bold;
}

.checkout_cartConfirm_main_wrap_header .name {
    width: 40%;
}

.checkout_cartConfirm_main_wrap_header .count,
.checkout_cartConfirm_main_wrap_header .price,
.checkout_cartConfirm_main_wrap_header .total{
    width: 20%;
}

.checkout_cartConfirm_main_wrap_contents_namewarp {
    width: 40%;
    display: flex;
}

.checkout_cartConfirm_main_wrap_contents_itemImage {
    height: 90px;
    aspect-ratio: 4 / 3;
    border:var(--border-image);
    box-sizing: border-box;
}

.checkout_cartConfirm_main_wrap_contents_itemImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: var(--border-img);
    box-sizing: border-box;
}

.checkout_cartConfirm_main_wrap_contents_name {
    margin: 0 8px;
    width: 100%;
    box-sizing: border-box;
}

.checkout_cartConfirm_main_wrap_contents_card {
    display: flex;
    width: 60%;
}

.checkout_cartConfirm_main_wrap_contents_card span {
    display: none;
}

.checkout_cartConfirm_main_wrap_contents_card li {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout_cartConfirm_main_wrap_contents_card_subtotal {
    justify-content: flex-end !important;
}

.checkout_cartConfirm_main_wrap_contents_card_order_title {
    display: none;
}

.checkout_cartConfirm_main_wrap_option{
    margin: 0 0 16px;
}

.checkout_cartConfirm_main_wrap_option_list:first-child {
    border-top: var(--border-main);
    padding: 16px 0 0;
}

.checkout_cartConfirm_main_wrap_option_list {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 8px;
}

.checkout_cartConfirm_main_wrap_option_list:last-child {
    margin: 0;
}

.checkout_cartConfirm_main_wrap_option_list_title {
    text-align: end;
}

.checkout_cartConfirm_main_wrap_option_list_contents {
    min-width: 200px;
    text-align: end;
    margin: 0 8px 0 0;
}

.checkout_cartConfirm_main_wrap_total_list {
    background: var(--bg-contents);
    margin: 0 0 56px;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: right;
    padding: 0 8px;
    font-size: 1.6rem;
    font-weight: bold;
}

.checkout_cartConfirm_main_wrap_total_contents{
    min-width: 30%;
    text-align: right;
}

.checkout_cartConfirm_userinfo {
    margin: 0 0 56px;
}

.checkout_cartConfirm_userinfo_contentsList{
    display: flex;
    align-items: center;
    margin: 0 0 8px;
}

.checkout_cartConfirm_userinfo_contentsList_title {
    min-height: 56px;
    max-width: 196px;
}

.registerbutton1,
.registerbutton2 {
    max-width: 330px;
    margin: 0 auto;
}

.registerbutton1{
    margin: 0 auto 56px;
}

@media screen and (max-width:1200px){
    .checkout_cartConfirm_main_wrap_contents_itemImage {
        height: 60px;
    }
}

@media screen and (max-width:840px){
    .checkout_formWrap_contentsList,
    .checkout_formWrap_another ul {
        display: block;
        margin: 0 0 32px;;
    }

    .checkout_formWrap_contentsList_title{
        min-height: auto;
        min-width: auto;
    }

    .goto_cart_back .btn_primary{
        width: 330px;
        margin: 0 auto;
    }

    .checkout_cartConfirm_main_wrap_header {
        display: none;
    }

    .checkout_cartConfirm_main_wrap_contents {
        display: block;
    }

    .checkout_cartConfirm_main_wrap_contents_namewarp {
        width: 100%;
        margin: 0 0 16px;
    }

    .checkout_cartConfirm_main_wrap_contents_card {
        display: block;
        width: 100%;
    }

    .checkout_cartConfirm_main_wrap_contents_itemImage {
        height: 90px;
    }

    .checkout_cartConfirm_main_wrap_contents_card li {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
        margin: 0 0 8px;
    }

    .checkout_cartConfirm_main_wrap_contents_card_order {
        display: flex;
        justify-content: flex-end;
    }

    .checkout_cartConfirm_main_wrap_contents_card_order_title {
        display: block;
    }

    .checkout_cartConfirm_main_wrap_contents_card_order_text,
    .checkout_cartConfirm_main_wrap_option_list_contents {
        min-width: 30%;
        text-align: end;
    }

    .checkout_cartConfirm_main_wrap_option_list_contents{
        margin: 0;
    }

    .checkout_cartConfirm_userinfo_contentsList {
        display: block;
        width: 100%;
        margin: 0 0 40px;
    }

    .checkout_cartConfirm_userinfo_contentsList_title {
        min-height: auto;
        max-width: 100%;
    }

    .checkout_cartConfirm_userinfo_contentsList_title .list_content {
        width: 100%;
        margin: 0 8px 40px;
    }

    .checkout_cartConfirm_userinfo_contentsList .list_content{
        padding: 0 8px;
        width: auto;
    }

    .checkout_formWrap_contentsList_point_input select {
        height: 40px;
        width: 330px;
        margin: 0 0 16px;
    }
}

@media screen and (max-width:560px){
    .checkout_formWrap_contentsList_input input,
    .checkout_formWrap_contentsList_input select,
    .checkout_formWrap_contentsList_input textarea,
    .checkout_formWrap_contentsList_point_input select {
        height: 52px;
        width: calc(100% - 10px);
        margin: 0 0 16px;
    }

    .checkcart_page .goto_cart,
    .checkcart_page .goto_cart_back,
    .goto_cart_back .btn_primary{
        max-width: 100%;
        width: 100%;
    }

    .registerbutton,
    .registerbutton1,
    .registerbutton2 {
        max-width: 100%;
        margin: 0 auto 56px;
    }
}

/* =================================================
	history - ご注文履歴一覧
================================================= */
.historylist_sort {
    display: flex;
    justify-content: center;
    padding: 16px;
    margin: 0 0 24px;
    background: var(--bg-contents);
}

.historylist_sortbox {
    width: 330px;
    display: flex;
    align-items: center;
}

.historylist_sortbox div {
    width: 264px;
}

.historylist_sortbox select {
    margin: 0 8px 0 0;
}

.historylist_order {
    margin: 0 0 56px;
}

.historylist_order_header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    margin: 0 0 16px;
    background: var(--bg-main);
    color: var(--color-white);
    align-items: center;
}

.historylist_order_header_total {
    font-weight: bold;
}

.historylist_order_header_detail a {
    color: var(--btn-main-color);
}

.historylist_order dl {
    /*商品情報*/
    display: flex;
    padding: 0 0 16px;
    position: relative;
}

.historylist_order dl:last-child {
    margin: 0;
}

.historylist_order dt {
    /*商品タイトル*/
    order: 2;
    width: calc(100% - 258px);
    padding: 0 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    height: 96px;
    line-height: 1.7;
}

.historylist_order .item_image {
    /*商品画像*/
    order: 1;
    margin: 0;
    min-width: 160px;
    max-width: 160px;
    height: auto;
    aspect-ratio: 4 / 3;
}

.historylist_order .item_image img {
    /*商品画像*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: var(--border-img);
    box-sizing: border-box;
}

.historylist_order .item_comment {
    order: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.historylist_order .item_comment p:first-child {
    width: max-content;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    display: -webkit-inline-box;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 17px;
    left: 176px;
}

.historylist_order .item_comment p:first-child a {
    color: var(--color-link);
    text-decoration: underline;
}

.historylist_order .item_comment a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

dd.item_comment :nth-child(2) {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.review_url {
    border: 1px solid var(--color-primary);
    height: 28px;
    display: flex;
    align-items: center;
    width: 118px;
    border: var(--border-main);
}

.historylist_order_link {
    /*リンクボタン*/
    max-width: 550px;
    margin: 0 auto;
}

.historylist_order_link div {
    margin: 40px auto;
}

.historylist_order_link .btn_back a {
    color: var(--color-link);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:560px){
    .historylist_order_header{
        padding: 8px;
    }

    .historylist_order_header_detail a{
        width: 70px;
    }

    .historylist_order .item_image {
        height: 68px;
        width: 90px;
        min-width: 88px;
    }

    .historylist_order dl{
        flex-wrap: wrap;
        width: 100%;
        padding: 0 8px 40px;
        box-sizing: border-box;
    }

    .historylist_order dt{
        height: 90px;
        width: calc(100% - 98px);
        padding: 0 0 0 8px;
        -webkit-line-clamp: 4;
    }

    dd.item_comment :nth-child(2){
        align-items: end;
    }

    .historylist_order .item_comment p:first-child{
        left: 8px;
        bottom: 46px;
    }

    .historylist_order .item_comment{
        justify-content: end;
        width: 100%;
        height: 40px;
        padding: 0;
    }

    .historylist_order_link a {
        margin: 0 0 56px;
    }

    .historylist_order_link .btn_back a{
        height: 52px;
    }
}


/* =================================================
	history ご注文履歴詳細
================================================= */
.history_order {
    border-radius: 3px;
    margin: 0 auto 48px;
    box-sizing: border-box;
}

.history_order_header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 56px;
}

.history_order_header li {
    display: flex;
    align-items: center;
    height: 56px;
}

.item_date {
    margin: 0 0 8px;
}

.item_price_total span {
    font-size: 2.2rem;
    font-weight: bold;
}

.history_order_detail_title {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    background: var(--bg-contents);
    align-items: center;
}

.history_order_detail_title .name {
    width: 50%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history_order_detail_title .count,
.history_order_detail_title .price,
.history_order_detail_title .price_subtotal {

    justify-content: center;
    margin: 0;
    align-items: center;
}

.history_order_detail_title .count{
    width: 10%;
}

.history_order_detail_title .price,
.history_order_detail_title .price_subtotal {
    width: 20%;
}

.history_order_detail_option {
    display: flex;
    flex-direction: column;
    border-top: var(--border-main);
    padding: 8px 0 0 0;
}

.history_order_detail_option_list {
    display: flex;
    justify-content: flex-end;
}

.history_order_detail_option_list li {
    margin: 0 0 8px;
}

/*ご注文履歴詳細商品詳細*/
.history_order_info {
    margin: 0 0 56px;
}

.history_order_detail_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 32px;
    padding: 24px 0 0;
    border-top: 1px solid var(--border-light);
}

.history_order_detail_item_header {
    width: 50%;
}

.history_order_detail_item_headerWrap {
    display: flex;
    width: 100%;
}

.history_order_detail_item_headerWrap_image {
    min-width: 90px;
    max-width: 90px;
    aspect-ratio: 4 / 3;
}

.history_order_detail_item_headerWrap_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: var(--border-img);
    box-sizing: border-box;
}

.history_order_detail_item_headerWrap_name {
    width: calc(100% - 98px);
    margin: 0 0 0 8px;
    padding: 0 8px 0 0;
}

.history_order_detail_item_info {
    width: 50%;
    display: flex;
    align-items: center;
}

.history_order_detail_option_list_title{
    display: none;
}

.option_content{
    min-width: 180px;
    text-align: end;
}

.history_order_detail_item_info_count,
.history_order_detail_item_info_price,
.history_order_detail_item_info_price_subtotal{
    display: flex;
}

.history_order_detail_item_info_count,
.history_order_detail_item_info_price{
    justify-content: center;
}

.history_order_detail_item_info_count{
    width: 20%;
}

.history_order_detail_item_info_price,
.history_order_detail_item_info_price_subtotal{
    width: 40%;
}

.history_order_detail_item_info_price_subtotal {
    justify-content: end;
}

.history_order_detail_option_list_title {

}

.history_order_info_list {
    display: flex;
    margin: 0 0 8px;
    height: 56px;
    align-items: center;
}

.history_order_link {
    max-width: 330px;
    margin: 0 auto;
}

.history_order_link .btn_back {
    margin: 0 0 40px;
}

.history_order_info_message a {
    text-decoration: underline;
}

@media screen and (max-width:840px){
    .history_order_header li{
        display: block;
        height: auto;
        width: 100%;
    }

    .item_date {
        margin: 0 0 24px;
    }

    .item_date :last-child {
        padding: 0 8px;
    }

    .history_order_detail_title{
        display: none;
    }

    .history_order_detail_item{
        display: block;
        padding: 0;
        margin: 0;
    }

    .history_order_detail_item_headerWrap {
        display: flex;
        width: 100%;
        margin: 0 0 24px;
    }

    .history_order_detail_item_headerWrap_image img{
        border: var(--border-img);
    }

    .history_order_detail_item_headerWrap_name {
        width: calc(100% - 98px);
        margin: 0 0 0 16px;
        padding: 0;
    }

    .history_order_detail_item_info {
        width: 100%;
        flex-direction: column;
        align-content: end;
    }

    .history_order_detail_option_list_title{
        display: block;
    }

    .history_order_detail_item_info_content{
        width: 25%;
        text-align: end;
    }

    .option_content {
        min-width: 25%;
        text-align: end;
    }

    .history_order_detail_item_info_count,
    .history_order_detail_item_info_price,
    .history_order_detail_item_info_price_subtotal {
        width: 100%;
        justify-content: end;
        margin: 0 0 8px;
    }

    .history_order_info_list_data {
        padding: 0 8px;
    }

    .history_order_info_list {
        display: block;
        margin: 0 0 24px;
        height: auto;
    }

    .history_order_info_message {
        padding: 8px;
        margin: 0 0 24px;
    }

    .history_order_detail_option_list {
        display: flex;
        width: 100%;
        justify-content: flex-end;
    }
}

@media screen and (max-width:560px){
    .history_order_link{
        max-width: 100%;
    }
}


/* =================================================
	reviewform - 商品のレビューを書く
================================================= */
.reviewform_header {
    margin: 0 0 16px;
}

.reviewform_item {
    display: flex;
    margin: 0 0 16px;
}

.reviewform_item_image {
    aspect-ratio: 4 / 3;
}

.reviewform_item_image img {
    border: var(--border-img);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.reviewform_item .item_name {
    margin: 0 0 0 8px;
}

.reviewform_mainWrap {;
    min-height: 56px;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
}

.form_input.reviewform_mainWrap_input,
.form_input.reviewform_mainWrap_input input,
.form_input.reviewform_mainWrap_input select{
    width: 100%;
    display: flex;
    min-height: 40px;
    align-items: center;
}

.form_input.reviewform_mainWrap_input textarea{
    width: 100%;
    display: block;
    min-height: 200px;
}

.reviewform_main {
    margin: 0 0 56px;
}

.reviewform_main ul:nth-child(4) li {
    min-height: 200px;
}

.formbutton input,
.formbutton .btn_back{
    width: 330px;
    margin: 0 auto 40px;
}

.review_finish_wrap_btn_home {
    margin: 0 0 56px;
}

@media screen and (max-width:840px){
    .reviewform_mainWrap {
        margin: 0 0 24px;
        display: block;
    }

    .reviewform_main ul:nth-child(4) li {
        min-height: auto;
    }
}

@media screen and (max-width:560px){
    .formbutton input,
    .formbutton .btn_back {
        width: 100%;
    }
}


/* =================================================
	paymentoptions -お支払方法
================================================= */
#paymentoptions dt {
    margin: 0 0 24px;
}

#paymentoptions dd p {
    margin: 0 0 16px;
}

/*オークション - 入札完了*/
.auction_bid_comp {
    text-align: center;
}

.auction_bid_comp_text {
    margin: 0 0 40px;
}

.auction_bid_comp_title,
.sended_comp_title {
    font-size: 24px;
    margin: 40px 0;
    padding: 40px 0 0 0;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.auction_bid_comp_title::before,
.sended_comp_title::before{
    content: '';
    position: absolute;
    left: calc(50% - 20px);
    top: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--btn-main-bg);
}

.auction_bid_comp_title::after,
.sended_comp_title::after{
    content: '';
    position: absolute;
    left: calc(50% - 4px);
    top: -2px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 16px;
    border: 1px solid #ffffff;
    border-width: 0px 2px 2px 0;
}

.payment_incomplete {
    line-height: 2;
}

.auction_bid_comp_btn {
    text-align: center;
    margin: 0 auto 24px;
    max-width: 550px;
}

.auction_bid_comp_text span{
	font-weight: bold;
}

/*オークション - 落札完了*/
#auction_successful {
    margin: 56px 0 0 0;
}

.auction_successful_img {
    width: 40px;
    height: 40px;
    margin: 0 auto 62px;
    position: relative;
}

.auction_successful_img::before {
    content: '';
    position: absolute;
    left: calc(50% - 4px);
    top: 16px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 16px;
    border: 2px solid #ffffff;
    border-width: 0px 2px 2px 0;
}

.contents_body .icon_check:before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    width: 30px;
    height: 16px;
    border-radius: 1px;
    border-left: 5px solid var(--color-main);
    border-bottom: 5px solid var(--color-main);
    transform: rotate(-45deg);
}

.icon_auction_successful_img-l svg{
    position: absolute;
    width: 46px;
    height: 46px;
    right: 73px;
    top: 0;
}

.icon_auction_successful_img-r svg{
    position: absolute;
    width: 56px;
    height: 56px;
    left: 64px;
    top: -8px;
}

.icon_auc_ful {
    fill: var(--color-main);
}

.auction_successful_title {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 0 8px;
    text-align: center;
}

.auction_successful_text {
    text-align: center;
    margin: 0 0 62px;
}

.auction_bid_comp_btn {
    text-align: center;
    margin: 0 auto 24px;
    max-width: 550px;
    width: 100%;
    height: 52px;
    margin: 40px auto 0;
    background: var(--btn-main-bg);
    box-shadow: var(--boxshadow-btn-main);
    border-radius: 25px;
    border: none;
}

.auction_bid_comp_btn a {
    font-size: 1.4rem;
    color: var(--btn-main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.auction_bid_comp_text span{
	font-weight: bold;
}

/*オークション - ログイン（落札者認証）*/
.auction_login_text{
    margin: 0 0 40px;
}

#auction_login .list {
    width: 100%;
    margin: 0 0 16px;
}

#auction_login tr {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px;
}

#auction_login th {
    width: auto;
    display: inline-flex;
    font-weight: bold;
    margin: 0 0 4px;
}

#auction_login input {
    width: 100%;
}

#auction_login .pw_reisue a {
    display: inline;
    font-size: 1.4rem;
    text-decoration: underline;
}

/*落札者情報入力*/
#regi_auction .goto_cart .goto_cart_next{
    margin: 0;
}

#regi_auction_checkout .checkout_cartConfirm_userinfo_contentsList_title,
#regi_auction_checkout .list_content {
    display: flex;
    align-items: center;
}

#regi_auction_checkout .checkout_cartConfirm_userinfo_contentsList_title{
    margin: 0 16px 0 0;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap {
    border: 1px solid var(--border-color-gray-light);
    margin: 0 0 16px;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap_contents {
    padding: 16px 0;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap_total,
#regi_auction_checkout .checkout_cartConfirm_main_wrap_option {
    margin: 0;
    padding: 0 0 16px;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_name {
    width: 40%;
    padding: 0px 8px 0 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card {
    width: 100%;
    justify-content: space-between;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap_list_title {
    display: none;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card_order,
#regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card_price {
    width: 20%;
    padding: 8px;
    text-align: center;
}

#regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card_subtotal {
    width: 20%;
    padding: 8px;
    box-sizing: border-box;
    text-align: end;
}

@media screen and (max-width:840px){
    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents{
        display: block;
    }

    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_name {
        width: 100%;
        padding: 0;
        display: block;
    }

    #regi_auction_checkout .checkout_cartConfirm_main_wrap_list_title {
        display: block;
    }

    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_name,
    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card {
        justify-content: space-between;
    }

    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card{
        width: 100%;
    }

    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card_order {
        width: auto;
        padding: 8px 0;
        text-align: center;
    }

    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card_order,
    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card_price,
    #regi_auction_checkout .checkout_cartConfirm_main_wrap_contents_card_subtotal{
        width: auto;
        padding: 0;
    }

    #regi_auction_checkout .checkout_cartConfirm_main_wrap_list_contents,
    #regi_auction_checkout .checkout_cartConfirm_main_wrap_option_list_contents,
    #regi_auction_checkout .checkout_cartConfirm_main_wrap_total_contents{
        min-width: 30%;
        text-align: end;
    }

    #regi_auction_checkout h4 {
        margin: 0 0 16px;
    }

    .common_list_title br {
        display: none;
    }

    #regi_auction_checkout .checkout_cartConfirm_userinfo_contentsList_title {
        margin: 0 0 16px;
    }

    #regi_auction_checkout .form_input.list_content {
        margin: 0;
    }
}

@media screen and (max-width:560px){
    #regi_auction .goto_cart {
        max-width: initial;
    }
}

/*auction共通*/
#auction_bid .errormessage,
#auction_login .errormessage{
    max-width: 100%;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*オークション - 落札者情報完了*/
.content_message p {
    margin: 0 0 24px;
}

.second_payment {
    max-width: 500px;
    margin: 0 auto 62px;
    background: var(--bg-contents);
    padding: 16px;
    box-sizing: border-box;
}


/* =================================================
	Footer
================================================= */
footer {
    width: 100%;
    padding: 0 16px 40px 16px;
    margin-top: auto;
    box-sizing: border-box;
    background: var(--bg-main);
    color: var(--color-white);
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    right: 0;
}

button#js-pagetop {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.footer_link {
    display: flex;
    justify-content: flex-end;
}

.footer_link li {
    border: 1px solid #fff;
    padding: 8px;
    min-width: 80px;
    display: flex;
    justify-content: center;
}

.footer_link li a {
    color: var(--color-white);
}

.footer_copy {
    text-align: center;
    padding: 40px 40px 0;
    color: var(--color-white);
}

/* ギャラリー画像 */
.gallery-image {
    width: 100%; /* 親要素に合わせる */
    cursor: pointer; /* クリックできることを示す */
    transition: transform 0.2s;
}

.gallery-image:hover {
    transform: scale(1.05); /* ホバー時に少し拡大 */
}

/* オーバーレイ全体 */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* オーバーレイ内の画像 */
.overlay-image {
    max-width: 90%;
    max-height: 90%;
}

/* 閉じるボタン */
.overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1
}

.gallery img {
	cursor: pointer;
	transition: transform 0.3s;
}

.gallery img:hover {/*画像をクリックするとfocusする*/
	transform: scale(1.04);
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 10000;
}

.overlay img {
	max-width: 90%;
	max-height: 90%;
}

.overlay .close {
	position: absolute;
	top: 20px;
	right: 40px;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
}

.overlay .next,
.overlay .prev {
	position: absolute;
	top: 50%;
	color: var(--color-white);
	font-size: 40px;
	cursor: pointer;
	user-select: none;
}

.overlay .next {
	right: 20px;
}

.overlay .prev {
	left: 20px;
}


/* ================================
   ヘッダーロゴ文字：ゴールドテクスチャ風 + メイリオ + hoverで明るく
================================ */

/* フォント（ヘッダーだけメイリオ優先に） */
#header h1,
#header h1 a{
  font-family: Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* まずは全ブラウザで見える“保険色” */
#header h1 a{
  color: #d8b46a;          /* 明るめゴールド（フォールバック） */
  text-decoration: none;
  display: inline-block;
  overflow: visible;       /* 全体の a{overflow:hidden} 対策 */
  transition: filter .18s ease, text-shadow .18s ease, transform .18s ease;
}

/* 対応ブラウザでは、グラデ＋微細ストライプで“金箔っぽい質感” */
@supports (-webkit-background-clip:text) or (background-clip:text){
  #header h1 a{
    background-image:
      linear-gradient(135deg,
        #8b6a1a 0%,
        #d8b46a 18%,
        #fff1c9 36%,
        #c89a2b 55%,
        #f7e7b2 72%,
        #9b731f 100%
      ),
      repeating-linear-gradient(90deg,
        rgba(255,255,255,.22) 0 1px,
        rgba(0,0,0,0) 1px 3px
      );
    background-size: 100% 100%, 6px 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* hover時：暗くなる(opacity 0.7)を打ち消して、明るく発光 */
#header h1 a:hover,
#header h1 a:focus{
  opacity: 1 !important;   /* 全体 a:hover {opacity:0.7} を無効化 */
  filter: brightness(1.25) saturate(1.15);
  text-shadow:
    0 0 10px rgba(255,230,170,.35),
    0 0 22px rgba(255,230,170,.20);
  transform: translateY(-1px);
}

