@charset "euc-jp";

/* CSS追加分 */

/*バージョン表記*/
.version {
    z-index: 2;
    position: absolute;
    opacity: .3;
}
/*バージョン表記*/

/*ハンバーガーメニュー*/
.hamburger {
    height: 60px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    width: 60px;
    border: none;
    background-color: transparent;
    
    top: 5px;
    right: 5px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.hamburger.-active .hamburger__line {
    background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
    background-color: #fff;
}
.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
}
.hamburger.-active .hamburger__text::before {
  content: '閉じる';
  color:#fff;
}
.hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #F29600;
    transition: 0.4s;
}
.hamburger__line:before,
.hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #F29600;
    transition: inherit;
}
.hamburger__line:before {
    top: -6px;
}
.hamburger__line:after {
    top: 6px;
}
.hamburger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.hamburger__text::before {
    content: "メニュー";
    text-align: center;
    color: #F29600;
    font-size: 10px;
    font-weight: 900;
    transition: 0.4s;
}
.hamburger_logo a{
    width: 300px;
    max-width:100%;
    margin: 0 auto 15px auto;
    display: block;
}

.header {
  width: 300px;
}
.header__nav-area {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    /*padding-top: 60px;*/
    background-color: #fff;
    transition: 0.4s;
}
.header__nav-area.-active {
    left: 0;
  visibility: visible;
}
.global-navigation {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
}
.global-navigation__list > li {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.global-navigation__list > li + li {
  margin-top: 20px;
}
.global-navigation__link {
  display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 900;
    transition: color 0.4s;
    font-size: 0.875rem;
}

.global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
}
.global-navigation__link.-accordion::after {
    content: '';
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color: #fff;
    transform: translateY(-50%);
    
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
}
.accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
}
.accordion__list li {
    font-size: 0.75rem;
}
.accordion__list li + li {
     margin-top: 21px;
}
.accordion__link {
    color: #fff;
}


.hamburger.-active{
    background-color: #F29600;
    transition: .4s;
    box-shadow: none;
}

#navigation{
background:#F29600;
}

#navigation a{
color:#fff;
}

#navigation .search_container input[type="submit"]{
background: #fff;
color: #F29600;
padding-left: 3px;
}

#navigation .search_container input[type="text"]{
background: #F29600;
border-radius: 20px;
padding: 4px 16px;
color:#fff;
}
#navigation .search_container input[type="text"]::placeholder{
opacity:50%;
color:#fff;
}
#navigation .search_container{
padding: 3px 3px;
width: 500px;
margin: 0 auto 20px auto;
max-width: 100%;
}

/*ハンバーガーメニュー*/

#js-hamburger{
display:none;
}

