@charset "UTF-8";
/*標準ボタン
---------------------------------------------------------------*/
/*鍵フックボタン
---------------------------------------------------------------*/
/*カーテンボタン
---------------------------------------------------------------*/
/*ラインダッシュボタン
---------------------------------------------------------------*/
/*IE対応のグラデーション
========================================================================*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,600");
/*変数指定
=======================================================*/
/*メインカラー
--------------------------------------------*/
/*フォント
--------------------------------------------*/
/*body以下
=======================================================*/
body {
  margin: auto;
  padding: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.8vw;
  line-height: 1.8;
  color: #583126;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-c {
  text-align: center;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/*更新画像
=================================================*/
/*更新イメージの調整
----------------------------------------------- */
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  transform: translateX(-50%) translateY(-50%);
}

/*共通テキスト
----------------------------------------------- */
.common-txt p {
  margin-bottom: 3%;
}

.common-txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .common-txt p br {
    display: none;
  }
}

.tag-list {
  display: block !important;
  padding-bottom: 5%;
  margin-bottom: 10%;
  overflow-x: scroll;
  white-space: nowrap;
}

.tag-list li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 3%;
}

.tag-list li a {
  font-weight: 500;
  display: block;
  padding: 10px 15px;
  background: #fff;
  color: #583126;
  border: 1px solid #583126;
  font-size: 3.2vw;
  border-radius: 5px;
  transition: .2s all ease-in;
}

.tag-list li a:hover {
  background: #583126;
  color: #fff;
}

.tag-list .current a {
  background: #583126;
  color: #fff;
}

/*display flexキッド
=================================================*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-btw {
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  align-content: space-around;
}

.com-tel span {
  font-size: 24px;
  padding-left: 35px;
  position: relative;
  color: #b9856e;
  font-weight: 700;
}

.com-tel span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 25px;
  height: 24px;
  background: url("../img/common/tel-icon.png") no-repeat center/contain;
  margin-top: -12px;
}

.com-tel.wht-tel span {
  color: #fff;
  position: relative;
}

.com-tel.wht-tel span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 25px;
  height: 24px;
  background: url("../img/common/tel-icon-wht.png") no-repeat center/contain;
  margin-top: -12px;
}

/*=========================================================
	header
=========================================================*/
#header {
  position: relative;
  background: #583126;
  color: #fff;
  padding: 0 1%;
  box-sizing: border-box;
}

#header h1 span {
  display: block;
}

#header .hd-l {
  width: 30%;
}

#header .hd-r {
  display: none;
}

/*Mainvisual
=========================================================*/
#mv {
  z-index: 0;
  height: 25vh;
  position: relative;
}

#mv .bx-wrapper,
#mv ul {
  height: 100%;
}

#mv .catch {
  text-align: center;
}

#mv .catch img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  margin: auto;
}

#mv li {
  height: 25vh;
}

#mv li:nth-child(1) {
  background: url(../img/mv/slider01-bg.jpg) no-repeat center/cover;
}

#mv li:nth-child(2) {
  background: url(../img/mv/slider02-bg.jpg) no-repeat center/cover;
}

#mv li:nth-child(3) {
  background: url(../img/mv/slider03-bg.jpg) no-repeat center/cover;
}

.mv-wrp {
  padding: 10% 0;
  background: #e6ddd9 url(../img/mv/mv-bg-lb.png) no-repeat left bottom/40%;
}

.mv-inbox {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.mv-inbox .mv-sns {
  width: 5vw;
  position: absolute;
  right: -7vw;
  bottom: 0;
}

.mv-inbox .mv-sns li {
  margin-bottom: 8%;
}

.mv-inbox .mv-sns li:last-child {
  margin-bottom: 0;
}

#mv .bx-viewport {
  border-radius: 15px;
  overflow: hidden;
}

#mv .bx-prev,
#mv .bx-next {
  display: block;
  text-indent: -9999px;
  width: 10vw;
  height: 8vw;
  position: absolute;
  top: 50%;
  margin-top: -6vw;
  z-index: 100;
}

#mv .bx-prev {
  left: -10vw;
  background: url(../img/mv/slider-arrow-l.png) no-repeat center/contain;
}

#mv .bx-next {
  right: -10vw;
  background: url(../img/mv/slider-arrow-r.png) no-repeat center/contain;
}

#mv .catch img {
  width: 80%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

/*=========================================================
	トップページ
=========================================================*/
/*共通タイトル
=========================================================*/
#contents-u {
  padding: 13% 0 15%;
}

/*共通ボタン
=========================================================*/
.more-btn01 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn01:before, .more-btn01:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn01 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn01 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn01 {
    font-size: 3.5vw;
  }
}

.more-btn01:hover {
  background: #fff;
  border: solid #000 1px;
}

.more-btn01:hover span {
  color: #000;
}

.more-btn02 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn02:before, .more-btn02:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn02 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn02 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn02 {
    font-size: 3.5vw;
  }
}

.more-btn02:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1, 0.1);
}

.more-btn02:after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.more-btn02:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn02:hover:after {
  opacity: 0;
  transform: scale(1, 0.1);
}

.more-btn03 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn03:before, .more-btn03:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn03 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn03 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn03 {
    font-size: 3.5vw;
  }
}

.more-btn03:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0.1, 0.1);
}

.more-btn03:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn03:hover:after {
  transform: scale(0, 0);
  opacity: 0;
}

.more-btn04 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn04:before, .more-btn04:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn04 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn04 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn04 {
    font-size: 3.5vw;
  }
}

.more-btn05 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn05:before, .more-btn05:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn05 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn05 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn05 {
    font-size: 3.5vw;
  }
}

.more-btn {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  display: block;
  background: #583126;
  padding: 3% 0;
  transition: .2s all ease-in;
  border-radius: 8px;
}

.more-btn span {
  color: #fff;
  position: relative;
  padding-right: 15px;
  font-size: 3.5vw;
  transition: .2s all ease-in;
}

.more-btn span:before {
  transition: .2s all ease-in;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-top: -4px;
  transform: rotate(45deg);
}

.more-btn:hover {
  background: #b9856e;
}

.more-btn.wht-btn {
  background: #fff;
}

.more-btn.wht-btn span {
  color: #583126;
}

.more-btn.wht-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #583126;
  border-right: 1px solid #583126;
  margin-top: -4px;
  transform: rotate(45deg);
}

.more-btn.wht-btn:hover {
  background: #b9856e;
}

.more-btn.wht-btn:hover span {
  color: #fff;
}

.more-btn.wht-btn:hover span:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.mail-btn {
  display: block;
  background: transparent;
  border: solid 1px #fff;
  text-align: center;
  width: 180px;
  padding: 10px 0;
  transition: 0.3s all ease;
}

.mail-btn span {
  position: relative;
  padding-left: 35px;
  color: #fff;
}

.mail-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 14px;
  background: url("../img/common/mail-icon.png") no-repeat center/contain;
  margin-top: -7px;
}

.mail-btn:hover {
  background: #583126;
}

.mail-btn:hover span {
  color: #fff;
}

.more-btn-line-start {
  width: 100%;
  color: #11a983;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #11a983;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: comfortaa;
  font-weight: bold;
  box-sizing: border-box;
}

.more-btn-line-start:before, .more-btn-line-start:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  border-color: #11a983;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}

.more-btn-line-start:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}

.more-btn-line-start:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}

.more-btn-line-start:hover {
  color: #fff;
  background-color: #11a983;
  border-color: #11a983;
}

.more-btn-line-start:hover:before, .more-btn-line-start:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #11a983;
}

.more-btn-line-turn {
  width: 100%;
  color: #11a983;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #11a983;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: comfortaa;
  font-weight: bold;
  box-sizing: border-box;
}

.more-btn-line-turn:before, .more-btn-line-turn:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  border-color: #11a983;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}

.more-btn-line-turn:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}

.more-btn-line-turn:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}

.more-btn-line-turn:hover {
  color: #fff;
  background-color: #11a983;
  border-color: #11a983;
}

.more-btn-line-turn:hover:before, .more-btn-line-turn:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #11a983;
  transform: rotateY(180deg);
}

.more-btn-line-turn {
  width: 100%;
  color: #11a983;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #11a983;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-family: comfortaa;
  font-weight: bold;
  box-sizing: border-box;
}

.more-btn-line-turn:before, .more-btn-line-turn:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  border-color: #11a983;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}

.more-btn-line-turn:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}

.more-btn-line-turn:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}

.more-btn-line-turn:hover {
  color: #fff;
  background-color: #11a983;
  border-color: #11a983;
}

.more-btn-line-turn:hover:before, .more-btn-line-turn:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #11a983;
  transform: rotateY(180deg);
}

.curtn-btn-top {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #583126;
  overflow: hidden;
}

.curtn-btn-top:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #b9856e;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-top span {
  position: relative;
  z-index: 100;
}

.curtn-btn-top:before {
  left: 0;
  top: -100%;
}

.curtn-btn-top:hover:before {
  top: 0;
}

.curtn-btn-right {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #583126;
  overflow: hidden;
}

.curtn-btn-right:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #b9856e;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-right span {
  position: relative;
  z-index: 100;
}

.curtn-btn-right:before {
  right: -100%;
  top: 0;
}

.curtn-btn-right:hover:before {
  right: 0;
}

.curtn-btn-bottom {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #583126;
  overflow: hidden;
}

.curtn-btn-bottom:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #b9856e;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-bottom span {
  position: relative;
  z-index: 100;
}

