@charset "UTF-8";
/*
-----------------------------------------------
-siteName- Template Base Style
----------------------------------------------- */
/*====================================

----------------------------------
  Color
----------------------------------
メイン    : #000
アクセント : 

----------------------------------
  Structure
----------------------------------
0. タグ設定
1. ヘッダー
  1.1	ナビゲーション
     1.1.1	スマホ用固定ボタン
  1.2 見出し
2. コンテンツ
3. フッター
4. ビズアシスト用基礎コード
5. 
6. 
====================================*/
/*----------------------------------
	0. タグ設定
------------------------------------*/
/* ------ ベース ------- */
html {
  font-size: 62.5%; }

body {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7em;
  color: #2d2c28;
  font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative; }

/* ------ clearfix ------- */
.cf:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0; }

.cf {
  display: inline-block; }

.cf {
  display: block; }

/* ------ link ------- */
a {
  color: #03C;
  text-decoration: none; }

a:hover {
  color: #06F;
  text-decoration: none; }

a.textlinkUl {
  text-decoration: underline; }

a img {
  border: none;
  border: 0; }

a:hover img.link {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6; }

/* ------ img ------- */
@media screen and (max-width: 1000px) {
  img {
    max-width: 100%;
    height: auto;
    width: auto; } }
/*----------------------------------
	1. ヘッダー
------------------------------------*/
#wrapper {
    position: relative;
    overflow: hidden;
}

header {
    width: 100%;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 100;
}

header .template-shop02 {
    z-index: -1 !important;
}

@media screen and (max-width: 840px) {
    header#pagetop {
        display: none;
    }
}

.header_wrapper {
    max-width: 1500px;
    margin: 30px auto 0;
    width: 94%;
}

.header__heading {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header__heading .logo {
    width: 260px;
    text-align: center;
}

.header__heading .logo span {
    font-size: 2rem;
}

.header__heading .logo a {
    color: #5F5E5E;
}

/*.header__heading .nav {*/
/*  flex: 1;*/
/*  position: relative; }*/
.header__heading .nav ul {
    display: flex;
    /*position: absolute;*/
    /*right: 0;*/
    /*top: 20px; */

}

.header__heading .nav ul li {
    font-size: clamp(16px, 3vw, 20px);
}

.header__heading .nav ul li:not(:last-child) {
    padding-right: 1em;
}

.header__heading .nav ul li a {
    color: #5F5E5E;
}

/* ------ ロゴ ------- */
/*----------------------------------
	1.1. ナビゲーション
------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: rgba(243, 229, 212, 0.99);
  /*動き*/
  transition: all 0.3s; }

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999; }

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

#g-nav.panelactive ul {
  display: block; }

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  font-size: 2.2rem; }

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold; }

@media screen and (max-width: 840px) {
  #g-nav ul {
    width: 90%; }
    #g-nav ul li {
      font-size: 2.0rem;
      text-align: left; } }
/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 99999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}


/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #5F5E5E;
    width: 100%;
}

.openbtn span:nth-of-type(1) {
    top: 5px;
}

.openbtn span:nth-of-type(2) {
    top: 20px;
}

.openbtn span:nth-of-type(3) {
    top: 36px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}

/*========= レイアウトのためのCSS ===============*/
header#sp {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 15px 0;
}

header#sp .logo {
    /*width: 140px;*/
    width: 160px;
    margin: 0 auto;
}

header#sp .logo img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/*@media screen and (min-width: 840.1px) {*/
@media screen and (min-width: 920.1px) {
    header#sp {
        display: none;
    }
}

main{
    padding-top:136px;
}

@media screen and (max-width: 840px) {
    main {
        padding-top: 53px;
    }
}

/*----------------------------------
	. TOPページ
------------------------------------*/
.top-concept {
  padding: 150px 0 280px;
  display: block;
  max-width: 2000px;
  width: 100%;
  margin: auto; }
  .top-concept .img {
    float: none !important;
    width: 100% !important; }
    .top-concept .img img {
      width: 100%;
      object-fit: cover; }
  .top-concept .txt {
    float: none !important;
    width: 100% !important; }
    .top-concept .txt .txt-box p {
      padding-bottom: 10em;
      max-width: 460px;
      font-size: clamp(14px, 3vw, 17px); }
    .top-concept .txt .txt-box .ttl {
      font-size: clamp(26px, 3vw, 35px);
      padding-bottom: 60px; }

@media screen and (min-width: 1000px) {
  .top-concept {
    display: flex; }
    .top-concept .txt .txt-box {
      padding: 8em 0 0 6em; } }
@media screen and (max-width: 1000px) {
  .top-concept {
    padding: 3.5em 0 7em; }
    .top-concept .txt .txt-box {
      max-width: 90%;
      margin: auto; }
      .top-concept .txt .txt-box p {
        margin: 30px auto 0;
        max-width: 100%;
        padding-bottom: 8em; }
      .top-concept .txt .txt-box .ttl {
        padding-bottom: 10px; }
    .top-concept .img img {
      height: 360px;
      width: 90%;
      margin: 0 auto 3em; }

  .txt-box .arrowbutton {
    display: block; } }
@media screen and (max-width: 480px) {
  .top-concept .img img {
    height: 300px; } }

.top-concept.top-concept-p0 {
  padding: 0 0 5em;
}
.arrowbutton {
  display: inline-block;
  max-width: 500px;
  padding: 10px 30px 10px 20px;
  text-align: center;
  color: #5F5E5E;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  text-align: left;
  width: 100%; }
  .arrowbutton:hover {
    color: #5F5E5E; }
  .arrowbutton span {
    display: block;
    position: absolute;
    top: -34px;
    font-size: 22px;
    font-weight: bold;
    left: 0; }
  .arrowbutton:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    margin: auto;
    width: 450px;
    height: 2px;
    background: #5F5E5E;
    transition: .3s; }
  .arrowbutton:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 400px;
    margin: auto;
    width: 40px;
    height: 40px;
    border-left: 2px solid #5F5E5E;
    border-bottom: 2px solid #5F5E5E;
    transform: rotate(-135deg);
    transition: .3s; }
  .arrowbutton:hover::before {
    left: 0px;
    width: 500px; }
  .arrowbutton:hover::after {
    left: 451px; }

@media screen and (max-width: 500px) {
  .arrowbutton span {
    display: block;
    position: absolute;
    top: -34px;
    font-size: 22px;
    font-weight: bold;
    left: 0; }
  .arrowbutton:before {
    width: 280px; }
  .arrowbutton:after {
    left: 233px; }
  .arrowbutton:hover::before {
    width: 320px; }
  .arrowbutton:hover::after {
    left: 273px; } }
/*----------------------------------
	. 商品リスト
------------------------------------*/
.sec-recommend {
  position: relative;
  padding-bottom: 170px !important;
  margin-bottom: 20px; }
  .sec-recommend::before {
    content: "";
    display: block;
    width: 49.8%;
    height: 460px;
    background: #FFF4CE;
    position: absolute;
    right: 0px;
    top: 50px;
    margin: auto;
    z-index: -1; }
  .sec-recommend::after {
    content: "";
    display: block;
    width: 49.8%;
    height: 695px;
    background: #F3E5D4;
    position: absolute;
    left: 0px;
    bottom: 0;
    margin: auto;
    z-index: -1; }