/* トップへ戻るボタン */
.pagetop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 20px;
    line-height:1em;
    font-size: 13px;
}
.pagetop a {
    display: table-cell;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #ccc;
    text-align: center;
    vertical-align: middle;
    color: #222;
    text-decoration: none;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    transition:.4s;
}
.pagetop a:hover {
    background-color: #222;
    color: #ccc;
    text-decoration: none;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
/* トップへ戻るボタン */

/* お問い合わせボタン */
.contact-btn {
  display: block;
  position: fixed;
  top: 122px;
  right: 0;
  width: 46px;
  height: 180px;
  background: #333;
  z-index: 100;
  opacity: 0;
  color: #fff;
      transition: 0.2s;
  transform: translateX(50px);
}
.contact-btn:hover{
  background:#FF9F12;
  color:#fff;
  text-decoration:none;
}
.contact-btn i{
margin-left:1px;
}
.contact-btn-txt {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-decoration:none;
  font-weight:bold;
}
.slidein {
  animation: slideIn1 2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  animation-delay: 0.3s;
}
@keyframes slideIn1 {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* お問い合わせボタン */

/* flex box 設定 */
.flex_container{
  display: flex;
  justify-content: center;
  align-items: center;
}
/* flex box 設定 */

#header .flex_container .flex-item:nth-of-type(2){
width:60%;
}


.search_container{
  box-sizing: border-box;
  position: relative;
  border: 2px solid #F29600;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  background:#fff;
}
.search_container input[type="text"]{
  border: none;
  width:100%;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  border: none;
  background: #F29600;
  color: #fff;
  position: absolute;
  width: 3.5em;
  height: 3.0em;
  right:0px;
  top: -3px;
  outline : none;
}

.bx-wrapper .bx-pager{
    display:none;
}

#wrapper{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
}
.header-wrap{
	background-image:url("https://file001.shop-pro.jp/PA01508/940/image/osu_bg.png");
	background-repeat:repeat-x;
	background-size:20%;
	background-color:#fff;
	position:fixed;
	top:0;
	right:0;
	box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
	z-index:1;
}
#header{
	top:0;
    max-width: 1000px;
  	/*margin-top:-20px;*/
  	padding-top:10px;
}
address{
    margin-bottom:0;
}
h3{
color:#F29600;
}
h2{
    font-weight: bold !important;
    color: #F29600;
    border-bottom: 3px solid #F29601 !important;
    padding-left: 10px;
    margin-bottom: 20px;
    font-size: 28px;
}
h2::before{
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(https://file001.shop-pro.jp/PA01508/940/image/capsule_icon.png);
    background-size: contain;
    vertical-align: text-top;
    margin-top: 2px;
    margin-right: 7px;
}
/*h2 span{
color:#F29600;
margin-left: .5em;
font-size: .6em;
line-height: .6em;
}*/
.head_service{
    text-align:right;
}
.head_service i{
    line-height: 50px;
}
.head_service li{
    font-weight: bold;
    color: #f00;
    font-size: 1.3em;
}
.head_service li span{
    font-size: .8em;
}
/*.head_service li:after{
    content: "※一部地域、商品を除く";
    font-size: .7em;
    color: #555;
}*/
.bunner_list img{
    margin:0 auto;
}
.menubar{
clear:both;
font-size:0;
}
.menubar li{
font-size:14px;
padding:0!important;
width:200px;
}
.menubar a img:hover{
filter: brightness(110%);
}
.menubar li:nth-of-type(2) img:hover{
filter: brightness(100%);
}
.menubar a{
display:inline-block;
/*padding:15px 20px!important;*/
display: table-cell;
vertical-align:middle;
}
.menubar a,.menubar a:hover{
color:#fff;
text-decoration:none;
}

.menubar > li{
position: relative;
}
.menubar .sub-menu{
display: none;
top: 50px;
width:100%;
position: absolute;
}
.menubar .sub-menu2{
display: none;
position: absolute;
width:100%;
}
.sub-menu a{
border:none;
padding:10px;
background:#E89111;
}
.sub-menu a:hover{
background:#fff;
color:#E89111;
}

.sub-menu2 a{
border:none;
padding:10px;
background:#fff;
color:#E89111;
}
.sub-menu2 a:hover{
background:#E89111;
color:#fff;
}

.sub-menu li{
    display: table;
    width: 100%;
}

.sub-menu2 li{
    display: table;
    width: 100%;
    white-space: nowrap;
    height:;
}
.sub-menu a{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.sub-menu2 a{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.tel_link,.tel_link:hover{
 font-size:30px;
 font-weight:bold;
 color:#ec6c00;
 text-decoration:none;
}
.tel_link:hover{
 color:#f08933;
}
#header form{
margin-bottom:0;
}
.over_parent{
   margin: 0 calc(50% - 50vw);
   width: 100vw;
   padding: 0 calc(50vw - 50%);
}
#side{
padding:8px;
}
.side_box{
background:#fff;
padding:7px;
margin-bottom:20px;
}
.side_box dd{
width: 16em;
max-width: 100%;
margin:auto!important;
}

.bunner_list,.bunner_list img,.bunner_list li:last-child{
margin-bottom:0!important;
}
.bunner_list li{
margin-bottom:5px!important;
}
#side dd{
margin-left:0;
font-size:12px;
margin-left:1em;
}
#side dt{
text-align:center;
border-bottom:2px solid #f29600;
margin-bottom:10px;
}
#footer{
color:#fff;
}
#footer a,#footer a:hover{
color:#fff;
}

#contents{
margin-top: 2em;
padding-right: 25px;
}

.new-item-unit a:first-child,
.productlist-unit a:first-child,
.history-unit a:first-child{
    display: block;
    background: #f5f5f5;
    margin-bottom: 10px;
    aspect-ratio: 1 / 1;
}
.new-item-unit img,
.productlist-unit img,
.history-unit img{
height:100%;
}

.history-unit a{
overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
}

.anchor{
    padding-top: 50px;
    margin-top: -50px;
}

.price{
  font-weight:bold;
}
.price span{
  font-weight:normal;
  font-size:.8em;
}