.curtn-btn-bottom:before {
  left: 0;
  bottom: -100%;
}

.curtn-btn-bottom:hover:before {
  bottom: 0;
}

.curtn-btn-left {
  padding: 15px 0;
  font-weight: bold;
  display: block;
  position: relative;
  text-align: center;
  z-index: 10;
  background: #583126;
  overflow: hidden;
}

.curtn-btn-left:before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #b9856e;
  transition: all 0.3s ease-in-out;
}

.curtn-btn-left span {
  position: relative;
  z-index: 100;
}

.curtn-btn-left:before {
  left: -100%;
  top: 0;
}

.curtn-btn-left:hover:before {
  left: 0;
}

.line-dash-btn-01 {
  text-align: center;
  display: block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
}

.line-dash-btn-01:before, .line-dash-btn-01:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #583126;
}

.line-dash-btn-01:before {
  right: 0;
  top: 0;
}

.line-dash-btn-01:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-01 span {
  color: #fff;
  display: block;
  padding: 15px 0;
}

.line-dash-btn-01 span:before, .line-dash-btn-01 span:after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #583126;
}

.line-dash-btn-01 span:before {
  right: 0;
  bottom: 0;
}

.line-dash-btn-01 span:after {
  left: 0;
  top: 0;
}

.line-dash-btn-01:hover:before, .line-dash-btn-01:hover:after {
  transition-delay: 0s;
  width: 100%;
}

.line-dash-btn-01:hover span:before, .line-dash-btn-01:hover span:after {
  transition-delay: 0.2s;
  height: 100%;
}

.line-dash-btn-02 {
  text-align: center;
  display: block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
}

.line-dash-btn-02:before, .line-dash-btn-02:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #583126;
}

.line-dash-btn-02:before {
  right: 0;
  top: 0;
}

.line-dash-btn-02:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-02 span {
  color: #fff;
  display: block;
  padding: 15px 0;
}

.line-dash-btn-02 span:before, .line-dash-btn-02 span:after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #583126;
}

.line-dash-btn-02 span:before {
  right: 0;
  bottom: 0;
}

.line-dash-btn-02 span:after {
  left: 0;
  top: 0;
}

.line-dash-btn-02:hover:before, .line-dash-btn-02:hover:after {
  transition-delay: 0s;
  width: 100%;
}

.line-dash-btn-02:hover span:before, .line-dash-btn-02:hover span:after {
  transition-delay: 0s;
  height: 100%;
}

.line-dash-btn-03 {
  text-align: center;
  display: block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
}

.line-dash-btn-03:before, .line-dash-btn-03:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #583126;
}

.line-dash-btn-03:before {
  right: 0;
  top: 0;
}

.line-dash-btn-03:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-03 span {
  color: #fff;
  display: block;
  padding: 15px 0;
}

.line-dash-btn-03 span:before, .line-dash-btn-03 span:after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #583126;
}

.line-dash-btn-03 span:before {
  right: 0;
  top: 0;
}

.line-dash-btn-03 span:after {
  left: 0;
  bottom: 0;
}

.line-dash-btn-03:hover:before, .line-dash-btn-03:hover:after {
  transition-delay: 0s;
  width: 100%;
}

.line-dash-btn-03:hover span:before, .line-dash-btn-03:hover span:after {
  transition-delay: 0s;
  height: 100%;
}

/*top-about
=========================================================*/
#top-about {
  padding: 55% 0 50%;
  background: url(../img/top/top-about-rt.png) no-repeat right top/100%;
  text-align: center;
  position: relative;
}

#top-about .top-about-ttl {
  line-height: 1;
  position: relative;
  margin: 0 auto 10%;
}

#top-about .top-about-ttl .eng {
  text-align: left;
  line-height: 1;
  top: -15vw;
  left: 0;
  width: 100%;
  position: absolute;
  font-size: 15vw;
  font-weight: 900;
  color: #d7b9ac;
}

#top-about .top-about-ttl .sub,
#top-about .top-about-ttl .main {
  position: relative;
  z-index: 10;
}

#top-about .top-about-ttl .sub {
  line-height: 1.5;
  padding: 3% 0;
  font-size: 3.5vw;
  display: block;
  background: #b9856e;
  color: #fff;
  margin-bottom: 4%;
}

#top-about .top-about-ttl .main {
  display: block;
  line-height: 1;
  font-size: 6vw;
  color: #583126;
  font-weight: 900;
}

#top-about .top-about-txt {
  text-align: left;
  padding: 6%;
  letter-spacing: .2rem;
  margin: 0 auto 10%;
  background: rgba(232, 215, 208, 0.4);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

#top-about .top-about-l,
#top-about .top-about-r {
  position: absolute;
  width: 28%;
  padding-top: 35%;
}

#top-about .top-about-l {
  top: 0;
  left: 0;
  width: 100%;
  background: url(../img/top/top-about-l.png) no-repeat center/cover;
}

#top-about .top-about-r {
  width: 100%;
  right: 0;
  bottom: 0;
  background: url(../img/top/top-about-r.png) no-repeat center/cover;
}

/*top-service
=========================================================*/
#top-service {
  padding: 15% 0 0;
  background: #fbf5f2;
}

#top-service .top-service-ttl {
  text-align: center;
  margin-bottom: 10%;
}

#top-service .top-service-ttl span {
  display: block;
  line-height: 1;
}

#top-service .top-service-ttl .eng {
  font-weight: 900;
  font-size: 10vw;
  color: #583126;
  margin-bottom: 4%;
}

#top-service .top-service-ttl .ja {
  font-size: 4.5vw;
  font-weight: 700;
}

#top-service #top-service-sale {
  margin-bottom: 10%;
}

#top-service #top-service-sale .eng {
  position: absolute;
  right: 0;
}

#top-service #top-service-sale .top-service-txt,
#top-service #top-service-sale .top-service-info-ttl {
  margin: 0 0 0 auto;
  width: 80%;
}

#top-service #top-service-sale .top-service-info-ttl {
  position: relative;
  font-size: 4.5vw;
  margin-bottom: 3%;
  font-weight: 700;
  border-bottom: 1px solid #b9856e;
}

#top-service #top-service-sale .top-service-info-ttl .num {
  position: absolute;
  left: -20vw;
  top: -10px;
  line-height: 1;
  color: #b9856e;
  font-size: 12vw;
}

#top-service #top-service-sale .top-service-txt {
  position: relative;
  margin-bottom: 8%;
  padding-bottom: 15%;
}

#top-service #top-service-sale .top-service-txt .eng {
  text-align: right;
  display: block;
  letter-spacing: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 10vw;
  line-height: 1;
  font-weight: 900;
  color: rgba(185, 133, 110, 0.2);
}

#top-service .top-service-sale-list {
  margin: 0 auto 15%;
  display: block;
}

#top-service .top-service-sale-list li {
  width: 80%;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
  margin: 0 auto 5%;
}

#top-service .top-service-sale-list li:last-child {
  margin-bottom: 0;
}

#top-service .top-service-sale-list li .top-service-sales-listbox-wrp {
  padding: 10% 0;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #c4a99d;
}

#top-service .top-service-sale-list li .top-service-sales-listbox-wrp .top-service-sales-listbox .icon {
  display: block;
  margin-bottom: 5%;
}

#top-service .top-service-sale-list li .top-service-sales-listbox-wrp .top-service-sales-listbox p {
  font-size: 3.5vw;
  color: #583126;
  font-weight: 700;
}

#top-service .top-service-sale-list li .top-service-sales-listbox-wrp .top-service-sales-listbox p span {
  background: #f1e6e2;
}

#top-service .more-btn {
  width: 80%;
  padding: 5% 0;
}

#top-entrust-sales {
  background: #583126;
  padding: 6%;
  box-sizing: border-box;
  border-radius: 10px;
  margin-top: 80px;
  display: block;
}

#top-entrust-sales .top-entrust-sales-img {
  text-align: center;
  margin-bottom: 6%;
}

#top-entrust-sales .top-entrust-sales-box {
  color: #fff;
}

#top-entrust-sales .top-entrust-sales-box .top-entrust-sales-ttl {
  margin-bottom: 5%;
  padding-left: 5%;
  box-sizing: border-box;
  border-left: 2px solid #fff;
  font-size: 4.5vw;
  font-weight: 700;
  line-height: 1;
}

#top-entrust-sales .top-entrust-sales-box .top-entrust-sales-txt {
  font-size: 3.5vw;
}

#top-entrust-sales .top-entrust-sales-box .more-btn {
  margin-top: 10%;
}

#top-service-others .top-service-school-space {
  padding-bottom: 10%;
  background: url(../img/top/top-service-lb-bg.png) no-repeat left bottom/60%;
}

#top-service-others .top-service-school-space article {
  display: block;
  margin-bottom: 10%;
  position: relative;
}

#top-service-others .top-service-school-space article:last-child {
  margin-bottom: 0;
}

#top-service-others .top-service-school-space article .top-service-school-space-img {
  text-align: center;
  margin-bottom: 5%;
}

#top-service-others .top-service-school-space article .top-service-school-space-txtbox .top-service-school-space-ttl,
#top-service-others .top-service-school-space article .top-service-school-space-txtbox .top-service-school-space-txt {
  width: 80%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

#top-service-others .top-service-school-space article .top-service-school-space-txtbox .top-service-school-space-ttl {
  font-size: 4.5vw;
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 4%;
  border-bottom: 2px solid #b9856e;
}