.item-list .pageListItemBlock {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .item-list .pageListItemBlock:after {
    content: "";
    display: block;
    width: 32%;
    height: 0; }
  .item-list .pageListItemBlock .pageListItemBlock-type03 {
    width: 32% !important;
    height: auto !important;
    margin: 0 0 3em 0 !important;
    float: none; }
    .item-list .pageListItemBlock .pageListItemBlock-type03 .pageListThumbNail a {
      line-height: 0; }
    .item-list .pageListItemBlock .pageListItemBlock-type03 .pageListThumbNail img {
      width: 100%; }
    .item-list .pageListItemBlock .pageListItemBlock-type03 .pageListTextBlock .pageListTitle {
      font-size: clamp(14px, 3vw, 17px);
      margin-bottom: 20px; }
      .item-list .pageListItemBlock .pageListItemBlock-type03 .pageListTextBlock .pageListTitle a {
        color: #5F5E5E; }
        .item-list .pageListItemBlock .pageListItemBlock-type03 .pageListTextBlock .pageListTitle a:hover {
          opacity: 0.7; }
    .item-list .pageListItemBlock .pageListItemBlock-type03 .goodsDetailBasicInfoName .goodsPrice {
      font-size: clamp(12px, 3vw, 14px);
      text-align: right;
      margin-bottom: 0px; }

@media screen and (max-width: 1280px) {
  .sec-recommend::before {
    height: 230px; }
  .sec-recommend::after {
    height: 347px; } }
@media screen and (max-width: 768px) {
  .item-list .pageListItemBlock:after {
    width: 48%; }
  .item-list .pageListItemBlock .pageListItemBlock-type03 {
    width: 48% !important; } }
@media screen and (max-width: 480px) {
  .sec-recommend::before {
    height: 115px; } }
/*----------------------------------
	1.2. 見出し
------------------------------------*/
p {
  margin: 0 0 1em;
  line-height: 1.7em;
  color: #333333;
  font-size: 1.6rem; }

/* ページタイトル見出し */
.title-style01 {
  font-size: 3.3rem;
  font-weight: normal;
  color: #00a7b0;
  text-align: center;
  margin: 0 0 1em;
  line-height: 1.0em; }

.title-style01 .sub-title {
  font-size: 1.6rem;
  color: #231815; }

/* 中見出し */
.title-style02 {
  font-size: clamp(30px, 3vw, 50px);
  font-family: kozuka-mincho-pro, serif;
  font-weight: 900;
  font-style: normal;
  color: #5F5E5E;
  margin: 0 0 1em;
  line-height: 1em; }

.title-style03 {
  font-size: 3.0rem;
  color: #00a7b0;
  text-align: center;
  margin: 0 0 1em;
  line-height: 1.3em;
  padding-bottom: 20px;
  background: url(../../images/title-border01.png) no-repeat bottom center; }

.title-style04 {
  background-color: #009fe8;
  color: #fff;
  text-align: center;
  font-size: 3.7rem;
  line-height: 1.1em; }

.title-style04 > .in {
  max-width: 1000px;
  margin: 0px auto;
  padding: 40px 0;
  display: block; }

.title-style04 > .in > span {
  font-size: 2.5rem; }

.title-style05 {
  text-align: center;
  color: #009fe8;
  font-size: 3.7rem;
  margin-bottom: 40px; }

.title-style09 {
  color: #a86e0c;
  background: url(../../images/about-bt-common__bg-titile.png) no-repeat center center;
  background-size: 130px 130px;
  padding: 50px 0;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.3em;
  font-weight: bold; }

.title-style10 {
  color: #139ea6;
  font-size: 3.0rem;
  text-align: center;
  line-height: 1.3em;
  padding-bottom: 20px;
  background: url(../../images/title-wave.png) no-repeat bottom center;
  background-size: 600px auto;
  margin-bottom: 1em;
  font-weight: bold; }

.title-style10 .small {
  font-size: 2.0rem; }

.title-style11 {
  color: #b2833e;
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
  border-bottom: dotted 2px #a86e0c;
  padding-bottom: 10px;
  margin: 1em 0; }

.title-style11--p {
  padding-bottom: 20px;
  margin: 0 0 1em; }

@media screen and (max-width: 600px) {
  .title-style10 {
    background-size: contain; } }
@media screen and (max-width: 480px) {
  p {
    font-size: 1.4rem; }

  .title-style01 {
    font-size: 2.4rem; }

  .title-style01 .sub-title {
    font-size: 1.4rem; }

  .title-style02 {
    font-size: 2.0rem; }

  .title-style02 .sub-title {
    font-size: 1.2rem; }

  .title-style03 {
    font-size: 2.0rem; }

  .title-style09 {
    font-size: 2.6rem;
    background-size: 100px 100px; }

  .title-style10 {
    font-size: 2.0rem; } }
/*----------------------------------
	2. コンテンツ
------------------------------------*/
.conts__cell {
  padding: 60px 0; }

.conts__cell_0-60 {
  padding: 0 0 60px; }

.conts__cell_0-30 {
  padding: 0 0 30px; }

.conts__cell_shiftup {
  padding: 20px 0 100px; }

.conts__cell-1000 {
  padding: 60px 0 60px;
  max-width: 1000px;
  margin: 0 auto; }

@media screen and (max-width: 768px) {
  .conts__cell {
    padding: 45px 0; }

  .conts__cell_0-60 {
    padding: 0 0 45px; }

  .conts__cell_0-30 {
    padding: 0 0 15px; }

  .conts__cell_shiftup {
    padding: 20px 0 80px; }

  .conts__cell-1000 {
    padding: 45px 0; } }
@media screen and (max-width: 480px) {
  .conts__cell {
    padding: 30px 0; }

  .conts__cell_0-60 {
    padding: 0 0 30px; }

  .conts__cell_0-30 {
    padding: 0 0 5px; }

  .conts__cell_shiftup {
    padding: 20px 0 60px; }

  .conts__cell-1000 {
    padding: 30px 0; } }
.conts__inner {
  max-width: 1200px;
  margin: 0 auto; }
.conts__inner-800 {
  max-width: 800px;
  margin: 0 auto; }
.conts__inner-bg01 {
    background: #b6b7b7;
    padding:1em;
    margin: 20px 0;
    box-sizing: border-box;
}
.conts__inner-bg01 p{
    color: #ffffff;
}

#main > .conts__cell:first-child {
  padding: 0px 0 60px; }

@media screen and (max-width: 1000px) {
  #main > .conts__cell.page-about-bt__top {
    padding: 0px 0 30px; } }
@media screen and (max-width: 1200px) {
  .conts__inner {
    width: 96%;
    margin: 0 auto; } 
    .conts__inner-800 {
  max-width: 96%;
  margin: 0 auto; }

}
.conts__cell + hr {
  display: none; }

/*----------------------------------
	3. フッター
------------------------------------*/
footer {
  border-top: 3px solid #000;
  position: relative;
  z-index: 0; }
  footer:before {
    border-top: 12px solid #F3E5D4;
    content: '';
    display: block;
    position: absolute;
    top: -15px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1; }

.footer {
  max-width: 1480px;
  margin: 0 auto;
  padding: 60px 0 0px;
  width: 94%; }
  .footer .footer__wrap {
    display: flex;
    flex-direction: row;
    margin-bottom: 10em; }
    .footer .footer__wrap .company-info {
      width: 40%; }
      .footer .footer__wrap .company-info .logo {
        margin-bottom: 50px; }
      .footer .footer__wrap .company-info .name {
        margin-bottom: 46px; }
      .footer .footer__wrap .company-info .name, .footer .footer__wrap .company-info address {
        font-size: clamp(16px, 3vw, 20px); }
      .footer .footer__wrap .company-info address {
        line-height: 1.8; }
    .footer .footer__wrap .footer__nav-wrap {
      flex: 1; }
      .footer .footer__wrap .footer__nav-wrap .footer__nav {
        display: flex; }
        .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-01, .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-02, .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-03 {
          width: calc(100% / 3); }

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.2rem;
  width: 100%;
  margin-bottom: 0px; }

@media screen and (max-width: 1024px) {
  .footer .footer__wrap {
    display: block; }
    .footer .footer__wrap .company-info {
      width: 100%;
      margin-bottom: 60px; }
      .footer .footer__wrap .company-info .logo a img {
        width: 200px; }

  .footer__nav-title, .footer__nav .footer__nav-03 li {
    font-weight: bold; } }
.footer__nav-title, .footer__nav .footer__nav-03 li {
  margin-bottom: 20px;
  font-size: clamp(15px, 3vw, 17px); }

@media screen and (max-width: 768px) {
  .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-01,
  .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-02 {
    width: calc(100% / 2); }

  .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-03 {
    margin-top: 30px;
    width: calc(100% / 1); } }
@media screen and (max-width: 480px) {
  .footer .footer__wrap .company-info .logo {
    margin-bottom: 10px; } }
@media screen and (max-width: 380px) {
  .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-01,
  .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-02 {
    width: calc(100% / 1); }

  .footer .footer__wrap .footer__nav-wrap .footer__nav .footer__nav-01 {
    margin-bottom: 40px; } }
.footer__nav-title + ul {
  padding-left: 20px; }
  .footer__nav-title + ul li {
    font-size: clamp(15px, 3vw, 17px); }
    .footer__nav-title + ul li a {
      color: #5F5E5E; }
      .footer__nav-title + ul li a:hover {
        opacity: 0.7; }
    .footer__nav-title + ul li:not(:last-child) {
      margin-bottom: 20px; }

.footer__nav .footer__nav-03 li a {
  color: #5F5E5E; }
  .footer__nav .footer__nav-03 li a:hover {
    opacity: 0.7; }
.footer__nav .footer__nav-03 li:not(:last-child) {
  margin-bottom: 20px; }

.footer__inner {
  text-align: center; }

@media screen and (max-width: 768px) {
  .footer .footer__wrap {
    margin-bottom: 4em; } }
.footer__inner .copyright small {
  font-size: clamp(11px, 3vw, 14px); }
.footer__inner .copyright a {
  color: #5F5E5E; }

/*----------------------------------
	4. ビズアシスト用基礎コード
------------------------------------*/
/* subcontents
----------------------------------------------- */
/* article
----------------------------------------------- */
main > article {
  position: relative;
  text-align: left;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0; }

main > article #contentTitle {
  background-image: url(../../images/bg__top-title.png);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  font-size: 3rem;
  padding: 80px 0 5px;
  margin-bottom: 15px; }

main > article #contentSubTitle {
  margin-top: 10px;
  font-size: 22px; }

.blogbody {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto 20px; }

.blogbody #main {
  width: 70%;
  max-width: 800px;
  float: left; }

