/*h3タイトルの左にスタッフアイコンを表示*/
h3.icon-staff-a{
	position:relative;
	line-height:2em;
	padding-left:3em;
}
h3.icon-staff-a:before{
	position:absolute;
	left:0;
	content:"";
	display:inline-block;
	width:2em;
	height:2em;
	background:url(https://mohouse.itembox.design/item/icon/icon-staff-a.gif) no-repeat;
	background-size:contain;
}

/*文字ボタン、角丸ゴールド枠線、濃グレー文字、hoverでゴールドベージュ塗り*/
.btn01 {
  display:block;  
  max-width: 400px;
  border: 2px solid #D5C3AA;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  padding:16px;
  text-align: center;
  border-radius: 4px;
  transition: .4s;
}
.btn01:visited {
  border-color: #D5C3AA;
  color: #333;
}
.btn01:hover {
  background-color: #D5C3AA;
  border-color: #D5C3AA;
  color: #FFF;
}

/*文字ボタン、角丸、ゴールドベージュ塗り、白文字、hover赤墨塗り*/
.btn04 {
  display:block;  
  max-width: 400px;
  background-color: #D5C3AA;
  font-size: 16px;
  color: #FFF;
  font-weight: bold;
  padding:16px;
  text-align: center;
  border-radius: 4px;
  transition: .4s;
}
.btn04:visited {
  background-color: #D5C3AA;
  color: #FFF;
}

.btn04:hover {
  background-color: #3F312B;
  color: #FFF;
}



/*文字ボタン、角丸、赤墨塗り、白文字、hoverゴールドベージュ塗り*/
.btn05 {
  display:block;  
  max-width: 400px;
  background-color: #3F312B;
  font-size: 16px;
  color: #FFF;
  font-weight: bold;
  padding:16px;
  text-align: center;
  border-radius: 4px;
  transition: .4s;
}
.btn05:visited {
  color: #FFF;
  background-color: #D5C3AA;
}
.btn05:hover {
  background-color: #D5C3AA;
}
/*hr、グレー真ん中太くなるグラデーション横線*/

hr.style14 { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

/*h3要素、タイトルの前に■*/
.h3title-sq2 {
	position: relative;
	padding: .1em .3em .1em 1.3em;
}
.h3title-sq2::before,.cp_h1title::after {
	position: absolute;
	content: "■";
	width:4px;
	height: 4px;
	color: #D5C3AA;
}
.h3title-sq2:before {
	left:0;
	top:0;
}
.h3title-sq2::after {
	left: 5.5px;
	top: 7.5px;
}



/*
★hrのcss装飾リスト
https://coliss.com/articles/build-websites/operation/css/css-snippets-for-horizontal-rules.html

★ボタンの装飾
https://goo-up.com/1924/

*/
/*リンクボタン設置のためのリセット
↓このサイトを参考に、記述
 creive.me/archives/15410/ */

.reset {
  color: black;
  text-decoration: none;
/*   font-family: sans-serif; 書体リセットを、削除中 */
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* iOSタップ時の挙動を調整 */
}
/* endリンクボタン設置のためのリセット */

/* 右矢印＞が動くリンクボタン
↓このサイトを参考に、記述
 creive.me/archives/15410/ */
.button-arrow-right {
  text-align: center;
  box-sizing: border-box;
  display: block;
  border: 2px solid #C3B391;
  background: #fff;
  color: #C3B391;
  font-size: smaller;
  font-weight: bold;
  padding: 0.5em 2em 0.5em 1em;
  line-height: 1.4;
  max-width: 300px;
  width: 100%;
  margin: 1em auto;
  position: relative;
}
.button-arrow-right::after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -6px;
  transform: rotate(45deg);
  border-top: 2px solid #C3B391;
  border-right: 2px solid #C3B391;
  transition: right 0.3s;
}
.button-arrow-right:visited {
  background: #fff;
  color: #C3B391;
}
.button-arrow-right:hover {
  background: #C3B391;
  color: #fff;
}
.button-arrow-right:hover::after {
  border-color: #fff;
  right: 7px;
}
.button-arrow-right:active, .button-arrow-right:focus {
  opacity: 0.8;
}
/* end右矢印＞が動くリンクボタン */


/* 左矢印＜が動くリンクボタン
↓このサイトを参考に、記述
 creive.me/archives/15410/ */

.button-arrow-left {
  text-align: center;
  box-sizing: border-box;
  display: block;
  border: 2px solid #C3B391;
  background: #fff;
  color: #C3B391;
  font-size: smaller;
  font-weight: bold;
  padding: 0.5em 1em 0.5em 2em;
  line-height: 1.4;
  max-width: 300px;
  width: 100%;
  margin: 1em auto;
  position: relative;
}
.button-arrow-left::after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  left: 12px;
  margin-top: -6px;
  transform: rotate(-45deg);
  border-top: 2px solid #C3B391;
  border-left: 2px solid #C3B391;
  transition: left 0.3s;
}
.button-arrow-left:visited {
  background: #fff;
  color: #C3B391;
}
.button-arrow-left:hover {
  background: #C3B391;
  color: #fff;
}
.button-arrow-left:hover::after {
  border-color: #fff;
  left: 7px;
}
.button-arrow-left:active, .button-arrow-left:focus {
  opacity: 0.8;
}
/* end左矢印＜が動くリンクボタン */

/* 矢印なしへこむリンクボタン
↓このサイトを参考に、記述
 creive.me/archives/15410/ */
.button-arrow-center {
  text-align: center;
  box-sizing: border-box;
  display: block;
  border: 2px solid #C3B391;
  background: #fff;
  color: #C3B391;
  font-size: smaller;
  font-weight: bold;
  padding: 0.5em 1em 0.5em 2em;
  line-height: 1.4;
  max-width: 300px;
  width: 100%;
  margin: 1em auto;
  position: relative;
}
.button-arrow-center:visited {
  background: #fff;
  color: #C3B391;
}
.button-arrow-center:hover {
  background: #fff;
  color: #C3B391;
}
.button-arrow-center:hover::after {
  border-color: #fff;
  left: 7px;
}
.button-arrow-center:active, .button-arrow-left:focus {
  opacity: 0.8;
}
/* end矢印なしへこむリンクボタン */

/* 行間調整 */
.margin-top-1em {
	margin-top:1em;
}
.margin-top-2em {
	margin-top:2em;
}
/* end行間調整 */
