@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700');
@import url('https://fonts.googleapis.com/css2?family=Yomogi&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap&text=1234567890');
/* LOAD -  DESTYLE.CSS */
/*  Z-INDEX ========
.global-header 120
#toggle-button 140
.global-nav 140
.search-bar 160;
.js-overlayer 100
#go-page-top 90
#sidebar 150;
*/
/*  BREAKPOINT ========
    breakpoint-xs: 0〜;
    breakpoint-sm: 576px〜;
    breakpoint-md: 768px〜
    breakpoint-lg: 1032px〜;
    breakpoint-xl: 1400px〜;
*/ :root {
    /*=======*/
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"
    --text-color: #333333;
    --theme-color: #373fa0;
    --link-color: #0086ea;
    --light-gray: #f4f7fa;
    --pale-blue: #eff4f8;
    --border-gray1: #d5d5d5;
    --border-gray2: #b2b2b2;
    --red: #de354f;
    /*=======*/
    --x-space: 2.666666666666667vw; /* 基本左右パディング 375px→10px */
    --y-space-xs: 20px;
    --y-space-s: 25px;
    --y-space-m: 35px;
    --y-space-l: 40px;
    --global-header-height: 50px;
}
@media screen and (min-width: 768px) {
    :root {
        --x-space: 2vw;
        --y-space-xs: 25px;
        --y-space-s: 37.5px;
        --y-space-m: 52.5px;
        --y-space-l: 60px;
    }
}
@media screen and (min-width: 1032px), print {
    :root {
        --x-space: calc((100% - 1000px) / 2);
        --y-space-xs: 30px;
        --y-space-s: 50px;
        --y-space-m: 70px;
        --y-space-l: 80px;
        --global-header-height: 140px;
		--search-input:280px;
    }
}
@media screen and (min-width: 1400px) {
    :root {
        --x-space: calc((100% - 1300px) / 2);
		--search-input:410px;
    }
}
html {
    font-size: 62.5%;
    word-break: break-word;
}
@media screen and (min-width: 1032px), print {
    html {
        font-size: 66.964285714285714%;
    }
}
body {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    font-family: var(--font-sans);
    text-align: justify;
    text-justify: inter-character;
    line-break: normal;
}

