@charset "utf-8";

/*  =============================================================

　　共通モジュール設定

============================================================= */

/*  コンテンツ　設定
--------------------------------------------- */

/*  背景 設定
-------------------------- */

.bgBeige {
  background-color: #fbf9f0;
}

/*  テキスト 設定
-------------------------- */

/* -- Text Size -- */

.txtSmall {
  font-size: .85em;
}

.txtLarge {
  font-size: 1.3em;
  line-height: 1em;
}

/* -- Text Color -- */

.txtRed {
  color: #d80000;
}

.txtOrange {
  color: #ff7f00;
}

.txtBlue {
  color: #003376;
}

.txtGrey {
  color: #666;
}

/*  リンク 設定
-------------------------- */

.thumbLine,
.thumbLine > * {
  display: block;
  position: relative;
  height: auto;
  vertical-align: middle;
}

.thumbLine {
  overflow: hidden;
  line-height: 0;
}

.thumbLine img {
  transition: transform .4s ease-in-out;
}

.thumbLine:before,
.thumbLine:after,
.thumbLine > *:before,
.thumbLine > *:after {
  position: absolute;
  top: 5px;
  right: 5px;
  left: 5px;
  bottom: 5px;
  z-index: 1;
  border: 2px solid #ffbf00;
  content: "";
}

.thumbLine:before {
  transition: left .3s linear;
  left: 100%;
  bottom: auto;
  border-width: 2px 0 0 0;
}

.thumbLine:after {
  transition: bottom .3s linear;
  left: auto;
  bottom: 100%;
  border-width: 0 2px 0 0;
}

.thumbLine > *:before {
  transition: right .3s linear;
  right: 100%;
  top: auto;
  border-width: 0 0 2px 0;
}

.thumbLine > *:after {
  transition: top .3s linear;
  top: 100%;
  right: auto;
  border-width: 0 0 0 2px;
}

a:hover .thumbLine img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

a:hover .thumbLine:before {
  left: 5px;
}

a:hover .thumbLine:after {
  bottom: 5px;
}

a:hover .thumbLine > *:before {
  right: 5px;
}

a:hover .thumbLine > *:after {
  top: 5px;
}


/*  アイコン
-------------------------- */

.icn {}

/* -- Arrow Icon -- */

.icn.arw {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  position: relative;
  padding-left: 15px;
}

.icn.arw:before,
.icn.arw:after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 2px;
  border-width: 6px 7px;
  border-color: transparent transparent transparent #003376;
  border-style: solid;
  content: "";
}

.icn.arw:after {
  margin-left: -2px;
  border-left-color: #fff;
}


/*  ボタン
-------------------------- */

.btn {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, color .2s ease-in-out;
  padding: 10px 20px;
  border: 1px solid #bbb;
  background-color: #fff;
  font-size: .92em;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.4em;
  vertical-align: middle;
}

.btn,
a.btn {
  color: #333;
}

a.btn {
  cursor: pointer;
}

.btn.round {
  border-radius: 2px;
}

.btn.roundFull {
  border-radius: 100px;
}

a.btn:hover {}

/* -- Arrow -- */

.btn.arw {
  position: relative;
  padding-right: 30px;
  padding-left: 25px;
}

.btn.arw:before,
.btn.arw:after {
  transition: border .2s ease-in-out;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 0;
  height: 0;
  margin-top: -8px;
  border-radius: 10px;
  border-width: 8px;
  border-color: transparent transparent transparent #bbb;
  border-style: solid;
  background: none !important;
  content: "";
}

.btn.arw:after {
  right: 4px;
  border-left-color: #fff;
}

/* -- Arrow02 -- */

.btn.arw02 {
  background-image: url(https://www.m-pantry.com/common/img/icn-arw.png);
  background-repeat: no-repeat;
  background-position: 20px center;
}

.btn.arw02.small {
  padding-left: 40px;
}

.btn.arw02.middle {
  padding-left: 40px;
  background-position: 30px center;
}

.btn.arw02.large {
  padding-left: 65px;
  background-position: 35px center;
}

/* -- Frame -- */

.btn.frame {
  font-weight: normal;
  background-color: transparent !important;
}

.btn.frame.arw:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-radius: 2px;
  border-width: 1px 1px 0 0;
  border-color: #bbb #bbb transparent transparent;
}

.btn.small.frame.arw:before {
  right: 5px;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-width: 2px 2px 0 0;
}

.btn.frame.arw:after {
  display: none;
}

/* -- Small Size -- */

.btn.small {
  padding: 4px 20px;
  font-size: .9em;
}

.btn.small.arw {
  padding-right: 17px;
}

.btn.small.arw:before,
.btn.small.arw:after {
  right: 0;
  margin-top: -5px;
  border-width: 5px;
}

.btn.small.arw:after {
  right: 1px;
}

/* -- Middle Size -- */

.btn.middle {
  min-width: 200px;
  font-size: 1em;
  text-align: center;
}

/* -- Large Size -- */

.btn.large {
  margin: 40px 0;
  padding: 16px 30px;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: .01em;
  text-align: center;
}

.btn.large.arw:before,
.btn.large.arw:after {
  margin-top: -12px;
  border-width: 12px;
}

/* -- Button Area -- */

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

.boxBtnArea .btn.large {
  min-width: 360px;
  padding: 20px 30px;
  border-radius: 4px !important;
  font-size: 1.35em;
}

/* ---- Color Setting ---- */

/* -- White -- */

.btn.white {
  border-color: #fff;
  background-color: #fff !important;
  color: #222 !important;
}

.btn.arw.white:before {
  border-left-color: #222;
}

.btn.arw.white:after {
  border-left-color: #fff;
}

.btn.frame.white {
  background-color: transparent !important;
  color: #fff !important;
  font-weight: bold !important;
}

/* -- Black -- */

.btn.black {
  border-color: transparent;
  background-color: #000;
  color: #fff !important;
}

.btn.black:hover {
  border-color: #000;
  background-color: #fff;
}

.btn.arw.black:before {
  border-left-color: #fff;
}

.btn.arw.black:after {
  border-left-color: #000;
}

.btn.arw.black:hover:before {
  border-left-color: #000;
}

.btn.arw.black:hover:after {
  border-left-color: #fff;
}

.btn.frame.black {
  border-color: #000;
  background-color: transparent !important;
  color: #000 !important;
}

.btn.frame.arw.black:before {
  border-color: #000 #000 transparent transparent;
}

/* -- Gold -- */

.btn.gold {
  border-color: transparent;
  background-color: #d9a83d;
  color: #fff !important;
}