#top-service-others .top-service-school-space article .top-service-school-space-txtbox .top-service-school-space-ttl .num {
  position: absolute;
  left: -15vw;
  font-size: 10vw;
  font-weight: 700;
  top: -1rem;
  line-height: 1;
  color: #b9856e;
}

#top-service-others .top-service-school-space article .top-service-school-space-txtbox .top-service-school-space-txt {
  width: 100% !important;
}

#top-service-others .top-service-school-space article .top-service-school-space-txtbox .eng {
  color: #fff;
  line-height: 1;
  font-weight: 900;
}

#top-service-others .top-service-school-space article .top-service-school-space-txt {
  font-size: 3.5vw;
  margin-bottom: 8%;
  letter-spacing: 0;
}

#top-service-others .top-service-school-space #top-service-school .eng {
  position: absolute;
  left: 3%;
  top: 3%;
  font-size: 10vw;
  z-index: 1;
}

#top-service-others .top-service-school-space #top-service-making .eng {
  position: absolute;
  left: 3%;
  top: 3%;
  font-size: 10vw;
  z-index: 1;
}

#top-design-degital {
  padding: 10% 0;
  background: #fff url(../img/top/top-entrust-sales-bg-rt.png) no-repeat right top/40%;
  padding-bottom: 10%;
}

#top-design-degital .top-design-degital-inbox {
  display: block;
}

#top-design-degital article {
  position: relative;
  margin-bottom: 10%;
  padding-bottom: 20%;
}

#top-design-degital article:last-child {
  margin-bottom: 0;
}

#top-design-degital article .eng {
  display: block;
  position: absolute;
  color: rgba(185, 133, 110, 0.2);
  font-weight: 900;
  font-size: 10vw;
}

#top-design-degital article .top-design-degital-ttl {
  width: 80%;
  position: relative;
  margin: 0 0 5% auto;
  font-size: 4.5vw;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 2px solid #b9856e;
}

#top-design-degital article .top-design-degital-ttl .num {
  position: absolute;
  left: -15vw;
  font-size: 10vw;
  font-weight: 700;
  top: 0;
  line-height: 1;
  color: #b9856e;
}

#top-design-degital .top-entrust-sales-txt,
#top-design-degital .top-design-degital-txt {
  margin-bottom: 10%;
}

#top-design-degital #top-design .eng {
  bottom: 0;
  left: 0;
}

#top-design-degital #top-degital .eng {
  display: block;
  bottom: 0;
  right: 0;
}

#top-equipment {
  margin-top: 10%;
}

#top-equipment a {
  padding: 8% 5%;
  box-sizing: border-box;
  margin: 0 auto;
  color: #fff;
  background: url(../img/top/top-equipment-banner-bg.png) no-repeat center left/cover;
  border-radius: 5px;
}

#top-equipment a span {
  display: block;
  line-height: 1;
}

#top-equipment a .eng {
  color: rgba(255, 255, 255, 0.08);
  font-size: 10vw;
  font-weight: 700;
}

#top-equipment a .ja {
  margin-top: -1rem;
  font-size: 4vw;
  font-weight: 500;
}

/*top-qa-company
=========================================================*/
#top-qa-company {
  padding: 8% 0;
  background: #583126;
}

#top-qa-company article {
  width: 48%;
  margin-right: 4%;
}

#top-qa-company article:last-child {
  margin-right: 0;
}

#top-qa-company article a {
  border-bottom: 1px solid #fff;
  display: block;
  padding-bottom: 5px;
  font-size: 3.5vw;
  color: #fff;
  transition: .2s all ease-in;
}

#top-qa-company article a:hover {
  opacity: .8;
}

#top-qa-company article .top-qa-company-img {
  margin-bottom: 5%;
}

#top-qa-company article .top-qa-company-ttl {
  position: relative;
}

#top-qa-company article .top-qa-company-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 2vw;
  height: 2vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-top: -1vw;
  transform: rotate(45deg);
}

/*top-news
=========================================================*/
#top-news {
  padding: 15% 0 20%;
  background: #fff url(../img/top/top-news-bg.png) no-repeat left top/30%;
}

#top-news .top-news-ttl {
  line-height: 1;
  margin-bottom: 8%;
  text-align: right;
}

#top-news .top-news-ttl span {
  display: block;
}

#top-news .top-news-ttl .eng {
  font-weight: 700;
  font-size: 10vw;
  color: #583126;
  margin-bottom: 3%;
}

#top-news .top-news-ttl .ja {
  font-weight: 700;
  font-size: 4.5vw;
  font-size: 900;
}

#top-news .top-news-wrp {
  position: relative;
}

#top-news .top-news-wrp .more-btn {
  margin-top: 5%;
}

#top-news .top-news-wrp .top-news-post {
  background: #fbf5f2;
  padding: 6%;
  box-sizing: border-box;
}

#top-news .top-news-wrp .top-news-post article {
  margin-bottom: 5%;
  font-size: 3.5vw;
}

#top-news .top-news-wrp .top-news-post article:last-child {
  margin-bottom: 0;
}

#top-news .top-news-wrp .top-news-post article a {
  flex-wrap: wrap;
}

#top-news .top-news-wrp .top-news-post article time, #top-news .top-news-wrp .top-news-post article .tag-name {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 10px;
  line-height: 1;
}

#top-news .top-news-wrp .top-news-post article time {
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  margin-right: 3%;
  font-size: 3vw;
  background: #b9856e;
}

#top-news .top-news-wrp .top-news-post article .tag-name {
  text-align: center;
  font-weight: 700;
  color: #b9856e;
}

#top-news .top-news-wrp .top-news-post article .top-news-post-ttl {
  width: 100%;
  line-height: 1.8;
  margin-top: 5%;
}

#top-news .top-news-wrp .top-news-post article .top-news-post-ttl span {
  border-bottom: 1px solid #b9856e;
}

/*=========================================================
	footer
=========================================================*/
#pagetop {
  position: fixed;
  right: 2.5%;
  bottom: 5%;
  z-index: 100;
}

#footer {
  padding: 15% 0 0;
  background: #583126;
  color: #fff;
}

#footer .ft-wrp {
  display: block;
  padding-bottom: 10%;
}

#footer .ft-wrp .ft-l {
  margin-bottom: 10%;
  text-align: center;
}

#footer .ft-wrp .ft-l .ft-logo {
  display: block;
  width: 40%;
  margin: 0 auto 10%;
}

#footer .ft-wrp .ft-l .ft-info {
  text-align: center;
  font-size: 3.2vw;
  letter-spacing: 0;
}

#footer .ft-wrp .ft-l .ft-info .ft-address {
  margin-bottom: 5px;
}

#footer .ft-wrp .ft-l .ft-info .ft-works-holiday {
  margin-bottom: 10%;
}

#footer .ft-wrp .ft-l .ft-info .ft-works-holiday .in-dl {
  margin-bottom: 5px;
  justify-content: center;
}

#footer .ft-wrp .ft-l .ft-info .ft-works-holiday .in-dl:last-child {
  margin-bottom: 0;
}

#footer .ft-wrp .ft-l .ft-info .ft-works-holiday .in-dl dt {
  margin-right: 10px;
  padding-right: 10px;
  line-height: 1;
  border-right: 1px solid #fff;
}

#footer .ft-wrp .ft-banner {
  transition: .2s all ease-in;
  display: block;
}

#footer .ft-wrp .ft-banner:hover {
  opacity: .8;
}

#footer .ft-wrp .ft-common-list {
  margin-bottom: 10%;
  justify-content: center;
}

#footer .ft-wrp .ft-common-list li {
  margin-right: 5%;
}

#footer .ft-wrp .ft-common-list li:last-child {
  margin-right: 0;
}

#footer .ft-wrp .ft-r .ft-contact {
  padding: 4% 0;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 8%;
}

#footer .ft-wrp .ft-r .ft-contact dt {
  font-size: 4vw;
  color: #583126;
  text-align: center;
  margin-bottom: 2%;
}

#footer .ft-wrp .ft-r .ft-contact dd ul {
  text-align: center;
  display: block;
}

#footer .ft-wrp .ft-r .ft-contact dd ul li {
  margin-bottom: 3%;
}

#footer .ft-wrp .ft-r .ft-contact dd ul li:last-child {
  margin-bottom: 0;
}

#footer .ft-wrp .ft-r .ft-contact dd ul li .ft-mail-btn {
  width: 80%;
  display: block;
  text-align: center;
  background: #b9856e;
  color: #fff;
  padding: 3% 0;
  font-weight: 500;
  border-radius: 5px;
  transition: .2s all ease-in;
  margin: 0 auto;
}

#footer .ft-wrp .ft-r .ft-contact dd ul li .ft-mail-btn span {
  position: relative;
  padding-right: 20px;
}

#footer .ft-wrp .ft-r .ft-contact dd ul li .ft-mail-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-top: -4px;
  transform: rotate(45deg);
}

#footer .ft-wrp .ft-r .ft-reserve {
  border: 1px solid #fff;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 4% 3%;
  text-align: center;
  margin-bottom: 10%;
  display: block;
}

#footer .ft-wrp .ft-r .ft-reserve dt {
  font-size: 4.5vw;
  line-height: 1.5;
  margin-bottom: 5%;
}

#footer .ft-wrp .ft-r .ft-reserve dt small {
  font-size: 3.5vw;
  display: block;
}

#footer .ft-wrp .ft-r .ft-reserve .more-btn {
  width: 80%;
  font-weight: 500;
}