img {
    max-width: 100%;
    height: auto;
}
[type="text"], [type="email"], [type="search"], [type="tel"], [type="url"], [type="password"], textarea {
    font-size: 16px;
    border: 1px solid var(--border-gray2);
	background-color:#ffffff;
    padding: 6px;
    transition: 100ms;
}
input:focus, textarea:focus {
    outline: none;
}
[type="text"]:focus, [type="email"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="url"]:focus, [type="password"]:focus, textarea:focus {
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, .30);
}
a {
    outline: none;
    color: var(--link-color);
}
a:focus {
    outline: none;
}
@media (hover: hover) {
    a {
        transition: color 200ms ease, background-color 200ms ease, opacity 200ms ease;
    }
}
/* ============================== */
/*  LAYOUT */
/* ============================== */
@media screen and (max-width: 767px) {
    .only-pc {
        display: none;
    }
}
@media screen and (min-width: 768px), print {
    .only-sp {
        display: none;
    }
}
@media screen and (max-width: 1031px) {
    .only-pc2 {
        display: none;
    }
}
@media screen and (min-width: 1032px), print {
    .only-sp2 {
        display: none;
    }
}
#page {
    width: 100%;
}
.container {
    padding: var(--y-space-m) var(--x-space);
    background: #f6f6f6;
}
/* ============================== */
/*  GLOBAL-HEADER SP/PC共通 */
/* ============================== */
.global-header {
    position: fixed;
    z-index: 120;
    width: 100%;
    height: var(--global-header-height);
    top: 0;
    left: 0;
    background: var(--light-gray);
    border-bottom: 1px solid #cfcfcf;
}
.global-header + * {
    padding-top: var(--global-header-height);
}
.site-id {
    margin: 0;
    line-height: 1;
    position: absolute;
    top: 0;
    left: calc(var(--x-space) + 44px);
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 26px;
}
@media screen and (min-width: 1032px), print {
    .site-id {
        left: var(--x-space);
    }
	.site-id img{
		/* height: calc(var(--global-header-height) - 30px); */
		width: 150px;
	}
}
@media screen and (max-width: 1031px) {
	.site-id img{
		/* height: var(--global-header-height); */
		width: 150px;
	}
}
/* ============================== */
/*  GLOBAL-HEADER SP-ONLY */
/* ============================== */
@media screen and (max-width: 1031px) {
    .global-nav {
        position: absolute;
        z-index: 140;
        right: var(--x-space);
        top: 0;
    }
    .header-nav .function-nav {
        display: none;
    }
    .global-nav-list {
        display: flex;
        align-items: center;
        height: var(--global-header-height);
    }
    .global-nav .search {
        position: relative;
    }
    .search-bar {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        padding: 10px;
        z-index: 160;
        background: var(--light-gray);
        display: none;
    }
    .global-nav .search-bar-trigger {
        width: 44px;
        height: var(--global-header-height);
        background: url("../images/ico_search-s.svg") no-repeat center;
        background-size: 100%;
    }
    .search-bar input[type="search"] {
  /*      width: calc(100% - 90px); */
		width:100%;
        border: 1px solid #ddd;
        padding: 6px;
        background: #fff;
		margin:10px 0 0 0;
    }
    .search-bar select.search_select {
        border: 1px solid var(--border-gray2);
		height:40px;
		padding:7px;
		-moz-appearance: menulist;
		-webkit-appearance: menulist;
		background-color: #e3e3e3;
    }
    .search-bar select.search_select option{
		background-color: #ffffff;
    }
    .search-bar .search-button {
        position: absolute;
        top: 61px;
        height: 36px;
        width: 34px;
        right: 11px;
        border: none;
        padding: 7px;
    }
	.search-button{
        background-color: #febd69 
	}
	.search-button:hover{
        background-color: #f3a847 
	}
	/*
    .search .search-cancel {
        color: var(--link-color);
        cursor: pointer;
        font-size: 92.857142857142857%;
        position: absolute;
        top: 10px;
        right: 10px;
        line-height: 38px;
        width: 90px;
        text-align: center;
    }
	*/
	.search .search-cancel {
		width: 50px;
		height: var(--global-header-height);
		top: 0;
		right: 0;
		position: fixed;
		z-index: 140;
	}
	.search .search-cancel .menu-icon::before, 
	.search .search-cancel .menu-icon::after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		transition: transform 0.4s, top 0.2s 0.4s;
		left: 0;
		transform-origin: center;
		background: #000000;
	}
	.search .search-cancel .menu-icon::before {
		top: -8px;
	}
	.search .search-cancel .menu-icon::after {
		top: 8px;
	}
	.search .search-cancel .menu-icon {
		display: block;
		width: 22px;
		height: 2px;
		position: absolute;
		left: 50%;
		top: 50%;
		bottom: auto;
		right: auto;
		transform: translateX(-50%) translateY(-50%);
		transform-origin: center;
		transition: background-color 0.3s;
		background-color: #919191;
		background-color: rgba(255, 255, 255, 0);
	}
	.search .search-cancel .menu-icon::before, 
	.search .search-cancel .menu-icon::after {
		transition: transform 0.4s 0.2s, top 0.2s;
	}
	.search .search-cancel .menu-icon::before {
		top: 0;
		transform: rotate(45deg);
	}
	.search .search-cancel .menu-icon::after {
		top: 0;
		transform: rotate(-45deg);
	}
	
	
    .search-bar .search-button img {
        height: 100%;
        width: auto;
    }
    .global-nav .cart {
        position: relative;
        order: 3;
    }
    .global-nav .cart a {
        border: none;
        height: var(--global-header-height);
        width: 44px;
        background: url("../images/ico_cart-s.svg") no-repeat center;
        background-size: 100%;
        display: block;
    }
    .global-nav .cart .label {
        display: none;
    }
	.global-nav .cart .kingaku_all{
		font-size:12px;
        position: absolute;
        top: 0px;
	}
    .global-nav .cart .cart-amount {
        font-family: 'Inter', sans-serif;
        background: #f1352f;
        font-size: 11px;
        line-height: 1.5;
        position: absolute;
        right: -0.3em;
        top: 5px;
        display: block;
        padding: 0 0.45em;
        color: #fff;
        border-radius: .8em;
        min-width: 16.5px;
        text-align: center;
    }
    .global-nav .favorite {
        width: 44px;
        height: 100%;
        background: url("../images/ico_favorite-s.svg") no-repeat center;
        background-size: 100%;
    }
    .global-nav .favorite a {
        display: block;
        text-indent: -9999px;
        overflow-x: hidden;
        height: 100%;
    }
    .global-nav .login, 
    .global-nav .logout, 
	.global-nav .my-page {
        display: none;
    }
}
/*  TOGGLE BUTTON */
.js-overlayer {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
}
#toggle-button {
    width: 50px;
    height: var(--global-header-height);
    top: 0;
    left: 0;
    position: fixed;
    z-index: 140;
}
#toggle-button .menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    transform-origin: center;
    transition: background-color 0.3s;
    background-color: #919191;
}
#toggle-button .menu-icon::before, #toggle-button .menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.4s, top 0.2s 0.4s;
    left: 0;
    transform-origin: center;
    background-color: #919191;
}
#toggle-button .menu-icon::before {
    top: -8px;
}
#toggle-button .menu-icon::after {
    top: 8px;
}
#toggle-button.js-clicked .menu-icon {
    background-color: rgba(255, 255, 255, 0);
}
#toggle-button.js-clicked .menu-icon::before, #toggle-button.js-clicked .menu-icon::after {
    transition: transform 0.4s 0.2s, top 0.2s;
}
#toggle-button.js-clicked .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}
#toggle-button.js-clicked .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
/* ============================== */
/*  GLOBAL-HEADER PC-ONLY */
/* ============================== */
@media screen and (min-width: 1032px), print {
    #toggle-button {
        display: none;
    }
    .js-overlayer {
        display: none !important;
    }
    #header-nav {
        display: block !important;
    }
    .global-nav {
        position: absolute;
        right: var(--x-space);
        bottom: 10px;
        z-index: 2;
    }
    .header-nav .function-nav {
        display: block;
        position: absolute;
        right: var(--x-space);
        top: 20px;
        font-size: 14px;
        z-index: 1;
    }
    .function-nav ul {
        display: flex;
    }
    .function-nav li {
        padding: 0 0 0 1.7em;
    }
    .header-nav .function-nav a {
        color: inherit;
    }
    .header-nav .function-nav a:hover {
        color: var(--link-color);
    }
    .global-nav-list {
        display: flex;
        align-items: center;
    }
    .global-nav .search {
        position: relative;
    }
    .search-bar {
        position: relative;
        display: block !important;
        margin: 0 50px 0 0;
    }
    .global-nav .search-bar-trigger {
        display: none;
    }
    .search-bar select.search_select {
        width: 250px;
		border: 1px solid var(--border-gray2);
		padding:7px;
		-moz-appearance: menulist;
		-webkit-appearance: menulist;
		background-color: #e3e3e3;
    }
    .search-bar select.search_select option{
		background-color: #ffffff;
    }
    .search-bar input[type="search"] {
        width: var(--search-input);
        border: 1px solid var(--border-gray2);
        padding: 6px 40px 6px 7px;
        background: #fff;
    }
    .search-bar .search-button {
        position: absolute;
        top: 1px;
        height: 36px;
        width: 34px;
        right: 1px;
        border: none;
        padding: 7px;
        text-align: center;
    }
    .search .search-cancel {
        display: none;
    }
    .search-bar .search-button img {
        height: 100%;
        width: auto;
    }
	.search-button{
        background-color: #febd69 
	}
	.search-button:hover{
        background-color: #f3a847 
	}
    .global-nav .cart {
        position: relative;
        margin: 0 10px 0 0;
    }
    .global-nav .cart a {
        background: var(--theme-color) url("../images/ico_cart1.svg") no-repeat left 0.7em center;
        background-size: 23px;
        padding: 0 20px 0 50px;
        height: 38px;
        line-height: 38px;
        border-radius: 5px;
        display: block;
    }
    .global-nav .cart .label {
        font-size: 15px;
        color: #fff;
    }
	.global-nav .cart .kingaku_all{
		font-size:16px;
	}
    .global-nav .cart .cart-amount {
        font-family: 'Inter', sans-serif;
        background: var(--red);
        font-size: 12px;
        line-height: 1.5;
        position: absolute;
        right: -0.5em;
        top: -7px;
        display: block;
        padding: 0 0.45em;
        color: #fff;
        border-radius: .8em;
        min-width: 18px;
        text-align: center;
    }
    .global-nav .favorite a, 
	.global-nav .login a, 
	.global-nav .logout a, 
	.global-nav .my-page a, 
	.global-nav .signup a  {
        display: block;
        font-size: 11px;
        margin-left: 14px;
        padding-top: 30px;
        padding-bottom: 5px;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 28px;
        color: inherit;
    }
    .global-nav .favorite a {
        background-image: url("../images/ico_favorite.svg");
    }
    .global-nav .login a {
        background-image: url("../images/ico_login.svg");
    }
    .global-nav .logout a {
        background-image: url("../images/ico_logout.svg");
    }
    .global-nav .my-page a {
        background-image: url("../images/ico_user.svg");
    }
    .global-nav .signup a {
        background-image: url("../images/ico_signup.png");
    }
    /* scroll */
    .global-header {
        transition: height 200ms ease-in;
    }
    .global-header.js-compact {
        height: 58px;
    }
    .global-nav {
        transition: bottom 200ms ease-in;
    }
    .js-compact .global-nav {
        bottom: 0;
    }
    .function-nav {
        transition: opacity 200ms ease-in;
    }
    .js-compact .function-nav {
        opacity: 0;
    }
    .site-id {
        transition: 200ms ease-in;
    }
    .js-compact .site-id {
        transform: scale(0.388489208633094);
        transform-origin: left center;
    }
}
/* ============================== */
/*  GO PAGETOP */
/* ============================== */
#go-pagetop a {
    display: block;
    position: fixed;
    right: var(--x-space);
    z-index: 90;
    text-indent: -9999px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    transition: 200ms ease;
    opacity: 0;
    bottom: -80px;
    background-color: rgba(55, 63, 160, .7);
    border-radius: 4px;
}
#go-pagetop a.js-show {
    opacity: 1;
    bottom: 25px;
}
#go-pagetop a::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 55%;
    display: block;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 768px), print {
    #go-pagetop a.js-show {
        bottom: 35px;
    }
}
@media screen and (min-width: 1012px), print {
    #go-pagetop a {
        width: 55px;
        height: 55px;
        right: 20px;
    }
    #go-pagetop a.js-show {
        bottom: 35px;
    }
}
@media (hover: hover) {
    #go-pagetop a:hover {
        background-color: var(--theme-color);
    }
}
/* ============================== */
/*  GLOBAL FOOTER */
/* ============================== */
.global-footer {
    background: var(--light-gray);
    padding: var(--y-space-s) var(--x-space) 25px;
}
@media screen and (min-width: 768px), print {
    .global-footer {}
}
.footer-logo {
    margin: 20px 0 20px 0;
	text-align:center;
}
.footer-logo img{
	width: 150px;
}
.footer-link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.4rem;
}
.footer-link li {
    padding: 0 1em;
    margin-bottom: 1em;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin-left: -1px;
}
.footer-link a {
    color: inherit;
}
.copyright {
    text-align: center;
}
.copyright small {
    font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
    .footer-link {
        display: flex;
        justify-content: center;
    }
}
@media screen and (min-width: 1032px), print {
}
@media (hover: hover) {
    .footer-link a:hover {
        color: var(--link-color)
    }
}
/* ============================== */
/*  BREADCRUMB  */
/* ============================== */
.breadcrumb {
	/*
    padding-left: var(--x-space);
    padding-right: var(--x-space);
    padding-bottom: var(--y-space-xs);
	*/
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
    list-style-type: none;
	/*
    padding-top: var(--y-space-xs);
	*/
    padding-top: 15px;
}
.breadcrumb li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    vertical-align: middle;
}
.breadcrumb li + li::before {
    content: "＞";
    font-size: 86%;
    transform: scaleX(0.7);
    margin: 0 0.45em;
    color: #777;
}
.breadcrumb .keikokuHeader .keikoku-title{
	padding:10px 0 0 0;
	text-align:center;
	color:red;
	font-size:20px;
}
.breadcrumb .keikokuHeader .keikoku-text{
	text-align:center;
	color:red;
	font-size:12px;
}
@media screen and (min-width: 1032px) {
	.breadcrumb .flexbox{
		display: flex;
	}
	.breadcrumb ol {
		width:45%;
	}
	.breadcrumb .keikokuHeader{
		width:55%;
	}
}
@media screen and (max-width: 1031px) {
	
}
/* ============================== */
/*  SIDEBAR, MAIN-CONTAINER */
/* ============================== */
.main-container {
    /* padding: var(--y-space-s) var(--x-space) var(--y-space-m);*/
    padding: 5px 30px var(--y-space-m);
}
.global-header + .main-container {
    padding-top: calc(var(--global-header-height) + var(--y-space-s));
}
@media screen and (min-width: 1032px), print {
    .main-container {
        display: flex;
    }
    .main-container.hide-sidebar {
        display: block;
    }
    .main-container.hide-sidebar #sidebar {
        display: none;
    }
}
.main-side{
    width: 100%;
}
#sidebar {
    position: fixed;
    top: var(--global-header-height);
    left: -300px;
    width: 300px;
    z-index: 150;
    background: #fff;
    transition: 200ms;
    overflow-y: scroll;
    height: calc(100vh - var(--global-header-height));
    padding: 10px 10px 140px;
}
#sidebar.js-show {
    display: block;
    left: 0;
}
#sidebar .side-global-nav.only-sp, #sidebar .side-function-nav.only-sp {
    display: block;
}
.side-global-nav-list {
    display: flex;
    align-items: center;
    margin: 10px 0 15px;
}
.side-global-nav-list li {
    width: 50%;
}
.side-global-nav-list li a {
    text-align: center;
    font-size: 12px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-top: 24px;
    color: inherit;
    display: block;
}
.side-global-nav .login a {
    background-image: url("../images/ico_login.svg");
}
.side-global-nav .logout a {
    background-image: url("../images/ico_logout.svg");
}
.side-global-nav .my-page a {
    background-image: url("../images/ico_user.svg");
}
.side-function-nav {
    margin-top: 20px;
    border-top: 1px solid #efefef;
}
.side-function-nav li {
    border-bottom: 1px solid #efefef;
}
.side-function-nav li a {
    padding: 0.5em 6px;
    display: block;
    font-size: 13px;
    color: inherit;
}
@media screen and (min-width: 1032px), print {
    #sidebar, #sidebar.js-show {
        display: block;
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        width: 240px;
        height: auto;
        flex: 0 0 auto;
        margin-right: 30px;
        padding: 0;
        overflow: visible;
    }
    #sidebar .side-global-nav.only-sp, #sidebar .side-function-nav.only-sp {
        display: none;
    }
}
.kirikae-wrapper {
    padding: 5px 0 10px 0;
}
 .category-wrapper {
    padding: 12px 14px;
}
.category_style1 .heading-normal1,
.category_style1 .category-wrapper {
    background: #eff4f8;
}
.category_style2 .heading-normal1,
.category_style2 .category-wrapper {
    background: #fdf3e1;
}
.heading-normal1,
.heading-normal2 {
    line-height: 1;
    font-weight: bold;
    color: #444;
    position: relative;
}
.heading-normal1{
    font-size: 16px;
	padding: 20px 0 20px 20px;
}
.heading-normal2 {
    font-size: 14px;
	padding: 9px 0 9px 6px;
}
.heading-normal1::after,
.heading-normal2::after{
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 7px);
    border-bottom: 2px solid var(--theme-color);
    border-right: 2px solid var(--theme-color);
    transform: rotate(45deg);
}
.heading-normal1::after{
    right: 22px;
}
.heading-normal2::after {
    right: 7px;
}
.heading-normal1.active::after,
.heading-normal2.active::after {
    top: calc(50% - 3px);
    transform: rotate(225deg);
}
.category-list{
    border-top: 1px solid #a8a8a8;
    padding-top:7px;
}
.category-list li.category-item {
    border-bottom: 1px solid #e3e3e3;
    border-bottom: 1px solid #fff;
    font-size: 13px;
    line-height: 1.4;
}
.category-list li.category-item a {
    padding: 8px 20px 8px 6px;
    position: relative;
    display: block;
    color: inherit;
}
.category-list li.category-item a.flexbox{
	display: flex;
}
.category-list li.category-item a .maker_name{
	width:180px;
}
.category-list li.category-item a .new_name{
	color:red;
	font-weight:bold;
	font-size:11px;
}
.filter_count {
    font-family: 'Inter', sans-serif;
    position: absolute;
    top: calc(50% - 0.8em);
    right: 0;
    font-size: 11px;
    line-height: 1.5;
    border-radius: 0.75em;
    padding: 0 0.4em;
    min-width: 16.5px;
    text-align: center;
}
.category_style1 .filter_count{
    background: #b2bfe4;
    color: #fff;
}
.category_style2 .filter_count{
    background: #ffa500;
    color: #fff;
}
.category_style1 .category-list li.category-item a:hover {
	background: #d5dcf0;
}
.category_style2 .category-list li.category-item a:hover {
	background: #ffe4b3;
}
/* ============================== */
/*  HEAD ANNOUNCE */
/* ============================== */
.head-announce > ul {
    border-bottom: 1px solid #cfcfcf;
    text-align: center;
}
.head-announce .slick-track {
    display: table;
}
.head-announce .slick-slide {
    padding: 10px 30px;
    display: table-cell;
    vertical-align: middle;
}
#announce-slider .slide-arrow {
    position: absolute;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background: #fff;
    z-index: 2;
    cursor: pointer;
}
#announce-slider .slide-arrow.prev-arrow {
    left: 0;
}
#announce-slider .slide-arrow.next-arrow {
    right: 0;
}
#announce-slider .slide-arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    transform: rotate(45deg);
}
#announce-slider .slide-arrow.prev-arrow::after {
    left: calc(50% - 3px);
    border-bottom: 2px solid #ddd;
    border-left: 2px solid #ddd;
}
#announce-slider .slide-arrow.next-arrow::after {
    right: calc(50% - 3px);
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
}
#announce-slider .slide-dots {
    text-align: center;
    font-size: 8px;
    line-height: 1;
    position: absolute;
    bottom: -20px;
    width: 100%;
    left: 0;
}
#announce-slider .slide-dots li {
    display: inline-block;
    margin: 0 8px;
    padding: 0;
}
#announce-slider .slide-dots li button {
    position: relative;
    text-indent: -9999px;
    width: 1em;
    height: 1em;
    padding: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    margin: 0;
}
#announce-slider .slide-dots li button:focus {
    outline: none;
}
#announce-slider .slide-dots li button::-moz-focus-inner {
    border: 0;
}
#announce-slider .slide-dots li button::before {
    content: '';
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    opacity: 0.3;
    border-radius: 50%;
}
#announce-slider .slide-dots li.slick-active button::before {
    opacity: 0.9;
}
/* ============================== */
/*  heading-a */
/* ============================== */
.heading-a {
    color: #444;
    font-size: 2.4rem;
    margin: 0 0 1em;
}
@media screen and (min-width: 1032px), print {
    .heading-a {
        font-size: 3.4rem;
    }
}
/* ============================== */
/*  heading-b */
/*  heading-recommend */
/* ============================== */
.heading-b,
.heading-recommend {
    font-size: 2.1rem;
    line-height: 1;
    padding: 0 0 0.5em;
    margin: 0 0 1em;
    position: relative;
}
.heading-b{
    color: var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
}
.heading-recommend{
    color: #dc143c;
    border-bottom: 1px solid #dc143c;
}
.heading-b::after,
.heading-recommend::after {
    content: "";
    bottom: -2px;
    left: 0;
    position: absolute;
    height: 3px;
    width: 6em;
}
.heading-b::after{
    background: var(--theme-color);
}
.heading-recommend::after{
    background: #dc143c;
}
@media screen and (min-width: 1032px), print {
    .heading-b,
	.heading-recommend {
        font-size: 2.6rem;
    }
}
/* ============================== */
/*  heading-d */
/* ============================== */
.heading-d {
    color: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.2em 0 0.5em;
}
@media screen and (min-width: 1032px), print {
    .heading-d {
        font-size: 1.7rem;
    }
}
/* ============================== */
/*  heading-header */
/* ============================== */
.section-header {
    margin: 0 0 10px 0;
    position: relative;
}
.section-header .shoulder {
    font-size: 1.7rem;
}
.section-header .heading-a + .lead {
    margin-top: -1.0em;
}
.section-header .show-all {
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 0.5em;
    display: block;
}
.section-header .show-all a::after {
    content: "→";
    margin-left: 0.2em;
    font-size: 1.35rem;
}
/* ============================== */
/*  major-section_not */
/* ============================== */
.major-section_not{
    margin-top: var(--y-space-m);
}
.major-section + .major-section {
/*    margin-top: var(--y-space-m); */
}
/* ============================== */
/*  section-header2 */
/* ============================== */
.section-header2{
	margin-bottom:20px;
    position: relative;
}
/* ============================== */
/*  section-search */
/* ============================== */
.section-search{
	margin-bottom:20px;
    position: relative;
}
.section-search .section-search_checkbox{
	text-align:right;
}
/* ============================== */
/*  other */
/* ============================== */
.price {
    color: var(--theme-color);
    font-weight: bold;
}
.color-red {
    color: var(--red);
}
.sold-out-text {
    background-color: var(--red);
    display: inline-block;
    padding: 0.2em 1.3em 0.2em 0.6em;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.5;
    position: relative;
}
.sold-out-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    border-width: 0.95em 0.6em 0.95em 0;
}
.footnote-a {
    font-size: 1.25rem;
    margin-top: 0.5em;
}
.footnote-b {
    font-size: 1.25rem;
    margin-top: 0.5em;
    color: var(--red);
}
.footnote-c {
    font-size: 20px;
    margin-top: 0.5em;
    color: var(--red);
}
.disabled{
	pointer-events: none;
}
/* ============================== */
/*  DESCRIPTION-LIST  */
/* ============================== */
.dl-a {
    border-bottom: 1px solid var(--border-gray1);
}
.dl-a > div {
    width: 100%;
}
.dl-a > dt, .dl-a > div > dt {
    border-top: 1px solid var(--border-gray1);
    font-size: 1.6rem;
    padding: 0.7em 0 0;
}
.dl-a > dd, .dl-a > div > dd {
    font-size: 1.4rem;
    padding: 0.5em 0 0.857142857142857em;
}
@media screen and (min-width: 768px), print {
    .dl-a {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid var(--border-gray1);
    }
    .dl-a > div {
        width: 100%;
        display: flex;
    }
    .dl-a > dt, .dl-a > dd, .dl-a > div > dt, .dl-a > div > dd {
        border-top: 1px solid var(--border-gray1);
    }
    .dl-a > dt, .dl-a > div > dt {
        width: 200px;
        padding: 1.3em 2em 1.3em 0;
    }
    .dl-a > dd, .dl-a > div > dd {
        width: calc(100% - 200px);
        padding: 1.5em 0;
    }
}
@media screen and (min-width: 1032px), print {
    .dl-a > dt, .dl-a > div > dt {
        width: 300px;
    }
    .dl-a > dd, .dl-a > div > dd {
        width: calc(100% - 300px);
    }
}
/*dl-b wholesaler*/
.dl-b {
    margin-top: calc(var(--y-space-m) * -1);
}
.dl-b > dt {
    font-size: 1.6rem;
    padding: 3em 0 0;
}
.dl-b > dd {
    font-size: 1.4rem;
    padding: 1em 0 0;
}
@media screen and (min-width: 768px), print {
    .dl-b {
        display: flex;
        flex-wrap: wrap;
    }
    .dl-b > dt {
        width: 200px;
        padding: var(--y-space-m) 1em 0 0;
    }
    .dl-b > dd {
        width: calc(100% - 200px);
        padding: var(--y-space-m) 0 0;
    }
}
@media screen and (min-width: 1032px), print {
    .dl-b > dt {
        width: 274px;
    }
    .dl-b > dd {
        width: calc(100% - 274px);
    }
}
.dl-form {
    border-bottom: 1px solid var(--border-gray1);
}
.dl-form > div {
    width: 100%;
}
.dl-form > dt, .dl-form > div > dt {
    border-top: 1px solid var(--border-gray1);
    font-size: 1.6rem;
    padding: 0.7em 0 0;
    text-align: left;
}
.dl-form > dd, .dl-form > div > dd {
    font-size: 1.4rem;
    padding: 0.5em 0 0.857142857142857em;
}
@media screen and (min-width: 768px), print {
    .dl-form {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid var(--border-gray1);
    }
    .dl-form > div {
        width: 100%;
        display: flex;
    }
    .dl-form > dt, 
	.dl-form > dd, 
	.dl-form > div > dt, 
	.dl-form > div > dd {
        border-top: 1px solid var(--border-gray1);
    }
    .dl-form > dt,
	.dl-form > div > dt {
        width: 200px;
        padding: 1.65em 2em 1.3em 0;
    }
    .dl-form > dd, 
	.dl-form > div > dd {
        width: calc(100% - 200px);
        padding: 1.5em 0;
    }
}
@media screen and (min-width: 1032px), print {
    .dl-form > dt, 
	.dl-form > div > dt {
        width: 300px;
    }
    .dl-form > dd, 
	.dl-form > div > dd {
        width: calc(100% - 300px);
    }
    .dl-form > dt.type1, 
	.dl-form > div > dt.type1 {
        width: 0px;
    }
    .dl-form > dd.type1, 
	.dl-form > div > dd.type1 {
        width:100%;
    }
}
/* ============================== */
/*  BUTTON  */
/* ============================== */
.button-a {
    background: var(--theme-color) url("../images/arr_02.svg") no-repeat right 0.8em center;
    background-size: 1.2em;
    color: #fff;
    padding: 0.666666666666667em 4em 0.666666666666667em 1em;
    text-align: left;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
/*    min-width: 12em;*/
}
.button-b {
    background: var(--theme-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 1.5rem;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    text-align: center;
    display: inline-block;
}
.button-c {
    background: #fff;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: calc(0.666666666666667em - 1px) 1em;
    font-size: 1.5rem;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    text-align: center;
    display: inline-block;
}
.button-d {
    background: #ff6347;
    color: #000000;
    padding: 0.666666666666667em 1em;
    font-size: 1.5rem;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    text-align: center;
    display: inline-block;
}
.button-k {
    background: #4682b4;
    color: #fff;
    padding: 0.666666666666667em 1em;
    font-size: 1.4rem;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    text-align: center;
    display: inline-block;
	width:100%;
}
.button-send {
    background: var(--theme-color);
    background-size: 1.2em;
    color: #fff;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    padding: 20px;
    text-align: center;
    width: 100%;
    font-size: 17px;
}
.button-send_next {
    background: var(--theme-color) url("../images/arr_02.svg") no-repeat right 0.8em center;
    background-size: 1.2em;
    color: #fff;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    padding: 20px;
    text-align: center;
    width: 100%;
    font-size: 17px;
}
.button-send_back{
    background: var(--theme-color) url("../images/arr_02_back.svg") no-repeat left 0.8em center;
    background-size: 1.2em;
    color: #fff;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    padding: 20px;
    text-align: center;
    width: 100%;
    font-size: 17px;
}
.button-not {
    background-color: #d3d3d3;
    color: #fff;
    padding: 5px 10px;
    font-size: 1.5rem;
    line-height: 1.33333333;
    border-radius: 0.33333333em;
    text-align: center;
    display: inline-block;
}
@media (hover: hover) {
    .button-a, .button-b, .button-c, .button-k {
        transition: background-color 200ms;
    }
    .button-a:hover {
        background-color: #091377;
    }
    .button-b:hover {
     /*   background-color: #091377; */
		background-color: #ED1A3D;
    }
    .button-c:hover {
        background-color: var(--pale-blue);
    }
}
/* ============================== */
/*  SELECT  */
/* ============================== */
.select-a {
    font-family: inherit;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    text-overflow: ellipsis;
    outline: none;
    background: #fff;
    box-shadow: none;
    line-height: 1.25;
    vertical-align: middle;
    position: relative;
    border: 1px solid var(--border-gray1);
}
.select-a::after {
    position: absolute;
    top: calc(50% - 5px);
    right: 8px;
    width: 8px;
    height: 8px;
    padding: 0;
    content: '';
    border-left: 2.5px solid #7F878C;
    border-bottom: 2.5px solid #7F878C;
    pointer-events: none;
    transform: rotate(-45deg);
}
.select-a select {
    padding: 9px 28px 9px 15px;
}
.select-b {
    font-family: inherit;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    text-overflow: ellipsis;
    outline: none;
    background: none;
    box-shadow: none;
    line-height: 1.3;
    vertical-align: middle;
    position: relative;
}
.select-b::after {
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    width: 8px;
    height: 8px;
    padding: 0;
    content: '';
    border-left: 2.5px solid #7F878C;
    border-bottom: 2.5px solid #7F878C;
    pointer-events: none;
    transform: rotate(-45deg);
}
.select-b select {
    padding: 3px 14px 3px 5px;
}
/* ============================== */
/*  TABLE  */
/* ============================== */
.table-a {
    font-size: 1.4rem;
}
.table-a th {
    background: #fafafa;
    border: 1px solid var(--border-gray2);
    padding: 0.33333333em 1em;
}
.table-a td {
    border: 1px solid var(--border-gray2);
    padding: 0.33333333em 1em;
}
.table-a .small {
    font-size: 80%;
}
.table-b {
    font-size: 1.4rem;
    margin-top: 1em;
}
.table-b th {
    background: #fafafa;
    border: 1px solid var(--border-gray2);
    padding: 0.33333333em 1em;
}
.table-b td {
    border: 1px solid var(--border-gray2);
    padding: 0.33333333em 1em;
}
.table-b .small {
    font-size: 80%;
}
.ul-a,
.ul-b{
	margin:10px 0 10px 40px
}
.ul-a li,
.ul-b li {
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 0.5em;
}
.ul-b li {
	list-style-type: decimal;
	counter-reset: listnum;
}
.ul-a li::before {
    content: "・";
}
/* ============================== */
/*  NEW-ICON, PICKUP-ICON,FAVORITE-BUTTON, NORAML-ICON */
/* ============================== */
.product-image  .normal-icon {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	padding: 3px 0;
	background: #7f9dfb;
	color: #FFF;
	box-sizing: border-box;
}
.product-image  .normal-icon h3 {
	margin: 0;
	padding: 2px 8px 2px 10px;
	border-top: dashed 1px #FFF;
	border-bottom: dashed 1px #FFF;
	line-height: 16px;
	font-size: 11px;
}
.product-image  .normal-icon:after {
	position: absolute;
	content: '';
	z-index: 1;
	top: 0;
	left: 0;
	width: 0px;
	height: 0px;
	border-style: solid;
}
/*
.product-image  .normal-icon {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	height: 32px;
	line-height: 32px;
	text-align: center;
	padding: 7px 0;
	font-size: 18px;
	background: #7f9dfb;
	color: #FFF;
	box-sizing: border-box;
}
.product-image  .normal-icon h3 {
	margin: 0;
	padding: 0 8px 0 25px;
	border-top: dashed 1px #FFF;
	border-bottom: dashed 1px #FFF;
	line-height: 16px;
	font-size: 9px;
}
.product-image  .normal-icon:after {
	position: absolute;
	content: '';
	z-index: 1;
	top: 0;
	left: 0;
	width: 0px;
	height: 0px;
	border-width: 19px 0 19px 15px;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
}
*/

.product-image .new-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    z-index: 2;
    background: url("../images/ec_new.svg") no-repeat top left;
    background-size: 100%;
    overflow: hidden;
    text-indent: -9999px;
}
.product-image .recommend-icon {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 4.5rem;
    height: 4.5rem;
    z-index: 2;
    background: url("../images/ec_recommend.svg") no-repeat top left;
    background-size: 100%;
    overflow: hidden;
    text-indent: -9999px;
}
.product-image .pickup-icon {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 4.5rem;
    height: 4.5rem;
    z-index: 2;
    background: url("../images/ec_pickup.svg") no-repeat top left;
    background-size: 100%;
    overflow: hidden;
    text-indent: -9999px;
}
.product-image .sold-out {
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    border-radius: 10px;
}
.product-image .favorite-button {
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: url("../images/ico_favorite-btn-off.svg") no-repeat center;
    background-size: 100%;
}
.product-image .favorite-button.active {
    background-image: url("../images/ico_favorite-btn-on.svg");
}
/* ============================== */
/*  PRODUCT-LIST-A (TOP-PAGE)*/
/* ============================== */
.product-list-a {
    display: flex;
    flex-wrap: wrap;
}
.product-list-a .product-image {
    position: relative;
    margin: 0 0 0.5rem;
    height: 80vw;
}
.product-list-a .product-image a > img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
	object-position: top;
}
.product-list-a .product-name {
    color: inherit;
    line-height: 1.4;
    margin: 0 0 0.5em;
	font-size: 17px !important;
	font-weight: bold !important;
	word-break: break-all;
}
.product-list-a .price {
    font-size: 1.6rem;
    display: inline-block;
}
.product-list-a .quantity {
    display: inline-block;
}
.product-list-a > li {
    margin-top: 4rem;
    width: 100%;
}
.product-list-a > li:first-child {
    margin-top: 0;
}
.product-list-a li.show-all a {
    display: flex;
    width: 100%;
    height: 100%;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: inherit;
    padding: 1em;
}
.product-list-a li.show-all a::after {
    content: "";
    width: 1.5em;
    height: 1.5em;
    background: url("../images/arr_01.svg");
    margin-left: 0.5em;
}
@media screen and (max-width: 767px), print {
    .product-list-a .product-image, .product-list-a li.show-all a {
        height: 26vw;
    }
    .product-list-a > li:nth-child(n) {
        width: calc((100% - 2% * 2) / 2);
        margin-left: 2%;
        margin-top: 5rem;
    }
    .product-list-a > li:nth-child(-n + 2) {
        margin-top: 0;
    }
    .product-list-a > li:nth-child(2n + 1) {
        margin-left: 0;
    }
}
@media screen and (min-width: 768px), print {
    .product-list-a .product-image, .product-list-a li.show-all a {
        height: 26vw;
    }
    .product-list-a > li:nth-child(n) {
        width: calc((100% - 2% * 2) / 3);
        margin-left: 2%;
        margin-top: 5rem;
    }
    .product-list-a > li:nth-child(-n + 3) {
        margin-top: 0;
    }
    .product-list-a > li:nth-child(3n + 1) {
        margin-left: 0;
    }
}
@media screen and (min-width: 1032px), print {
    .product-list-a .product-image, .product-list-a li.show-all a {
        height: 233.6px;
    }
    .product-list-a > li:nth-child(n) {
        width: calc((100% - 4% * 2) / 4);
        margin-left: 2%;
        margin-top: 6rem;
    }
    .product-list-a > li:nth-child(-n + 4) {
        margin-top: 0;
    }
    .product-list-a > li:nth-child(4n + 1) {
        margin-left: 0;
    }
}
@media screen and (min-width: 1400px), print {
    .product-list-a .product-image, .product-list-a li.show-all a {
        height: 242px;
    }
    .product-list-a > li:nth-child(n) {
        width: calc((100% - 4% * 3) / 5);
        margin-left: 2%;
        margin-top: 6rem;
    }
    .product-list-a > li:nth-child(-n + 5) {
        margin-top: 0;
    }
    .product-list-a > li:nth-child(5n + 1) {
        margin-left: 0;
    }
}
@media (hover: hover) {
    .product-list-a .product-image a:hover {
        opacity: 0.7;
    }
    .product-list-a li.show-all a:hover {
        color: #fff;
        background-color: var(--theme-color);
    }
}
/* ============================== */
/*  PRODUCT-LIST-B (ARCHIVE-PAGE) */
/* ============================== */
.product-list-b .product-image {
	position: relative;
	margin: 0 0 5px;
}
.product-list-b .product-image img {
	border-radius: 10px;
}
.product-list-b .product-name {
	font-size: 1.8rem;
	line-height: 1.4;
	margin: 0 0 0.5em;
}
.product-list-b .body-copy {
	font-size: 1.4rem;
}
@media screen and (max-width: 767px), print {
	.product-list-b {
		display: flex;
		flex-wrap: wrap;
	}
    .product-list-b > li:nth-child(n) {
        width: calc((100% - 2% * 2) / 2);
        margin-left: 2%;
        margin-top: 5rem;
    }
    .product-list-b > li:nth-child(-n + 2) {
        margin-top: 0;
    }
    .product-list-b > li:nth-child(2n + 1) {
        margin-left: 0;
    }
}
@media screen and (min-width: 768px), print {
	.product-list-b > li {
		padding: var(--y-space-xs) 0;
		border-bottom: 1px solid var(--border-gray1);
	}
	.product-list-b > li:first-child {
		padding-top: 0;
	}
}
.order-info {
    display: flex;
    flex-wrap: wrap;
}
.order-info ul {
    width: 100%;
}
.order-info ul li{
    display: inline-block;
}
.order-info .price {
    font-size: 16px;
    display: inline-block;
}
.order-info .carton {
    font-size: 13px;
    display: inline-block;
}
.order-info .tax {
    background: var(--pale-blue);
    font-size: 1.2rem;
    padding: 0.2em 0.4em 0.3em;
    display: inline-block;
    line-height: 1;
    color: #222;
    font-weight: normal;
    margin: 0 0 0 0.25em;
    position: relative;
    top: -0.15em;
}
.order-info .quantity {
    display: inline-block;
    font-size: 1.3rem;
}
.order-info .shipping-fee {
    margin: 0.3em 0 20px;
    font-size: 1.4rem;
}
.order-info .order-number-wrapper {
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.order-info .select-a select {
    padding-top: 4px;
    padding-bottom: 4px;
}
.order-info .button-b,
.order-info .button-not {
    padding-top:5px;
    padding-bottom: 5px;
}
.order-info .price_moto {
    font-size: 16px;
    display: inline-block;
	font-weight: bold;
	margin-bottom:6px;
    color:red;
}
.order-info .fontType1{
	font-size:12px;
	
}
.page-okuri{
	display: flex;
	margin-bottom:10px;
 }
.page-okuri .LeftBox{
	font-size: 13px;
	width:100px;
	color:red;
 }
.page-okuri .RightBox{
	font-size: 13px;
	width: calc(100% - 100px);
	text-align:right;
 }
 .page-okuri .select_type1{
	border:1px solid #000000;
	width:100px;
	text-align:center;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
.nokoriTime{
	color:red;
}
@media screen and (min-width: 768px), print {
    .product-list-b > li {
        display: flex;
        align-items: flex-start;
    }
    .product-list-b .product-image {
        flex: 0 0 240px;
        margin-right: 25px;
    }
    .product-list-b .product-description {
        width: 100%;
    }
}
@media (hover: hover) {
    .product-list-b .product-image a:hover {
        opacity: 0.7;
    }
}
/* ============================== */
/*  PAGINATION  */
/* ============================== */
.pagination {
    font-size: 1.3rem;
    margin: 20px 0;
}
.pagination ol {
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    align-items: center;
}
.pagination a, .pagination li > span.selected {
    display: block;
    min-width: 1.7em;
    text-align: center;
    line-height: 1.7em;
    margin: 0 2px;
    color: inherit;
    border-radius: 0.85em;
	font-size:20px;
}
.pagination li > span.selected {
    color: #fff;
    background: var(--theme-color);
}
.pagination a.to-first, .pagination a.to-end {
    width: auto;
    background: none;
    margin: 0 0.3em;
    color: #0077ba
}
.pagination a.prev, .pagination a.next {
    width: auto;
    color: #0077ba;
    position: relative;
}
.pagination a.prev {
    margin-right: 0.8em;
    height: 1.7em;
    width: 1.7em;
}
.pagination a.next {
    margin-left: 0.8em;
    height: 1.7em;
    width: 1.7em;
}
.pagination a.prev::after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    position: absolute;
    left: 0.7em;
    top: calc(50% - 0.25em);
    display: block;
    border-top: solid 1px #777;
    border-right: solid 1px #777;
    transform: rotate(-135deg);
}
.pagination a.next::after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    position: absolute;
    right: 0.7em;
    top: calc(50% - 0.25em);
    display: block;
    border-top: solid 1px #777;
    border-right: solid 1px #777;
    transform: rotate(45deg);
}
/* ============================== */
/*  WHOLESALER  */
/* ============================== */
.wholesaler .figure1 {
    margin-top: var(--y-space-xs);
    max-width: 726px;
}
/* ============================== */
/*  お宝探訪 */
/* ============================== */
.tanbouki {
    background: var(--theme-color);
    padding: var(--y-space-s) 0;
    color: #fff;
}
.tanbouki-title {
    padding: 0 var(--x-space);
    margin: 0 auto 25px;
    width: 67%;
    max-width: 270px;
}
.article-list-a {
    margin-top: -10px;
}
.article-list-a li {
    padding: 10px 10px 0;
}
.article-list-a .photo {
    border: 4px solid #fff;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
    margin: 0 0 10px;
}
.article-list-a .article-title {
    font-size: 1.5rem;
    margin: 0 0 0.25em;
}
.article-list-a .article-text {
    font-size: 1.4rem;
}
.article-list-a a {
    color: inherit;
}
.article-list-a .article-text .read-more {
    text-decoration: underline;
    color: inherit;
}
#tanbouki-slider .slide-arrow {
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    background: rgba(23, 33, 68, 0.9);
    z-index: 2;
    cursor: pointer;
}
#tanbouki-slider .slide-arrow.prev-arrow {
    left: 0;
}
#tanbouki-slider .slide-arrow.next-arrow {
    right: 0;
}
#tanbouki-slider .slide-arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    transform: rotate(45deg);
}
#tanbouki-slider .slide-arrow.prev-arrow::after {
    left: calc(50% - 3px);
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}
#tanbouki-slider .slide-arrow.next-arrow::after {
    right: calc(50% - 3px);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
