@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: 601px〜
    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: 601px) {
    :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); */
		--x-space: 20px;
        --y-space-xs: 30px;
        --y-space-s: 50px;
        --y-space-m: 70px;
        --y-space-l: 80px;
        --global-header-height: 70px;
    }
}
@media screen and (min-width: 1400px) {
    :root {
        --x-space: calc((100% - 1200px) / 2);
    }
}
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.3rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-sans);
    text-align: justify;
    text-justify: inter-character;
    line-break: normal;
	color: #333333;
}

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);
    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;
    }
}
@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
/* ============================== */
/*  LAYOUT */
/* ============================== */
@media screen and (max-width: 600px) {
    .only-pc {
        display: none;
    }
}
@media screen and (min-width: 601px), 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: 70px;
    top: 0;
    left: 0;
	height:var(--global-header-height);
    background: var(--light-gray);
}
.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;
}
.site-id img{
 /*   width:100%; */
 /*   height:var(--global-header-height); */
  /*   height:50px; */
}
@media screen and (max-width: 767px)  {
	.site-id img{
		height:40px;
	}
}
@media screen and (max-width: 1399px) and (min-width: 768px) {
	.site-id img{
		height:55px;
	}
}
@media screen and (min-width: 1400px), print {
	.site-id img{
		height:65px;
	}
}

@media screen and (max-width: 1031px)  {
    .site-id {
		left: calc(var(--x-space) + 44px);
    }
}
@media screen and (min-width: 1032px), print {
    .site-id {
		left: var(--x-space);
    }
}
/* ============================== */
/*  GLOBAL-HEADER SP-ONLY */
/* ============================== */
@media screen and (max-width: 1031.98px) {
    .global-nav {
        position: absolute;
        z-index: 140;
        right: 0px;
        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%;
        height: 100vh;
        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);
        border: 1px solid #ddd;
        padding: 6px;
        background: #fff;
    }
    .search-bar .search-button {
        position: absolute;
        top: 11px;
        height: 36px;
        width: 34px;
        right: 104px;
        border: none;
        background: rgba(255, 255, 255, 0.9);
        padding: 7px;
    }
    .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-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 .linktel, 
    .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 {
    height: var(--global-header-height);
    top: 5px;
	right: 5px;
    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: 601px), print {
    #toggle-button {
        display: none;
    }
    .js-overlayer {
        display: none !important;
    }
    #header-nav {
        display: block !important;
    }
    .global-nav {
        position: absolute;
		top:8px;
        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 20px 0 0;
    }
    .global-nav .search-bar-trigger {
        display: none;
    }
    .search-bar input[type="search"] {
        width: 410px;
        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: 5px;
        border: none;
        background: rgba(255, 255, 255, 0.9);
        padding: 7px;
        text-align: center;
    }
    .search .search-cancel {
        display: none;
    }
    .search-bar .search-button img {
        height: 100%;
        width: auto;
    }
    .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: 16px;
        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: 601px), 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: 601px), print {
    .global-footer {}
}
.footer-logo {
    width: 125px;
    margin: var(--y-space-s) auto var(--y-space-s);
}
.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;
	font-size: 14px;
}
.copyright {
    text-align: center;
}
.copyright small {
    font-size: 1.2rem;
}
@media screen and (min-width: 601px), print {
    .footer-logo {
        width: 146px;
    }
    .footer-link {
        display: flex;
        justify-content: center;
    }
}
@media screen and (min-width: 1032px), print {
    .footer-logo {
        width: 195px;
    }
}
@media (hover: hover) {
    .footer-link a:hover {
        color: var(--link-color)
    }
}
/* ============================== */
/*  BREADCRUMB  */
/* ============================== */
.breadcrumb {
	/*
    padding-left: var(--x-space);
    padding-right: var(--x-space);
	*/
    padding-left: 5px;
    padding-bottom: 5px;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
    list-style-type: none;
    padding-top: var(--y-space-xs);
}
.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;
}
/* ============================== */
/*  header-banner  */
/* ============================== */
.header-banner_kirikae{
	max-width:1190px;
	height: 238px;
	position: relative;
}
.header-banner_kirikae img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-size: cover;
	background-position: center;
}
.header-banner{
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
	margin: 20px 0 0 0;
}
@media screen and (max-width: 1031px) {
	.header-banner_kirikae{
		margin: calc(var(--global-header-height) + 10px) auto 0 auto;
		height: calc(190 / 1031 * 100vw);
	}
	.header-banner img{
		width:100%;
	}
	.header-banner_kirikae{
		width:100%;
	}
	.header-banner_kirikae img{
		width:100%;
	}
}
@media screen and (min-width: 1032px), print {
	.header-banner_kirikae{
		margin: calc(var(--global-header-height) + 20px) auto 0 auto;
	}
	.header-banner img{
		max-width:100%;
	}
	.header-banner_kirikae img{
		max-width:100%;
	}
}
/* ============================== */
/*  top-banner  */
/* ============================== */
.top-banner{
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
	margin: 20px 0 0 0;
}
.top-banner img{
	max-width:800px;
}
/* ============================== */
/*  SIDEBAR, MAIN-CONTAINER */
/* ============================== */
.main-container {
    /* padding: var(--y-space-s) var(--x-space) var(--y-space-m);*/
    padding: 5px 5px var(--y-space-m);
}
.global-header + .main-container {
/*   padding-top: calc(var(--global-header-height) + var(--y-space-s));*/
   padding-top: calc(var(--global-header-height) + 10px);
}
@media screen and (max-width: 799px) {
	.main-side,
	.main-side2{
		width:100%;
	}
}
.main-side,
.main-side2{
	padding:12px 0 0 0;
}
@media screen and (min-width: 601px), print {
    .main-container {
        display: flex;
		justify-content: center;
    }
    .main-container.hide-sidebar {
        display: block;
    }
    .main-container.hide-sidebar #sidebar {
        display: none;
    }
	.main-side{
		width:800px;
	}
	.main-side2{
		width:1024px;
	}
}
/* ==================================================*/
/* サイドメニュー*/
/* ==================================================*/
/* メニュー*/
/* ==================================================*/
#menu{
    position: fixed;
    top: var(--global-header-height);
    left: -260px;
    width: 260px;
    z-index: 150;
    background: #fff;
    transition: 200ms;
    overflow-y: scroll;
    height: calc(100vh - var(--global-header-height));
    padding: 10px 10px 140px;
}
#menu.js-show {
    display: block;
    left: 0;
}
#menu .side-global-nav.only-sp, 
#menu .side-function-nav.only-sp, 
#rmenu .side-global-nav.only-sp, 
#rmenu .side-function-nav.only-sp {
    display: block;
}
	