#footer .ft-nav {
  display: none;
}

#footer #copyright {
  text-align: center;
  background: #fff;
  padding: 5px 0;
}

#footer #copyright small {
  color: #583126;
  font-size: 12px;
}

#footer #copyright small a {
  color: #583126;
}

/*=========================================================
	下層ページ
=========================================================*/
/*下層サブビジュアル
=========================================================*/
#ma {
  height: 20vh;
  background: url(../img/common/ma-bg.jpg) no-repeat center/cover;
}

#ma {
  background: #e6ddd9 url(../img/common/ma-bg.png) no-repeat left bottom/30%;
}

#ma .ma-inbox {
  width: 80%;
  height: 15vh;
  background: url(../img/common/ma-bg.jpg) no-repeat center/cover;
  border-radius: 5px;
}

.ma-ttl {
  letter-spacing: .5rem;
  color: #fff;
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 0.2rem;
  text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 5px, rgba(0, 0, 0, 0.1) -1px 1px 5px, rgba(0, 0, 0, 0.1) 1px -1px 5px, rgba(0, 0, 0, 0.1) -1px -1px 5px, rgba(0, 0, 0, 0.1) 1px 1px 8px, rgba(0, 0, 0, 0.1) -1px 1px 8px, rgba(0, 0, 0, 0.1) 1px -1px 8px, rgba(0, 0, 0, 0.1) -1px -1px 8px;
  text-align: center;
}

/*下層共通タイトル
=========================================================*/
.ttl01 {
  background: #583126;
  color: #fff;
  font-weight: 700;
  padding: 3%;
  box-sizing: border-box;
  margin-bottom: 3%;
  font-size: 4.5vw;
  line-height: 1.5;
  border-radius: 6px;
}

.ttl02 {
  border-left: 2px solid #b9856e;
  padding-left: 5%;
  box-sizing: border-box;
  font-size: 4.5vw;
  font-weight: 700;
  margin-bottom: 5%;
  line-height: 1.5;
  color: #b9856e;
}

.ttl02 small {
  font-size: 16px;
}

.ttl02.brwn-ttl {
  border-left: 3px solid #583126;
  color: #583126;
}

.ttl02.brwn-ttl small {
  font-size: 3.8vw;
}

.ttl03 {
  color: #b9856e;
  font-size: 4.5vw;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 3%;
  border-bottom: 2px solid #b9856e;
}

.common-ttl {
  text-align: center;
  font-weight: 700;
  font-size: 4.5vw;
  margin-bottom: 8%;
}

.common-ttl01 {
  background: #583126;
  color: #fff;
  font-weight: 700;
  padding: 3%;
  box-sizing: border-box;
  margin-bottom: 3%;
  font-size: 4.5vw;
  line-height: 1.5;
  border-radius: 6px;
}

.common-ttl02 {
  background: #b9856e;
  color: #fff;
  font-weight: 700;
  padding: 3%;
  box-sizing: border-box;
  margin-bottom: 5%;
  font-size: 4.5vw;
  line-height: 1.5;
  border-radius: 5px;
}

.common-ttl03 {
  background: #fff;
  color: #b9856e;
  font-weight: 700;
  padding: 3%;
  box-sizing: border-box;
  margin-bottom: 5%;
  font-size: 4.5vw;
  line-height: 1.5;
  border-radius: 6px;
}

/*下層共通パーツ
=========================================================*/
/*パンくず
=========================================================*/
#bread-clumb {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 10px 0 50px;
}

#bread-clumb li {
  position: relative;
  color: #583126;
  font-size: 14px;
  float: left;
  margin-right: 20px;
}

#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}

#bread-clumb li:last-child {
  margin-right: 0;
}

#bread-clumb li:last-child:after {
  display: none;
}

#bread-clumb li a {
  color: #583126;
}

/*共通テーブル
=========================================================*/
.com-dl > .in-dl dt, .com-dl > .in-dl dd {
  box-sizing: border-box;
  padding: 3%;
  font-size: 3.5vw;
}

.com-dl > .in-dl > dt {
  background: #583126;
  color: #fff;
}

.com-dl > .in-dl > dd {
  vertical-align: top;
}

.com-dl > .in-dl > dd a {
  color: #583126;
}

/*革茶屋について
=========================================================*/
#about-info {
  padding: 10% 0 20%;
  background: #faf3ef url(../img/about/about-info-bg-rb.png) no-repeat right bottom/60%;
}

#about-info .inbox {
  position: relative;
}

#about-info .about-info-ttl {
  position: relative;
  margin-bottom: 8%;
}

#about-info .about-info-ttl span {
  width: 100%;
  display: block;
}

#about-info .about-info-ttl .eng {
  text-align: right;
  font-weight: 700;
  position: absolute;
  right: 0%;
  top: -18vw;
  color: rgba(88, 49, 38, 0.25);
  font-size: 15vw;
  line-height: 1;
}

#about-info .about-info-ttl .sub {
  position: relative;
  z-index: 10;
  font-size: 3.5vw;
  margin-bottom: 3%;
  display: block;
  background: #b9856e;
  text-align: center;
  color: #fff;
  padding: 3% 0;
}

#about-info .about-info-ttl .main {
  font-size: 4.5vw;
  font-weight: 700;
  color: #583126;
}

#about-info .about-info-img {
  text-align: center;
  margin-bottom: 10%;
}

#greeting {
  padding: 10% 0;
  background: url(../img/about/ceo-bg.png) no-repeat right bottom/50%;
}

#greeting .inbox {
  position: relative;
}

#greeting .ceo-img {
  text-align: center;
  margin-bottom: 10%;
}

#greeting .greeting-ttl {
  position: relative;
  margin-bottom: 10%;
  line-height: 1;
}

#greeting .greeting-ttl .eng-bg {
  display: none;
}

#greeting .greeting-ttl .eng,
#greeting .greeting-ttl .main {
  display: block;
  font-weight: 700;
  position: relative;
  z-index: 10;
}

#greeting .greeting-ttl .eng {
  text-align: right;
  color: #b9856e;
  font-size: 10vw;
  margin-bottom: 3%;
}

#greeting .greeting-ttl .main {
  text-align: right;
  font-size: 4.5vw;
  color: #583126;
}

#greeting .greeting-txt p br {
  display: block !important;
}

#consign {
  padding: 15% 0 10%;
  background: url(../img/about/consign-bg-rt.png) no-repeat right top/40%, #583126 url(../img/about/consign-bg-rb.png) no-repeat right -15vw bottom/90%;
}

#consign .consign-info-wrp {
  display: block;
  margin-bottom: 15%;
}

#consign .consign-info-wrp .consign-info-ttlbox {
  color: #fff;
  margin-bottom: 10%;
}

#consign .consign-info-wrp .consign-info-ttlbox .consign-info-ttl {
  margin-bottom: 5%;
  line-height: 1;
}

#consign .consign-info-wrp .consign-info-ttlbox .consign-info-ttl span {
  font-weight: 700;
  display: block;
}

#consign .consign-info-wrp .consign-info-ttlbox .consign-info-ttl .eng {
  margin-bottom: 5%;
  font-size: 10vw;
}

#consign .consign-info-wrp .consign-info-ttlbox .consign-info-ttl .main {
  font-size: 4.5vw;
}

#consign .consign-info-wrp .consign-channel {
  background: #fff;
  border-radius: 10px;
  padding: 5%;
  position: relative;
  box-sizing: border-box;
}

#consign .consign-info-wrp .consign-channel .consign-channel-ttl {
  color: #b9856e;
  font-weight: 500;
  font-size: 4.2vw;
  padding-bottom: 2%;
  line-height: 1.2;
  margin-bottom: 3%;
  border-bottom: 1px solid #b9856e;
}

#consign .consign-info-wrp .consign-channel .total-access {
  position: absolute;
  right: 5%;
  top: 7%;
  text-align: right;
  font-size: 3vw;
  margin-bottom: 5%;
}

#consign .consign-info-wrp .consign-channel .consign-channel-list {
  margin-bottom: 5%;
}

#consign .consign-info-wrp .consign-channel .consign-channel-list li {
  position: relative;
  padding-left: 5vw;
  font-size: 4vw;
  font-weight: 500;
  margin-bottom: 2%;
}

#consign .consign-info-wrp .consign-channel .consign-channel-list li:last-child {
  margin-bottom: 0;
}

#consign .consign-info-wrp .consign-channel .consign-channel-list li:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b9856e;
}

#consign .consign-point-wrp {
  margin-bottom: 15%;
  color: #fff;
}

#consign .consign-point-wrp .consign-point-ttl {
  border-bottom: 2px solid #b9856e;
}

#consign-terms {
  margin-bottom: 15%;
  background: #faf3ef;
  border-radius: 10px;
  padding: 5% 5% 8%;
  box-sizing: border-box;
}

#consign-terms .consign-terms-wrp .common-consign-terms {
  margin-bottom: 10%;
}

#consign-terms .consign-terms-wrp .common-consign-terms:last-child {
  margin-bottom: 0;
}

#consign-terms .consign-terms-txt {
  font-size: 3.5vw;
}

#consign-flow .consign-flow-list {
  display: block;
}

#consign-flow .consign-flow-list > li {
  position: relative;
  color: #fff;
  border-radius: 6px;
  padding: 10% 5% 5%;
  background: #b9856e;
  margin-bottom: 15%;
}