.blogbody #blogsidebar {
  width: 25%;
  max-width: 300px;
  float: right; }

@media screen and (max-width: 768px) {
  .blogbody #main,
  .blogbody #blogsidebar {
    width: 96%;
    max-width: 800px;
    float: none;
    margin: 0 auto 20px; } }
/* sidebar
----------------------------------------------- */
#sidebar {
  float: left;
  width: 200px;
  background-color: #B6D9F2; }

#sidebar nav h1 {
  background-color: #0070BF;
  padding: 5px 12px;
  color: #ffffff;
  font-size: 15px;
  margin: 0; }

#sidebar nav ul {
  margin: 0 2px 15px; }

#sidebar nav ul li {
  list-style: none;
  margin: 0; }

#sidebar nav ul li:last-child {
  border: none; }

#sidebar nav ul li ul {
  margin: 0; }

#sidebar nav ul li a, #sidebar nav ul li span {
  display: block;
  color: #666666;
  padding: 6px 6px 6px 2%;
  font-size: 14px;
  text-decoration: none;
  background: #f8f8f8;
  margin-bottom: 1px; }

#sidebar nav ul li a:hover {
  background-color: #CCEAFF;
  color: #0070BF; }

#sidebar nav ul li ul li a, #sidebar nav ul li ul li span {
  padding-left: 8%; }

#sidebar nav ul li ul li ul li a, #sidebar nav ul li ul li ul li span {
  padding-left: 14%; }

#sidebar nav ul li ul li ul li ul li a, #sidebar nav ul li ul li ul li ul li span {
  padding-left: 20%; }

#sidebar2 {
  width: 200px;
  background-color: #B6D9F2; }

#sidebar2 nav h1 {
  background-color: #0070BF;
  padding: 5px 12px;
  color: #ffffff;
  font-size: 15px;
  margin: 0; }

#sidebar2 nav ul {
  margin: 0 2px 15px; }

#sidebar2 nav ul li {
  list-style: none;
  margin: 0; }

#sidebar2 nav ul li:last-child {
  border: none; }

#sidebar2 nav ul li ul {
  margin: 0; }

#sidebar2 nav ul li a, #sidebar2 nav ul li span {
  display: block;
  color: #666666;
  padding: 6px 6px 6px 2%;
  font-size: 14px;
  text-decoration: none;
  background: #f8f8f8;
  margin-bottom: 1px; }

#sidebar2 nav ul li a:hover {
  background-color: #CCEAFF;
  color: #0070BF; }

#sidebar2 nav ul li ul li a, #sidebar2 nav ul li ul li span {
  padding-left: 8%; }

#sidebar2 nav ul li ul li ul li a, #sidebar2 nav ul li ul li ul li span {
  padding-left: 14%; }

#sidebar2 nav ul li ul li ul li ul li a, #sidebar2 nav ul li ul li ul li ul li span {
  padding-left: 20%; }

/* list
----------------------------------------------- */
ul {
  margin: 0; }

ul li {
  margin: 0;
  line-height: 1.3em;
  color: #333333;
  list-style: none; }

ol {
  margin: 0 0 1em 30px; }

ol li {
  margin: 0 0 0.3em;
  line-height: 1.3em;
  color: #333333;
  font-size: 0.9375em; }

/* commonTable
----------------------------------------------- */
table {
  width: 100%;
  margin: 0 0 20px;
  border-collapse: collapse;
  line-height: 1.3em;
  font-size: 1.6rem;
  color: #333333; }

table tr {
  background: #ffffff; }

table tr.odd {
  background: #eeeeee; }

table th {
  padding: 6px;
  border: 1px solid #cccccc;
  font-weight: bold; }

table thead td {
  padding: 6px;
  border: 1px solid #cccccc;
  text-align: center;
  font-weight: bold; }

table td {
  vertical-align: top;
  padding: 6px;
  border: 1px solid #cccccc; }

table.tbl_02 td,
table.tbl_02 th {
  vertical-align: middle; }

/* googleMap
----------------------------------------------- */
#googlemap {
  width: 100%;
  height: 400px;
  margin: 0 0 10px; }

#mapBalloon {
  padding: 5px 0; }

#mapName {
  margin-bottom: 5px;
  font-weight: bold;
  color: #5B7900; }

/* TopicPath トピックパススタイル
----------------------------------------------- */
#topicPath {
  position: absolute;
  overflow: hidden;
  top: 0;
  margin: 0;
  line-height: 1.2em;
  font-size: 12px !important;
  display: none; }

#topicPath ul {
  margin: 0; }

#topicPath ul li {
  display: inline-block;
  float: left;
  list-style: none; }

#topicPath ul li:first-child:before {
  content: none; }

#topicPath ul li:before {
  content: '>';
  margin: 0 5px 0 0; }

#topicPath ul li > a, #topicPath ul li > span {
  margin-right: 5px;
  color: #333333;
  text-decoration: none; }

#topicPath ul li a:hover {
  text-decoration: underline; }

/* pageTopButton
----------------------------------------------- */
#pageTopButton {
  position: fixed;
  bottom: 24px;
  right: 20px;
  font-size: 12px;
  z-index: 10000; }

#pageTopButton a {
  text-decoration: none;
  color: #fff;
  width: 50px;
  text-indent: -9999px;
  padding: 0;
  height: 50px;
  text-align: center;
  display: block;
  border-radius: 5px;
  background: url(../../images/page_top.png) no-repeat;
  background-size: contain; }

#pageTopButton a:hover {
  text-decoration: none;
  opacity: 0.8; }

@media screen and (max-width: 768px) {
  #pageTopButton {
    bottom: 10px;
    right: 10px; }

  #pageTopButton a {
    width: 50px;
    padding: 0;
    height: 50px; } }