#menu .side-function-nav,
#rmenu .side-function-nav {
    display: flex;
    align-items: center;
    margin: 10px 0 15px;
}
#menu h4,
#menu .title,
#rmenu h4,
#rmenu .title {
	font-size: 17px;
	font-weight: normal;
	line-height: 1.5;
	margin: 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
#menu h4 + .menubox,
#menu .title + .menubox,
#rmenu h4 + .menubox,
#rmenu .title + .menubox {
  margin-top: -1px;
}
#menu h4,#rmenu h4, #menu .title, #rmenu .title {
  background: #f5f5f5;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  background: -webkit-linear-gradient(top, #fff, #fafafa);
  background: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background: -o-linear-gradient(top, #ffffff, #f5f5f5);
  border-top: 3px solid #e58c38;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #dedede;
  color: #333;
  padding: 12px 15px;
}
#menu .menubox,
#rmenu .menubox {
  background-color: #eee;
  border: 1px solid #dedede;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 7px;
}
#menu .menulist,
#rmenu .menulist {
  background-color: #eee;
  padding: 4px;
}
#menu .menulist ul,
#rmenu .menulist ul, #submenu li {
	list-style: outside none none;
}
#menu .menulist li,
#rmenu .menulist li {
  background-color: #fff;
  border-bottom: 1px solid #f0ede9;
  margin-bottom: 3px;
}
#menu .menulist li:last-child,
#rmenu .menulist li:last-child {
  margin-bottom: 0;
}
#menu .menulist li a,
#rmenu .menulist li a {
  color: #333333;
  display: block;
  font-size: 12px;
  line-height: 1.6;
  padding: 13px 16px 13px 28px;
  position: relative;
  text-decoration: none;
}
#menu .menulist li a::before,
#rmenu .menulist li a::before {
  border: 4px solid transparent;
  border-left: 6px solid #e58c38;
  content: '';
  left: 15px;
  position: absolute;
  top: 19px;
}
#menu .menulist .l2,
#menu .menulist .l3,
#rmenu .menulist .l2,
#rmenu .menulist .l3 {
  background-color: #fafafa;
  margin-top: -3px;
}
#menu .menulist .l2 a,
#menu .menulist .l3 a,
#rmenu .menulist .l2 a,
#rmenu .menulist .l3 a {
  font-size: 13px;
}
#menu .menulist .l2 a::before, #menu .menulist .l2 a::after,
#menu .menulist .l3 a::before,
#menu .menulist .l3 a::after,
#rmenu .menulist .l2 a::before,
#rmenu .menulist .l2 a::after,
#rmenu .menulist .l3 a::before,
#rmenu .menulist .l3 a::after {
  border: none;
  border-right: 1px solid #484848;
  border-top: 1px solid #484848;
  content: '';
  height: 5px;
  left: 30px;
  position: absolute;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 20px;
  width: 5px;
}
#menu .menulist .l2 a::after,
#menu .menulist .l3 a::after,
#rmenu .menulist .l2 a::after,
#rmenu .menulist .l3 a::after {
  left: 34px;
}
#menu .menulist .l2 a,
#rmenu .menulist .l2 a {
  padding-left: 48px;
}
#menu .menulist .l3 a,
#rmenu .menulist .l3 a {
  padding-left: 68px;
}
#menu .menulist .l3 a::before,
#rmenu .menulist .l3 a::before {
  left: 50px;
}
#menu .menulist .l3 a::after,
#rmenu .menulist .l3 a::after {
  left: 54px;
}
#menu .rankbox,
#rmenu .rankbox {
  border-bottom: 1px dashed #cfcfcf;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
	#menu h4,
	#menu .title,
	#rmenu h4,
	#rmenu .title {
		font-size: 16px;
		font-weight: 700;
		line-height: 1.6;
	}
	#menu h4,
	#rmenu h4 {
		padding: 15px 16px;
	}
	#menu .title,
	#rmenu .title {
		padding: 14px 15px;
	}
	#menu .menulist,
	#rmenu .menulist {
		padding: 7px;
	}
	#rmenu{
		display:none;
	}
}
@media screen and (min-width: 601px), print {
    #menu, 
	#menu.js-show, 
	#rmenu, 
	#rmenu.js-show{
        display: block;
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        width: 180px;
        height: auto;
        flex: 0 0 auto;
        padding: 0;
        overflow: visible;
    }
    #menu, 
	#menu.js-show{
        margin-right: 15px;
    }
    #rmenu, 
	#rmenu.js-show{
        margin-left: 15px;
    }
	#menu h4,
	#rmenu h4 {
		padding: 16px 20px;
	}
	#menu .title,
	#rmenu .title {
		padding: 15px 19px;
	}
	#menu .menubox,
	#rmenu .menubox {
		margin-bottom: 16px;
	}
	#menu .menulist li a:hover,
	#rmenu .menulist li a:hover {
		color: #eb9800;
		background-color: #f7f0e6;
		text-decoration: underline;
	}
	#menu .menulist li a:hover::before,
	#rmenu .menulist li a:hover::before {
		border-left-color: #eb9800;
	}
	#menu .menulist .l2 a:hover::before, #menu .menulist .l2 a:hover::after,
	#menu .menulist .l3 a:hover::before,
	#menu .menulist .l3 a:hover::after,
	#rmenu .menulist .l2 a:hover::before,
	#rmenu .menulist .l2 a:hover::after,
	#rmenu .menulist .l3 a:hover::before,
	#rmenu .menulist .l3 a:hover::after {
		border-right-color: #eb9800;
		border-top-color: #eb9800;
	}
	#menu .side-global-nav.only-sp, 
	#menu .side-function-nav.only-sp, 
	#rmenu .side-global-nav.only-sp, 
	#rmenu .side-function-nav.only-sp {
        display: none;
    }
}
.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;
}
#menu .login a {
    background-image: url("../images/ico_login.svg");
}
#menu .logout a {
    background-image: url("../images/ico_logout.svg");
}
#menu .my-page a {
    background-image: url("../images/ico_user.svg");
}
#menu.js-show,
#rmenu.js-show {
    display: block;
    left: 0;
}
/*
#sidebar,
#sidebar2 {
    position: fixed;
    top: var(--global-header-height);
    left: -260px;
    width: 260px;
    z-index: 150;
    background: #fff;
    transition: 200ms;
    overflow-y: scroll;
    height: calc(100vh - var(--global-header-height));
    padding: 10px 10px 140px;
}
#sidebar.js-show,
#sidebar2.js-show {
    display: block;
    left: 0;
}
#sidebar .side-global-nav.only-sp, 
#sidebar .side-function-nav.only-sp, 
#sidebar2 .side-global-nav.only-sp, 
#sidebar2 .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 ul{ 
	list-style: none; 
}
.side-function-nav ul li{ 
	display: inline; 
	padding: 0; 
	margin: 0; 
}
.side-function-nav ul li a{
	position: relative;
	display: block; 
	border: 1px solid #9F99A3;
	background-color: #FFFFFF;
	padding: 10px 0px 10px 17px;
	text-decoration: none;
	color: #333;
	margin: 0px;
	text-align: left;
	font-size: 12px;
}
.side-function-nav ul li a:hover{
	border: 1px solid #8593A9;
	background-color: #f5f5f5 ;
}
.side-function-nav ul li a:before{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	width: 0;
	height: 0;
	margin: -3px 0 0 0;
	border-top: 8px solid #ff9935;
	border-left: 8px solid transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media screen and (min-width: 1032px), print {
    #sidebar, 
	#sidebar.js-show,
    #sidebar2, 
	#sidebar2.js-show {
        display: block;
        position: static;
        top: auto;
        left: auto;
        z-index: auto;
        width: 200px;
        height: auto;
        flex: 0 0 auto;
        padding: 0;
        overflow: visible;
    }
    #sidebar {
        margin-right: 30px;
    }
    #sidebar2 {
        margin-left: 30px;
    }
	#sidebar .side-global-nav.only-sp, 
	#sidebar .side-function-nav.only-sp, 
	#sidebar2 .side-global-nav.only-sp, 
	#sidebar2 .side-function-nav.only-sp {
        display: none;
    }
}
*/