#consign-flow .consign-flow-list > li:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: -18vw;
  left: 50%;
  width: 15vw;
  height: 15vw;
  background: url("../img/about/consign-arrow.png") no-repeat center/contain;
  margin-left: -9vw;
  z-index: 10;
  transform: rotate(90deg);
}

#consign-flow .consign-flow-list > li:last-child {
  margin-bottom: 0;
}

#consign-flow .consign-flow-list > li:last-child:before {
  display: none;
}

#consign-flow .consign-flow-list > li .consign-flow-ttl {
  position: relative;
  margin-bottom: 5%;
}

#consign-flow .consign-flow-list > li .consign-flow-ttl .step-box {
  padding-top: 3%;
  box-sizing: border-box;
  width: 15vw;
  height: 15vw;
  line-height: 1;
  text-align: center;
  border: solid 1px #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
}

#consign-flow .consign-flow-list > li .consign-flow-ttl .step-box span {
  font-weight: 700;
  display: block;
}

#consign-flow .consign-flow-list > li .consign-flow-ttl .step-box .step-txt {
  font-size: 3vw;
  margin-bottom: 1%;
}

#consign-flow .consign-flow-list > li .consign-flow-ttl .step-box .num {
  font-size: 6vw;
}

#consign-flow .consign-flow-list > li .consign-flow-ttl .main {
  display: block;
  width: 75%;
  margin-left: auto;
  border-bottom: 2px solid #fff;
  font-size: 4.5vw;
  padding-bottom: 3%;
  font-weight: 700;
}

#consign-flow .consign-flow-txt {
  font-size: 3.5vw;
}

#consign-flow .consign-flow-txt {
  margin-top: 5%;
  display: block;
}

#consign-flow .consign-flow-txt .com-tel {
  text-align: center;
  display: block;
  width: 80%;
  margin: 0 auto 5%;
}

#consign-flow .consign-flow-txt .common-mail {
  width: 60%;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 10px 0;
  text-align: center;
}

#consign-flow .consign-flow-txt .common-mail span {
  display: block;
  font-family: "Noto Serif JP", serif;
}

#consign-flow .consign-flow-txt .common-mail .txt {
  color: #583126;
}

#design {
  padding: 15% 0;
  background: #faf3ef url(../img/about/design-bg-lt.png) no-repeat left top/40%;
}

#design .design-ttl {
  text-align: center;
  margin-bottom: 5%;
  line-height: 1;
}

#design .design-ttl span {
  font-weight: 700;
  display: block;
}

#design .design-ttl .eng {
  margin-bottom: 4%;
  font-size: 10vw;
  color: rgba(185, 133, 110, 0.5);
}

#design .design-ttl .main {
  font-size: 4.5vw;
  color: #b9856e;
}

#design .consign-point-ttl {
  border-bottom: 2px solid #b9856e;
  color: #b9856e;
}

#design .design-txt {
  font-size: 3.5vw;
  margin-bottom: 15%;
  text-align: center;
}

#design .design-txt br {
  display: none;
}

#design .more-btn {
  width: 85%;
  padding: 4% 0;
}

#degital {
  padding: 15% 0 0;
}

#degital .degital-ttl {
  text-align: center;
  margin-bottom: 5%;
  line-height: 1;
}

#degital .degital-ttl span {
  font-weight: 700;
  display: block;
  color: #b9856e;
}

#degital .degital-ttl .eng {
  margin-bottom: 4%;
  font-size: 10vw;
}

#degital .degital-ttl .main {
  font-size: 4.5vw;
}

#degital .degital-txt {
  text-align: center;
  margin-bottom: 10%;
}

#degital .degital-point {
  margin-bottom: 8%;
}

#degital .degital-point article {
  padding: 15% 5% 7%;
  box-sizing: border-box;
  background: #faf3ef;
  margin-bottom: 10%;
}

#degital .degital-point article:last-child {
  margin-bottom: 0;
}

#degital .degital-point article .consign-point-ttl {
  color: #b9856e;
  padding-left: 5%;
  box-sizing: border-box;
  border-bottom: 2px solid #b9856e;
}

#degital #price {
  padding: 5%;
  box-sizing: border-box;
  background: #faf3ef;
}

#degital #price .price-dl .in-dl {
  font-size: 3.5vw;
  display: block;
  padding-bottom: 3%;
  margin-bottom: 3%;
  border-bottom: 1px solid #b9856e;
}

#degital #price .price-dl .in-dl:last-of-type {
  margin-bottom: 0;
}

#degital #price .price-dl .in-dl dt {
  font-weight: 500;
}

#degital #price .price-dl .in-dl dd {
  text-align: right;
}

#degital #price .price-txt {
  margin-top: 10%;
}

#degital #price .price-txt li {
  margin-bottom: 8px;
}

#degital #price .price-txt li:last-child {
  margin-bottom: 0;
}

.common-point {
  margin-bottom: 15%;
  display: block;
}

.common-point article {
  margin-bottom: 15%;
}

.common-point article:last-of-type {
  margin-bottom: 0;
}

.common-point article .consign-point-ttl {
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 4%;
  line-height: 1;
}

.common-point article .consign-point-ttl .point {
  margin-right: 3%;
  width: 12%;
  position: relative;
  font-weight: 700;
}

.common-point article .consign-point-ttl .point span {
  display: block;
}

.common-point article .consign-point-ttl .point .num {
  font-size: 8vw;
}

.common-point article .consign-point-ttl .point .txt {
  position: absolute;
  left: -3vw;
  top: -5vw;
  transform: rotate(-22deg);
}

.common-point article .consign-point-ttl .main {
  width: 85%;
  font-size: 4.3vw;
  letter-spacing: 0;
  font-weight: 500;
}

/*
=========================================================*/
/*下層ページ
=========================================================*/
/*ものづくりスペース
=========================================================*/
#contents-u.craftspace-u {
  padding: 35% 0 40%;
  background: url(../img/craftspace/about-craftspace-lt.png) no-repeat left top/30%, url(../img/craftspace/about-craftspace-rb.png) no-repeat right bottom/40%;
  position: relative;
}

#contents-u.craftspace-u .about-craftspace-img {
  position: absolute;
  width: 45%;
  padding-top: 25%;
  opacity: .4;
}

#contents-u.craftspace-u .about-craftspace-l {
  right: 0;
  top: .5%;
  background: url(../img/craftspace/about-craftspace-l.png) no-repeat center/cover;
}

#contents-u.craftspace-u .about-craftspace-r {
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 30%;
  background: url(../img/craftspace/about-craftspace-r.png) no-repeat center/cover;
}

#contents-u.craftspace-u #about-craftspace .about-craftspace-ttl {
  margin-bottom: 5%;
  text-align: center;
}

#contents-u.craftspace-u #about-craftspace .about-craftspace-ttl span {
  font-weight: 700;
  display: block;
}

#contents-u.craftspace-u #about-craftspace .about-craftspace-ttl .eng {
  font-size: 10vw;
  color: #b9856e;
}

#contents-u.craftspace-u #about-craftspace .about-craftspace-ttl .main {
  font-size: 4.5vw;
  color: #583126;
}

#contents-u.craftspace-u #about-craftspace .about-craftspace-txt {
  margin-bottom: 10%;
  text-align: left;
}

#contents-u.craftspace-u #about-craftspace .about-craftspace-txt p {
  margin-bottom: 5%;
}

#contents-u.craftspace-u #about-craftspace .about-craftspace-txt p:last-child {
  margin-bottom: 0;
}

#contents-u.craftspace-u .about-craftspace-point {
  margin-bottom: 15%;
}

#contents-u.craftspace-u .about-craftspace-point article {
  padding: 13% 5% 5%;
  box-sizing: border-box;
  background: #faf3ef;
  margin-bottom: 5%;
}

#contents-u.craftspace-u .about-craftspace-point article:last-child {
  margin-bottom: 0;
}

#contents-u.craftspace-u .about-craftspace-point article .consign-point-ttl {
  border-bottom: 2px solid #b9856e;
  padding-left: 15px;
  box-sizing: border-box;
  color: #b9856e;
}

#contents-u.craftspace-u .about-craftspace-point article .consign-point-ttl .main {
  font-size: 4.5vw;
  width: 100%;
}

#contents-u.craftspace-u #craftspace-price .craftspace-price-dl-wrp {
  display: block;
}

#contents-u.craftspace-u #craftspace-price .craftspace-price-dl-wrp .craftspace-price-dl {
  margin-bottom: 5%;
  padding: 7%;
  box-sizing: border-box;
  background: #faf3ef;
}

#contents-u.craftspace-u #craftspace-price .craftspace-price-dl-wrp .craftspace-price-dl:last-child {
  margin-bottom: 0;
}

#contents-u.craftspace-u #craftspace-price .craftspace-price-dl-wrp .craftspace-price-dl .in-dl {
  display: block;
  padding-bottom: 3%;
  margin-bottom: 3%;
  border-bottom: 1px solid #b9856e;
}

#contents-u.craftspace-u #craftspace-price .craftspace-price-dl-wrp .craftspace-price-dl .in-dl:last-child {
  margin-bottom: 0;
  padding-bottom: none;
  border-bottom: none;
}

#contents-u.craftspace-u #craftspace-price .craftspace-price-dl-wrp .craftspace-price-dl .in-dl dt {
  font-weight: 700;
}

#contents-u.craftspace-u #craftspace-price .craftspace-price-dl-wrp .craftspace-price-dl .in-dl dd {
  text-align: right;
}