/* Form Fieldset【変更注意】フォームスタイル
----------------------------------------------- */
form.mailForm {
  margin: 0 0 30px;
  padding: 10px 10px 20px;
  border: 1px solid #cccccc;
  background: #ffffff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

fieldset.formBlock {
  border-bottom: 1px dotted #aaaaaa;
  margin: 0;
  padding: 10px 5px 5px;
  line-height: 1.3em;
  font-size: 0.875em;
  color: #333333; }

fieldset legend.title {
  display: block;
  float: left;
  width: 30%;
  padding: 10px 0;
  color: #333333; }

fieldset.titleDisplayNone legend.title {
  display: none; }

fieldset.titleDisplayNone .content {
  width: 100%; }

fieldset.titleDisplayNone .goodsOrderSelectBox li label .goodsTitle {
  width: 550px; }

fieldset.titleDisplayNone .shoppingOrdererInformationBox .shoppingOrdererInformationBoxTitle {
  width: 200px; }

fieldset.titleDisplayNone .shoppingOrdererInformationBox .shoppingOrdererInformationBoxInnerInputGroup {
  margin-left: 210px; }

fieldset.titleDisplayNone .shoppingDeliverySelectBox .shoppingDeliveryBoxTitle {
  width: 200px; }

fieldset.titleDisplayNone .shoppingDeliveryTimeSelectBox .shoppingDeliveryTimeSelectBoxTitle {
  width: 200px; }

fieldset.titleDisplayNone .shoppingDeliveryBox .shoppingDeliveryBoxTitle {
  width: 200px; }

fieldset.titleDisplayNone .shoppingDeliveryBox .shoppingDeliveryBoxInnerInputGroup {
  margin-left: 210px; }

fieldset.titleDisplayNone .shoppingOrdererInformationBoxInner:first-child {
  border-top: none;
  padding-top: 0; }

fieldset.titleDisplayNone .shoppingOrdererInformationBoxInner {
  border-top: 1px dotted #CCCCCC;
  padding-top: 5px; }

@media screen and (max-width: 480px) {
  fieldset legend.title {
    float: none;
    width: 100%;
    padding: 20px 0 5px; } }
form.check fieldset div.content {
  display: inline-block;
  width: 70%;
  padding: 10px 0; }

form.check fieldset .content span {
  display: inline-block; }

form.check fieldset .content .contentTitle {
  width: 130px; }

form.check .comment {
  display: none; }

form.check .formMarkColor {
  display: none; }

form.check .orderNumber {
  padding: 3px 5px;
  background: #CCCCCC; }

form.check .contentInner {
  overflow: hidden; }

form.check .orderProcuctsList {
  margin-left: 0;
  list-style: none; }

form.check .orderProcuctsList li {
  border-left: 5px solid #cccccc;
  padding-left: 5px; }

form.check .orderProcuctsList li ul {
  overflow: hidden;
  margin: 0; }

form.check .orderProcuctsList li ul li {
  border-left: none;
  padding-left: 0; }

form.check .orderProcuctsList .goodsOptionTitle {
  display: none; }

form.check .orderProcuctsList .orderProcuctsListBox {
  overflow: hidden; }

form.check .orderProcuctsList .orderProcuctsListBox .goodsName {
  font-weight: bold; }

form.check fieldset .content span {
  float: left; }

form.check .feeDetailsBox {
  line-height: 1.5em; }

form.check .feeDetailsBox .feeDetailsBoxInner .feeDetailsName {
  width: 200px;
  border-bottom: 1px solid #cccccc;
  margin-right: 0; }

form.check .feeDetailsBox .feeDetailsBoxInner .feeDetailsPrice {
  width: 200px;
  border-bottom: 1px solid #cccccc;
  margin-right: 0;
  text-align: right; }

form.check .feeDetailsBox .feeDetailsBoxInnerSumTotal span {
  width: 200px;
  margin-right: 0;
  border-top: 1px solid #cccccc;
  font-weight: bold; }

form.check .feeDetailsBox .feeDetailsBoxInnerSumTotal .feeDetailsPrice {
  text-align: right; }

fieldset.titleDisplayNone .shoppingDeliveryBoxInner:first-child {
  border-top: none;
  padding-top: 0; }

fieldset.titleDisplayNone .shoppingDeliveryBoxInner:last-child {
  border-bottom: 1px dotted #CCCCCC;
  margin-bottom: 5px; }

fieldset.titleDisplayNone .shoppingDeliveryBoxInner {
  border-top: 1px dotted #CCCCCC;
  padding-top: 5px; }

fieldset.titleDisplayNone .shoppingDeliverySelectBox {
  border-bottom: 1px dotted #CCCCCC;
  margin-bottom: 5px; }

fieldset div.content {
  display: inline-block;
  width: 70%;
  padding: 4px 0; }

fieldset div.content select {
  margin: 6px 0; }

fieldset div.check .content {
  padding: 10px 0; }

fieldset div.content span {
  display: inline-block;
  margin: 0 5px 0 0;
  color: #333333; }

fieldset div.content span.radioValue {
  display: inline; }

fieldset div.content input[type=text], fieldset div.content textarea, fieldset div.content select {
  position: relative;
  margin: 0 0 5px;
  padding: 3px;
  border: 1px solid #aaaaaa;
  color: #333333;
  font-size: 0.9375em;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

fieldset input[type=text].formCaution, fieldset textarea.formCaution, fieldset select.formCaution {
  border: 1px solid #cc0000 !important;
  background: #ffd4d4 !important; }

fieldset div.content input[type=radio], fieldset div.content input[type=checkbox] {
  margin-right: 5px; }

fieldset div.content input[type=text] {
  width: 150px; }

fieldset div.content input[type=text].textareaShort {
  width: 250px; }

fieldset div.content input[type=text].tel01, fieldset div.content input[type=text].tel02, fieldset div.content input[type=text].tel03 {
  width: 4.5em; }

fieldset div.content input[type=text].zipecode01 {
  width: 3.5em; }

fieldset div.content input[type=text].zipecode02 {
  width: 4.5em; }

fieldset div.content select.selectAddress {
  width: auto; }

fieldset div.content input[type=text].address01, fieldset div.content input[type=text].address02 {
  width: 80%; }

fieldset div.content select.selectMonth, fieldset div.content select.selectDay {
  width: 4.5em; }

fieldset div.content label {
  display: inline-block; }

fieldset .formMarkColor {
  color: #cc0000; }

fieldset .radio {
  margin: 4px; }

fieldset .checkbox {
  margin: 4px; }

fieldset.comment {
  background: #eeeeee;
  line-height: 1.3em;
  text-align: center;
  padding: 10px 0 5px;
  font-weight: bold; }

fieldset.comment legend {
  display: block;
  width: 100%;
  padding: 15px 0 0;
  background: #eeeeee; }

fieldset.comment .content {
  display: none; }

fieldset .comment span {
  display: block;
  font-size: 90%;
  font-weight: normal; }

fieldset .shoppingOrdererInformationBox .shoppingOrdererInformationBoxTitle {
  width: 120px; }

fieldset .shoppingOrdererInformationBox .shoppingOrdererInformationBoxInnerInputGroup {
  margin-left: 130px;
  margin-top: -18px; }

fieldset .shoppingDeliverySelectBox .shoppingDeliveryBoxTitle {
  width: 120px; }

fieldset .shoppingDeliveryBox .shoppingDeliveryBoxTitle {
  width: 120px; }

fieldset .shoppingDeliveryTimeSelectBox .shoppingDeliveryTimeSelectBoxTitle {
  width: 120px; }

fieldset .shoppingDeliveryBox .shoppingDeliveryBoxInnerInputGroup {
  margin-left: 130px;
  margin-top: -18px; }

fieldset .shoppingPaymentMethodCreditBox .shoppingPaymentMethodCreditBoxTitle {
  width: 120px; }

fieldset .shoppingPaymentMethodCreditBox .shoppingPaymentMethodCreditBoxInner .cardNumber {
  width: 50%; }

fieldset .textarea {
  width: 80%;
  height: 200px;
  padding: 2px;
  border: 1px solid #aaaaaa; }

fieldset.formBlock .goodsOrderSelectBox {
  margin-left: 0; }

fieldset.formBlock .goodsOrderSelectBox li:first-child {
  border-top: none;
  padding-top: 0; }

fieldset.formBlock .goodsOrderSelectBox li {
  overflow: hidden;
  padding-top: 15px;
  border-top: 1px dotted #cccccc;
  list-style: none; }

fieldset.formBlock .goodsOrderSelectBox li .goodsItem {
  float: left;
  width: 49%; }

fieldset.formBlock .goodsOrderSelectBox li div label {
  overflow: hidden; }

fieldset.formBlock .goodsOrderSelectBox li .goodsOptionName {
  display: block;
  margin-bottom: 5px; }

fieldset.formBlock .goodsOrderSelectBox li .goodsOptionItem {
  float: right;
  width: 49%;
  margin: 0; }

fieldset.formBlock .goodsOrderSelectBox li div .goodsOrderSelectBoxOptionList {
  margin-left: 0; }

fieldset.formBlock .goodsOrderSelectBox li div .goodsOrderSelectBoxOptionList li select {
  width: 97%; }

fieldset.formBlock .goodsOrderSelectBox li li {
  list-style: none;
  border-top: none;
  padding-top: 0; }

fieldset.formBlock .goodsOrderSelectBox li label input.checkbox {
  float: left;
  margin: 70px 0 0 0; }

fieldset.formBlock .goodsOrderSelectBox li label .goodsThumbnail {
  display: block;
  float: left;
  height: 155px; }

fieldset.formBlock .goodsOrderSelectBox li label .goodsThumbnail img {
  width: auto;
  height: 100%; }

fieldset.formBlock .goodsOrderSelectBox li .goodsName {
  cursor: pointer;
  margin-bottom: 10px; }

fieldset.formBlock .goodsOrderSelectBox li label .goodsPrice {
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 10px; }

fieldset.formBlock .goodsOrderSelectBox li .goodsOptionTitle {
  display: block;
  margin-bottom: 5px;
  padding: 5px;
  background-color: #B6D9F2; }

fieldset.formBlock .goodsOrderSelectBox li .goodsGiftItem {
  clear: both;
  overflow: hidden;
  margin-top: 15px; }

fieldset.formBlock .goodsOrderSelectBox li .goodsGiftItem .goodsGiftTitle {
  display: block;
  margin-bottom: 5px;
  padding: 5px;
  background-color: #B6D9F2; }

fieldset.formBlock .goodsOrderSelectBox li .goodsGiftItem .goodsGiftItemList {
  float: left;
  width: 33%; }

fieldset.formBlock .goodsOrderSelectBox li .goodsGiftItem .goodsGiftItemList .goodsGiftThumbnail img {
  width: 100%;
  height: auto; }

fieldset.formBlock .goodsOrderSelectBox li label .goodsTitle {
  float: left; }

fieldset.formBlock .goodsOrderSelectBox li .goodsText input[type="text"] {
  width: 2.5em; }

.button {
  margin: 20px 0 0 0;
  text-align: center; }

.btnSend {
  position: relative;
  border: 1px solid #de8405;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

span.btnSend {
  display: inline-block; }

.btnSend input {
  position: relative;
  display: block;
  width: 150px;
  border: none;
  background: #FFAB09;
  color: #ffffff !important;
  padding: 5px;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 0.8125em;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background: linear-gradient(#fbb450, #f89406);
  background-image: -moz-linear-gradient(center top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbb450), to(#f89406));
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.btnSend input:hover {
  background: #f89406;
  text-decoration: none;
  color: #ffffff !important; }

.btnBack {
  position: relative;
  border: 1px solid #777777;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

span.btnBack {
  display: inline-block; }

.btnBack input {
  position: relative;
  display: block;
  width: 100px;
  border: none;
  color: #ffffff !important;
  padding: 5px;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 0.8125em;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #bbbbbb;
  background: linear-gradient(#cccccc, #999999);
  background-image: -moz-linear-gradient(center top, #cccccc, #999999);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#999999));
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.btnBack input:hover {
  background: #999999;
  text-decoration: none; }

/* Button【変更注意】ボタンスタイル
----------------------------------------------- */
.fileDownload {
  display: inline-block;
  border: 1px solid #7CA800;
  margin: 20px 0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background: linear-gradient(#ffffff, #AFC900);
  background-image: -moz-linear-gradient(top, #ffffff, #AFC900);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#AFC900));
  background: -ms-linear-gradient(top, #ffffff, #AFC900); }

.fileDownload:hover {
  background: linear-gradient(#619212, #375E13);
  background-image: -moz-linear-gradient(top, #619212, #375E13);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#619212), to(#375E13));
  background: -ms-linear-gradient(top, #619212, #375E13); }

.fileDownload a {
  display: block;
  padding: 5px 1em;
  text-align: center;
  color: #385F13;
  text-decoration: none;
  border: 1px solid #ffffff;
  font-size: 13px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

.fileDownload a:hover {
  color: #ffffff; }

/* FAQCommonStyle【変更注意】FAQスタイル
----------------------------------------------- */
.faqList {
  overflow: hidden;
  margin: 0 0 30px; }

.qMarkText {
  display: block;
  margin: 0px;
  padding: 15px 20px 15px;
  font-size: 110%;
  font-weight: normal;
  line-height: 1.5em;
  background-color: #F18B00; }

.aMarkText {
  padding: 15px 20px 15px;
  line-height: 1.5em;
  font-size: 90%;
  background-color: #FFFFFF;
  margin: 0px 0 20px;
  border-left: 120px solid #FCDAAE; }

@media screen and (max-width: 768px) {
  .aMarkText {
    border-left: 20px solid #FCDAAE; } }
/* sitemapStyle【変更注意】サイトマップスタイル
----------------------------------------------- */
.sitemapTitle {
  margin-bottom: 5px !important;
  font-weight: bold;
  font-size: 1em !important; }

.sitemapList {
  list-style: none;
  margin-left: 0; }

.sitemapList ul {
  list-style: none;
  margin: 0 0 0 20px; }

.sitemapList ul ul {
  list-style: none;
  margin: 0 0 0 20px; }

.sitemapList ul ul ul {
  list-style: none;
  margin: 0 0 0 20px; }

/* blockQuote【変更注意】ブロッククォートスタイル
----------------------------------------------- */
blockquote {
  padding: 20px 20px 20px 50px;
  background: url(../../../contents/templates/images/bg_blockQuote.png) no-repeat 10px 20px;
  background-size: 30px 30px;
  background-color: #CCEAFF;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px; }

/* decoration【変更注意】データタイプ適用スタイル
----------------------------------------------- */
.square {
  margin: 0 0 30px;
  padding: 20px 30px;
  background-color: #B6D9F2;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px; }

.square h1:first-child, .square h2:first-child, .square h3:first-child, .square h4:first-child, .square h5:first-child, .square h6:first-child {
  margin-top: 0; }

.square p:last-child, .square ul:last-child {
  margin-bottom: 0 !important; }

.squareLine {
  margin: 0 0 30px;
  padding: 20px 30px;
  border: 5px solid #B6D9F2;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px; }

.squareLine h1:first-child, .squareLine h2:first-child, .squareLine h3:first-child, .squareLine h4:first-child, .squareLine h5:first-child, .squareLine h6:first-child {
  margin-top: 0; }

.squareLine p:last-child, .squareLine ul:last-child {
  margin-bottom: 0 !important; }

.squareDotLine {
  margin: 0 0 30px;
  padding: 20px 30px;
  border: 5px dotted #B6D9F2;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px; }

.squareDotLine h1:first-child, .squareDotLine h2:first-child, .squareDotLine h3:first-child, .squareDotLine h4:first-child, .squareDotLine h5:first-child, .squareDotLine h6:first-child {
  margin-top: 0; }

.squareDotLine p:last-child, .squareDotLine ul:last-child {
  margin-bottom: 0 !important; }

.no-01 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/01.png) no-repeat top left; }

.no-02 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/02.png) no-repeat top left; }

.no-03 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/03.png) no-repeat top left; }

.no-04 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/04.png) no-repeat top left; }

.no-05 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/05.png) no-repeat top left; }

.no-06 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/06.png) no-repeat top left; }

.no-07 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/07.png) no-repeat top left; }

.no-08 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/08.png) no-repeat top left; }

.no-09 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/09.png) no-repeat top left; }

.no-10 {
  padding-left: 60px;
  background: url(../../../contents/templates/images/10.png) no-repeat top left; }

.rolloverOpacity:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75; }

/* マイページログイン スタイル
----------------------------------------------- */
#menbersLoginBlock {
  width: 350px;
  margin: 50px auto;
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

#menbersLoginBlock h1 {
  margin: 0 0 10px;
  padding: 10px;
  background: #F8F8F8;
  border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  text-align: center;
  color: #666666;
  border-bottom: 1px solid #AAAAAA;
  font-size: inherit; }

#menbersLoginBlock p {
  font-size: 0.75em;
  padding: 0 20px; }

#menbersLoginBlock span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8125em; }

#menbersLoginBlock #menbersLoginBlockInner {
  width: 80%;
  margin: 0 auto;
  padding: 0 20px; }

#menbersLoginBlock input[type=text], #menbersLoginBlock input[type=password] {
  position: relative;
  width: 97%;
  margin: 0 0 10px;
  padding: 3px;
  border: 1px solid #aaaaaa;
  color: #333333;
  font-size: 0.9375em;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

#menbersLoginBlock .menbersLoginButton {
  margin-top: 10px;
  text-align: center; }

#menbersLoginBlock .shoppingMembersLostSendButton, #menbersLoginBlock .shoppingMembersSettingButton {
  margin: 10px 0;
  text-align: center; }

#menbersLoginBlock .menbersLoginButton span, #menbersLoginBlock .shoppingMembersLostSendButton span, #menbersLoginBlock .shoppingMembersSettingButton span {
  display: inline-block;
  width: 150px;
  border: 1px solid #de8405;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

#menbersLoginBlock .menbersLoginButton span a, #menbersLoginBlock .shoppingMembersLostSendButton span a, #menbersLoginBlock .shoppingMembersSettingButton span a {
  display: block;
  border: none;
  background: #FFAB09;
  color: #ffffff !important;
  padding: 5px;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  baclground-color: #fbb450;
  background: linear-gradient(#fbb450, #f89406);
  background-image: -moz-linear-gradient(center top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbb450), to(#f89406));
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  cursor: pointer; }

#menbersLoginBlock .menbersLoginButton span a:hover, #menbersLoginBlock .shoppingMembersLostSendButton span a:hover, #menbersLoginBlock .shoppingMembersSettingButton span a:hover {
  baclground-color: #f89406;
  background: linear-gradient(#f89406, #f89406);
  background-image: -moz-linear-gradient(center top, #f89406, #f89406);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f89406), to(#f89406)); }

#menbersLoginBlock .menbersLoginPasswordForgot p {
  margin: 10px 0;
  padding: 0; }

#menbersLoginBlock .menbersAccountAdd p {
  margin: 10px 0;
  padding: 0; }

#shoppingMemberAddBlock, #shoppingMemberEditBlock, #shoppingMemberDeliveryBlock {
  border: 1px solid #AAAAAA;
  border-radius: 4px;
  margin: 20px auto 30px; }

#shoppingMemberDeliveryEditBox {
  border: 1px solid #AAAAAA;
  border-radius: 4px;
  margin-bottom: 30px; }

#shoppingMemberDeliveryBlock .shoppingMemberDeliveryListBox .buttonGreen {
  margin-bottom: 20px; }

#shoppingMemberAddBlock #shoppingMemberAddBlockInner, #shoppingMemberEditBlock .shoppingMemberUserInfoBox, #shoppingMemberDeliveryBlock .shoppingMemberDeliveryListBox, #shoppingMemberDeliveryEditBox #shoppingMemberDeliveryEditBoxInner, .shoppingDeliveryInfoBox .shoppingDeliveryInfoBoxInner, .shoppingGiftBox .shoppingGiftBoxInner, .shoppingConfirmationBox .shoppingConfirmationBoxInner {
  padding: 20px; }

.shoppingMemberUserInfoBox {
  position: relative; }

.shoppingMemberUserInfoBox .editButton {
  position: absolute;
  top: -35px;
  right: 0; }

input.userEmail {
  width: 90%; }

input.userZipCode1 {
  width: 3.5em; }

input.userZipCode2 {
  width: 4.5em; }

.userArea {
  display: block;
  margin-bottom: 5px; }

input.userAddress {
  width: 90%; }

input.userBuilding {
  width: 90%; }

input.userTel1, input.userTel2, input.userTel3 {
  width: 4.5em; }

.shoppingMemberDeliveryListBox {
  position: relative; }

.shoppingMemberDeliveryListBox .addAddressButton {
  position: absolute;
  top: -35px;
  right: 0; }

.shoppingMemberDeliveryListBox .shoppingItemAddForm {
  padding: 10px;
  background: #B6D9F2;
  margin-bottom: 30px; }

.shoppingMemberDeliveryListBox .shoppingItemAddForm h2 {
  margin-top: 0; }

.shoppingMemberDeliveryListBox .shoppingItemAddFormInner th {
  width: 30%; }

.shoppingMemberDeliveryListBox .shoppingItemAddFormInner tr.odd {
  background: #ffffff; }

.shoppingMemberDeliveryListBox #shippingAddressInformationListTable .shippingAddressInformationListName {
  width: 20%; }

.shoppingMemberDeliveryListBox #shippingAddressInformationListTable .shippingAddressInformationListZipCode {
  width: 100px; }

.shoppingMemberDeliveryListBox #shippingAddressInformationListTable .shippingAddressInformationListTel {
  width: 100px; }

.shoppingMemberDeliveryListBox #shippingAddressInformationListTable .shippingAddressInformationListButton {
  width: 10%; }

.shoppingMemberDeliveryListBox #shippingAddressInformationListTable .shoppingItemSetting {
  background: #B6D9F2; }

.shoppingMemberDeliveryListBox #shippingAddressInformationListTable .editButton {
  margin-bottom: 5px; }

#shoppingMemberOrderListTable .shoppingMemberOrderListDate {
  width: 150px; }

#shoppingMemberOrderListTable .shoppingMemberOrderListButton {
  width: 60px; }

#shoppingMemberEditBlock .shoppingMemberUserInfoBox table th {
  width: 150px; }

#shoppingMemberAddBlock h2, #shoppingMemberEditBlock h2, #shoppingMemberDeliveryBlock h2, .shoppingDeliveryInfoBox h2, .shoppingGiftBox h2, .shoppingConfirmationBox h2 {
  background: none repeat scroll 0 0 #F8F8F8;
  border-bottom: 1px solid #AAAAAA;
  border-radius: 4px 4px 0 0;
  color: #666666;
  font-size: inherit;
  margin: 0;
  padding: 10px;
  text-align: center; }

#shoppingMemberAddBlock .shoppingSubmitBtn {
  width: 100px; }

#shoppingMemberDeliveryBlock #shoppingMemberDeliveryListTable th {
  background: #F8F8F8;
  text-align: center; }

#shoppingMemberDeliveryBlock #shoppingMemberDeliveryListTable .shoppingMemberDeliveryName {
  width: 20%; }

#shoppingMemberDeliveryBlock #shoppingMemberDeliveryListTable .shoppingMemberDeliveryZipCode {
  width: 90px; }