.soryomuryo{
    border: 2px solid #F29600;
    border-radius: 5px;
    background:#ffffffB3;
}

.soryomuryo b{
    color: #F29600;
}

/*レスポンシブ*/

@media (max-width: 1041px) {

.hidden_sp{
display:none;
}

#js-hamburger{
display:block;
position:fixed;
}

#wrapper{
background-image: url(https://file001.shop-pro.jp/PA01508/940/image/osu_bg.png);
background-repeat: repeat-x;
background-size: 25%;
margin-top:15px;
padding-top: 30px!important;
}

.over_parent{
margin: auto;
width: auto;
padding: 0;
}

.header-wrap{
position:relative;
box-shadow:none;
background:none;
margin-bottom:30px;
}

}

@media (max-width: 768px) {

.flex_container{
    display: block;
}
.flex_container .search_container{
    margin-top:10px;
}
.flex-item{
    margin:auto;
    text-align:center;
    width:100%!important;
}
.head_service{
text-align:center;
}
.flex-item a{
    display: inline-block;
}
#contents{
padding-right:0!important;
}
#wrapper{
margin-top:0;
border-top-left-radius:0;
border-top-right-radius:0;
}

.side_box dd{
font-size: 14px!important;
line-height: 1.5em;
}

}
/*レスポンシブ*/

/* CSS追加分 */

body {
  background-color: #F29600;
  background-image: url();
  color: #464e54;
}
a {
  color: #F29600;
}
a:hover {
  color: #FFCC33;
}

/*
 * layout
 */
#wrapper {
  max-width: 1000px;
}

/*
 * contents
 */

#contents {
  float: right;
  padding-left: 30px;
}

#contents .topicpath-nav {
  margin-bottom: 5px;
}
  #contents .topicpath-nav li {
    padding: 0;
  }
  #contents .topicpath-nav a {
    margin-left: 5px;
  }

/*
 * side
 */

#side .unstyled img {
  display: block;
  margin-bottom: 5px;
}

/*
 * temp
 */