#tanbouki-slider .slide-arrow.prev-arrow::after {
    left: calc(50% - 3px);
    border-bottom: 2px solid #ddd;
    border-left: 2px solid #ddd;
}
#tanbouki-slider .slide-arrow.next-arrow::after {
    right: calc(50% - 3px);
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
}
#tanbouki-slider .slide-dots {
    text-align: center;
    font-size: 8px;
    line-height: 1;
    position: absolute;
    bottom: -35px;
    width: 100%;
    left: 0;
}
#tanbouki-slider .slide-dots li {
    display: inline-block;
    margin: 0 8px;
    padding: 0;
}
#tanbouki-slider .slide-dots li button {
    position: relative;
    text-indent: -9999px;
    width: 1em;
    height: 1em;
    padding: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    margin: 0;
}
#tanbouki-slider .slide-dots li button:focus {
    outline: none;
}
#tanbouki-slider .slide-dots li button::-moz-focus-inner {
    border: 0;
}
#tanbouki-slider .slide-dots li button::before {
    content: '';
    text-indent: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.3;
    border-radius: 50%;
}
#tanbouki-slider .slide-dots li.slick-active button::before {
    opacity: 0.9;
}
@media screen and (min-width: 768px), print {
    .tanbouki .article-list-a {
        margin: 0 30px 30px;
    }
    #tanbouki-slider .slide-arrow {
        top: calc(50% - 20px);
        width: 40px;
        height: 40px;
        background: transparent;
    }
    #tanbouki-slider .slide-arrow.prev-arrow {
        left: -30px;
    }
    #tanbouki-slider .slide-arrow.next-arrow {
        right: -30px;
    }
    #tanbouki-slider .slide-arrow::after {
        width: 18px;
        height: 18px;
        top: calc(50% - 9px);
    }
    #tanbouki-slider .slide-arrow.prev-arrow::after {
        left: calc(50% - 4px);
    }
    #tanbouki-slider .slide-arrow.next-arrow::after {
        right: calc(50% - 4px);
    }
}
@media screen and (min-width: 1032px), print {
    .tanbouki {
        display: flex;
        align-items: center;
        padding: var(--y-space-m) var(--x-space);
    }
    .tanbouki-title {
        width: 242px;
        padding-right: 40px;
    }
    .tanbouki .section-body {
        width: calc(100% - 232px);
    }
    .tanbouki .article-list-a {
        margin: 0;
    }
    #tanbouki-slider .slide-arrow.prev-arrow {
        left: -30px;
    }
    #tanbouki-slider .slide-arrow.next-arrow {
        right: -30px;
    }
}
@media (hover: hover) {
    .article-list-a a:hover {
        opacity: 0.7;
    }
}
/* ============================== */
/*  RUN BY */
/* ============================== */
.corporate-banner {
    margin: 0 0 var(--y-space-s);
}
/* ============================== */
/*  PRODUCT-DETAIL */
/* ============================== */
.product-detail .product-imagery .product-image + .product-image {
    margin-top: 15px;
}
.product-feature {
    font-family: 'Yomogi', cursive;
    border: 2px solid #c2d7ed;
    border-radius: 12px;
    padding: 10px;
    font-size: 1.3rem;
    position: relative;
    margin-top: 15px;
    margin-bottom: 30px;
}
.product-feature::after {
    content: "";
    background: url("../images/edge_01.svg") no-repeat right top;
    width: 33px;
    height: 34px;
    position: absolute;
    top: -26px;
    right: 10px;
}
.product-info h4 {
    font-size: 1.4rem;
    color: var(--theme-color);
    margin: 0.8em 0 0.1em;
    line-height: 1.5;
}
.product-info h4 + p {
    font-size: 1.4rem;
    line-height: 1.5;
}
.product-info h4:first-of-type {
    margin-top: 2.5em;
}
.product-imagery .product-image {
    position: relative;
}
.product-imagery .product-image img {
    border-radius: 10px;
	margin: 0 auto;
	display: block;
}
@media screen and (min-width: 768px), print {
    .product-detail .product-wrapper {
        display: flex;
    }
    .product-feature {
        margin-top: 0;
        margin-left: -0.75em;
    }
    .product-feature::after {
        background: url("../images/edge_02.svg") no-repeat right top;
        width: 33px;
        height: 21px;
        bottom: 5px;
        left: -27px;
        top: auto;
        right: auto;
    }
    .product-detail .product-imagery {
        flex: 0 0 45%;
        margin-right: 25px;
    }
}
@media screen and (min-width: 1032px), print {
    .product-detail .product-imagery {
        flex: 0 0 370px;
    }
}