#contents-u.craftspace-u .craftspace-price-txt {
  margin: 10% 0;
}

#contents-u.craftspace-u .craftspace-price-txt p {
  margin-bottom: 8px;
}

#contents-u.craftspace-u .craftspace-price-txt p:last-child {
  margin-bottom: 0;
}

#contents-u.craftspace-u .craftspace-price-txt .more-btn-wrp {
  margin-bottom: 10%;
}

.common-equipment-banner a {
  width: 100%;
  padding: 10% 5%;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 10px;
  color: #fff;
  background: url(../img/craftspace/common-equipment-banner-bg.jpg) no-repeat center left/contain;
}

.common-equipment-banner a span {
  display: block;
  line-height: 1;
}

.common-equipment-banner a .eng {
  color: rgba(255, 255, 255, 0.08);
  font-size: 10vw;
  font-weight: 700;
}

.common-equipment-banner a .ja {
  margin-top: -1rem;
  font-size: 4.5vw;
  font-weight: 500;
}

/*レザークラフト体験＆教室
=========================================================*/
#contents-u.experience-u {
  padding: 0;
}

#contents-u.experience-u #leather-claft-experience {
  padding: 15% 0;
  background: #faf3ef url(../img/experience/leather-claft-experience-bg-rt.png) no-repeat top right;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-ttl {
  text-align: center;
  margin-bottom: 10%;
  color: #b9856e;
  line-height: 1;
  font-weight: 700;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-ttl span {
  display: block;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-ttl .sub-eng {
  font-size: 4vw;
  margin-bottom: 3%;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-ttl .eng {
  font-size: 10vw;
  margin-bottom: 3%;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-ttl .main {
  font-size: 4.5vw;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-point article {
  margin-bottom: 5%;
  background: #583126;
  border-radius: 10px;
  padding: 13% 5% 5%;
  box-sizing: border-box;
  color: #fff;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-point article:last-child {
  margin-bottom: 0;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-point article .consign-point-ttl {
  padding-left: 3%;
  box-sizing: border-box;
  border-bottom: solid #fff 2px;
}

#contents-u.experience-u #leather-claft-experience .leather-claft-experience-point article .consign-point-txt {
  font-size: 3.5vw;
}

#contents-u.experience-u #experience-menu {
  margin-bottom: 5%;
}

#contents-u.experience-u #experience-menu .common-experience-menu {
  margin-bottom: 10%;
  display: block;
}

#contents-u.experience-u #experience-menu .common-experience-menu:last-child {
  margin-bottom: 0;
}

#contents-u.experience-u #experience-menu .common-experience-menu .experience-menu-img {
  text-align: center;
  margin-bottom: 5%;
}

#contents-u.experience-u #experience-menu .experience-menu-txt br {
  display: block;
}

#contents-u.experience-u .common-experience-menu-catch {
  font-weight: 500;
  margin-bottom: 8%;
}

#contents-u.experience-u #leather-claft-school {
  padding: 15% 0;
}

#contents-u.experience-u #leather-claft-school .leather-claft-experience-ttl {
  text-align: center;
  margin-bottom: 10%;
  color: #b9856e;
  line-height: 1;
  font-weight: 700;
}

#contents-u.experience-u #leather-claft-school .leather-claft-experience-ttl span {
  display: block;
}

#contents-u.experience-u #leather-claft-school .leather-claft-experience-ttl .sub-eng {
  color: #a4a4a4;
  font-size: 4vw;
  margin-bottom: 3%;
}

#contents-u.experience-u #leather-claft-school .leather-claft-experience-ttl .eng {
  color: #a4a4a4;
  font-size: 10vw;
  margin-bottom: 3%;
}

#contents-u.experience-u #leather-claft-school .leather-claft-experience-ttl .main {
  font-size: 4.5vw;
}

#contents-u.experience-u #leather-claft-school .leather-claft-school-wrp article {
  padding: 12% 5% 5%;
  box-sizing: border-box;
  background: #faf3ef;
  margin-bottom: 5%;
}

#contents-u.experience-u #leather-claft-school .leather-claft-school-wrp article:last-child {
  margin-bottom: 0;
}

#contents-u.experience-u #leather-claft-school .leather-claft-school-wrp article .consign-point-ttl {
  color: #b9856e;
  font-size: 4.5vw;
  padding-left: 2%;
  box-sizing: border-box;
  border-bottom: 2px solid #b9856e;
}

#contents-u.experience-u #leather-claft-school .leather-claft-school-wrp article .consign-point-txt {
  font-size: 3.5vw;
}

#contents-u.experience-u #leather-claft-school #school-menu {
  margin-bottom: 10%;
}

#contents-u.experience-u #leather-claft-school #school-menu .common-school-menu {
  margin-bottom: 10%;
  display: block;
}

#contents-u.experience-u #leather-claft-school #school-menu .common-school-menu:last-child {
  margin-bottom: 0;
}

#contents-u.experience-u #leather-claft-school #school-menu .common-school-menu .school-menu-img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5%;
}

#contents-u.experience-u #leather-claft-school #school-menu .common-school-menu .school-menu-txtbox br {
  display: block;
}

#contents-u.experience-u #leather-claft-school #school-price .school-price-wrp {
  display: block;
  margin-bottom: 8%;
}

#contents-u.experience-u #leather-claft-school #school-price .school-price-wrp .common-school-price {
  margin-bottom: 10%;
}

#contents-u.experience-u #leather-claft-school #school-price .school-price-wrp .common-school-price:last-child {
  margin-bottom: 0;
}

#contents-u.experience-u #leather-claft-school #school-price .school-price-wrp .common-dl-list {
  margin-bottom: 3%;
}

#contents-u.experience-u #leather-claft-school #school-price .school-price-wrp .common-school-txt p {
  margin-bottom: 2%;
}

#free-space {
  padding: 15% 0;
  background: #f3dfd6 url(../img/experience/free-space-bg-lt.png) no-repeat left top/30%;
}

#free-space .free-space-ttl {
  text-align: center;
  margin-bottom: 10%;
}

#free-space .free-space-ttl span {
  display: block;
  color: #b9856e;
  font-weight: 700;
  line-height: 1;
}

#free-space .free-space-ttl .eng {
  font-size: 10vw;
  margin-bottom: 3%;
}

#free-space .free-space-ttl .main {
  font-size: 4.5vw;
}

#free-space .free-space-wrp {
  margin-bottom: 8%;
}

#free-space .free-space-wrp article {
  margin-bottom: 5%;
  padding: 8% 6% 6%;
  box-sizing: border-box;
  border-radius: 5px;
  background: #fff;
}

#free-space .free-space-wrp article:last-child {
  margin-bottom: 0;
}

#free-space .free-space-wrp article .free-space-txt p {
  margin-bottom: 3%;
}

#free-space .free-space-wrp article .free-space-txt p:last-child {
  margin-bottom: 0;
}

#free-space #free-space-price {
  margin-bottom: 8%;
}

#free-space #free-space-price .free-space-price-box {
  display: block;
}

#free-space #free-space-price .common-dl-list {
  margin-bottom: 6%;
}

#free-space #free-space-price .free-space-price-txtbox p {
  margin-bottom: 4%;
}

#free-space #free-space-price .free-space-price-txtbox .more-btn {
  margin-top: 8%;
}

.common-dl-list {
  background: #faf3ef;
  padding: 6%;
}

.common-dl-list .in-dl {
  display: block;
  font-size: 3.5vw;
  letter-spacing: 0;
  margin-bottom: 3%;
  box-sizing: border-box;
  padding-bottom: 3%;
  border-bottom: 1px solid #b9856e;
}

.common-dl-list .in-dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.common-dl-list .in-dl dt {
  margin-bottom: 3%;
  font-weight: 500;
}

.common-dl-list .in-dl dd {
  text-align: right;
}

/*機材
=========================================================*/
#contents-u.equipment-u {
  background: url(../img/equipment/equipment-bg-line.jpg) repeat-x top left/120%, #bfafa2 url(../img/equipment/equipment-bg-triungle.png) no-repeat right top/60%;
}

#all-equipment .all-equipment-ttl {
  text-align: center;
  margin-bottom: 5%;
}

#all-equipment .all-equipment-ttl span {
  display: block;
  font-weight: 700;
  line-height: 1;
}

#all-equipment .all-equipment-ttl .eng {
  color: #e6ddd9;
  font-size: 10vw;
  margin-bottom: 3%;
}

#all-equipment .all-equipment-ttl .main {
  color: #583126;
  font-size: 4.5vw;
}

#all-equipment .post-tag-box .common-equipment-post {
  margin-bottom: 10%;
}

#all-equipment .post-tag-box .common-equipment-post:last-child {
  margin-bottom: 0;
}

#all-equipment .equipment-post {
  margin-bottom: 10%;
}

#all-equipment .equipment-post article {
  width: 48%;
  margin: 8% 4% 0 0;
}

#all-equipment .equipment-post article:nth-child(2n) {
  margin-right: 0;
}

#all-equipment .equipment-post article:nth-child(-n + 2) {
  margin-top: 0;
}

#all-equipment .equipment-post article .com-img {
  padding-top: 70%;
  background: #ccc url(../img/common/no-img.jpg) no-repeat center/cover;
  margin-bottom: 3%;
}

#all-equipment .equipment-post article .equipment-post-ttl {
  font-weight: 500;
  color: #583126;
  font-size: 3.2vw;
  padding-bottom: 3%;
  line-height: 1.5;
  border-bottom: 2px solid #583126;
  margin-bottom: 3%;
}