#shoppingMemberDeliveryBlock #shoppingMemberDeliveryListTable .shoppingMemberDeliveryTel {
  width: 110px; }

#shoppingMemberDeliveryBlock #shoppingMemberDeliveryListTable .shoppingMemberDeliveryButton {
  width: 110px; }

/* ショッピングカート スタイル
----------------------------------------------- */
.shoppingDeliveryInfoBox, .shoppingGiftBox, .shoppingConfirmationBox {
  border: 1px solid #AAAAAA;
  border-radius: 4px;
  margin: 20px auto 30px; }

#shoppingFormResponseBlock {
  background: #B6D9F2;
  padding: 5px;
  text-align: center; }

.shoppingFormButton {
  margin-bottom: 20px;
  text-align: right; }

.shoppingFormTotalPriceBox {
  font-weight: bold;
  margin: 10px 0; }

.shoppingDeliveryInfoBox h2, .shoppingGiftBox h2 {
  border-top: 1px solid #AAAAAA;
  border-radius: 0; }

.shoppingDeliveryInfoBox h2:first-child, .shoppingGiftBox h2:first-child {
  border-top: none;
  border-radius: 4px 4px 0 0; }

.shoppingGiftBox .shoppingGiftBoxInner table th {
  width: 120px; }

.shoppingUserEmail {
  width: 250px; }