.more-views ul.image-thumbs {
	display: flex;
	flex-wrap: wrap;
}
.more-views ul.image-thumbs li{
	width:100px;
}
.more-views ul.image-thumbs li .product-zoom-image{
	height: 100px;
	position: relative;
	margin: 0 0 0.5rem;
}
.more-views ul.image-thumbs li .product-zoom-image a > img {
	display: block;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
	object-position: 50% 50%;
	margin: 0 auto;
}



/*
.more-views ul.image-thumbs {
	margin-top: 15px;
	margin-left: -10px;
}
.more-views ul.image-thumbs li {
	position: relative;
	float: left;
	padding-left: 10px;
	width: 25%;
	max-width: 112px;
	margin-bottom: 10px;
}
.more-views ul.image-thumbs li a {
	opacity: 1.0;
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}
.more-views ul.image-thumbs li img {
	width: 100%;
	height: auto;
}
.item__figure {
	height: 242px;
}
.item__figure e a > img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}
*/


.sales-info-a {
    padding: 0.75em 0 1.25em;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.35rem;
    line-height: 1.4;
}
.sales-info-a h4 {
    color: #737373;
    font-weight: normal;
    width: 250px;
    margin-top: 0.3em;
	text-align:right;
}
@media screen and (max-width: 767px), print {
	.sales-info-a h4,
	.sales-info-a p{
		display: block;
		width: 100%;
		text-align: left;
	}
	.sales-info-a h4{
	}
	.sales-info-a p{
		padding-bottom:10px;
	}

}
@media screen and (min-width: 768px), print {
	.sales-info-a h4:first-of-type {}
	.sales-info-a h4::after {
		content: "：";
	}
	.sales-info-a h4 + p {
		width: calc(100% - 250px);
		margin-top: 0.3em;
	}
}