/*******************************/
.kirikae-wrapper {
    padding: 5px 0 10px 0;
}
 .side-banner-list{
    padding: 12px 0 0 0;
}
 .side-banner-list a{
    display:block;
	margin-bottom: 20px;
}
.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: 0.6em 3em 0.6em 6px;
    position: relative;
    display: block;
    color: inherit;
}
.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;
}
/* ============================== */
/*  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: 24px;
    }
}
/* ============================== */
/*  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: 15px 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);
}
.title {
  color: #326045;
  font-size: 20px;
  font-weight: bold;
  border-left: 7px solid #326045;
  padding: 5px 7px 5px 10px;
  margin: 0 0 14px 0;
}
.kokuti_text{
	background-color:#ffff00;
	padding: 15px;
	font-size: 13px;
	margin:0 0 20px 0;
}
.kokuti_text2_title{
	background-color:#7F7F7F;
	font-size:26px;
	padding:10px 0;
	text-align:center;
	color:#ffffff;
	font-weight:bold;
}
.kokuti_text2{
	padding: 15px;
	font-size: 13px;
	margin:0 0 20px 0;
}
/* ============================== */
/*  DESCRIPTION-LIST  */
/* ============================== */
.dl-a,
.dl-a2 {
    border-bottom: 1px solid var(--border-gray1);
	margin-bottom:50px;
}
.dl-a > div,
.dl-a2 > div {
    width: 100%;
}
.dl-a > dt, .dl-a > div > dt,
.dl-a2 > dt, .dl-a2 > 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,
.dl-a2 > dd, .dl-a2 > div > dd {
    font-size: 1.4rem;
    padding: 0.5em 0 0.857142857142857em;
}
@media screen and (min-width: 601px), print {
    .dl-a,
	.dl-a2 {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid var(--border-gray1);
    }
    .dl-a > div,
    .dl-a2 > div {
        width: 100%;
        display: flex;
    }
    .dl-a > dt, .dl-a > dd, .dl-a > div > dt, .dl-a > div > dd,
    .dl-a2 > dt, .dl-a2 > dd, .dl-a2 > div > dt, .dl-a2 > div > dd{
        border-top: 1px solid var(--border-gray1);
    }
    .dl-a > dt, .dl-a > div > dt,
    .dl-a2 > dt, .dl-a2 > div > dt {
        width: 200px;
        padding: 1.3em 2em 1.3em 0;
    }
    .dl-a > dt, .dl-a > div > dt {
        width: 200px;
    }
    .dl-a2 > dt, .dl-a2 > div > dt {
        width: 300px;
    }
    .dl-a > dd, .dl-a > div > dd,
    .dl-a2 > dd, .dl-a2 > div > dd {
        padding: 1.5em 0;
    }
    .dl-a > dd, .dl-a > div > dd{
        width: calc(100% - 200px);
    }
    .dl-a2 > dd, .dl-a2 > div > dd {
        width: calc(100% - 300px);
    }
}
@media screen and (min-width: 1032px), print {
    .dl-a > dt, .dl-a > div > dt {
        width: 200px;
    }
    .dl-a2 > dt, .dl-a2 > div > dt {
        width: 300px;
    }
    .dl-a > dd, .dl-a > div > dd {
        width: calc(100% - 210px);
    }
    .dl-a2 > dd, .dl-a2 > div > dd {
        width: calc(100% - 310px);
    }
}
/*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: 601px), 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;
}
.dl-form > dd.check_lb label{
	display:block;
}
.dl-form > dd.check_lb label input{
	margin-right:10px;
}
/*------------------------------**/
.dl-form .kiboubi_date {
	margin:10px;
}
.dl-form .kiboubi_date div{
	height:35px;
	line-height:35px;
}
.dl-form .kiboubi_date select{
	border:1px solid #000000;
}
.dl-form .kiboubi_date input{
	height:35px;
}
.dl-form .kiboubi_date .div1{
	margin:10px;
}
.dl-form .kiboubi_date .div2{
	margin:10px;
	text-align:center;
}
.dl-form .kiboubi_date .div3,
.dl-form .kiboubi_date .div5{
	margin:10px 0 10px 10px;
}
.dl-form .kiboubi_date .div4,
.dl-form .kiboubi_date .div6{
	margin:10px 10px 10px 3px;
}
/** PC用 */
@media screen and (min-width:1024px){
	.dl-form .kiboubi_date {
		display: flex;
	}
}
/** スマホ用 */
@media screen and (max-width:1023px){
	.dl-form .kiboubi_date {
		display: flex;
		flex-wrap: wrap;
	}
}
/*------------------------------**/