.shoppingUserZipCode1 {
  width: 3.5em; }

.shoppingUserZipCode2 {
  width: 4.5em; }

.shoppingUserArea {
  margin-bottom: 5px; }

.shoppingUserAddress, .shoppingUserBuilding {
  width: 80%; }

.shoppingUserTel1, .shoppingUserTel2, .shoppingUserTel3 {
  width: 4.5em; }

.shoppingPageSection {
  margin: 0 auto 30px;
  max-width: 1200px;
  padding: 0 1%; }

.shoppingPageSection .logoutButtonBox {
  float: right;
  /*margin-top: -40px;*/
  margin-top: -10px;
  z-index: 10001;
  }
@media(max-width:840px){
    .shoppingPageSection .logoutButtonBox {
        margin-top: -40px;
    }
}  

.shoppingPageSection h1 {
  font-size: 1.7em; }

.shoppingPageSection h2 {
  font-size: 1.5em; }

.shoppingMemberUserInfoBox table th {
  width: 30%; }

.shoppingPageSection .shoppingTable th, .shoppingPageSection .shoppingEditCartTable th, .shoppingPageSection .shoppingMultiAddressTable th {
  background-color: #0070BF;
  color: #ffffff;
  text-align: center; }

.shoppingPageSection .shoppingTable th.shoppingGoodsDetail, .shoppingPageSection .shoppingEditCartTable th.shoppingGoodsDetail {
  width: 60%; }

.shoppingPageSection .shoppingTable th.shoppingGoodsPrice, .shoppingPageSection .shoppingEditCartTable th.shoppingGoodsPrice {
  width: 20%; }

.shoppingPageSection .shoppingTable th.shoppingGoodsQuantity, .shoppingPageSection .shoppingEditCartTable th.shoppingGoodsQuantity {
  width: 10%; }

.shoppingPageSection .shoppingTable th.shoppingGoodsBtn, .shoppingPageSection .shoppingEditCartTable th.shoppingGoodsBtn {
  width: 10%; }

.shoppingPageSection .shoppingMultiAddressTable th.shoppingGoodsPrice {
  width: 10%; }

.shoppingPageSection .shoppingMultiAddressTable th.shoppingGoodsDestination {
  width: 150px; }

.shoppingPageSection .shoppingMultiAddressTable th.shoppingGoodsQuantity {
  width: 10%; }

.shoppingPageSection .shoppingMultiAddressTable th.shoppingGoodsBtn {
  width: 110px; }

.shoppingPageSection .shoppingMultiAddressTable .address_list select {
  width: 150px; }

.shoppingPageSection .shoppingMemberOrderDetailBox #shoppingNotificationEmailHistory table .shoppingMemberHistoryDate {
  width: 120px; }

.shoppingPageSection .shoppingMemberOrderDetailBox #shoppingNotificationEmailHistory table .shoppingMemberHistoryDate {
  width: 120px; }

.shoppingPageSection .shoppingMemberOrderDetailBox #shoppingNotificationEmailHistory table .shoppingMemberHistoryTitle {
  width: 180px; }

.shoppingPageSection .shoppingTable .goods_price, .shoppingPageSection .shoppingEditCartTable .goods_price, .shoppingPageSection .shoppingMultiAddressTable .goods_price {
  text-align: right; }