/*機材詳細
=========================================================*/
#s-equipment .s-equipment-box .tag-name {
  text-align: right;
  margin-bottom: 5%;
}

#s-equipment .s-equipment-box .tag-name li {
  padding: 5px 10px;
  font-size: 3vw;
  background: #fff;
  color: #583126;
  border-radius: 5px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  border: solid 1px #583126;
}

#s-equipment #main-thumb {
  margin-bottom: 5%;
  display: block;
}

#s-equipment #main-thumb .equipment-main-img {
  width: 100%;
  padding-top: 80%;
  margin-bottom: 5%;
  background: url(../img/common/main-no-img.jpg) no-repeat center/cover;
}

#s-equipment #main-thumb .equipment-thumb-list {
  padding-bottom: 5%;
  overflow-x: scroll;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

#s-equipment #main-thumb .equipment-thumb-list li {
  flex: 0 0 20vw;
  margin-right: 3%;
  width: 20vw;
  padding-top: 20vw;
}

#s-equipment #equipment-info article {
  margin-bottom: 10%;
}

#s-equipment #equipment-info article:last-child {
  margin-bottom: 0;
}

#s-equipment #equipment-info #equipment-description .in-dl {
  margin-bottom: 8%;
}

#s-equipment #equipment-info #equipment-description .in-dl:last-child {
  margin-bottom: 0;
}

#s-equipment #equipment-info #equipment-description .in-dl dt {
  color: #b9856e;
  font-weight: 500;
  font-size: 4.2vw;
  margin-bottom: 3%;
}

#s-equipment #equipment-price .equipment-price-dl {
  background: #faf3ef;
  padding: 6%;
  box-sizing: border-box;
}

#s-equipment #equipment-price .equipment-price-dl .in-dl {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 3%;
  border-bottom: 1px dotted #583126;
}

#s-equipment #equipment-price .equipment-price-dl .in-dl:last-child {
  padding-bottom: none;
  margin-bottom: 0;
  border-bottom: none;
}

#s-equipment #equipment-price .equipment-price-dl dt, #s-equipment #equipment-price .equipment-price-dl dd {
  font-size: 3.5vw;
}

#s-equipment #equipment-price .equipment-price-dl dt {
  font-weight: 500;
  margin-bottom: 3%;
}

#s-equipment #equipment-price .equipment-price-dl dd {
  text-align: right;
}

#s-equipment #equipment-coution .equipment-coution-list li {
  padding-left: 5%;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 3%;
  font-size: 3.5vw;
}

#s-equipment #equipment-coution .equipment-coution-list li:last-child {
  margin-bottom: 0;
}

#s-equipment #equipment-coution .equipment-coution-list li:before {
  content: "";
  position: absolute;
  display: block;
  top: 1rem;
  right: auto;
  bottom: auto;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b9856e;
}

/*商品紹介
=========================================================*/
#contents-u.products-u {
  padding: 0;
}

#feature {
  padding: 10% 0;
  background: #faf3ef url(../img/products/feature-bg-rb.png) no-repeat right bottom;
}

#feature .feature-ttl {
  margin-bottom: 8%;
}

#feature .feature-ttl span {
  display: block;
  font-weight: 700;
  line-height: 1;
}

#feature .feature-ttl .eng {
  color: #583126;
  font-weight: 900;
  font-size: 10vw;
  margin-bottom: 3%;
}

#feature .feature-ttl .main {
  color: #333;
  font-size: 4vw;
}

#feature .feature-ttl .main em {
  color: #b9856e;
}

#feature .feature-info article {
  position: relative;
  margin-bottom: 10%;
}

#feature .feature-info article:last-child {
  margin-bottom: 0;
}

#feature .feature-info article .feature-info-img {
  text-align: center;
  margin-bottom: 10%;
}

#feature .feature-info article .feature-info-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 5%;
}

#feature .feature-info article .feature-info-box .feature-info-box-ttl {
  margin-bottom: 4%;
}

#feature .feature-info article .feature-info-box .feature-info-box-ttl .num {
  width: 15%;
  margin-right: 5%;
}

#feature .feature-info article .feature-info-box .feature-info-box-ttl .main {
  font-weight: 500;
  line-height: 1.5;
  color: #b9856e;
  font-size: 4.5vw;
  width: 80%;
}

#keycase {
  padding: 15% 0 10%;
  background: #faf3ef url(../img/products/keycase-bg.png) no-repeat left top/30%;
}

#keycase .keycase-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 8%;
}

#keycase .keycase-ttl span {
  display: block;
  line-height: 1;
  font-weight: 900;
}

#keycase .keycase-ttl .eng {
  position: absolute;
  right: 0;
  bottom: 50px;
  font-size: 15vw;
  color: rgba(187, 187, 187, 0.5);
  margin-bottom: 3%;
}

#keycase .keycase-ttl .main {
  z-index: 5;
  position: relative;
  margin-bottom: 4%;
  font-size: 4.5vw;
}

#keycase .keycase-ttl .main strong {
  font-size: 6vw;
}

#keycase .keycase-ttl .main small {
  font-size: 4.2vw;
}

#keycase .keycase-ttl .main .color {
  color: #b9856e;
}

#keycase .keycase-ttl .sub {
  position: relative;
  z-index: 5;
  width: 80%;
  margin: 0 auto;
  background: #583126;
  padding: 3% 0;
  text-align: center;
  color: #fff;
  font-size: 3.5vw;
}

#keycase .keycase-box {
  display: block;
}

#keycase .keycase-box .keycase-img {
  text-align: center;
  margin-bottom: 5%;
}

#keycase .keycase-box .keycase-txt em {
  font-weight: 700;
}

#keycase .keycase-box .keycase-txt strong {
  font-size: 4.2vw;
  font-weight: 700;
  color: #b9856e;
}

#gallery {
  padding: 10% 0 20%;
}

#gallery .gallery-ttl {
  text-align: center;
  margin-bottom: 10%;
}

#gallery .gallery-ttl span {
  color: #b9856e;
  display: block;
  font-weight: 700;
  line-height: 1;
}

#gallery .gallery-ttl .eng {
  font-weight: 900;
  font-size: 10vw;
  margin-bottom: 3%;
}

#gallery .gallery-ttl .main {
  font-size: 4.5vw;
}

#gallery .all-gallery-post-list article {
  width: 48%;
  margin: 8% 4% 0 0;
  border-bottom: 1px solid #583126;
}

#gallery .all-gallery-post-list article:nth-child(2n) {
  margin-right: 0;
}

#gallery .all-gallery-post-list article:nth-child(-n + 2) {
  margin-top: 0;
}

#gallery .all-gallery-post-list article a {
  display: block;
  padding-bottom: 3%;
}

#gallery .all-gallery-post-list article a .com-img {
  height: 160px;
  background: url(../img/common/no-img.jpg) no-repeat center/cover;
  margin-bottom: 3%;
}

#gallery .all-gallery-post-list article a .gallery-post-ttl {
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1.5;
  color: #583126;
}

/*会社概要
=========================================================*/
#contents-u.company-u {
  padding-bottom: 0;
}

#access {
  padding: 0 0 15%;
}

#access .access-ttl {
  text-align: center;
  margin-bottom: 8%;
}

#access .access-ttl span {
  display: block;
  color: #b9856e;
  line-height: 1;
  font-weight: 700;
}

#access .access-ttl .eng {
  margin-bottom: 3%;
  font-size: 10vw;
}

#access .access-ttl .main {
  font-size: 4.5vw;
}

#access .access-txt {
  text-align: center;
  font-weight: 500;
  font-size: 3.8vw;
  margin-bottom: 5%;
}

#access .map-iframe {
  height: 25vh;
  margin-bottom: 8%;
}

#access .access-info {
  display: block;
  margin-bottom: 8%;
  padding-bottom: 10%;
  position: relative;
}

#access .access-info .access-info-eng {
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 900;
  font-size: 15vw;
  color: rgba(185, 133, 110, 0.14);
  line-height: 1;
}

#access .access-info article {
  margin-bottom: 10%;
}

#access .access-info article:last-child {
  margin-bottom: 0;
}

#access .parking-info .parking-info-box {
  display: block;
}

#access .parking-info .parking-info-box .parking-iframe {
  margin-bottom: 8%;
  width: 100%;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}

#access .parking-info .parking-info-box .parking-iframe iframe {
  width: 100%;
  height: 100%;
}

#access .parking-info .parking-info-box .parking-iframe:last-of-type {
  margin-bottom: 0;
}

#company-info {
  background: #bfafa2 url(../img/company/company-bg-rt.png) no-repeat right top/90%;
  padding: 10% 0;
}

#company-info .company-ttl {
  text-align: center;
  margin-bottom: 10%;
}

#company-info .company-ttl span {
  display: block;
  color: #b9856e;
  line-height: 1;
  font-weight: 700;
}

#company-info .company-ttl .eng {
  color: #d1d1d1;
  margin-bottom: 3%;
  font-size: 10vw;
}

#company-info .company-ttl .main {
  color: #583126;
  font-size: 4.5vw;
}

#company-info .company-box {
  display: block;
  padding: 5% 5% 5%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
}

#company-info .company-img {
  margin-bottom: 10%;
}

#company-info .company-dl {
  margin-bottom: 0;
}