@media screen and (min-width: 601px), 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-k2 {
    background: #4682b4;
    color: #fff;
    padding: 0.666666666666667em 1em;
    font-size: 1.7rem;
    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;
    }
    .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 li {
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 0.5em;
}
.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 {
    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;
}
.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: 600px), 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: 601px), 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: 600px), 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: 601px), 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: 19px;
    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;
}
.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: 601px), 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;
}
/* ============================== */
/*  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;
}
@media screen and (min-width: 601px), 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 400px;
    }
}




.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: 600px), 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: 601px), 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;
    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: 250px;
    margin-top: 0.3em;
	text-align:right;
}
.sales-info-b h4:first-of-type {}
.sales-info-b h4::after {
    content: "：";
}
.sales-info-b h4 + p {
    width: calc(100% - 250px);
    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: 601px), 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: 601px), 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-box select,
.form-select-box2 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 {
    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);
	display:none;
}
.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;
}
.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: 601px), 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: 601px), 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;
}
@media screen and (min-width: 601px), 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: 13px;
        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;
    }
}
@media screen and (max-width: 600px) {
    .cart-item {
        display: block;
    }
    .cart-item .product-image {
		display:none;
    }
    .cart-item .product-info {
		width:100%;
    }
	.cart-item .product-control {
		margin: 10px 0 0 0;
		display:flex;
	}
    .cart-item .product-price {
		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: 601px), 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;
}
.hr2{
    border-top: 1px solid #d3d3d3;
    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;
	}
}
/* ============================== */
/*  マイページ */
/* ============================== */
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: 30%;
}
.mypage-rireki-list.table-list1 .content-width4 {
  width: 30%;
}
.mypage-rireki-list.table-list1 .content-width5 {
  width: 10%;
}

.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: 7%;
}
.mypage-rireki-list.table-list3 .content-width2 {
  width: 21%;
}
.mypage-rireki-list.table-list3 .content-width3 {
	width: 14%;
}
.mypage-rireki-list.table-list3 .content-width4 {
	width: 14%;
}
.mypage-rireki-list.table-list3 .content-width5 {
	width: 14%;
}
.mypage-rireki-list.table-list3 .content-width6 {
	width: 23%;
}
.mypage-rireki-list.table-list3 .content-width7 {
	width: 7%;
}

.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-contact-list{
	width:100%;
}
.mypage-contact-list td{
	border:1px solid #000000;
	vertical-align: middle;
}
.mypage-contact-list .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}
.mypage-contact-list .content-body1 {
  padding-top:10px;
  padding-bottom:10px;
}
.mypage-contact-list.table-list1 .content-width1 {
  width: 20%;
}
.mypage-contact-list.table-list1 .content-width2 {
  width: 30%;
}
.mypage-contact-list.table-list1 .content-width3 {
  width: 50%;
}

/* ============================== */
/*  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%;
	}
}


/* ============================== */
/*  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;
}
/* ============================== */
/*  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 !important;
}
.input110w{
	width:110px !important;
}
.input120w{
	width:120px !important;
}
.input130w{
	width:130px !important;
}
.input140w{
	width:140px !important;
}
.input150w{
	width:150px !important;
}
.input160w{
	width:160px !important;
}
.input170w{
	width:170px !important;
}
.input180w{
	width:180px !important;
}
.input190w{
	width:190px !important;
}
.input200w{
	width:200px !important;
}
.input80p{
	width:80% !important;
}
.input85p{
	width:85% !important;
}
.input90p{
	width:90% !important;
}
.input95p{
	width:95% !important;
}
.input100p{
	width:100% !important;
}

/* ============================== */
/*  font-size */
/* ============================== */
.font-size10{
    font-size: 10px !important; 
}
.font-size11{
    font-size: 11px !important; 
}
.font-size12{
    font-size: 12px !important; 
}
.font-size13{
    font-size: 13px !important; 
}
.font-size14{
    font-size: 14px !important; 
}
.font-size15{
    font-size: 15px !important; 
}
.font-size16{
    font-size: 16px !important; 
}
.font-size17{
    font-size: 17px !important; 
}
.font-size18{
    font-size: 18px !important; 
}
.font-size19{
    font-size: 19px !important; 
}
.font-size20{
    font-size: 20px !important; 
}
.font-size21{
    font-size: 21px !important; 
}
.font-size22{
    font-size: 22px !important; 
}
.font-size23{
    font-size: 23px !important; 
}
.font-size24{
    font-size: 24px !important; 
}
.font-size25{
    font-size: 25px !important; 
}
.font-size26{
    font-size: 26px !important; 
}
.font-size27{
    font-size: 27px !important; 
}
.font-size28{
    font-size: 28px !important; 
}
.font-size29{
    font-size: 29px !important; 
}
.font-size30{
    font-size: 30px !important; 
}
/* ============================== */
/* text-align */
/* ============================== */
.align-left {
	text-align: left;
}
.align-center {
	text-align: center;
}
.align-right {
	text-align: right;
}
/* ============================== */
/* display */
/* ============================== */
.displayNone {
	display: none;
}
/* ============================== */
/*  button */
/* ============================== */
.buttonType1{
	border:1px solid #000000;
	padding:5px;
}
.addSpan {
  border: 1px solid #00008b;
  background: #fff;
  color: #00008b;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
}
/* ============================== */
/*  align */
/* ============================== */
.left {
  padding-left: 5px;
  text-align: left;
}
.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;
}
.no-border,
.no-border td,
.no-border th{
	border: none;
}
/* ◆ float ====================================== */
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
/* ◆ font-color ====================================== */
.textBlue1 {
  color: #0000cd !important; 
}
.textGreen1 {
  color: #008b8b !important; 
}
.textRed {
  color: red !important; 
}
.textRed1 {
  color: red !important; 
}
/* ◆ error_color ==================================== */
.ErrorColorFontClass {
	color: #ff0000;
}
.ErrorColorBackClass {
	background-color: #ffe8e8;
}
.ErrorColorClass {
	background-color: #ffe8e8;
}