.sales-info-b {
	border-top: 1px solid var(--border-gray1);
    border-bottom: 1px solid var(--border-gray1);
   /*  margin: 2em 0; */
	margin:0;
    padding: 0.5em 0 1em;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
    line-height: 1.4;
}
.sales-info-b h4 {
    color: #737373;
    font-weight: normal;
    width: 8em;
    margin-top: 0.3em;
	text-align:left;
}
.sales-info-b h4:first-of-type {}
.sales-info-b h4::after {
    content: "：";
}
.sales-info-b h4 + p {
    width: calc(100% - 8em);
    margin-top: 0.3em;
}
.sales-info-b h4.strong,
.sales-info-b p.strong {
	color:#ff0000;
	font-size:18px;
}

@media screen and (min-width: 1032px), print {
    .sales-info-b {
        font-size: 1.4rem;
    }
}

.sales-info-c {
    border-top: 1px solid var(--border-gray1);
    border-bottom: 1px solid var(--border-gray1);
    margin: 5px 0;
    padding: 0.5em 0 1em;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
    line-height: 1.4;
}
.sales-info-c h4 {
    color: #737373;
    font-weight: normal;
    width: 100%;
    margin-top: 5px;
}
.sales-info-c h4:first-of-type {}
.sales-info-c h4::after {
    content: "：";
}