a.btn.gold:hover {
  background-color: #cc9a30;
}

.btn.arw.gold:before {
  border-left-color: #fff;
}

.btn.arw.gold:after {
  border-left-color: #d9a83d;
}

a.btn.arw.gold:hover:after {
  border-left-color: #cc9a30;
}

.btn.frame.gold {
  border-color: #d9a83d;
  background-color: transparent !important;
  color: #d9a83d !important;
}

a.btn.frame.gold:hover {
  border-color: #cc9a30;
  color: #cc9a30;
}

.btn.frame.arw.gold:before {
  border-color: #d9a83d #d9a83d transparent transparent;
}

a.btn.frame.arw.gold:hover:before {
  border-color: #cc9a30 #cc9a30 transparent transparent;
}

/* -- Silver -- */

.btn.silver {
  border-color: transparent;
  background-color: #dbdbdc;
  color: #999 !important;
}

a.btn.silver:hover {
  background-color: #c9c9ca;
}

.btn.arw.silver:before {
  border-left-color: #9c9c9d;
}

.btn.arw.silver:after {
  border-left-color: #dbdbdc;
}

a.btn.arw.silver:hover:after {
  border-left-color: #c9c9ca;
}

.btn.frame.silver {
  border-color: #dbdbdc;
  background-color: transparent !important;
  color: #dbdbdc !important;
}

a.btn.frame.silver:hover {
  border-color: #c9c9ca;
  color: #c9c9ca;
}

.btn.frame.arw.silver:before {
  border-color: #dbdbdc #dbdbdc transparent transparent;
}

a.btn.frame.arw.silver:hover:before {
  border-color: #c9c9ca #c9c9ca transparent transparent;
}

/* -- Grey -- */

.btn.grey {
  border-color: #666;
  background-color: #666 !important;
  color: #fff !important;
}

.btn.arw.grey:before {
  border-left-color: #fff;
}

.btn.arw.grey:after {
  border-left-color: #666;
}

a:hover .btn.grey,
a.btn.grey:hover {
  border-color: #333;
  background-color: #333 !important;
}

a:hover .btn.grey:after,
a.btn.grey:hover:after {
  border-left-color: #333;
}

.btn.frame.grey {
  background-color: transparent !important;
  color: #666 !important;
}

.btn.frame.arw.grey:before {
  border-color: #666 #666 transparent transparent;
}

a:hover .btn.frame.grey,
a.btn.frame.grey:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.grey:after,
a.btn.frame.grey:hover:after {
  border-left-color: transparent;
}

/* -- Red -- */

.btn.red {
  border-color: #b20000;
  background-color: #b20000 !important;
  color: #fff !important;
}

.btn.arw.red:before {
  border-left-color: #fff;
}

.btn.arw.red:after {
  border-left-color: #b20000;
}

a:hover .btn.red,
a.btn.red:hover {
  border-color: #ba0000;
  background-color: #ba0000 !important;
}

a:hover .btn.red:after,
a.btn.red:hover:after {
  border-left-color: #ba0000;
}

.btn.frame.red {
  background-color: transparent !important;
  color: #b20000 !important;
}

.btn.frame.arw.red:before {
  border-color: #b20000 #b20000 transparent transparent;
}

a:hover .btn.frame.red,
a.btn.frame.red:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.red:after,
a.btn.frame.red:hover:after {
  border-left-color: transparent;
}

/* -- Brown -- */

.btn.brown {
  border-color: #402000;
  background-color: #402000 !important;
  color: #fff !important;
}

.btn.arw.brown:before {
  border-left-color: #fff;
}

.btn.arw.brown:after {
  border-left-color: #402000;
}

a:hover .btn.brown,
a.btn.brown:hover {
  border-color: #2c1600;
  background-color: #2c1600 !important;
}

a:hover .btn.brown:after,
a.btn.brown:hover:after {
  border-left-color: #2c1600;
}

.btn.frame.brown {
  background-color: transparent !important;
  color: #402000 !important;
}

.btn.frame.arw.brown:before {
  border-color: #402000 #402000 transparent transparent;
}

a:hover .btn.frame.brown,
a.btn.frame.brown:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.brown:after,
a.btn.frame.brown:hover:after {
  border-left-color: transparent;
}

/* -- Pink -- */

.btn.pink {
  border-color: #ff7373;
  background-color: #ff7373 !important;
  color: #fff !important;
}

.btn.arw.pink:before {
  border-left-color: #fff;
}

.btn.arw.pink:after {
  border-left-color: #ff7373;
}

a:hover .btn.pink,
a.btn.pink:hover {
  border-color: #ff5f46;
  background-color: #ff5f46 !important;
}

a:hover .btn.pink:after,
a.btn.pink:hover:after {
  border-left-color: #ff5f46;
}

.btn.frame.pink {
  background-color: transparent !important;
  color: #ff7373 !important;
}

.btn.frame.arw.pink:before {
  border-color: #ff7373 #ff7373 transparent transparent;
}

a:hover .btn.frame.pink,
a.btn.frame.pink:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.pink:after,
a.btn.frame.pink:hover:after {
  border-left-color: transparent;
}

/* -- Yellow -- */

.btn.yellow {
  border-color: #fff0bc;
  background-color: #fff0bc !important;
}

.btn.arw.yellow:before {
  border-left-color: #fff;
}

.btn.arw.yellow:after {
  border-left-color: #fff0bc;
}

a:hover .btn.yellow,
a.btn.yellow:hover {
  border-color: #ffdd6a;
  background-color: #ffdd6a !important;
}

a:hover .btn.yellow:after,
a.btn.yellow:hover:after {
  border-left-color: #ffdd6a;
}

.btn.frame.yellow {
  background-color: transparent !important;
  color: #fff0bc !important;
}

.btn.frame.arw.yellow:before {
  border-color: #fff0bc #fff0bc transparent transparent;
}

a:hover .btn.frame.yellow,
a.btn.frame.yellow:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.yellow:after,
a.btn.frame.yellow:hover:after {
  border-left-color: transparent;
}

/* -- Orange -- */

.btn.orange {
  border-color: #ffbf00;
  background-color: #ffbf00 !important;
}

.btn.arw.orange:before {
  border-left-color: #fff;
}

.btn.arw.orange:after {
  border-left-color: #ffbf00;
}

a:hover .btn.orange,
a.btn.orange:hover {
  border-color: #f5b800;
  background-color: #f5b800 !important;
}

a:hover .btn.orange:after,
a.btn.orange:hover:after {
  border-left-color: #f5b800;
}