/* ============================== */
/*  概算見積もりフォーム */
/* ============================== */
.mitsumori-wrapper{
	padding:0 0 30px 0;
}
.mitsumori-wrapper .form-start{
	padding-top:20px;
}
.mitsumori-wrapper .table1,
.mitsumori-wrapper .table1_pra,
.mitsumori-wrapper .table2,
.mitsumori-wrapper .table1not{
	width:100%;
}
.mitsumori-wrapper select{
    -webkit-appearance: menulist-button;
    -moz-appearance: menulist-button;
    appearance: menulist-button;
    font-family: inherit;
    color: #000000;
    width: 100%;
    padding: 10px 5px;
    cursor: pointer;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    line-height: 1.3;
    vertical-align: middle;
}
.mitsumori-wrapper .table1 td,
.mitsumori-wrapper .table1_pra td,
.mitsumori-wrapper .table2 td{
	border:1px solid #000000;
}
.mitsumori-wrapper .table2{
	margin-top:20px;
}
.mitsumori-wrapper .table1 .content-title1,
.mitsumori-wrapper .table1_pra .content-title1{
	font-size:16px;
	text-align:center;
	background-color:#fffacd;
}
.mitsumori-wrapper .table2 .content-title1{
	font-size:16px;
	text-align:right;
	vertical-align: middle;
	padding-right:3px;
	background-color:#f5deb3;
}
.mitsumori-wrapper .content-body {
	font-size:12px;
}
.mitsumori-wrapper .table1 .content-body1,
.mitsumori-wrapper .table1_pra .content-body1{
	text-align: center;
	vertical-align: middle;
}
.mitsumori-wrapper .table2 .content-body-sum{
	font-size:16px;
	padding-right:3px;
	text-align: right;
}
.mitsumori-wrapper .table1 .content-body1,
.mitsumori-wrapper .table1_pra .content-body1{
	background-color:#f0e68c;
}
.mitsumori-wrapper .table1 .content-body2 select,
.mitsumori-wrapper .table1_pra .content-body2 select{
    font-size: 11px;
}
.mitsumori-wrapper .table1 .content-body7 select,
.mitsumori-wrapper .table1_pra .content-body7 select{
	text-align:center;
    font-size: 13px;
}

.mitsumori-wrapper .table1 .content-width1,
.mitsumori-wrapper .table1_pra .content-width1,
.mitsumori-wrapper .table1not .content-width1 {
	width: 7%;
}
.mitsumori-wrapper .table1 .content-width2,
.mitsumori-wrapper .table1_pra .content-width2,
.mitsumori-wrapper .table1not .content-width2 {
	width: 19%;
}
.mitsumori-wrapper .table1 .content-width3,
.mitsumori-wrapper .table1_pra .content-width3,
.mitsumori-wrapper .table1not .content-width3 {
	width: 14%;
}
.mitsumori-wrapper .table1 .content-width4,
.mitsumori-wrapper .table1_pra .content-width4,
.mitsumori-wrapper .table1not .content-width4 {
	width: 14%;
}
.mitsumori-wrapper .table1 .content-width5,
.mitsumori-wrapper .table1_pra .content-width5,
.mitsumori-wrapper .table1not .content-width5 {
	width: 14%;
}
.mitsumori-wrapper .table1 .content-width6,
.mitsumori-wrapper .table1_pra .content-width6,
.mitsumori-wrapper .table1not .content-width6 {
	width: 23%;
}
.mitsumori-wrapper .table1 .content-width7,
.mitsumori-wrapper .table1_pra .content-width7,
.mitsumori-wrapper .table1not .content-width7 {
	width: 9%;
}

.mitsumori-wrapper .table2 .content-width1 {
	width: 70%;
}
.mitsumori-wrapper .table2 .content-width2 {
	width: 30%;
}

.mitsumori-wrapper .box1{
	margin-top:20px;
	padding:8px;
	background-color:#fff2cc;
}

.mitsumori-wrapper .img_list_box1{
	margin-top:20px;
}
.mitsumori-wrapper .img_list_box1 img{
	border: 1px #000000 solid;
}
.mitsumori-wrapper .img_box_left img{
	max-width: 100%;
}
.mitsumori-wrapper .img_box_right img{
	max-width: 100%;
}
@media screen and (max-width: 1031px) {
	.mitsumori-wrapper .setsumei{
		font-size:12px;
	}
	.mitsumori-wrapper .img_list_box1{
		width:100%;
	}
	.mitsumori-wrapper .img_box_left{
		display: block;
		text-align: center;
	}
	.mitsumori-wrapper .img_box_right{
		margin-top:10px;
		display: block;
		text-align: center;
	}
}
@media screen and (min-width: 1032px) {
	.mitsumori-wrapper .setsumei{
		font-size:14px;
	}
	.mitsumori-wrapper .img_box_left{
		text-align: center;
		width:50%;
		float:left;
	}
	.mitsumori-wrapper .img_box_right{
		text-align: center;
		width:50%;
		float:right;
	}
}