.order-bar {
    position: fixed;
   /* background: var(--light-gray);*/
   background-color:#87ceeb ;
    bottom: 10px;
    left: var(--x-space);
    width: calc(100% - var(--x-space) * 2);
    z-index: 80;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);*/
	box-shadow: 0 5px 0 #2fb5eb;
}
.order-bar.js-static {
    position: static;
    width: 100%;
    box-shadow: none;
}
@media screen and (min-width: 768px), print {
    .order-bar {
        padding-right: 60px;
    }
}
@media screen and (min-width: 1032px), print {
    .order-bar {
        left: calc(270px + var(--x-space));
        width: 730px;
        padding-right: 40px;
    }
}
@media screen and (min-width: 1400px), print {
    .order-bar {
        width: 1030px;
    }
}
.order-bar ul {
    width: 100%;
}
.order-bar .price {
    font-size: 2.2rem;
    display: inline-block;
}
.order-bar .tax {
    background: var(--pale-blue);
    font-size: 1.4rem;
    padding: 0.2em 0.4em 0.3em;
    display: inline-block;
    line-height: 1;
    color: #222;
    font-weight: normal;
    margin: 0 0 0 0.25em;
    position: relative;
    top: -0.15em;
}
.order-bar .quantity {
    display: inline-block;
}
.order-bar .shipping-fee {
    margin: 0.3em 0 1em;
    font-size: 1.5rem;
}
.order-bar .order-number-wrapper {
    margin-right: 20px;
    display: flex;
    align-items: center;
}
@media screen and (min-width: 768px), print {
    .order-bar ul {
        flex: 1 1 auto;
        width: auto;
    }
    .order-bar .shipping-fee {
        margin-bottom: 0;
    }
}
/* ============================== */
/*  FORM */
/* ============================== */
.form-text-box input {
    width: 100%;
}
.form-select-box {
    overflow: hidden;
    width: 12em;
    position: relative;
    border: 1px solid #dfe1e5;
    border-radius: .3em;
    background: #ffffff;
}
.form-select-box2 {
    overflow: hidden;
    position: relative;
    border: 1px solid #dfe1e5;
    border-radius: .3em;
    background: #ffffff;
}
.form-select-box3 {
    overflow: hidden;
    width: 70px;
    position: relative;
    border: 1px solid #dfe1e5;
    border-radius: .3em;
    background: #ffffff;
}
.form-select-box select,
.form-select-box2 select ,
.form-select-box3 select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    color: #333;
    font-size: 16px;
    width: 100%;
    padding: 0.5em 2.2em 0.5em 0.5em;
    cursor: pointer;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    line-height: 1.3;
    vertical-align: middle;
}
.form-select-box::before,
.form-select-box2::before,
.form-select-box3::before {
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    width: 8px;
    height: 8px;
    padding: 0;
    content: '';
    border-left: 2.5px solid #7F878C;
    border-bottom: 2.5px solid #7F878C;
    pointer-events: none;
    transform: rotate(-45deg)
}
.form-text-box + .form-text-box {
    margin-top: 10px;
}
.form-text-box .label-text {
    display: block;
    margin: 15px 0 5px;
}
.form-text-box .postal-code {
    width: 11em;
    margin-right: 1em;
}
.form-text-box .checktype1 .leftBox{
}
.form-text-box .checktype1 .leftBox [type=checkbox]{
	width:auto;
}

.required {
    display: inline-block;
    padding: 0.2em 0.25em 0.3em;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    background: var(--red);
    position: relative;
    top: -0.15em;
}
.button-bar {
    margin-top: var(--y-space-xs);
    display: flex;
	justify-content: center;
}
.button-bar2 {
	margin-top: var(--y-space-xs);
    display: block;
}
.button-bar button {
    margin-right: 20px;
}
.form-footer {
    margin-top: 20px;
}
section.sign-up button.confirm {
    width: 11em;
}
@media screen and (min-width: 768px), print {
    section.login .button-bar, 
    section.logout .button-bar, 
	section.sign-up .button-bar {
		justify-content: center;
        /*padding-left: 200px;*/
    }
    section.login .button-bar2, 
    section.logout .button-bar2, 
	section.sign-up .button-bar2 {
        margin:10px auto 0 auto;
		text-align:center;
    }
}
@media screen and (min-width: 1032px), print {
    section.login .button-bar, 
    section.logout .button-bar, 
	section.sign-up .button-bar {
		justify-content: center;
        /*padding-left:300px;*/
    }
    section.login .button-bar2, 
    section.logout .button-bar2, 
	section.sign-up .button-bar2 {
        margin:10px auto 0 auto;
		text-align:center;
    }
}
/* ============================== */
/*  ABOUT */
/* ============================== */
.about-wrapper {
    width: 100%;
}
.about-wrapper .body-copy p:not(:first-child) {
    margin-top: 1em;
}
.about-wrapper .button-a {
    margin-top: var(--y-space-xs);
}
.about-wrapper .image {
    margin-top: 40px;
}
@media screen and (min-width: 768px), print {
    .about-wrapper {
        display: flex;
        justify-content: space-between;
    }
    .about-wrapper .image {
        width: 302px;
        flex: 0 0 302px;
        margin: 0 0 0 30px;
    }
}
/* ============================== */
/*  CART */
/* ============================== */
.heading-b.cart {
    padding-left: 1.6em;
    background: url("../images/ico_cart2.svg") no-repeat left top;
    background-size: 1.3em;
    ;
}
.shipping-fee-info {
    display: flex;
    justify-content: space-between;
    color: var(--theme-color);
    margin: -10px 0 5px;
}
.cart-item-list {
    border-top: 1px solid var(--border-gray1);
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray1);
}
.cart-item .product-image img {
    border-radius: 6px;
}
.cart-item .product-control img{
	width:30px;
}
.cart-item .product-info {
    flex-wrap: wrap;
	font-size:13px;
}
.cart-item h3 a {
    color: inherit;
}
.cart-item .tanka{
    font-size: 14px;
	margin-right:10px;
}
.cart-item .product-info_list1 .tanka{
    font-size: 14px;
	margin-right:10px;
	float:left;
}
.cart-item .product-info_list1 .suuryo{
    font-size: 14px;
	margin-right:10px;
	float:left;
}
.cart_plus{
   width:30px;
   height:30px;
   background-image: url("../images/icon_plus.png");
}
.cart_minus{
   width:30px;
   height:30px;
   background-image: url("../images/icon_minus.png");
}

.cart_plus:hover{
   background-image: url("../images/icon_plus_hover.png");
}
.cart_minus:hover{
   background-image: url("../images/icon_minus_hover.png");
}
@media screen and (min-width: 768px), print {
    .cart-item {
        padding: 15px 0;
    }
    .cart-item .product-image {
		width:10%;
    }
    .cart-item .product-info {
		width:35%;
    }
    .cart-item .product-control {
		width:35%;
		display:flex;
    }
    .cart-item .product-price {
		width:20%;
        font-size: 16px;
        min-width: 250px;
        text-align: right;
    }
    .cart-item h3 {
        font-size: 14px;
        padding: 0 0.75em;
        width: auto;
    }
    .cart-item .delete {
        margin-right: 10px;
    }
    .cart-item .quantity {
		width:40px;
    }
	
    .cart-item .product-image2 {
		width:10%;
    }
    .cart-item .product-info2{
		width:70%;
    }
    .cart-item .product-price2 {
		width:30%;
        font-size: 16px;
        min-width: 250px;
        text-align: right;
    }
}
@media screen and (max-width: 767px) {
    .cart-item {
        display: block;
    }
    .cart-item .product-image,
    .cart-item .product-image2 {
		display:none;
    }
    .cart-item .product-info,
    .cart-item .product-info2 {
		width:100%;
    }
	.cart-item .product-control {
		margin: 10px 0 0 0;
		display:flex;
	}
    .cart-item .product-price,
    .cart-item .product-price2 {
		margin: 10px 0 0 0;
		width:100%;
        text-align: right;
    }
	.cart-item h3 {
        font-size: 14px;
		width: 100%;
	}
    .cart-item .delete {
        margin-right: 1.5em;
    }
    .cart-item .quantity {
		width:40px;
    }
}
.total-cart {
    background-color: #f8f8f8;
    margin-top: 20px;
    padding: 15px 20px 20px;
}
.total-cart dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
}
.total-cart dt {
    display: block;
    flex-wrap: wrap;
    width: calc(100% - 180px);
    padding-right: 1em;
    font-weight: normal;
    margin-bottom: 14px;
    text-align: right;
}
.total-cart dd {
    width: 180px;
    text-align: right;
    font-weight: bold;
    margin-bottom: 14px;
}
.total-cart .cart-buttons {
    border-top: 1px solid var(--border-gray1);
    padding-top: 15px;
}
.total-cart .cart-buttons .button-a{
    padding: 20px;
    text-align: center;
    width: 100%;
    font-size: 17px;
}
.total-cart .cart-buttons .button-c {
    width: 100%;
    margin-top: 15px;
}
@media screen and (min-width: 768px), print {
    .total-cart {
        background-color: #f8f8f8;
        width: 100%;
        margin-top: 20px;
        margin-left: auto;
        padding: 15px 20px 20px;
    }
}
@media (hover: hover) {
    .cart-item h3 a:hover {
        color: var(--link-color);
    }
    .cart-item .product-image a:hover {
        opacity: 0.7;
    }
}
@media print {}