/*よくあるご質問
=========================================================*/
#contents-u.qa-u {
  padding: 0;
  background: url(../img/qa/qa-top-line.png) repeat-x left top/100%, url(../img/qa/qa-bg-rt.png) no-repeat right top/30%, #e6ddd9 url(../img/qa/qa-bg-lb.png) no-repeat left bottom/30%;
}

#all-qa {
  padding: 10% 0;
}

#all-qa .qa-ttl {
  text-align: center;
  margin-bottom: 5%;
}

#all-qa .qa-ttl span {
  display: block;
  color: #b9856e;
  line-height: 1;
  font-weight: 700;
}

#all-qa .qa-ttl .eng {
  color: rgba(187, 187, 187, 0.6);
  margin-bottom: 3%;
  font-size: 7vw;
  letter-spacing: .5rem;
}

#all-qa .qa-ttl .main {
  color: #583126;
  font-size: 4.5vw;
}

#all-qa .tag-list {
  margin-bottom: 8%;
}

#all-qa .common-qa {
  margin-bottom: 10%;
}

#all-qa .common-qa:last-child {
  margin-bottom: 0;
}

#all-qa .all-qa-dl {
  padding: 5% 5% 7%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
}

#all-qa .all-qa-dl .in-dl {
  box-sizing: border-box;
  margin-bottom: 5%;
  padding-bottom: 5%;
  border-bottom: 1px solid #ccc;
}

#all-qa .all-qa-dl .in-dl:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

#all-qa .all-qa-dl .in-dl dt, #all-qa .all-qa-dl .in-dl dd {
  width: 85%;
  margin-left: auto;
  box-sizing: border-box;
  position: relative;
}

#all-qa .all-qa-dl .in-dl dt .q-icon,
#all-qa .all-qa-dl .in-dl dt .a-icon, #all-qa .all-qa-dl .in-dl dd .q-icon,
#all-qa .all-qa-dl .in-dl dd .a-icon {
  position: absolute;
  top: 0;
  left: -13vw;
  font-size: 5vw;
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
}

#all-qa .all-qa-dl .in-dl dt {
  padding: 2% 3%;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 4vw;
  font-weight: 700;
  margin-bottom: 5%;
  background: #f1e8e4;
}

#all-qa .all-qa-dl .in-dl dt .q-icon {
  background: #583126;
  color: #fff;
}

#all-qa .all-qa-dl .in-dl dd .a-icon {
  font-weight: 700;
  background: #f1e8e4;
}

/*お知らせ一覧
=========================================================*/
.post-wrp .tag-change li a {
  border: solid 1px #583126;
  color: #583126;
  background: #fff;
}

.post-wrp .tag-change .current a {
  background: #583126;
}

.post-wrp .tag-change .current a span {
  color: #fff;
}

.post-wrp .all-post-list article {
  border-bottom: 1px solid #583126;
}

.post-wrp .all-post-list article a {
  color: #583126;
}

.post-wrp .all-post-list article .tag-time {
  display: block;
  color: #583126;
}

.post-wrp .all-post-list article a .tag-name {
  border: solid 1px #583126;
}

.post-wrp .all-post-list article a .tag-name span {
  color: #583126;
}

.post-wrp .all-post-list article a time {
  background: #583126;
  width: 100px;
  font-size: 10px;
  margin-left: auto;
}

.post-wrp .all-post-list article a time span {
  color: #fff;
}

.post-wrp .all-post-list article a time span:before {
  border-left: #fff solid 5px;
}

/*お知らせ個別
=========================================================*/
#contents-u.s-post .sb_style h1 {
  border-bottom: 1px solid #583126;
}

#contents-u.s-post .sb_style h2 {
  border-left: 5px solid #583126;
}

#contents-u.s-post .sb_style h3 {
  background: #583126;
  color: #fff;
}

#contents-u.s-post .sb_style h4:before {
  background: #583126;
}

#contents-u.s-post .sb_style h5 {
  background: #f2f2f2;
}

#contents-u.s-post .sb_style h6 {
  color: #583126;
}

#contents-u.s-post .sb_style ul li:before {
  background: #583126;
}

#contents-u.s-post .sb_style ol li:before {
  color: #fff;
  background: #583126;
}

#contents-u.s-post .sb_style a {
  color: #583126;
}

#contents-u.s-post .s-time-tag {
  text-align: right;
  margin-top: 100px;
  padding-top: 10px;
  border-top: 1px solid #583126;
}

#contents-u.s-post .s-time-tag time {
  color: #583126;
  font-weight: bold;
}

#contents-u.s-post .tag-name {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 20px;
  box-sizing: border-box;
  border: solid 1px #583126;
  margin-bottom: 3%;
  font-size: 10px;
  line-height: 1;
  color: #583126;
}

#contents-u.s-post .tag-name span {
  color: #583126;
}

/*お問い合わせ
=========================================================*/
.cont-dl .in-dl dt {
  background: none;
  color: #b9856e;
  line-height: 1;
  font-weight: 700;
  padding: 2% 3%;
  border-left: 2px solid #b9856e;
}

.cont-dl .in-dl dt .hissu {
  background: #b9856e;
  color: #fff;
}

.cont-dl .in-dl dd input[type="text"],
.cont-dl .in-dl dd input[type="num"] {
  border: solid #ccc 1px;
  background: #fff;
}

.cont-dl .in-dl dd textarea {
  border: solid #ccc 1px;
  background: #fff;
}

.upload-item-wrap .thumb {
  width: 40vw;
  height: 40vw;
}

.contact-btn ul li #form-btn {
  border: solid 1px #583126;
  background-color: #583126;
}

.contact-btn ul li:hover #form-btn {
  color: #583126;
  background: #fff;
}

/*pagenation
--------------------------------------------*/
ul.pagenation li a {
  color: #38322d;
}

ul.pagenation li.current {
  color: #fff;
  background: #583126;
}

/*page-btn
--------------------------------------------*/
.page-btn .left a:before {
  border-right: solid #583126 5px;
}

.page-btn .right a:before {
  border-left: solid #583126 5px;
}

/*サイトマップ
=========================================================*/
#site-map ul li {
  border-bottom: 1px solid #583126;
}

#site-map ul li a {
  color: #583126;
}

#site-map ul li a:before {
  border-left: 8px solid #583126;
}

#site-map ul li a:hover {
  color: #583126;
}

#site-map ul li a:hover:before {
  left: 10px;
}

/*404
=========================================================*/
.not-found-txt p a {
  color: #583126;
}

/*リキャプチャ---------------*/
#recap-id {
  padding: 20px 0;
}

.recap-inwrap {
  width: 300px;
  margin: 0 auto 10%;
}

/*送信完了---------------*/
.send-comp {
  text-align: center;
}

.send-comp p {
  line-height: 1.5em;
}

.send-comp-ttl {
  font-weight: bold;
  font-size: 4.2vw;
  margin-bottom: 30px;
}

/*ドロワーメニュー
------------------------------------------------------*/
.drawer-nav {
  text-align: left;
  padding: 15% 3% 10% !important;
  box-sizing: border-box;
  background: rgba(232, 215, 208, 0.95);
}

.drawer-nav .drawer-menu > li {
  border-bottom: 1px solid #b9856e;
}

.drawer-nav .drawer-menu > li:last-child {
  margin-bottom: 0;
}

.drawer-nav .drawer-menu > li a {
  font-size: 3.2vw;
  display: block;
  padding: 3% 5%;
  box-sizing: border-box;
  font-weight: bold;
  color: #583126;
}

.drawer-dropdown-menu {
  padding: 10% 0 5% !important;
  background: none !important;
}

.drawer-dropdown-menu li {
  font-size: 0.9rem;
  margin-bottom: 3%;
  padding-left: 30px;
  box-sizing: border-box;
}

.drawer-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.drawer-dropdown-menu li a {
  position: relative;
}

.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-nav,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  z-index: 100000 !important;
}

.drawer--right.drawer-open .drawer-hamburger {
  top: 1%;
  right: 2.5% !important;
  z-index: 1000000 !important;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #fff !important;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent !important;
}

.drawer-toggle.drawer-hamburger {
  background: #b9856e !important;
  right: 2% !important;
  top: 1%;
}

.drawer-hamburger {
  padding: 18px .75rem 24px;
}

.drawer-hamburger-icon {
  margin-top: 5px;
}

.drawer-hamburger-icon:before {
  top: -8px;
}

.drawer-hamburger-icon:after {
  top: 8px;
}

.sp-tel {
  text-align: center;
  box-sizing: border-box;
}

.sp-tel a {
  font-weight: 700;
  letter-spacing: .1rem;
  font-size: 5vw;
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-common-list {
  margin: 5% 0;
}

.sp-common-list .sp-sns-list {
  width: 30%;
  margin-right: 3%;
}

.sp-common-list .sp-sns-list li {
  width: 25%;
  margin-right: 8%;
}

.sp-common-list .sp-sns-list li:last-child {
  margin-right: 0;
}

.sp-common-list .sp-banner {
  display: block;
  width: 65%;
}

.sp-sitemap {
  margin-bottom: 8%;
}

.sp-sitemap li {
  margin-right: 3%;
  padding-right: 3%;
  line-height: 1;
  border-right: 1px solid #b9856e;
}

.sp-sitemap li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.sp-sitemap li a {
  color: #e8d7d0;
  font-size: 3vw;
}

.pause_txt{
 margin-bottom: 50px;
}
.pause_txt p{
 text-align: center;
 font-size: 2rem;
 color: #ee8989;
 font-weight: bold;
}