/* ============================== */
/*  Q&A */
/* ============================== */
.Qa-Box {
  width: 100%;
  margin: 0 auto;
}
.Qa-Box .Qa{
	margin-bottom:30px;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 30px 0;
}
.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}
.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}
.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D65556;
  color: #fff;
  width: 35px;
  height: 35px;
}
.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6699B7;
  color: #fff;
  width: 35px;
  height: 35px;
}

@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}

/* ============================== */
/*  サイトマップ */
/* ============================== */
#sitemaps {
  margin: 8px 0;
  overflow: hidden;
}
#sitemaps ul {
  list-style: outside none none;
}
#sitemaps ul li {
  padding:0;
  margin:0;
  background-color: #fff;
  border-bottom: 1px solid #f0ede9;
  margin-bottom: 3px;
  padding: 0;
}
#sitemaps ul li:before{
  display:none;
}
#sitemaps li:last-child {
  margin-bottom: 0;
}
#sitemaps li a {
  color: #333333;
  display: block;
  font-size: 14px;
  line-height: 1.6;
  padding: 13px 16px 13px 28px;
  position: relative;
  text-decoration: none;
}
#sitemaps li a::before {
  border: 4px solid transparent;
  border-left: 6px solid #e58c38;
  content: '';
  left: 15px;
  position: absolute;
  top: 19px;
}
#sitemaps li a:hover {
color: #eb9800;
text-decoration: underline;
}
#sitemaps li a:hover::before {
border-left-color: #eb9800;
}
/*
==================================================
フリースペース
==================================================
*/
#space3,#space4, #space5, #space6 {
    background-color: #fff;
    display: block;
    margin: auto;
    padding: 10px;
}
/* ============================== */
/*  通常 */
/* ============================== */
.normalText{
	margin-top:10px;
}
ol.count_kana {
  margin: 10px 0 0 30px;
  list-style-type: katakana;
}
ol.count_suuzi {
  margin: 10px 0 0 30px;
  list-style-type: normal;
}
.normalImg2 img{
	width:auto;
}
/* ============================== */
/*  Box */
/* ============================== */
/*  2Box*/
@media screen and (max-width: 1031px) {
	ul.threeColumns{
	}
	ul.threeColumns li{
		padding:10px;
	}
}
@media screen and (min-width: 1032px) {
	.BoxList{
		width:100%;
	}
	.twoBox .leftBox{
		float:left;
		width:50%;
		padding:5px;
	}
	.twoBox .rightBox{
		float:left;
		width:50%;
		padding:5px;
	}
}
/* ============================== */
/*  カラム */
/* ============================== */
/*  2カラム */
/*  3カラム */
@media screen and (max-width: 1031px) {
	ul.twoColumns.
	ul.threeColumns{
	}
	ul.twoColumns li,
	ul.threeColumns li{
		padding:10px;
	}
}
@media screen and (min-width: 1032px) {
	ul.twoColumns,
	ul.threeColumns{
		display: flex;
		justify-content: space-between;
	}
	ul.twoColumns li,
	ul.threeColumns li{
		display: flex;
		flex-direction: column;
		padding:5px;
	}
	ul.twoColumns li{
		width:50%;
	}
	ul.threeColumns li{
		width:33%;
	}
}
ul.columnList .columTitle{
	width:100%;
}
ul.columnList .columImg{
	margin-top: auto;
	width:100%;
}
/* ============================== */
/*  見出し */
/* ============================== */
.midashiKakoi{
	border:1px solid #a9a9a9 ;
}
.midashiKakoi h3{
	border-left: 5px solid #ff9935;
	padding:5px 0 10px 10px;
	margin:5px 0 5px 10px;
	font-weight:bold;
}
.midashiKakoi h4{
	border-top: 3px solid #ff9935;
	padding: 5px 0 10px 10px;
	margin: 0px;
	font-weight:bold;
}  
.midashiKakoi2{
	background-color:#ffff00;
	padding: 20px;
	margin: 20px 0 0 0;
}
.midashiKakoi2 .text1{
	font-size:18px;
	font-weight:bold;
}

.midashiKakoi3 {
	background-color: #3f6db4;
	color:#ffffff;
	padding: 20px;
	margin: 20px 0 0 0;
}


.midashiTitle1 {
	color: #000000;
	padding: 10px 0 10px 10px;
	border-left: 10px solid #364e96;
	border-bottom: 3px solid #364e96;
}
.midashiTitle2 {
	background: #ff9935;
	padding: 0.2em 0.5em;
	color:#ffffff;
}
.midashiTitle3 {
	color: #000000;
	border-bottom: 3px solid #ff9935;
}
.midashiTitle11{
	background-color:#fcd69e;
	padding: 5px 10px;
}
.midashiTitle11 .midashiMain{
	float:left;
	width:100px;
	padding: 20px 0;
}
.midashiTitle11 .midashiSub{
	float:left;
	width: calc(100% - 100px);
	background-color:#fffbf4;
	padding: 20px 0 20px 20px;
}
.midashiTitle12 {
	color: #ffffff;
	padding: 10px 0 10px 10px;
	background-color:#364e96;
}
.midashiTitlefont1{
	padding-left:20px;
}

.midashi20 h6 {
  font-size: 17px;
  line-height: 1.8;
  margin: 10px auto;
  overflow: hidden;
  padding: 0 0 0 24px;
  position: relative;
}
.midashi20 h6::before {
	top: 5px;
	background-color: #e58c38;
	background-image: url("../images/arrow1.png");
	background-position: 3px center;
	background-repeat: no-repeat;
	background-size: 50%;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
	content: '';
	height: 15px;
	left: 2px;
	position: absolute;
	top: 6px;
	width: 15px;
}