/* ============================== */
/*  HR */
/* ============================== */
.hr1 {
    margin:10px 0;
}
.hr_tensen {
    border-top: 2px dotted #000000;
    border-right: none;
    border-bottom: none;
    border-left: none;
}
/* ============================== */
/*  STEP-BAR */
/* ============================== */
.stepbar {
	display: flex;
	width: 99%;
	margin: 0 auto 20px auto;
	padding: 0;
	list-style: none;
}

.stepbar__item {
	box-sizing: border-box;
	position: relative;
	width: calc((100% - 30px) / 4);
	height: 80px;
	margin: 0 5px;
	padding: 1px;
	background: #299100;
}

/* 重なり順を設定 */
.stepbar__item:nth-child(1) {
	z-index: 4
}

.stepbar__item:nth-child(2) {
	z-index: 3
}

.stepbar__item:nth-child(3) {
	z-index: 2
}

.stepbar__item:nth-child(4) {
	z-index: 1
}

.stepbar__item:first-child {
	margin-left: 0;
}

.stepbar__item:last-child {
	margin-right: 0;
}

.stepbar__item:not(:first-child)::before {
	position: absolute;
	content: "";
	top: 0;
	left: 1px;
	width: 0;
	height: 0;
	border-top: 40px solid transparent;
	border-right: 0;
	border-bottom: 40px solid transparent;
	border-left: 20px solid #299100;
}

.stepbar__item:not(:first-child)::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 40px solid transparent;
	border-right: 0;
	border-bottom: 40px solid transparent;
	border-left: 20px solid #ffffff;
}

.stepbar__item-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #ffffff;
	font-weight: bold;
}

.stepbar__item-inner--current {
	background: transparent;
	color: #ffffff;
}

.stepbar__item:not(:last-child) .stepbar__item-inner::before {
	position: absolute;
	content: "";
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	border-top: 40px solid transparent;
	border-right: 0;
	border-bottom: 40px solid transparent;
	border-left: 20px solid #299100;
}

.stepbar__item:not(:last-child) .stepbar__item-inner::after {
	position: absolute;
	content: "";
	top: 0;
	left: calc(100% - 1px);
	width: 0;
	height: 0;
	border-top: 40px solid transparent;
	border-right: 0;
	border-bottom: 40px solid transparent;
	border-left: 20px solid #ffffff;
}

.stepbar__item:not(:last-child) .stepbar__item-inner--current::after {
	display: none;
}
@media screen and (max-width: 1031px) {
	.stepbar__item-inner {
		font-size:13px;
	}
}
@media screen and (min-width: 1032px), print {
	.stepbar__item-inner {
		font-size:20px;
	}
}
/* ============================== */
/*  Mypage */
/* ============================== */
div#mypage-menuarea {
	width: 100%;
	float: left;
}
div#mypage-menuarea .menubar {
	margin-bottom: 20px;
}
div#mypage-menuarea .menubar li {
	margin: 10px;
	float: left;
	font-size: 14px;
}
div#mypage-menuarea .menubar li a{
	border: 0;
	outline: 0;
	cursor: pointer;
	color: #ffffff;
	background-color: #28c66e;
	border-radius: 8px;
	font-size: 14px;
	display: inline-block;
	min-height: 28px;
    padding: 5px;
	border:1px solid #000000;
}
div#mypage-menuarea .menubar li a:hover {
	background-color:#3cb371;
}
div#mypage-menuarea .menubar li.onSelect a{
	background-color:#000000;
	color:#ffffff;
}

.mypage-rireki-list{
	width:100%;
}
.mypage-rireki-list td{
	border:1px solid #000000;
	vertical-align: middle;
}
.mypage-rireki-list .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}
.mypage-rireki-list .content-title2 {
  text-align: left;
  padding-left:5px;
  background-color: #d3d3d3;
  color:#000000;
}
.mypage-rireki-list .content-body1 {
  padding-top:10px;
  padding-bottom:10px;
}
.mypage-rireki-list a {
  display:block;
  line-height: 80px;
}


.mypage-rireki-list.table-list1 .content-width1 {
  width: 20%;
}
.mypage-rireki-list.table-list1 .content-width2 {
  width: 10%;
}
.mypage-rireki-list.table-list1 .content-width3 {
  width: 19%;
}
.mypage-rireki-list.table-list1 .content-width4 {
  width: 18%;
}
.mypage-rireki-list.table-list1 .content-width5 {
  width: 18%;
}
.mypage-rireki-list.table-list1 .content-width6 {
  width: 15%;
}

.mypage-rireki-list.table-list2 .content-width1 {
  width: 25%;
}
.mypage-rireki-list.table-list2 .content-width2 {
  width: 10%;
}
.mypage-rireki-list.table-list2 .content-width3 {
  width: 35%;
}
.mypage-rireki-list.table-list2 .content-width4 {
  width: 30%;
}

.mypage-rireki-list.table-list3 .content-width1 {
  width: 14%;
}
.mypage-rireki-list.table-list3 .content-width2 {
  width: 40%;
}
.mypage-rireki-list.table-list3 .content-width3 {
  width: 12%;
}
.mypage-rireki-list.table-list3 .content-width4 {
  width: 12%;
}
.mypage-rireki-list.table-list3 .content-width5 {
  width: 10%;
}
.mypage-rireki-list.table-list3 .content-width6 {
  width: 12%;
}

.mypage-rireki-list.table-list4 .content-width1 {
  width: 30%;
}
.mypage-rireki-list.table-list4 .content-width2 {
  width: 70%;
}


.mypage-rireki-detail .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}

/* ============================== */
/*  Mypage-Delivery */
/* ============================== */
.mypage-delivery-list{
	width:100%;
}
.mypage-delivery-list td{
	border:1px solid #000000;
	vertical-align: middle;
}
.mypage-delivery-list .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}
.mypage-delivery-list a {
	display:block;
	height: 100%;
	line-height: 80px;
}
.mypage-delivery-list.table-list1 .content-width1 {
  width: 25%;
}
.mypage-delivery-list.table-list1 .content-width2 {
  width: 35%;
}
.mypage-delivery-list.table-list1 .content-width3 {
  width: 20%;
}
.mypage-delivery-list.table-list1 .content-width4 {
  width: 10%;
}
.mypage-delivery-list.table-list1 .content-width5 {
  width: 10%;
}
/* ============================== */
/*  Mypage-Shipping Detailes */
/* ============================== */
.mypage_shipping_detailes{
	width:100%;
}
.mypage_shipping_detailes td{
	border:1px solid #000000;
	vertical-align: middle;
}
.mypage_shipping_detailes .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}
.mypage_shipping_detailes .content-title2 {
  text-align: left;
  padding-left:5px;
  background-color: #d3d3d3;
  color:#000000;
}
.mypage_shipping_detailes .content-body1 {
  padding-top:10px;
  padding-bottom:10px;
}
.mypage_shipping_detailes a {
  display:block;
  line-height: 80px;
}

.mypage_shipping_detailes .content-width1 {
	width: 20%;
}
.mypage_shipping_detailes .content-width2 {
	width: 80%;
}

.mypage_shipping_detailes .content-body2{
	font-weight:bold;
	color:#0000ff;
	text-decoration:underline;
}
.mypage_shipping_detailes .content-body2:hover{
     cursor: pointer;
	background-color:#ffc0cb;
}
/* ============================== */
/*  Process1 */
/* ============================== */
.process1_list{
	width:100%;
}
.process1_list td{
	border:1px solid #000000;
	vertical-align: middle;
}
.process1_list .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}
.process1_list a {
	display:block;
	height: 100%;
	line-height: 80px;
}
.process1_list.table-list1 .content-width1 {
  width: 10%;
}
.process1_list.table-list1 .content-width2 {
  width: 20%;
}
.process1_list.table-list1 .content-width3 {
  width: 25%;
}
.process1_list.table-list1 .content-width4 {
  width: 30%;
}
.process1_list.table-list1 .content-width5 {
  width: 15%;
}
/* ============================== */
/*  favorite */
/* ============================== */
.favorite-list{
	width:100%;
}
.favorite-list td{
	border:1px solid #000000;
	vertical-align: middle;
}
.favorite-list .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}
.favorite-list a {
  display:block;
}
.favorite-list .hovertd:hover {
/*
  cursor: pointer;
  background-color:#cee9ff; 
  color:#000000;
  */
}
@media screen and (max-width: 1031px) {
	.favorite-list{
		font-size:11px;
	}
	.favorite-list button{
		font-size:11px;
	}
	.favorite-list.table-list1 .content-width1 {
	  width: 10%;
	}
	.favorite-list.table-list1 .content-width2 {
	  width: 25%;
	}
	.favorite-list.table-list1 .content-width3 {
	  width: 35%;
	}
	.favorite-list.table-list1 .content-width4 {
	  width: 15%;
	}
	.favorite-list.table-list1 .content-width5 {
	  width: 15%;
	}
}
@media screen and (min-width: 1032px), print {
	.favorite-list.table-list1 .content-width1 {
	  width: 10%;
	}
	.favorite-list.table-list1 .content-width2 {
	  width: 25%;
	}
	.favorite-list.table-list1 .content-width3 {
	  width: 35%;
	}
	.favorite-list.table-list1 .content-width4 {
	  width: 15%;
	}
	.favorite-list.table-list1 .content-width5 {
	  width: 15%;
	}
}
/* ============================== */
/*  keikoku*/
/* ============================== */
.keikokuBox{
	border:double 5px #ff7f50;
	margin: 20px 0;
	padding: 20px 0;
}
.keikokuBox .keikoku-title{
	text-align:center;
	color:red;
	font-size:28px;
	font-weight:bold;
}
.keikokuBox .keikoku-text{
	text-align:center;
	color:red;
	font-size:20px;
	font-weight:bold;
}
.keikokuBox .keikoku-button{
	margin: 30px auto 0 auto;
	text-align:center;
}
.keikokuBox .keikoku-button button{
	border: solid 3px #000;
	width: 100px;
	font-size: 16px;
	font-weight: bold;
	padding: 10px;
}