.shoppingPageSection .shoppingTable .goods_num, .shoppingPageSection .shoppingEditCartTable .goods_num, .shoppingPageSection .shoppingMultiAddressTable .goods_num {
  text-align: center; }

.shoppingPageSection .shoppingTable .goods_num input, .shoppingPageSection .shoppingEditCartTable .goods_num input, .shoppingPageSection .shoppingMultiAddressTable .goods_num input {
  width: 2.5em; }

.shoppingPageSection .shoppingTable .button, .shoppingPageSection .shoppingEditCartTable .button, .shoppingPageSection .shoppingMultiAddressTable .button {
  text-align: center; }

.shoppingPageSection .goodsListData {
  margin-bottom: 0; }

.shoppingPageSection .goodsListDetailData {
  display: block;
  margin-bottom: 5px; }

.shoppingPageSection .goodsListName {
  display: table-cell;
  width: 9em;
  margin: 0 5px 5px 0; }

.shoppingPageSection .goodsListValue {
  display: table-cell;
  margin: 0 5px 5px 0; }

.shoppingPageSection .goodsListOptionName {
  display: block;
  background: #cccccc;
  margin: 10px 0 5px;
  padding: 2px 5px;
  z-index: 10001; }

.shoppingPageSection .shoppingTable ul li, .shoppingPageSection .shoppingEditCartTable ul li {
  background: none;
  padding: 0; }