/* font */
.txt_l { text-align: left; }
.txt_c { text-align: center; }
.txt_r { text-align: right; }
.txt_fwn { font-weight: normal; }
.txt_fwb { font-weight: bold; }
.txt_10 { font-size: 10px; }
.txt_12 { font-size: 12px; }
.txt_14 { font-size: 14px; }
.txt_16 { font-size: 16px; }
.txt_18 { font-size: 18px; }
.txt_20 { font-size: 20px; }
.txt_24 { font-size: 24px; }
.txt_28 { font-size: 28px; }
.txt_c_333 {color: #333;}

/* background */
.bgc_gray {
  background-color: #f1f1f1;
}

/* margin */
.mar_auto { margin: 0 auto; }
.mar_0 { margin: 0; }
.mar_t_0 { margin-top: 0; }
.mar_r_0 { margin-right: 0; }
.mar_b_0 { margin-bottom: 0; }
.mar_l_0 { margin-left: 0; }
.mar_5 { margin: 5px; }
.mar_t_5 { margin-top: 5px; }
.mar_r_5 { margin-right: 5px; }
.mar_b_5 { margin-bottom: 5px; }
.mar_l_5 { margin-left: 5px; }
.mar_t_10 { margin-top: 10px; }
.mar_r_10 { margin-right: 10px; }
.mar_b_10 { margin-bottom: 10px; }
.mar_l_10 { margin-left: 10px; }
.mar_t_20 { margin-top: 20px; }
.mar_r_20 { margin-right: 20px; }
.mar_b_20 { margin-bottom: 20px; }
.mar_l_20 { margin-left: 20px; }
.mar_t_30 { margin-top: 30px; }
.mar_r_30 { margin-right: 30px; }
.mar_b_30 { margin-bottom: 30px; }
.mar_l_30 { margin-left: 30px; }
.mar_t_50 { margin-top: 50px; }
.mar_r_50 { margin-right: 50px; }
.mar_b_50 { margin-bottom: 50px; }
.mar_l_50 { margin-left: 50px; }

/* padding */
.pad_v_10 { padding: 10px 0; }
.pad_v_20 { padding: 20px 0; }
.pad_v_30 { padding: 30px 0; }
.pad_0 { padding: 0; }
.pad_t_0 { padding-top: 0; }
.pad_r_0 { padding-right: 0; }
.pad_b_0 { padding-bottom: 0; }
.pad_l_0 { padding-left: 0; }
.pad_5 { padding: 5px; }
.pad_t_5 { padding-top: 5px; }
.pad_r_5 { padding-right: 5px; }
.pad_b_5 { padding-bottom: 5px; }
.pad_l_5 { padding-left: 5px; }
.pad_10 { padding: 10px; }
.pad_t_10 { padding-top: 10px; }
.pad_r_10 { padding-right: 10px; }
.pad_b_10 { padding-bottom: 10px; }
.pad_l_10 { padding-left: 10px; }
.pad_20 { padding: 20px; }
.pad_t_20 { padding-top: 20px; }
.pad_r_20 { padding-right: 20px; }
.pad_b_20 { padding-bottom: 20px; }
.pad_l_20 { padding-left: 20px; }
.pad_30 { padding: 30px}
.pad_t_30 { padding-top: 30px; }
.pad_r_30 { padding-right: 30px; }
.pad_b_30 { padding-bottom: 30px; }
.pad_l_30 { padding-left: 30px; }

/* border */
.bor_t_1 { border-top: 1px solid #eee; }
.bor_r_1 { border-right: 1px solid #eee; }
.bor_b_1 { border-bottom: 1px solid #eee; }
.bor_l_1 { border-left: 1px solid #eee; }

/* vertical align */
.va-10 { vertical-align: -10%; }
.va-20 { vertical-align: -20%; }
.va-30 { vertical-align: -30%; }
.va-35 { vertical-align: -35%; }
.va-40 { vertical-align: -40%; }

@media (max-width: 980px) {
  /* ~980px */
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  /* ~768px */
  #contents {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  /* ~480px */
}

/*
 * icons
 */
.icon-user { background-position: -208px 0px; }
.icon-lg-b.icon-user { background-position: -312px 0px; }
.icon-adduser { background-position: -240px 0px; }
.icon-lg-b.icon-adduser { background-position: -360px 0px; }
.icon-login { background-position: -48px -80px; }
.icon-lg-b.icon-login { background-position: -72px -120px; }
.icon-logout { background-position: -32px -80px; }
.icon-lg-b.icon-logout { background-position: -48px -120px; }
.icon-home { background-position: -176px -16px; }
.icon-lg-b.icon-home { background-position: -264px -24px; }
.icon-mail { background-position: -64px 0px; }
.icon-lg-b.icon-mail { background-position: -96px 0px; }
.icon-pencil { background-position: -96px 0px; }
.icon-lg-b.icon-pencil { background-position: -144px 0px; }
.icon-help { background-position: -272px -80px; }
.icon-lg-b.icon-help { background-position: -408px -120px; }
.icon-cart { background-position: -176px -64px; }
.icon-lg-b.icon-cart { background-position: -264px -96px; }
.icon-lg-w.icon-cart { background-position: -264px -96px; }
.icon-search { background-position: -208px -16px; }
.icon-lg-b.icon-search { background-position: -312px -24px; }
.icon-lg-w.icon-search { background-position: -312px -24px; }
.icon-chevron_up { background-position: -0px -144px; }
.icon-lg-b.icon-chevron_up { background-position: -0px -216px; }
.icon-chevron_down { background-position: -352px -128px; }
.icon-lg-b.icon-chevron_down { background-position: -528px -192px; }
.icon-twitter { background-position: -96px -176px; }
.icon-lg-b.icon-twitter { background-position: -144px -264px; }
.icon-instagram { background-position: -112px -192px; }
.icon-lg-b.icon-instagram { background-position: -168px -288px; }
.icon-facebook { background-position: -128px -176px; }
.icon-lg-b.icon-facebook {background-position: -192px -264px; }
.icon-youtube { background-position: -128px -160px; }
.icon-lg-b.icon-youtube { background-position: -191px -240px; }
.icon-lg-b.icon-check { background-position: -96px -120px; }

.icon-b,
.icon-w {
  width: 16px;
  height: 16px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.icon-lg-b,
.icon-lg-w {
  width: 24px;
  height: 24px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_b.png); }
.icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_w.png); }
.icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
.icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icon-b,
  .icon-w {
    -webkit-background-size: 368px 320px;
    background-size: 368px 320px;
  }

  .icon-lg-b,
  .icon-lg-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_w.png); }
  .icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}
/*@media (max-width: 768px) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }
}*/
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 768px) and (min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min-resolution: 192dpi), only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}