.btn.frame.orange {
  background-color: transparent !important;
  color: #ffbf00 !important;
}

.btn.frame.arw.orange:before {
  border-color: #ffbf00 #ffbf00 transparent transparent;
}

a:hover .btn.frame.orange,
a.btn.frame.orange:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.orange:after,
a.btn.frame.yellow:hover:after {
  border-left-color: transparent;
}

/* -- Orange02 -- */

.btn.orange02 {
  border-color: #ff8000;
  background-color: #ff8000 !important;
  color: #fff !important;
}

.btn.arw.orange02:before {
  border-left-color: #fff;
}

.btn.arw.orange02:after {
  border-left-color: #ff8000;
}

a:hover .btn.orange02,
a.btn.orange02:hover {
  border-color: #ff7700;
  background-color: #ff7700 !important;
}

a:hover .btn.orange02:after,
a.btn.orange02:hover:after {
  border-left-color: #ff7700;
}

.btn.frame.orange02 {
  background-color: transparent !important;
  color: #ff8000 !important;
}

.btn.frame.arw.orange02:before {
  border-color: #ff8000 #ff8000 transparent transparent;
}

a:hover .btn.frame.orange02,
a.btn.frame.orange02:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.orange02:after,
a.btn.frame.yellow:hover:after {
  border-left-color: transparent;
}

/*  ドット枠
-------------------------- */

