@charset "UTF-8";
/* ----------------------------------------------------------------------- 

	common style 共通スタイル

----------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}
@media screen and (max-width: 800px) {
  .spOnly {
    display: block;
  }
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.textAlignL {
  text-align: left;
}

.textAlignR {
  text-align: right;
}

.mgnWAuto {
  margin: 0 auto;
}

.mgnTop10 {
  margin-top: 10px;
}

.mgnTop20 {
  margin-top: 20px;
}

.mgnTop30 {
  margin-top: 30px;
}

.memo {
  text-align: right;
  margin-top: 0.5em;
  font-size: 12px;
}
@media screen and (max-width: 800px) {
  .memo {
    font-size: 10px;
    margin-top: 1em;
  }
}

.dspnon {
  display: none;
}

.brOpt br {
  display: none;
}
@media screen and (max-width: 800px) {
  .brOpt br {
    display: block;
  }
}

/* ----------------------------------------------------------------------- 
	color
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	background
----------------------------------------------------------------------- */
.bgWhAlpha {
  background-color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------------------------------------- 
	
----------------------------------------------------------------------- */
.fntMin {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* ----------------------------------------------------------------------- 
	title
----------------------------------------------------------------------- */
.ttlStyle01 {
  text-align: center;
}

.ttlStyle02 {
  background: #fff;
  text-align: center;
}

/* ----------------------------------------------------------------------- 
	btn
----------------------------------------------------------------------- */
.btnStyle01 {
  background: #D5C4A6;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 218px;
  line-height: 29px;
  color: #684C33;
  font-size: 15px;
}
.btnStyle01:after {
  content: '\0020\003e';
  font-weight: bold;
}

.btnStyle02 {
  background: #AC894D;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  padding: 5px 10px;
}
.btnStyle02:after {
  content: '\0020\003e';
  font-weight: bold;
}

/* ----------------------------------------------------------------------- 
	layout
----------------------------------------------------------------------- */
.layoutStyle01:after {
  content: "";
  display: table;
  clear: both;
}
.layoutStyle01 .textBox {
  width: 57.5%;
}
.layoutStyle01 .textBox p {
  width: 90%;
}
.layoutStyle01 .textBox .memo {
  text-align: right;
  font-size: 12px;
}
@media screen and (max-width: 800px) {
  .layoutStyle01 .textBox .memo {
    font-size: 10px;
    margin-top: 1em;
  }
}
.layoutStyle01 .imageBox {
  width: 41%;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .layoutStyle01 .imageBox {
    margin-top: 10px;
  }
}
.layoutStyle01 + .layoutStyle01 {
  margin-top: 3.6%;
}
@media screen and (max-width: 800px) {
  .layoutStyle01 + .layoutStyle01 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 800px) {
  .layoutStyle01.sp1col > * {
    float: none;
    width: 100%;
  }
}

/* ----------------------------------------------------------------------- 
	box
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	table
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	list
----------------------------------------------------------------------- */
.listStyle01 {
  width: 96%;
}
.listStyle01 dt {
  padding-bottom: 5px;
  border-bottom: 1px solid #AC894D;
}
.listStyle01 dd {
  margin-bottom: 20px;
  padding: 10px 1px;
}

.listStyle02 {
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .listStyle02 {
    margin: 5%;
  }
}
.listStyle02 dt {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 17px;
  padding-bottom: 5px;
}
.listStyle02 dd {
  padding-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .listStyle02 dd br {
    display: none;
  }
}

/* ----------------------------------------------------------------------- 
	width
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	tab(商品詳細)
----------------------------------------------------------------------- */
#tabBlock {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  #tabBlock {
    margin-top: 20px;
  }
}

.tabMenuList {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #666;
}
.tabMenuList li + li {
  border-right: 1px solid #666;
}
.tabMenuList .tab {
  width: 200px;
  padding: 10px;
  list-style: none;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .tabMenuList .tab {
    width: 150px;
    padding: 8px;
  }
}
.tabMenuList .tab.is-active {
  background: #2e6054;
  color: #FFF;
  transition: all 0.2s ease-out;
}

.panel {
  display: none;
  padding: 20px;
}
@media screen and (max-width: 800px) {
  .panel {
    padding: 10px;
  }
}

.panel.is-show {
  display: block;
}