.attention {
  background-color: #fffff8;
  background-image: url(../images/attention.png);
  border: 2px solid #d3b806;
  color: #B09B09;
}
.attention{
	background-repeat: no-repeat;
	font-size: 15px;
	line-height: 1.8;
	position: relative;
	z-index: 0;
}
.alert, .attention, .thint, .accept, .user1, .user2, .rank {
  clear: both;
}
@media screen and (max-width: 1031px) {
	.midashiTitle{
		font-size:14px;
	}
	.midashiTitlefont1{
		font-size:16px;
	}
	.midashiKakoi h3{
		font-size:18px;
	}
	.midashiKakoi h4{
		font-size:15px;
	}
	.attention{
		background-position: 12px 15px;
		background-size: 17px auto;
		margin: 15px 0;
		padding: 12px 10px 12px 38px;
	}
}
@media screen and (min-width: 1032px) {
	.midashiTitle{
		font-size:16px;
	}
	.midashiTitlefont1{
		font-size:18px;
	}
	.midashiKakoi h3{
		font-size:20px;
	}
	.midashiKakoi h4{
		font-size:17px;
	}
	.attention{
	  background-position: 22px 20px;
	  background-size: auto auto;
	  margin: 20px 0;
	  padding: 25px 16px 25px 78px;
	}
}
/* ============================== */
/*  囲い */
/* ============================== */
.kakoiStyle1{
	border:2px solid #ff9935;
	padding: 10px;
}
.kakoiStyle2 {
  color: #000000;
  background: #9cecc0;
  text-indent: 0em;
  margin: 20px auto auto auto;
  margin: 1.2rem auto auto auto;
  padding: 20px;
  padding: 1.2rem;
  text-indent: 0;
}
.kakoiStyle3{
	border:2px solid red;
	padding: 10px;
}
.kakoiStyle11{
	border:5px solid #fcd69e;
	padding: 10px;
}
.kakoiStyle12{
	border:5px solid #faba4b;
	padding: 10px;
}
.kakoiStyle20{
	border:2px solid #ceb002;
	background-color:#fffef9;
	color:#ceb002;
	padding: 25px 10px;
}
.kakoiStyle21 {
  background-color: #f7f7f7;
  border: 2px solid #cccccc;
  color: #333;
  margin: 24px 0;
  padding: 12px 10px 12px 10px;
}
.dottbox {
	border: dotted 1px #666;
	box-shadow: none;
	padding: 15px;
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 10px;
	clear: both;
}
/* ============================== */
/*  button */
/* ============================== */
.btn01.blue {
  background-color: #1488e5;
}
.btn01.pink {
  background-color: #f28a9e;
}
.btn-shadow {
    -moz-text-shadow: 0px 1px 2px rgba(0,0,0,.4);
    -webkit-text-shadow: 0px 1px 2px rgba(0,0,0,.4);
    text-shadow: 0px 1px 2px rgba(0,0,0,.4);
}
.btn-rounded, .btn-rounded a {
    border-radius: 5px;
}
.btn01, .btn02, .btn03, .btn04, .btn05, .btn06, .btn07 {
	margin: auto auto 15px;
	width: 240px;
	height: 44px;
	line-height: 44px;
	font-weight: bold;
	max-width: 100%;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	position: relative;
	text-align: center;
	text-decoration: none;
	-moz-transition: color 0.15s ease-out 0s, background-color 0.15s ease-out 0s;
	-o-transition: color 0.15s ease-out 0s, background-color 0.15s ease-out 0s;
	-webkit-transition: color 0.15s ease-out, background-color 0.15s ease-out;
	-webkit-transition-delay: 0s, 0s;
	transition: color 0.15s ease-out 0s, background-color 0.15s ease-out 0s;
	overflow: hidden;
}
.btn01 a, .btn02 a, .btn03 a, .btn04 a, .btn05 a, .btn06 a, .btn07 a {
  color: #FFF;
  text-decoration: none;
  display: block;
  padding: 0 4%;
  width: 100%;
  height: 100%;
  line-height: 44px;
  box-sizing: border-box;
}
/* ============================== */
/*  flex */
/* ============================== */
.flexmainbox{
	display : flex;
}
.flexmainbox .flexbox1{
	display : flex;
	align-items: center;
}
.flexmainbox .flexbox1 > div{
	display : block;
}