.bgDotSmall {
  background: linear-gradient(to right, #6e3b0a, #6e3b0a 2px, transparent 1px, transparent 4px) 0 0 /5px 2px repeat-x, /* 上 */
              linear-gradient(to bottom, #6e3b0a, #6e3b0a 2px, transparent 1px, transparent 4px) 100% -5px /2px 5px repeat-y, /* 右 */
              linear-gradient(to right, #6e3b0a, #6e3b0a 2px, transparent 1px, transparent 4px) -5px 100% /5px 2px repeat-x, /* 下 */
              linear-gradient(to bottom, #6e3b0a, #6e3b0a 2px, transparent 1px, transparent 4px) 0 0 /2px 5px repeat-y; /* 左 */
  background: none\9; /* IE8用 */
  border: 2px dotted #6e3b0a\9; /* IE8用 */
}

.bgDotLarge {
  padding: 30px;
  background: radial-gradient(#6e3b0a 1px, transparent 40%) -2px -2px /8px 8px repeat-x, /* 上 */
              radial-gradient(#6e3b0a 1px, transparent 40%) 100.2% -2px /8px 8px repeat-y, /* 右 */
              radial-gradient(#6e3b0a 1px, transparent 40%) -2px 100.5% /8px 8px repeat-x, /* 下 */
              radial-gradient(#6e3b0a 1px, transparent 40%) -2px -2px /8px 8px repeat-y; /* 左 */
  background: none\9; /* IE8用 */
  border: 3px dotted #6e3b0a\9; /* IE8用 */
}

.bgDotSmallLine {
  background: linear-gradient(to right, #6e3b0a, #6e3b0a 2px, transparent 1px, transparent 4px) 0 0 /5px 2px repeat-x;
  background: none\9; /* IE8用 */
  border-top: 2px dotted #6e3b0a\9; /* IE8用 */
}

.bgDotLargeLine {
  background: radial-gradient(#6e3b0a 1px, transparent 40%) -2px -2px /8px 8px repeat-x;
  background: none\9; /* IE8用 */
  border-top: 3px dotted #6e3b0a\9; /* IE8用 */
}

.bgDotLargeLine02 {
  background: radial-gradient(#402100 1px, transparent 16%) -8px -8px /20px 22px repeat-x;
  background: none\9; /* IE8用 */
  border-top: 3px dotted #402100\9; /* IE8用 */
}

.bgDotLargeLine03 {
  background: radial-gradient(#402100 1px, transparent 17%) -3px -5px /13px 14px repeat-x;
  background: none\9; /* IE8用 */
  border-top: 3px dotted #402100\9; /* IE8用 */
}

/* IE10用 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .bgDotSmall,
  .bgDotSmallLine {
    background: none;
  }

  .bgDotLarge,
  .bgDotLargeLine,
  .bgDotLargeLine02,
  .bgDotLargeLine03  {
    border: none;
  }
}

/* Edge用 */
@supports (-ms-ime-align:auto) {
  .bgDotSmall,
  .bgDotSmallLine {
    background: none;
  }

  .bgDotSmall {
    border: 2px dotted #6e3b0a;
  }

  .bgDotSmallLine {
    border-top: 2px dotted #6e3b0a;
  }
}


/*  バナー
-------------------------- */

.bnr {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  transition: opacity .4s ease-in-out;
  border: 1px solid #ddd;
  background: #fff;
  vertical-align: middle;
  text-align: center;
}

.bnr:hover {
  opacity: .8;
}

.bnr.round {
  padding: 15px 20px;
  border-radius: 6px;
}


/*  タグ
-------------------------- */

.tag {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  margin-bottom: 3px;
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid #999;
  background: #999;
  font-size: .9em;
  text-align: center;
  text-decoration: none !important;
  letter-spacing: -.04em;
  line-height: 1.2em;
  line-height: 1.4em\9;
  /* IE8用 */
}

.tag,
.tag a {
  color: #fff;
  text-decoration: none;
}

a.tag,
.tag a {
  transition: opacity .2s ease-in-out;
}

a.tag:hover,
.tag a:hover {
  opacity: .7;
}


/*  タイトル
-------------------------- */

.ttl {
  font-weight: bold;
}

.ttl a:hover {
  text-decoration: underline;
}

.ttl.style01 {
  padding-bottom: 4px;
  margin-bottom: 30px;
  border-bottom: 3px solid #b50b0d;
  color: #000;
  font-size: 1.6em;
  letter-spacing: -.02em;
}

.ttl.style02 {
  position: relative;
  margin: 15px 0 10px;
  font-size: 1.2em;
}

.ttl.style03 {
  margin: 0;
  padding: 20px 10px;
  border-top: 3px solid #ff9999;
  font-size: 1.08em;
  letter-spacing: .04em;
}

.ttl.style04 {
  display: block;
  font-size: 1.4em;
}

.ttl.style05 {
  display: block;
  padding-left: 15px;
  border-left: 7px solid #ffbf00;
  font-size: 1.8em;
  line-height: 1.3em;
}

.ttl.style06 {
  display: block;
  margin: 5px 0;
  font-size: 1.1em;
  letter-spacing: -.02em;
}

.ttl.style07 {
  display: block !important;
  padding-top: 60px !important;
  text-align: center;
}

.ttl.style07 span {
  display: block;
}

.ttl.style07 span img {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  margin-top: -60px;
  padding: 20px 40px;
  background: #fff;
  filter: none !important;
}

.ttl.style08 {
  margin: 0 0 30px;
  text-align: center;
}

.ttl.style09 {
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: 0 4px;
  font-size: 2.3em;
  font-weight: bold !important;
  letter-spacing: .04em;
}

.ttl.style09.recipe {
  padding-top: 5px;
  padding-left: 55px;
  background-image: url(https://www.m-pantry.com/common/img/recipe/icn-recipe.png);
}

.ttl.style09 .txtSmall {
  display: inline;
  font-size: .5em;
  font-weight: normal;
  letter-spacing: -.02em;
}

/*  ライン
-------------------------- */

.lineTop {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}

.lineDotTop {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dotted #888;
}

.lineFrame {
  border: 1px solid #ccc;
  padding: 25px 28px;
  line-height: 1.6em;
}

.lineFrame02 {
  border: 25px solid #f3f1e9;
  padding: 25px 35px;
  line-height: 1.6em;
}


/*  セクション
-------------------------- */

.boxSection {
  margin-bottom: 70px;
}

.boxSection.lineTop,
.boxSection.lineDotTop {
  margin-top: 50px;
  padding-top: 50px;
}

/* ---- Section Head ---- */

.boxSectionHead {
  margin-bottom: 30px;
}

.boxSectionHead .ttl {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  margin: 0;
  color: #000;
  vertical-align: middle;
}

.boxSectionHead .ttl.style02 {
  padding: 0 20px 0 0;
  font-size: 1.7em;
}

.boxSectionHead .ttl .txtEn {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  padding-left: 8px;
  font-size: .55em;
  line-height: 1.2em;
  vertical-align: middle;
  color: #ffbf00;
}

.boxSection .btnMore,
.boxSection .boxSectionHead .btnMore {
  float: right;
  padding-top: 8px;
}

.boxSection .btnMore.txtC {
  float: none;
  margin: 20px auto;
}

.boxSection .btnMore.txtC .btn {
  padding: 10px 80px 10px 95px;
  background-position: 70px center;
  font-size: 1em;
}

/* ---- Section Main / SIde ---- */

.boxSection .boxSectionMain,
.boxSection .boxSectionSide {
  float: left;
  width: 50%;
}

.boxSection .boxSectionMain.fltR,
.boxSection .boxSectionSide.fltR {
  width: 36.5%;
  padding-left: 50px;
}

.boxSection .boxSectionMain.fltL,
.boxSection .boxSectionSide.fltL {
  width: 63.5%;
}

/* ---- Section Text ---- */

.boxSection > p,
.boxSection .boxInner > p,
.boxSection .boxTxtArea > p {
  padding-top: 22px;
  line-height: 1.9em;
}

.boxSection > p:first-child,
.boxSection .boxInner > p:first-child,
.boxSection .boxTxtArea > p:first-child {
  padding-top: 0 !important;
}

/* ---- Section Inner ---- */

.boxSection > .boxInner {
  padding-top: 35px;
  padding-bottom: 35px;
}


/*  アコーディオンエリア
-------------------------- */

/* ---- アコーディオン ---- */

.boxAcc,
.boxAccList {
  position: relative;
}

.boxAcc {
  margin: 20px 0;
}

.boxAccList {
  margin: 0;
}

/* ---- アコーディオン・ヘッダ ---- */

.boxAccHead {
  position: relative;
  padding: 14px 15px 10px;
  font-weight: bold;
  cursor: pointer;
}

/* -- Accodion Icon -- */

.boxAccHead:before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 2px;
  background: #fff;
  content: "";
}

.boxAccHead span {
  display: block;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Plus Icon */

.boxAccHead span:before,
.boxAccHead span:after {
  display: block;
  position: absolute;
  top: 50%;
  right: -1px;
  left: auto;
  bottom: auto;
  width: 14px;
  height: 2px;
  margin-top: -3px;
  border: none !important;
  background: #003477;
  content: "";
}

.boxAccHead span:after {
  right: 5px;
  width: 2px;
  height: 14px;
  margin-top: -9px;
}

/* Minus Icon */

.boxAccHead.active span:after {
  opacity: 0;
}

/* ---- アコーディオン・内容 ---- */

.boxAccCont {
  padding: 0;
}

.boxAccContInner {
  padding-bottom: 20px;
}


/*  カラムリスト
-------------------------- */

/* ---- 共通設定 ---- */

.boxColumnList {
  overflow: hidden;
  text-align: left;
}

.boxColumnList > ul {
  letter-spacing: -.40em;
}

.boxColumnList > ul > li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  letter-spacing: normal;
  vertical-align: top;
}

.boxColumnList > ul > li.boxFull {
  width: 100% !important;
}

.boxColumnList a {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  text-decoration: none;
}

.boxColumnList a:hover {}

/* -- 画像 -- */

.boxColumnList .imgItem {
}

.boxColumnList li > a,
.boxColumnList .imgItemWrap a {
  display: block;
}

.boxColumnList .imgItem img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
}

/* -- 内容 -- */

.boxColumnList .boxCont {
  padding-top: 12px;
  font-size: .9em;
}

.boxColumnList.column05 .boxCont {
  padding-top: 8px;
}

.boxColumnList .boxCont p {
  padding-top: 2px;
}

/* -- タイトル -- */

.boxColumnList .ttlItem {
  font-size: 1.1em;
}

.boxColumnList .ttlSub {
  margin-bottom: 0;
}

/* ---- 2カラム設定 ---- */

.boxColumnList.column02 > ul {
  margin-top: -55px;
  margin-left: -50px;
}

.boxColumnList.column02 > ul > li {
  width: 50%;
  padding: 55px 0 0 50px;
}

.boxColumnList.column02 .txtCont {
  font-size: 1.1em;
  line-height: 1.9em;
  letter-spacing: -.04em;
}

/* ---- 3カラム設定 ---- */

.boxColumnList.column03 > ul {
  margin-top: -50px;
  margin-left: -31px;
}

.boxColumnList.column03 > ul > li {
  width: 33.333%;
  padding: 50px 0 0 31px;
}

/* ---- 4カラム設定 ---- */

.boxColumnList.column04 > ul {
  margin-top: -40px;
  margin-left: -27px;
}

.boxColumnList.column04 > ul > li {
  width: 25%;
  padding: 40px 0 0 27px;
}

/* ---- 5カラム設定 ---- */

.boxColumnList.column05 > ul {
  margin-top: -25px;
  margin-left: -25px;
}

.boxColumnList.column05 > ul > li {
  width: 20%;
  padding: 25px 0 0 25px;
}

/* ---- 6カラム設定 ---- */

.boxColumnList.column06 > ul {
  margin-top: -20px;
  margin-left: -17px;
}

.boxColumnList.column06 > ul > li {
  width: 16.65%;
  padding: 20px 0 0 17px;
}

/* ---- 7カラム設定 ---- */

.boxColumnList.column07 > ul {
  margin-top: -20px;
  margin-left: -17px;
}

.boxColumnList.column07 > ul > li {
  width: 14.2%;
  padding: 20px 0 0 17px;
}

/* ---- 8カラム設定 ---- */

.boxColumnList.column08 > ul {
  margin-top: -20px;
  margin-left: -17px;
}

.boxColumnList.column08 > ul > li {
  width: 12.5%;
  padding: 20px 0 0 17px;
}

/*  下線付きリスト
-------------------------- */

.boxLineList {}

/* -- リスト -- */

.boxLineList > ul > li {
  margin: 0;
  padding: 0;
  border-top: 0 solid #cecebf;
  border-bottom: 1px solid #cecebf;
}

.boxLineList > ul > li:first-child {
  padding-top: 0;
}

/* -- リンク -- */

.boxLineList > ul > li > a,
.boxLineList > ul > li.active > * {
  display: block;
  position: relative;
  padding: 9px 18px;
}


/*  リスト
-------------------------- */

/* -- 箇条書きリスト -- */

.boxDotList {
  margin: 20px 0;
}

.boxDotList ul {
  padding-left: 1.5em;
}

.boxDotList ul li:before {
  margin-left: -1.5em;
  padding-right: 5px;
  content: "・";
}

.boxDotList ul li ul {
  padding-top: 2px;
  padding-left: 2.5em;
}

/* -- 箇条書きリスト（横並び） -- */

.boxDotList .floatList,
.boxNumList .floatList {
  margin: 0;
}

.boxDotList ul.floatList {
  padding-left: 1.5em;
}

.boxDotList .floatList li {
  float: left;
  margin-right: 30px;
}

/* -- 順序付きリスト -- */

.boxNumList {
  margin: 20px 0;
}

.boxNumList ol {
  padding-left: 1.5em;
}

.boxNumList ol li {
  list-style-type: decimal;
}

.boxNumList ol li ul li {
  list-style: none;
}

.boxNumList ol li ol {
  padding-top: 2px;
}

/* -- 矢印付きリスト -- */

.boxArwList {
  margin: 20px 0;
}

.boxArwList ul {}

.boxArwList li {
  margin-bottom: 5px;
}

/* -- 定義リスト -- */

.boxDl dl {
  margin: 20px 0;
}

.boxDl dl dt {
  margin-bottom: 5px;
  font-weight: bold;
}

.boxDl dl .boxDotList,
.boxDl dl .boxNumList {
  margin: 0;
}

/* -- 定義リスト02 -- */

.boxDl02 + .boxDl02 {
  padding-top: 8px;
}

.boxDl02 dl {
  display: table;
  line-height: 1.85em;
}

.boxDl02 dl dt,
.boxDl02 dl dd {
  display: table-cell;
  padding-top: 2px;
}

.boxDl02 dl dt {
  min-width: 45px;
  white-space: nowrap;
}

.boxDl02 dl dt:after {
  content: "：";
}

.boxDl02 dl dd {}

/* -- 定義リスト03 -- */

.boxDl03 + .boxDl03 {
  padding-top: 4px;
}

.boxDl03 dl {
  display: table;
  line-height: 1.7em;
}

.boxDl03 dl dt,
.boxDl03 dl dd {
  display: table-cell;
  padding-top: 2px;
}

.boxDl03 dl dt {
  min-width: 45px;
  white-space: nowrap;
}

.boxDl03 dl dd {}

/* -- 定義リスト04 -- */

.boxDl04 + .boxDl04 {
  padding-top: 4px;
}

.boxDl04 dl {
  display: table;
  line-height: 1.7em;
}

.boxDl04 dl dt,
.boxDl04 dl dd {
  display: table-cell;
  padding-top: 2px;
}

.boxDl04 dl dt {
  min-width: 120px;
  white-space: nowrap;
  font-weight: bold;
}

.boxDl04 dl dd {}



/*  検索フォーム
-------------------------- */

.boxSearchFormWrap {
  position: relative;
}

.boxSearchFormWrap label {
  display: none;
}

.boxSearchForm {
  position: relative;
  margin-bottom: 20px;
}

.boxSearchForm .txtSearch {
  width: 100%;
  height: 36px;
  padding: 0 34px 0 10px;
  border: 1px solid #ccc;
  background: #fff;
  color: #5c3429;
  font-size: 1.05em;
}

.boxSearchForm .btnSearch {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: url(https://www.m-pantry.com/common/img/side/icn-search.png) no-repeat 9px 9px;
  text-indent: 300px;
  line-height: 300px;
  white-space: nowrap;
  cursor: pointer;
}

/*  新着情報
-------------------------- */

.boxInfoList {
  overflow: hidden;
  width: 846px;
  font-size: .98em;
  letter-spacing: -.02em;
}

.boxInfoList a {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  text-decoration: underline;
}

.boxInfoList a:hover {
  text-decoration: none;
}

.boxInfoList > ul {
  margin-bottom: -1px;
}

.boxInfoList > ul > li {
  padding: 15px 0;
}

.boxInfoList > ul > li:first-child {}

.boxInfoList > ul > li dt {
  float: left;
  width: 140px;
}

.boxInfoList > ul > li dt span {
  margin-left: 0.85em;
  padding: 4px 8px;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #dc1513;
  border-radius: 5px;
}

.boxInfoList > ul > li dd {
  padding-left: 140px;
}

/*  バナーエリア
-------------------------- */

.boxBnrArea {
  margin-left: -15px;
  margin-bottom: 50px;
  text-align: center;
}

.boxBnrArea p {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  margin-left: 15px;
}

.boxBnrArea a:hover {
  opacity: .7;
}

/*  ランキング
-------------------------- */

.boxRanking {
  margin-bottom: 40px;
}

.boxRanking .imgItem {
  border: 1px solid #ececec;
}

.boxRanking .imgItem span {
  display: block;
  width: 154px;
  height: 154px;
  text-align: center;
  vertical-align: middle;
  line-height: 154px;
}

.boxRanking .imgItem img {
  width: auto !important;
  vertical-align: middle;
}

.boxRanking a:hover img {}

/* ---- Icon Obi ---- */

.icnObi {
  overflow: hidden;
  position: relative !important;
}

.icnObi:before {
  transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  position: absolute;
  top: 5px;
  left: -20px;
  left: 0\9;/* IE8用 */
  z-index: 2;
  width: 100px;
  height: 20px;
  padding-right: 10px;
  border: none;
  background: #b20000;
  color: #fff;
  font-size: .9em;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0em;
  line-height: 1.7em;
  content: "";
}

/* IE9用 */
.icnObi:not(:target):before {
  left: -20px\9;
}

/* IE10用 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .icnObi:before { 
    left: -20px;
  }
}

.icnObi.new:before {
  padding-right: 20px;
  font-size: .82em;
  letter-spacing: .02em;
  content: "NEW";
}

.icnObi.rank01:before {
  background: #d7b800;
  content: "1位" !important;
}

.icnObi.rank02:before {
  background: #a0a79e;
  content: "2位" !important;
}

.icnObi.rank03:before {
  background: #d18147;
  content: "3位" !important;
}

.icnObi.rank04:before {
  background: #555;
  content: "4位" !important;
}

.icnObi.rank05:before {
  background: #555;
  content: "5位" !important;
}

/* ---- Icon Point ---- */

.icnPoint {
  overflow: visible;
  position: relative !important;
}

.icnPoint:before {
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
  position: absolute;
  top: -22px;
  left: 15px;
  z-index: 2;
  width: 50px;
  height: 45px;
  padding-right: 0;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  content: "";
}

.icnPoint.rank01:before {
  left: 30px;
  width: 65px;
  height: 60px;
  background-image: url(https://www.m-pantry.com/common/img/recipe/icn-ranking-01.png);
}

.icnPoint.rank02:before {
  background-image: url(https://www.m-pantry.com/common/img/recipe/icn-ranking-02.png);
}

.icnPoint.rank03:before {
  background-image: url(https://www.m-pantry.com/common/img/recipe/icn-ranking-03.png);
}

.icnPoint.rank04:before {
  background-image: url(https://www.m-pantry.com/common/img/recipe/icn-ranking-04.png);
}

.icnPoint.rank05:before {
  background-image: url(https://www.m-pantry.com/common/img/recipe/icn-ranking-05.png);
}

/*  サイドエリア
-------------------------- */

.boxSideArea {
  margin-bottom: 10px;
}

/* ---- バナーリスト ---- */

.boxBnrList li {
  margin-bottom: 10px;
}

.boxBnrList a:hover {
  opacity: .7;
}

.boxBnrList img {
  max-width: 100%;
}

/* ---- サイドメニュー ---- */

.boxSideMenu {
  margin-bottom: -10px;
  padding-bottom: 20px;
  font-size: .95em;
}

.boxSideMenu dl {
  margin: 0;
}

.boxSideMenu .ttl {
  padding: 18px 35px 18px 10px;
  border-top-color: #ffbf00;
  border-bottom: 1px solid #ccc;
}

.boxSideMenu .boxAcc .ttl {
  border-bottom-width: 0;
}

.boxSideMenu .boxAcc .ttl:before,
.boxSideMenu .boxAcc .ttl:after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-radius: 13px;
  border-width: 8px;
  border-color: #000 transparent transparent transparent;
  border-style: solid;
  background: none !important;
  content: "";
}

.boxSideMenu .boxAcc .ttl:after {
  margin-top: -6px;
  border-top-color: #fff;
}

.boxSideMenu .boxAcc .ttl.active:before,
.boxSideMenu .boxAcc .ttl.active:after {
  margin-top: -10px;
  border-top-color: transparent;
  border-bottom-color: #000;
}

.boxSideMenu .boxAcc .ttl.active:after {
  margin-top: -8px;
  border-bottom-color: #fff;
}

.boxSideMenu .boxLineList {
  margin-top: -20px;
  font-size: .95em;
}

.boxSideMenu .boxLineList li {
  border-top-width: 1px;
  border-bottom-width: 0;
}

.boxSideMenu .boxLineList li:first-child {
  border-top-width: 0;
}

.boxAcc .boxLineList li:first-child {
  border-top-width: 1px;
}

.boxSideMenu .boxLineList li a {
  padding: 10px;
}

.boxSideMenu .boxLineList li a:hover {
  background: #fff8e0;
  text-decoration: none;
}

.boxSideMenu .txtDate,
.boxSideMenu .txtCont {
  padding-top: 2px;
}

.boxSideMenu dd {
  padding-top: 20px;
}

.boxSideMenu dd .btn.middle {
  width: 100%;
  min-width: 0;
  margin: 20px 0;
}

/* -- サムネイル一覧 -- */

.boxSideMenu .boxThumbList {
  font-size: .95em;
}

.boxSideMenu .boxThumbList li {
}

.boxSideMenu .boxThumbList li a {
  overflow: hidden;
  padding: 13px 5px;
}

.boxSideMenu .boxThumbList .imgItem {
  overflow: hidden;
  float: left;
  width: 40%;
  height: 72px;
  background: #fff;
}

.boxSideMenu .boxThumbList .imgItem img {
  width: 100% !important;
  height: auto !important;
}

.boxSideMenu .boxThumbList .txtDate,
.boxSideMenu .boxThumbList .txtCont {
  float: right;
  width: 60%;
  padding-left: 12px;
}



/* ---- ソーシャル ---- */

.boxSideArea .boxSocial li {
  display: block;
}

.boxSideArea .boxSocial li:first-child {
  border-top-width: 1px;
}

.boxSideArea .boxSocial li a {
  display: block;
  width: auto;
  height: auto;
  padding: 15px 5px 15px 42px;
  border-radius: 0;
  background-position: 8px center;
  background-size: 22px;
  text-decoration: none;
}

.boxSideArea .boxSocial li a span {
  display: block !important;
  padding-right: 30px;
  background: url(https://www.m-pantry.com/common/img/icn-link.png) no-repeat center right;
}

.boxSideArea .boxSocial li a:hover {
  opacity: 1;
  background-color: #fff8e0;
}

/*  スクロールカスタマイズ
-------------------------- */

.boxScroll {
  overflow: hidden;
  position: relative;
  width: auto !important;
  height: 250px;
  z-index: 1;
}

.boxScroll .boxScrollInner {}

.boxScroll .jspPane {
  float: left;
  position: absolute;
  width: auto !important;
  margin-right: 10px !important;
}

.boxScroll .jspVerticalBar {
  position: relative;
  float: right;
  width: 5px;
  height: 100%;
  z-index: 100;
}

.boxScroll .jspCap {
  display: none;
}

.boxScroll .jspTrack {
  position: absolute;
  width: 5px;
  background: #eee;
}

.boxScroll .jspDrag {
  position: absolute;
  width: 5px;
  top: 0;
  right: 0;
  cursor: pointer;
  background: #ffbf00;
}


/*  ページナビ
-------------------------- */

.boxPageNav {
  margin-top: 50px;
  padding-top: 50px;
  text-align: center;
}

.boxPageNav .btn {
  min-width: 0 !important;
  margin: 0 4px;
}

.boxPageNav .prev {
  float: left;
}

.boxPageNav .next {
  float: right;
}

/* ---- ページャー ---- */

.boxPager {
  margin: 50px 0 0;
  text-align: center;
  font-weight: bold;
}

.boxPager span,
.boxPager a {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  height: 37px;
  margin: 0 2px 12px;
  padding: 0 10px;
  border-radius: 2px;
  border: 1px solid #fff1b9;
  background: #fff1b9;
  color: #333;
  font-size: 1.1em;
  font-weight: normal;
  vertical-align: middle;
  line-height: 35px;
  text-decoration: none;
}

.boxPager a,
.boxPager .current {
  min-width: 38px;
}

.boxPager a:hover,
.boxPager .current {
  border-color: #ffc100;
  background-color: #ffc100;
}

.boxPager span {
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.boxPager .extend {
  min-width: 25px;
  padding: 0;
  border: none;
  letter-spacing: .1em;
  line-height: 2.5em;
}


/*  メインタイトル
-------------------------- */

.boxMainTitle {
}

.boxMainTitle .boxInner {
  padding: 45px 0 50px;
  text-align: center !important;
}

.boxMainTitle h1 {
}

.boxBlogTitle {
  background: url(https://www.m-pantry.com/common/img/blog/bg-main-title.jpg) top center / cover no-repeat;
  background: url(https://www.m-pantry.com/common/img/blog/bg-main-title.jpg) top center no-repeat\9; /* IE8用 */
}

.boxRecipeTitle {
  background: url(https://www.m-pantry.com/common/img/recipe/bg-main-title.png) top center / cover no-repeat;
  background: url(https://www.m-pantry.com/common/img/recipe/bg-main-title.png) top center no-repeat\9; /* IE8用 */
}

.boxSemiproTitle {
  background: url(https://www.m-pantry.com/common/img/semipro/bg-main-title.png) top center / cover no-repeat;
  background: url(https://www.m-pantry.com/common/img/semipro/bg-main-title.png) top center no-repeat\9; /* IE8用 */
}

.boxHowtoTitle {
  background: url(https://www.m-pantry.com/common/img/howto/bg-main-title.png) top center / cover no-repeat;
  background: url(https://www.m-pantry.com/common/img/howto/bg-main-title.png) top center no-repeat\9; /* IE8用 */
}

.boxHowtoTitle .boxInner {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*  パンくず
-------------------------- */

.boxBreadcrumb {
  padding: 15px 0 20px;
  font-size: .9em;
  letter-spacing: 0;
}

.boxBreadcrumb span {
  margin-right: 2px;
}

.boxBreadcrumb a {
  margin-right: 2px;
}


/*  ページ詳細
-------------------------- */

.boxEntryBody {
  margin-bottom: 70px;
  line-height: 2em;
}

/* ---- 記事タイトル ---- */

.boxEntryBody .boxEntryTitle {
  margin-bottom: 50px;
  padding: 0 0 0 20px;
  border-left: 8px solid #ffbf00;
  line-height: 1.8em;
}

.boxEntryBody .boxEntryTitle h1,
.boxEntryBody .boxEntryTitle p {
  margin: 0;
}

.boxEntryBody .boxEntryTitle h1 {
  font-size: 2.2em;
  letter-spacing: .02em;
  line-height: 1.4em;
}

.boxEntryBody .boxEntryTitle p {
  font-size: .9em;
}

/* ---- H1タイトル ---- */

.boxEntryBody h1,
.ttl.styleH1 {
  margin: 30px 0;
  font-size: 1.5em;
}

/* ---- H2タイトル ---- */

.boxEntryBody h2,
.ttl.styleH2 {
  margin: 30px 0;
  font-size: 1.3em;
}

/* ---- H3タイトル ---- */

.boxEntryBody h3,
.ttl.styleH3 {
  margin: 20px 0;
  font-size: 1.1em;
}

/* ---- テキスト ---- */

.boxEntryBody p {
  margin-bottom: 20px;
}

.boxEntryBody strong {
  font-weight: bold;
}

/* ---- リンク ---- */

.boxEntryBody a {
  text-decoration: underline;
}

.boxEntryBody a:hover,
.boxEntryBody a:focus {
  text-decoration: none;
}

/* ---- 画像 ---- */

.boxEntryBody img {
  max-width: 100%;
  height: auto !important;
}

img.aligncenter,
.boxEntryBody img.aligncenter {
  display: block;
  margin: 40px auto;
}

img.alignright,
.boxEntryBody img.alignright {
  display: block;
  float: right;
  margin-top: 40px;
  margin-left: 40px;
  margin-bottom: 40px;
}

img.alignleft,
.boxEntryBody img.alignleft {
  display: block;
  float: left;
  margin-top: 15px;
  margin-right: 40px;
  margin-bottom: 40px;
}

/* ---- リスト ---- */

.boxEntryBody ul,
.boxEntryBody ol {
  clear: both;
  margin: 30px 0;
  padding-left: 2.5em;
  line-height: 1.5em;
}

.boxEntryBody h2 + ul,
.boxEntryBody h3 + ul,
.boxEntryBody h4 + ul,
.boxEntryBody h2 + ol,
.boxEntryBody h3 + ol,
.boxEntryBody h4 + ol {
  margin-top: 20px;
}

.boxEntryBody ul > li,
.boxEntryBody ol > li {
  margin-bottom: 10px;
}

.boxEntryBody li > ul,
.boxEntryBody li > ol {
  margin: 5px 0 10px;
  padding-top: 2px;
  padding-left: 1.5em;
}

/* -- 箇条書きリスト -- */

.boxEntryBody ul {
}

.boxEntryBody ul > li {
  list-style-type: disc;
}

/* -- 順序付きリスト -- */

.boxEntryBody ol {
}

.boxEntryBody ol > li {
  list-style-type: decimal;
}

/* ---- 定義リスト ---- */

.boxEntryBody dl {
  margin: 20px 0;
}

.boxEntryBody dl dt {
  margin-bottom: 5px;
  font-weight: bold;
}

.boxEntryBody dl .boxDotList,
.boxEntryBody dl .boxNumList {
  margin: 0;
}

/* ---- テーブル ---- */

.boxEntryBody table {
  width: 100%;
  border: 1px solid #ccc;
  border-top-width: 0;
  border-left-width: 0;
}

.boxEntryBody table th,
.boxEntryBody table td {
  padding: 11px 10px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.boxEntryBody table th {
  min-width: 120px;
  background: #f6f0e8;
  color: #444;
  font-weight: bold;
}

.boxEntryBody table td {
}

.boxEntryBody table td p {
  margin: 0;
  padding-top: 20px;
}

.boxEntryBody table td p:first-child {
  padding-top: 0;
}

.boxEntryBody table ul,
.boxEntryBody table ol {
  margin: 0;
}

.boxEntryBody table ul {
  padding-left: 1.5em;
}

.boxEntryBody table ul li {
  float: left;
  margin-right: 30px;
}

/* ---- Iframe ---- */

.boxEntryBody iframe {
  width: 80% !important;
  height: 330px !important;
  margin: 30px 10%;
}


/*  お店からのお知らせ
-------------------------- */

/* ------ インフォメーション ------ */

.boxShopInfo {
  margin-top: 30px;
  margin-bottom: 25px;
  padding: 22px 25px;
  border: 3px solid #ffbf00;
  text-align: left;
}

.boxShopInfo > dl {
}

/* -- タイトル＆内容 -- */

.boxShopInfo > dl > dt,
.boxShopInfo > dl > dd {
}

/* -- タイトル -- */

.boxShopInfo > dl > dt {
  padding-bottom: 10px;
  font-size: 1.2em;
  font-weight: bold;
  color: #45261d;
}

/* -- 内容 -- */

.boxShopInfo > dl > dd {
  font-size: .95em;
  line-height: 1.9em;
}

/* ---- 緊急情報 ---- */

.boxShopInfo.emergency {
  border-color: #d80000;
}

/* -- タイトル -- */

.boxShopInfo.emergency > dl > dt {
  color: #d80000;
}

/*  ソーシャルボタン
-------------------------- */

.boxSocialBtn {
  padding: 10px 0;
}

.boxSocialBtn li {
  display: inline-block;
  *display: inline;/* IE7用 */
  *zoom: 1;/* IE7用 */
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  margin-bottom: 10px;
}

.boxSocialBtn li {
  min-width: 70px;
  margin-right: 8px;
}

.boxSocialBtn .boxFB {
  overflow: hidden;
}

.boxSocialBtn .boxFB .fb_iframe_widget,
.boxSocialBtn .boxFB .fb_iframe_widget span {
  vertical-align: top !important;
}

.boxSocialBtn .boxGP {
  min-width: 40px;
}

.boxSocialBtn .boxHB {
  min-width: 110px;
}

/*  タブ切り替え
-------------------------- */

/* ------ Tab共通設定 ------ */

.boxTabWrap {
}

.boxTabWrap .hidden {
  display: none;
}

/* ---- Tab・ボタン ---- */

.boxTabWrap .boxTabSelect {
  font-size: 1.45em;
}

.boxTabWrap .boxTabSelect ul {
  display: table;
  width: 100%;
  height: 100%;
}

.boxTabWrap .boxTabSelect li {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 50%;
  height: 100%;
  border-left: 20px solid transparent;
}

.boxTabWrap .boxTabSelect li:first-child {
  border-left: none;
}

.boxTabWrap .boxTabSelect li .btnTab {
  display: block;
  transition: background-color .2s ease-in-out,border .2s ease-in-out;
  position: relative;
  width: 100%;
  height: 100%;
  height: 75px\9; /* IE8用 */
  padding: 15px 10px;
  border: 1px solid #ccc;
  background: #fbf9f0;
  color: #73432a;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.45em;
}

.boxTabSelect.jsTabSelect .btnTab,
.boxTabWrap .boxTabSelect a.btnTab {
  cursor: pointer;
}

.boxTabWrap .boxTabSelect li .btnTab:hover {
  border-color: #73432d;
  background-color: #73432d;
  color: #fff;
}

/* -- ボタン・ホバー時 -- */

.boxTabWrap .boxTabSelect li .btnTab:hover {
}

/* -- ボタン・セレクト時 -- */

.boxTabWrap .boxTabSelect li.current .btnTab {
  border: 1px solid #73432d;
  border-bottom-color: #73432d;
  background: #73432d;
  color: #fff;
}

/* -- ボタン内テキスト -- */

.boxTabWrap .boxTabSelect li .btnTab > span {
  display: table-cell;
  vertical-align: middle;
  position: inherit;
  padding: 0;
}

.boxTabWrap .boxTabSelect li .btnTab .icnArw {
  position: relative;
  padding: 0 0 0 12px;
}

/* -- ボタン内テキスト・装飾（矢印） -- */

.boxTabWrap .boxTabSelect li .btnTab .icnArw:before {
  transition: all .2s ease-in-out;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-top: 4px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
  content: "";
}

/* -- ボタン内テキスト・セレクト時 -- */

.boxTabWrap .boxTabSelect li.current .btnTab .icnArw:before {
  display: none;
}

/* ---- Tab・コンテンツ ---- */

.boxTabWrap .boxTabContentWrap {
  position: relative;
  margin-top: -1px;
  padding: 20px;
  border-top: 3px solid #73432d;
  background: #fff;
}

.boxTabWrap .boxTabContent {
}

/*  アイフレーム
-------------------------- */

.boxIframeContent {
}

.boxIframeContent .boxCont {
}

.boxBlog.boxIframeContent .boxCont p {
  position: relative;
  overflow: hidden;
  height: 38px;
  line-height: 1.45em;
}

.boxBlog.boxIframeContent .boxCont p:before,
.boxBlog.boxIframeContent .boxCont p:after {
  position: absolute;
  background: #fff;
}

.boxBlog.boxIframeContent .boxCont p:before {
  content: "･･･";
  bottom: 0;
  right: 0;
}

.boxBlog.boxIframeContent .boxCont p:after {
  content: "";
  width: 100%;
  height: 100%;
}

.boxBlog.boxIframeContent .boxCont p:first-child {
  position: inherit;
  height: auto;
  overflow: visible;
}

.boxBlog.boxIframeContent .boxCont p:first-child:before,
.boxBlog.boxIframeContent .boxCont p:first-child:after {
  display: none;
}

.boxRecipe.boxIframeContent .boxCont .ttlItem,
.boxRecipe.boxIframeContent .boxCont p {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