/* ============================== */
/*  togglemenu*/
/* ============================== */
.togglemenu{
	cursor:pointer;
}
/* ============================== */
/*  padding*/
/* ============================== */
.padding5 {
  padding: 5px;
}
.padding10 {
  padding: 10px;
}
.padding15 {
  padding: 15px;
}
.padding20 {
  padding: 20px;
}
/* ============================== */
/*  padding-top */
/* ============================== */
.padding-top1 {
  padding-top: 1px;
}
.padding-top2 {
  padding-top: 2px;
}
.padding-top3 {
  padding-top: 3px;
}
.padding-top4 {
  padding-top: 4px;
}
.padding-top5 {
  padding-top: 5px;
}
.padding-top6 {
  padding-top: 6px;
}
.padding-top7 {
  padding-top: 7px;
}
.padding-top8 {
  padding-top: 8px;
}
.padding-top9 {
  padding-top: 9px;
}
.padding-top10 {
  padding-top: 10px;
}
.padding-top15 {
  padding-top: 15px;
}
.padding-top20 {
  padding-top: 20px;
}
/* ============================== */
/*  padding-bottom */
/* ============================== */
.padding-bottom1 {
  padding-bottom: 1px;
}
.padding-bottom2 {
  padding-bottom: 2px;
}
.padding-bottom3 {
  padding-bottom: 3px;
}
.padding-bottom4 {
  padding-bottom: 4px;
}
.padding-bottom5 {
  padding-bottom: 5px;
}
.padding-bottom6 {
  padding-bottom: 6px;
}
.padding-bottom7 {
  padding-bottom: 7px;
}
.padding-bottom8 {
  padding-bottom: 8px;
}
.padding-bottom9 {
  padding-bottom: 9px;
}
.padding-bottom10 {
  padding-bottom: 10px;
}
.padding-bottom15 {
  padding-bottom: 15px;
}
.padding-bottom20 {
  padding-bottom: 20px;
}
/* ============================== */
/*  padding-left */
/* ============================== */
.padding-left1 {
  padding-left: 1px;
}
.padding-left2 {
  padding-left: 2px;
}
.padding-left3 {
  padding-left: 3px;
}
.padding-left4 {
  padding-left: 4px;
}
.padding-left5 {
  padding-left: 5px;
}
.padding-left6 {
  padding-left: 6px;
}
.padding-left7 {
  padding-left: 7px;
}
.padding-left8 {
  padding-left: 8px;
}
.padding-left9 {
  padding-left: 9px;
}
.padding-left10 {
  padding-left: 10px;
}
.padding-left15 {
  padding-left: 15px;
}
.padding-left20 {
  padding-left: 20px;
}
.padding-left30 {
  padding-left: 30px;
}
.padding-left40 {
  padding-left: 40px;
}
/* ============================== */
/*  padding-right */
/* ============================== */
.padding-right1 {
  padding-right: 1px;
}
.padding-right2 {
  padding-right: 2px;
}
.padding-right3 {
  padding-right: 3px;
}
.padding-right4 {
  padding-right: 4px;
}
.padding-right5 {
  padding-right: 5px;
}
.padding-right6 {
  padding-right: 6px;
}
.padding-right7 {
  padding-right: 7px;
}
.padding-right8 {
  padding-right: 8px;
}
.padding-right9 {
  padding-right: 9px;
}
.padding-right10 {
  padding-right: 10px;
}
.padding-right15 {
  padding-right: 15px;
}
.padding-right20 {
  padding-right: 20px;
}
/* ============================== */
/*  margin */
/* ============================== */
.margin5 {
  margin: 5px;
}
.margin10 {
  margin: 10px;
}
.margin15 {
  margin: 15px;
}
.margin20 {
  margin: 20px;
}
/* ============================== */
/*  margin-top */
/* ============================== */
.margin-top1 {
  margin-top: 1px;
}
.margin-top2 {
  margin-top: 2px;
}
.margin-top3 {
  margin-top: 3px;
}
.margin-top4 {
  margin-top: 4px;
}
.margin-top5 {
  margin-top: 5px;
}
.margin-top6 {
  margin-top: 6px;
}
.margin-top7 {
  margin-top: 7px;
}
.margin-top8 {
  margin-top: 8px;
}
.margin-top9 {
  margin-top: 9px;
}
.margin-top10 {
  margin-top: 10px;
}
.margin-top15 {
  margin-top: 15px;
}
.margin-top20 {
  margin-top: 20px;
}
.margin-top30 {
  margin-top: 30px;
}
.margin-top40 {
  margin-top: 40px;
}
.margin-top50 {
  margin-top: 50px;
}
.margin-top150 {
  margin-top: 150px;
}
.margin-top700 {
  margin-top: 700px;
}
/* ============================== */
/*  margin-bottom */
/* ============================== */
.margin-bottom1 {
  margin-bottom: 1px;
}
.margin-bottom2 {
  margin-bottom: 2px;
}
.margin-bottom3 {
  margin-bottom: 3px;
}
.margin-bottom4 {
  margin-bottom: 4px;
}
.margin-bottom5 {
  margin-bottom: 5px;
}
.margin-bottom6 {
  margin-bottom: 6px;
}
.margin-bottom7 {
  margin-bottom: 7px;
}
.margin-bottom8 {
  margin-bottom: 8px;
}
.margin-bottom9 {
  margin-bottom: 9px;
}
.margin-bottom10 {
  margin-bottom: 10px;
}
.margin-bottom15 {
  margin-bottom: 15px;
}
.margin-bottom20 {
  margin-bottom: 20px;
}
.margin-bottom30 {
  margin-bottom: 30px;
}
.margin-bottom40 {
  margin-bottom: 40px;
}
.margin-bottom50 {
  margin-bottom: 50px;
}
.margin-bottom150 {
  margin-bottom: 150px;
}
.margin-bottom700 {
  margin-bottom: 700px;
}
/* ============================== */
/*  margin-left */
/* ============================== */
.margin-left1 {
  margin-left: 1px;
}
.margin-left2 {
  margin-left: 2px;
}
.margin-left3 {
  margin-left: 3px;
}
.margin-left4 {
  margin-left: 4px;
}
.margin-left5 {
  margin-left: 5px;
}
.margin-left6 {
  margin-left: 6px;
}
.margin-left7 {
  margin-left: 7px;
}
.margin-left8 {
  margin-left: 8px;
}
.margin-left9 {
  margin-left: 9px;
}
.margin-left10 {
  margin-left: 10px;
}
.margin-left15 {
  margin-left: 15px;
}
.margin-left20 {
  margin-left: 20px;
}
.margin-left30 {
  margin-left: 30px;
}
.margin-left40 {
  margin-left: 40px;
}
.margin-left50 {
  margin-left: 50px;
}
/* ============================== */
/*  margin-right */
/* ============================== */
.margin-right1 {
  margin-right: 1px;
}
.margin-right2 {
  margin-right: 2px;
}
.margin-right3 {
  margin-right: 3px;
}
.margin-right4 {
  margin-right: 4px;
}
.margin-right5 {
  margin-right: 5px;
}
.margin-right6 {
  margin-right: 6px;
}
.margin-right7 {
  margin-right: 7px;
}
.margin-right8 {
  margin-right: 8px;
}
.margin-right9 {
  margin-right: 9px;
}
.margin-right10 {
  margin-right: 10px;
}
.margin-right15 {
  margin-right: 15px;
}
.margin-right20 {
  margin-right: 20px;
}
.margin-right30 {
  margin-right: 30px;
}
.margin-right40 {
  margin-right: 40px;
}
.margin-right50 {
  margin-right: 50px;
}
/* ============================== */
/*  text-align */
/* ============================== */
.align-left {
	text-align: left !important;
}
.align-center {
	text-align: center !important;
}
.align-right {
	text-align: right !important;
}
/* ============================== */
/*  background-color */
/* ============================== */
.backcolorBlue {
  background-color: #0000ff;
}
.backcolorBlue2 {
  background-color: #87ceeb;
}
.backcolorYellow {
  background-color: #ffffcc;
}
.backcolorRed {
  background-color: #ffc6b2;
}
.backcolorWhite {
  background-color: #ffffff;
}
.backcolorGray {
  background-color: #f4f4f4;
}
.backcolorGreen {
  background-color: #00008b;
}
.backcolorPink {
  background-color: #ffc0cb;
}

/* ============================== */
/*  input */
/* ============================== */
.input100w{
	width:100px;
}
.input200w{
	width:200px;
}
.input80p{
	width:80%;
}
.input85p{
	width:85%;
}
.input90p{
	width:90%;
}
.input95p{
	width:95%;
}
.input100p{
	width:100%;
}
/* ============================== */
/*  button */
/* ============================== */
.buttonType1{
	border:1px solid #000000;
	padding:5px;
}
/* ============================== */
/*  align */
/* ============================== */
.left {
  padding-left: 5px;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
  padding-right: 5px;
}
/* ============================== */
/*  other */
/* ============================== */
.radio_lb,
.radio_lb_list label{
	display:block;
	margin: 15px 0;
}
.clear{
  clear: both;
}
.visibility-collapse {
  visibility: collapse;
}
.visibility-collapse th {
  height: 0px;
}
.select_type1{
	border:1px solid #000000;
	width:100px;
	text-align:center;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
/* ◆ float ====================================== */
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
/* ◆ font-color ====================================== */
.textBlue1 {
  color: #0000cd;
}
.textGreen1 {
  color: #008b8b;
}
.textRed1 {
  color: red;
}
/* ◆ error_color ==================================== */
.ErrorColorFontClass {
	color: #ff0000;
}
.ErrorColorBackClass {
	background-color: #ffe8e8;
}
.ErrorColorClass {
	background-color: #ffe8e8;
}
/* ◆ display ==================================== */
.displayNone {
	display: none !important;
}

/* ◆ クレジット-ゼウス-ワンタイムパスワード ====================================== */
.wantime_area{
	height:400px;
}
.wantime_area iframe{
	border:1px solid #000000;
}
.omachi_area{
	margin:50px auto;
	font-size:20px;
	text-align:center;
}