.shoppingPageSection table {
  color: #666666; }

.shoppingPageSection table ul {
  margin: 0; }

.shoppingPageSection table ul li {
  margin-bottom: 10px;
  padding: 8px;
  background: #eeeeee;
  list-style: none;
  color: #666666; }

.shoppingPageSection table ul li ul li {
  padding: 0;
  list-style: none; }

.shoppingPageSection table ul li ul li strong {
  display: block; }

.shoppingPageSection .shoppingDeliveryInfoTable select {
  width: 150px; }

.shoppingPageSection .goodsListMessageSelect, .shoppingPageSection .goodsListWrappingSelect {
  overflow: hidden; }

.shoppingPageSection .goodsListMessageSelect li, .shoppingPageSection .goodsListWrappingSelect li {
  float: left;
  width: 30%;
  margin-right: 5%; }

.shoppingPageSection .goodsListMessageSelect li:nth-child(3n), .shoppingPageSection .goodsListWrappingSelect li:nth-child(3n) {
  margin-right: 0; }

.shoppingPageSection .goodsListMessageSelect li img, .shoppingPageSection .goodsListWrappingSelect li img {
  width: 100%;
  height: auto; }

.shoppingPageSection .goodsDecorationSelect {
  width: 150px; }

.shoppingPageSection .shoppingPayBox {
  margin-bottom: 20px; }

.shoppingPageSection .shoppingPayBox .shoppingRemarkBox span {
  display: block;
  font-size: 0.9375em;
  line-height: 1.5em; }

.shoppingPageSection .shoppingPayBox .shoppingRemarkBox textarea {
  min-width: 97%;
  min-height: 150px; }

.shoppingPageSection .shoppingOrderInfoBox .buttonSilver {
  margin-bottom: 20px; }

.shoppingPageSection .shoppingOrderInfoBox table .buttonSilver {
  margin-bottom: 0; }

.shoppingPageSection .shoppingOrderInfoBox table th {
  width: 150px; }

.shoppingPageSection .shoppingFinalOrder {
  width: 100px; }

.shoppingPageSection .shoppingPaymentMethodCreditBox {
  padding: 10px;
  background: #EEEEEE;
  font-size: 0.9375em;
  color: #666666; }

.shoppingPageSection .shoppingPaymentMethodCreditBox .shoppingPaymentMethodCreditTypeSelect {
  width: 150px; }

.shoppingPageSection .shoppingPaymentMethodCreditBox .shoppingPaymentMethodCreditText {
  width: 250px; }

.shoppingPageSection .shoppingPaymentMethodCreditBox .shoppingPaymentMethodCreditMonth {
  width: 4em; }

.shoppingPageSection .shoppingPaymentMethodCreditBox .shoppingPaymentMethodCreditYear {
  width: 5.5em; }

.shoppingPageSection .shoppingPaymentMethodCreditBox .shoppingPaymentMethodCreditPayments {
  width: 4em; }

.shoppingPageSection .shoppingPaymentMethodCreditBox .formComment {
  display: block;
  margin: 5px 0; }

.shoppingPageSection .shoppingPaymentMethodCreditBox .goodsListName {
  width: 6em; }

.shoppingPageSection .shoppingPaymentMethodCtrl {
  width: 250px;
  margin-bottom: 20px; }

/* ショッピングカート+マイページ用 ボタンスタイル
----------------------------------------------- */
.buttonGreen, .buttonBlue, .buttonRed, .buttonOrange, .buttonBlack, .buttonSilver, .logoutButton, .editButton, .saveButton, .closeButton, .addAddressButton, .deleteButton, .backButton {
  display: inline-block;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

.buttonGreen a, .buttonBlue a, .buttonRed a, .buttonOrange a, .buttonBlack a, .logoutButton a, .editButton a, .saveButton a, .closeButton a, .addAddressButton a, .deleteButton a, .backButton a {
  display: block;
  padding: 5px 12px;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  cursor: pointer; }

.buttonSilver a, .editButton a {
  display: block;
  padding: 5px 12px;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #666666 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.buttonGreen a:hover, .buttonBlue a:hover, .buttonRed a:hover, .buttonOrange a:hover, .buttonBlack a:hover, .buttonSilver a:hover, .logoutButton a:hover, .editButton a:hover, .saveButton a:hover, .closeButton a:hover, .addAddressButton a:hover, .deleteButton a:hover {
  text-decoration: none; }

.buttonGreen, .addAddressButton {
  border: 1px solid #489248;
  background: #62c462; }

.buttonGreen a, .addAddressButton a {
  background: linear-gradient(#62c462, #51a351);
  background-image: -moz-linear-gradient(center top, #62c462, #51a351);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#62c462), to(#51a351)); }

.buttonGreen a:hover, .addAddressButton a:hover {
  background: #51a351; }

.buttonBlue, .saveButton {
  border: 1px solid #003DB7;
  background: #0088cc; }

.buttonBlue a, .buttonBlue input, .saveButton a {
  background: #0088cc;
  background: linear-gradient(#0088cc, #0044cc);
  background-image: -moz-linear-gradient(center top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0088cc), to(#0044cc)); }

.buttonBlue a:hover, .saveButton a:hover {
  background: #0044cc; }

.buttonOrange {
  border: 1px solid #de8405;
  background: #fbb450; }

.buttonOrange a {
  background: linear-gradient(#fbb450, #f89406);
  background-image: -moz-linear-gradient(center top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbb450), to(#f89406)); }

.buttonOrange a:hover {
  background: #f89406; }

.buttonRed, .deleteButton {
  border: 1px solid #ba3e39;
  background: #ee5f5b; }

.buttonRed a, .deleteButton a {
  background: linear-gradient(#ee5f5b, #bd362f);
  background-image: -moz-linear-gradient(center top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ee5f5b), to(#bd362f)); }

.buttonRed a:hover, .deleteButton a:hover {
  background: #bd362f; }

.buttonBlack, .logoutButton, .closeButton, .backButton {
  border: 1px solid #222222;
  background: #5E5E5E; }

.buttonBlack a, .logoutButton a, .closeButton a, .backButton a {
  background: linear-gradient(#5E5E5E, #3F3F3F);
  background-image: -moz-linear-gradient(center top, #5E5E5E, #3F3F3F);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5E5E5E), to(#3F3F3F)); }

.buttonBlack a:hover, .logoutButton a:hover, .closeButton a:hover, .backButton a:hover {
  background: #222222; }

.buttonSilver, .editButton {
  border: 1px solid #cccccc;
  background: #dbdbdb; }

.buttonSilver a, .editButton a {
  background: linear-gradient(#eeeeee, #cccccc);
  background-image: -moz-linear-gradient(center top, #eeeeee, #cccccc);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#cccccc)); }

.buttonSilver a:hover, .editButton a:hover {
  background: #dddddd; }

.shoppingDoubleButton a {
  display: inline-block; }

.buttonGreen.shoppingDoubleButton a:first-child {
  border-right: 1px solid #489248; }

.buttonGreen.shoppingDoubleButton a:last-child {
  border-left: 1px solid #62C462; }

.buttonGreen.shoppingDoubleButton a:last-child:hover {
  border-left: 1px solid #51A351; }

.shoppingDoubleButton a:first-child {
  border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px; }

.shoppingDoubleButton a:last-child {
  border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0; }

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  height: 20px;
  padding: 3px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s,box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s,box-shadow linear 0.2s;
  -o-transition: border linear 0.2s,box-shadow linear 0.2s;
  transition: border linear 0.2s,box-shadow linear 0.2s;
  vertical-align: middle;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 12px !important; }

select {
  height: 27px; }

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8) !important;
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); }

.width100 {
  width: 100%;
  height: auto; }

.wrap {
  width: 100% !important; }

.wrap .wrapLeft {
  width: 510px !important;
  height: 380px;
  padding: 10px;
  border: 1px solid #cccccc;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.wrap .wrapRight {
  width: 150px !important; }

.wrap .wrapRight img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  cursor: pointer; }

/* DB GOODS INFORMATION【変更注意】DB商品情報
----------------------------------------------- */
.goodsDetailInfo {
  overflow: hidden;
  margin-bottom: 30px; }

.goodsDetailInfo .goodsThumbNail {
  float: left;
  margin: 0 20px 0 0; }

.goodsDetailInfo .goodsThumbNail img {
  width: 100%;
  height: auto; }

.goodsDetailInfo .goodsDetailBasicInfo {
  float: right;
  width: 415px; }

.goodsDetailInfo .goodsDetailBasicInfo h1 {
  margin-top: 0;
  font-size: 1.4em; }

.goodsDetailInfo .goodsPrice {
  color: #cc0000 !important;
  font-size: 1em;
  font-weight: bold; }

.goodsDetailInfo .goodsPrice:before {
  content: "価格："; }

.goodsDetailInfo .goodsOptionBox {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #cccccc;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.goodsDetailInfo .goodsOptionBox ul {
  margin: 0 0 1em; }

.goodsDetailInfo .goodsOptionBox ul li {
  list-style: none; }

.goodsDetailInfo .goodsOptionBox ul li h2 {
  margin: 0 0 5px;
  font-size: 1em; }

.goodsDetailInfo .goodsOptionBox ul li select {
  min-width: 4em;
  max-width: 97%; }

.goodsDetailInfo .goodsQuantityBox h2 {
  display: inline-block;
  margin: 0;
  font-size: 1em; }

.goodsDetailInfo .goodsQuantityBox input {
  width: 2.5em; }

.goodsDetailInfo .goodsDeliveryBox {
  margin-top: 15px; }

.goodsDetailInfo .goodsDeliveryBox h2 {
  display: inline-block;
  margin: 0;
  font-size: 1em; }

.goodsDetailInfo .goodsDeliveryBox select {
  max-width: 97%;
  min-width: 7em; }

.goodsDetailInfo .button {
  text-align: left; }

.searchForm {
  margin: 0 2px 15px; }

.searchForm h1 {
  color: #666666;
  display: block;
  font-size: 14px;
  margin-bottom: 1px;
  padding: 8px 6px 8px 1em;
  text-decoration: none;
  background: #dbdbdb;
  /* Old browsers */
  background: -moz-linear-gradient(top, #dbdbdb 0%, #d6d6d6 50%, #c1c1c1 51%, #dddddd 100%) !important;
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dbdbdb), color-stop(50%, #d6d6d6), color-stop(51%, #c1c1c1), color-stop(100%, #dddddd)) !important;
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #dbdbdb 0%, #d6d6d6 50%, #c1c1c1 51%, #dddddd 100%) !important;
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #dbdbdb 0%, #d6d6d6 50%, #c1c1c1 51%, #dddddd 100%) !important;
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #dbdbdb 0%, #d6d6d6 50%, #c1c1c1 51%, #dddddd 100%) !important;
  /* IE10+ */
  background: linear-gradient(to bottom, #dbdbdb 0%, #d6d6d6 50%, #c1c1c1 51%, #dddddd 100%) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dbdbdb', endColorstr='#dddddd',GradientType=0 ) !important;
  /* IE6-9 */
  border: 1px solid #C5C5C5; }

.searchForm form {
  padding: 10px;
  background: #f8f8f8; }

@media screen and (max-width: 768px) {
  .goodsDetailInfo .goodsOptionBox {
    padding: 15px 0; } }
    

/*========= 2023.04修正（藤原追記）CSS ===============*/
body{
    color: #5F5E5E;
}
p {
    color: #5F5E5E;
}

.arrowbutton {
    color: #5F5E5E;
}

header {
    background-color: #ffffff;
    width: 100%;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 100;
    border-bottom:1px solid #e3dede;
}

.header_wrapper {
    margin: 15px auto 0;
}

#sp .header_wrapper{
    margin: 0 auto;
    padding: 20px 0;
}

.header__heading {
    align-items: flex-end;
}

#sp .header__heading {
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.header__heading .logo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.template-shop02 .header__heading .logo {
    width: 400px;
    position:initial;
    transform: translateX(0);
}
}

@media screen and (max-width: 1024px){
    .header__heading .logo {
    width: 400px;
    position:initial;
    transform: translateX(0);
}
}

.header__heading .logo a {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
}

.header__heading .logo img {
    width: 200px;
}

.header__heading .logo span {
    font-family: 'Poppins', sans-serif;
    flex: 1;
    text-align: left;
    padding-left: 0.3em;
    font-size: 17px;
    color: #5F5E5E;
    ;
}

.header__heading .nav ul li .cart {
    display: block;
    width: 40px;
    height: auto;
    padding-left: 0.3em;
}

.header__heading .nav ul li img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.header__heading .nav ul {
    align-items: flex-end;
}

.header__heading .nav ul li{
    font-size: 17px;
}

.header__heading .nav ul li a {
    font-family: 'Poppins', sans-serif;
}

.nav-sub {
    height: 60px;
}

@media screen and (max-width: 840.1px) {
.nav-sub {
    height: 45px;
}
}

@media screen and (max-width: 410px) {
.nav-sub {
    height: auto;
    padding-bottom: 4px;
}
}

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

    .header__heading .nav ul li:not(:last-child) {
        display: none;
    }

    .header__heading .logo-pc {
        display: none;
    }
}


@media screen and (min-width: 840px) {
    .header__heading .logo-sp {
        display: none;
    }
}

.sub-list {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1024px){
    .sub-list {
    justify-content: flex-start;
}
.nav-sub--ec .sub-list {
    justify-content: center;
}
}

@media screen and (max-width: 840px){
    .sub-list {
    justify-content: center;
}
}

@media screen and (max-width: 410px){
    .sub-list {
    flex-wrap: wrap
}

}


.sub-list li:not(:last-child) {
    padding-right: 1em;
}

.sub-list li {
    color: #5F5E5E;
    font-size: 13px;
}

@media screen and (max-width: 410px){
    .sub-list li:not(:last-child) {
    padding-right: 0;
}
    .sub-list li {
    width: 130px;
    margin: 3px 5px;
}
}

.sub-list li a {
    display: flex;
    justify-content: center;
    border: 1px solid #5F5E5E;
    border-radius: 5px;
    color: #5F5E5E;
    padding: 2px 5px;
}

.sub-list li.style_non a {
    border: none;
}

#g-nav li a {
    font-family: 'Poppins', sans-serif;
    color: #5F5E5E;
    font-weight: 400;
}

.openbtn {
    top: 19px;
    right: 36px;
    cursor: pointer;
    width: 40px;
    height: 50px;
}

@media screen and (max-width: 920.1px) {
    .openbtn {
        top: 27px;
        right: 20px;
        width: 30px;
        height: 30px;
    }
}

.header-left-wrap {
    padding-right: 5em;
    position: relative;
}

#sp .header-left-wrap {
    padding-right: 48px;
    position: relative;
}

.openbtn span {
    display: block;
    left: 0;
}

.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
    left: 0;
}

.openbtn span:nth-of-type(1) {
    top: 5px;
}

.openbtn span:nth-of-type(2) {
    top: 15px;
}

.openbtn span:nth-of-type(3) {
    top: 26px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}

#g-nav {
    left: 0;
}

.title-style02 {
    font-family: 'Poppins', sans-serif;
    color: #535353;
    font-weight: 400;
}

main {
    padding-top: 116px;
}
@media screen and (max-width: 840.1px){
main {
    padding-top: 126px;
}
}

@media screen and (max-width: 410px){
main {
    padding-top: 143px;
}
}

footer {
    border-top: none;
    background-color: #F3E5D4;
}

footer:before {
    border-top: none;
}

footer a{
    color: #5F5E5E;
}

footer a:hover{
    color: #5F5E5E;
    opacity: 0.7;
}


/*==========スマホheader==========*/
header#sp {
    padding: 0;
}

header#sp .logo {
    width: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*==========表示切り替えr==========*/

@media screen and (min-width: 481px) {
  .pc-none_bp480 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sp-none_bp480 {
    display: none;
  }
}