/**********************************************/
/* プライバシーポリシー*/
/**********************************************/
.privacy .privacyBox{
	margin-top:20px;
}
.privacy .privacyMidahi{
	color: inherit;
	font-size: 19px;
	font-weight:bold;
	margin: 40px 0 10px 0;
}
.privacy .privacySubMidahi{
	font-size: 17px;
	margin: 20px 0 5px 0;
}
.privacy .privacyText1{
	
}
.privacy ol{
  counter-reset: item;
  list-style-type: none;
  padding-left: 10px;
}
.privacy ol ol{
  padding:10px;
}
.privacy ol li{
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.privacy ol li.li_type1:before {
  counter-increment: item;
  content: counter(item)'.';
  /* 以下は自由に装飾... */
  padding-right: .5em;
}

.privacy ol li.li_type2:before {
  counter-increment: item;
  content: '('counter(item)').';
  /* 以下は自由に装飾... */
  padding-right: .5em;
}

/**********************************************/
/* マスタ登録 */
/**********************************************/
.masterTableAdd td {
	border: 1px solid #ccc;
}
.masterTableAdd .content-title1 {
	text-align: left;
	background-color: #c8e7fa;
}
.masterTableAdd .content-title2 {
	text-align: center;
	background-color: #f8f8f8;
}
.masterTableAdd .content-body1 {}
.masterTableAdd .content-body2 {}
@media screen and (max-width:600px) {
	.masterTableAdd .content-width1, 
	.masterTableAdd .content-width2, 
	.masterTableAdd .content-width2_1, 
	.masterTableAdd .content-width2_2, 
	.masterTableAdd .content-width3_1, 
	.masterTableAdd .content-width3_2, 
	.masterTableAdd .content-width3_3, 
	.masterTableAdd .content-width3_2_1, 
	.masterTableAdd .content-width3_2_2, 
	.masterTableAdd .content-width3_2_3, 
	.masterTableAdd .content-width3_3_1, 
	.masterTableAdd .content-width3_3_2, 
	.masterTableAdd .content-width3_3_3, 
	.masterTableAdd .content-width4_1, 
	.masterTableAdd .content-width4_2, 
	.masterTableAdd .content-width4_3, 
	.masterTableAdd .content-width4_4, 
	.masterTableAdd td {
		width: 100%;
		display: block;
	}
	.masterTableAdd .content-title1 + td {
		border-top: none;
	}
	.masterTableAdd .content-body1 {
		border-bottom: none;
	}
	.masterTableAdd tr:last-child .content-body1 {
		border-bottom: 1px solid #ccc;
	}
}
@media screen and (min-width:601px) {
	.masterTableAdd .content-width1 {
		width: 200px;
	}
	.masterTableAdd .content-width2 {
		width: 1000px;
	}
	
	.masterTableAdd .content-width2_1 {
		width: 300px;
	}
	.masterTableAdd .content-width2_2 {
		width: 900px;
	}
	
	.masterTableAdd .content-width3_1 {
		width: 200px;
	}
	.masterTableAdd .content-width3_2 {
		width: 500px;
	}
	.masterTableAdd .content-width3_3 {
		width: 500px;
	}
	
	.masterTableAdd .content-width3_2_1 {
		width: 400px;
	}
	.masterTableAdd .content-width3_2_2 {
		width: 400px;
	}
	.masterTableAdd .content-width3_2_3 {
		width: 400px;
	}
	
	
	.masterTableAdd .content-width3_3_1 {
		width: 250px;
	}
	.masterTableAdd .content-width3_3_2 {
		width: 300px;
	}
	.masterTableAdd .content-width3_3_3 {
		width: 650px;
	}
	
	.masterTableAdd .content-width4_1 {
		width: 200px;
	}
	.masterTableAdd .content-width4_2 {
		width: 400px;
	}
	.masterTableAdd .content-width4_3 {
		width: 200px;
	}
	.masterTableAdd .content-width4_4 {
		width: 400px;
	}
}

/**********************************************/
/* 受注管理詳細 */
/**********************************************/
.orderdetaillist th,
.orderdetaillist td{
	border: 1px solid #dcdcdc;
}
.orderdetaillist .content-title1 {
  text-align: center;
  background-color: #d3d3d3;
  color:#000000;
}
.orderdetaillist .content-title2 {
  text-align: left;
  padding-left:5px;
  background-color: #d3d3d3;
  color:#000000;
}
.orderdetaillist .content-title3 {
  text-align: left;
  padding-left:5px;
  background-color: #ccffee;
  color:#000000;
}
.orderdetaillist .content-body1 {
  padding-top:10px;
  padding-bottom:10px;
}

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

.orderdetaillist.table-list3 {
	font-size:12px;
}
.orderdetaillist.table-list3 .content-width1 {
  width: 7%;
}
.orderdetaillist.table-list3 .content-width2 {
  width: 21%;
}
.orderdetaillist.table-list3 .content-width3 {
	width: 14%;
}
.orderdetaillist.table-list3 .content-width4 {
	width: 14%;
}
.orderdetaillist.table-list3 .content-width5 {
	width: 14%;
}
.orderdetaillist.table-list3 .content-width6 {
	width: 23%;
}
.orderdetaillist.table-list3 .content-width7 {
	width: 7%;
}


.orderdetaillist.table-list3_2 {
	font-size:12px;
}
.orderdetaillist.table-list3_2 .content-width1 {
	width: 7%;
}
.orderdetaillist.table-list3_2 .content-width2 {
	width: 18%;
}
.orderdetaillist.table-list3_2 .content-width3 {
	width: 12%;
}
.orderdetaillist.table-list3_2 .content-width4 {
	width: 5%;
}
.orderdetaillist.table-list3_2 .content-width5 {
	width: 5%;
}
.orderdetaillist.table-list3_2 .content-width6 {
	width: 20%;
}
.orderdetaillist.table-list3_2 .content-width7 {
	width: 7%;
}
.orderdetaillist.table-list3_2 .content-width8 {
	width: 7%;
}
.orderdetaillist.table-list3_2 .content-width9 {
	width: 7%;
}
.orderdetaillist.table-list3_2 .content-width10 {
	width: 5%;
}
.orderdetaillist.table-list3_2 .content-width11 {
	width: 7%;
}

.orderdetaillist.table-list4 .content-width1 {
  width: 30%;
}
.orderdetaillist.table-list4 .content-width2 {
  width: 70%;
}

/**********************************************/
/* モーダルウィンドウ */
/**********************************************/
.modal-container {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	display:none;
	z-index: 9;
}
.modal-container::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.modal-container.active {
	opacity: 1;
	visibility: visible;
}
.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}
.modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	font-size: 18px;
	color: #fff;
	background: rgba(0,0,0,60%);
	padding: 4px 15px;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	border: 3px solid #ffffff;
}

.modal-content {
	background: #fff;
	border: 2px solid #000;
	text-align: left;
	padding: 30px;
	font-weight: bold;
	border: 2px solid #ffffff;
}
.modal-content .popup_text{
	font-size:20px;
	font-weight:bold;
	text-align:center;
}
.modal-content .popup_img{
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal-content .popup_img a{
	margin:10px;
}
/* ============================== */
/*  A-リンク  */
/* ============================== */
a.link-button1{
	background-color: #0671B8;
	color: #ffffff;
	padding: 5px;
	font-weight: bold;
}
/* ============================== */
/*  矢印  */
/* ============================== */
.arrow_right {
  position: relative;
  padding-left: 25px;
}
.arrow_right::before { /* くの字の表示設定 */
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 2px;
	width: 13px;    /* くの字を山なりに見た時、左側の長さ */
	height: 13px;   /* くの字を山なりに見た時、右側の長さ */
	border-top: 3px solid #ff8c00 ;     /* くの字を山なりに見た時、左側の太さと色 */
	border-right: 3px solid #ff8c00 ;   /* くの字を山なりに見た時、右側の太さと色 */
	transform: rotate(45deg);    /* くの字の向き */
}
/* ============================== */
/*  会社概要  */
/* ============================== */
.co_mv {
    background: url(../images/img_mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	position: relative;
    margin-bottom: 10px;
    height: 200px;
}
.co_mv .title_mv {
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    font-weight: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}