@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

.mb4em {
  margin-bottom: 4em;
}

/* Preload images */
body:after {
  content: url(../img/common/lightbox/close.png) url(../img/common/lightbox/loading.gif) url(../img/common/lightbox/prev.png) url(../img/common/lightbox/next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/common/lightbox/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/common/lightbox/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/common/lightbox/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/common/lightbox/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

::selection {
  background: #ecbd4c;
}

::-moz-selection {
  background: #ecbd4c;
}

@media (max-width: 639px) {
  .no-mq_s {
    display: none;
  }
}

html {
  height: 100%;
}

body {
  font-size: 16px;
  font-size: 1rem;
  font-family: “Times New Roman”, “游明朝”, YuMincho, “ヒラギノ明朝 ProN W3”, “Hiragino Mincho ProN”, “メイリオ”, Meiryo, serif;
  line-height: 1.618;
  letter-spacing: 0.1rem;
  height: 100%;
  background: url(../img/common/bg-shoji.jpg);
}

div, img, iframe {
  box-sizing: border-box;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #c03238;
}
a:visited {
  color: #c03238;
}
a:hover {
  color: #c03238;
}
a:active {
  color: #c03238;
}

a:hover {
  transition: 0.5s;
}

@media (min-width: 640px) {
  table,
  tr,
  th,
  td {
    text-align: center;
  }
  th,
  td {
    padding: 0.5em;
    border: 1px dotted #ddd;
  }
  table {
    margin-bottom: 1em;
    width: 100%;
  }
  tr {
    background-color: #fff;
  }
  th {
    font-family: Arial, Roboto, “Droid Sans”, “游ゴシック”, YuGothic, “ヒラギノ角ゴ ProN W3”, “Hiragino Kaku Gothic ProN”, “メイリオ”, Meiryo, sans-serif;
    background: url(../img/common/bg-ogi.jpg);
    color: #fff;
    border-top: none;
    border-bottom: none;
  }
  th:first-child {
    border-left: none;
    border-radius: 8px 0 0 0;
  }
  th:last-child {
    border-right: none;
    border-radius: 0 8px 0 0;
  }
  td[colspan] {
    text-align: left;
  }
}
@media (max-width: 639px) {
  .table-firstTd {
    margin-bottom: 0.4em;
    font-family: Arial, Roboto, “Droid Sans”, “游ゴシック”, YuGothic, “ヒラギノ角ゴ ProN W3”, “Hiragino Kaku Gothic ProN”, “メイリオ”, Meiryo, sans-serif;
    font-size: 1.1em;
  }
}
@media (min-width: 640px) {
  .table-firstTd {
    background-color: #f3f6f5;
  }
}

@media (max-width: 639px) {
  .table-colspan_desc {
    margin: 0.5em 0 1.5em;
  }
}

header {
  background: url(../img/common/bg-ogi.jpg);
  color: #fff;
  position: fixed;
  z-index: 9999;
}
header a {
  color: #fff;
}
header a:visited {
  color: #fff;
}
header a:hover {
  color: #ecbd4c;
}
header a:active {
  color: #fff;
}
header a:focus {
  color: #fff;
}
header a {
  line-height: 2;
}
header nav {
  font-size: 16px;
  font-size: 1rem;
}
header .contactBox {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
header .contactBox .icon-tel {
  margin-right: 0.3em;
  fill: #ecbd4c;
}
@media (max-width: 639px) {
  header .contactBox .icon-tel {
    height: 28px;
  }
}
@media (min-width: 640px) {
  header .contactBox .icon-tel {
    height: 21px;
  }
}
header .contactBox .contactBox__num {
  color: #ecbd4c;
}
@media (max-width: 639px) {
  header .contactBox .contactBox__num {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (min-width: 640px) {
  header .contactBox .contactBox__num {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
header .contactBox .contactBox__desc {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  header .contactBox {
    width: 200px;
    margin-bottom: 1em;
  }
}
header .paypayBox {
  background: #fff;
  color: #323834;
  text-align: center;
  padding: 1em 2em;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 8px;
}
header .paypayBox img {
  width: 60%;
}
@media (max-width: 639px) {
  header .paypayBox {
    background: none;
    color: #fff;
  }
}
@media (min-width: 640px) {
  header .paypayBox {
    width: 200px;
    margin-bottom: 4em;
  }
}
@media (max-width: 639px) {
  header {
    width: 100%;
    height: 4em;
  }
  header nav li {
    padding: 0.5em;
    border-bottom: 1px solid #777;
  }
  header nav li a {
    display: block;
  }
  header [id=menu] {
    display: none;
    background: #323834;
    opacity: 0.9;
    width: 100%;
    max-height: calc(100vh - 4em);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    top: 4em;
    right: 0;
    text-align: center;
  }
  header [id=btn--openMenu] {
    display: inline-block;
    position: absolute;
    top: 2em;
    right: 1em;
    width: 3em;
    height: 3em;
  }
  header [id=btn--openMenu] span {
    display: block;
    margin-top: 0.6em;
    text-align: center;
    letter-spacing: 0;
    font-size: 10px;
    font-size: 0.625rem;
    font-family: Arial, Roboto, “Droid Sans”, “游ゴシック”, YuGothic, “ヒラギノ角ゴ ProN W3”, “Hiragino Kaku Gothic ProN”, “メイリオ”, Meiryo, sans-serif;
    font-weight: bold;
  }
  header [id=btn--openMenu] > #btn--openMenu__icon, header [id=btn--openMenu] > #btn--openMenu__icon:after, header [id=btn--openMenu] > #btn--openMenu__icon:before {
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    position: absolute;
    left: 50%;
    width: 1.25em;
    height: 0.15em;
    margin-left: -0.625em;
    margin-top: -0.5em;
    background: #fff;
  }
  header [id=btn--openMenu] > #btn--openMenu__icon:before {
    content: "";
    margin-top: 0.5em;
  }
  header [id=btn--openMenu] > #btn--openMenu__icon:after {
    content: "";
    margin-top: -0.5em;
  }
  header [id=btn--openMenu] > #btn--openMenu__icon.is_closeMenu, header [id=btn--openMenu] > .is_closeMenu#btn--openMenu__icon:before, header [id=btn--openMenu] > .is_closeMenu#btn--openMenu__icon:after {
    background: transparent;
  }
  header [id=btn--openMenu] > #btn--openMenu__icon.is_closeMenu:before, header [id=btn--openMenu] > #btn--openMenu__icon.is_closeMenu:after {
    margin-top: 0;
    background: #fff;
  }
  header [id=btn--openMenu] > #btn--openMenu__icon.is_closeMenu:before {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header [id=btn--openMenu] > #btn--openMenu__icon.is_closeMenu:after {
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  header .headerBottom {
    padding: 2em 0;
  }
  header .copyright {
    display: none;
  }
}
@media (min-width: 640px) {
  header {
    width: 200px;
    height: 100%;
    padding: 0 20px;
  }
  header #btn--openMenu {
    display: none;
  }
  header nav {
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    margin: 0 auto;
  }
  header .headerBottom {
    position: absolute;
    bottom: 2em;
  }
  header .copyright {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

article section {
  margin-bottom: 3em;
}
article p {
  margin-bottom: 1em;
  text-indent: 1em;
}
article ul {
  margin-left: 1em;
  margin-bottom: 1em;
}
article ul li {
  margin-bottom: 0.2em;
}
article ul ul {
  font-size: 0.9em;
  margin-left: 2em;
  margin-bottom: 0;
}
article .contactBox {
  background: #fff;
  padding: 2em 3em;
  -moz-box-shadow: 0 0 10px 0 #ddd;
  -webkit-box-shadow: 0 0 10px 0 #ddd;
  box-shadow: 0 0 10px 0 #ddd;
}
article .contactBox p {
  text-indent: 0;
  margin: 0;
}
article .contactBox .contactBox__catchTxt {
  line-height: 1.3;
  text-align: center;
}
article .contactBox .contactBox__num {
  color: #c03238;
}
@media (max-width: 639px) {
  article .contactBox .contactBox__num {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media (min-width: 640px) {
  article .contactBox .contactBox__num {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
article .contactBox .icon-tel {
  height: 32px;
  margin-right: 0.3em;
  fill: #c03238;
}
article .contactBox .contactBox__tel {
  text-align: center;
  margin-bottom: 2em;
}
article .contactBox .contactBox__telInner {
  display: inline-block;
}
article .contactBox .contactBox__form {
  margin-top: -1em;
}
@media (max-width: 639px) {
  article .contactBox {
    padding: 2em;
  }
}
@media (max-width: 639px) {
  article {
    margin: 0;
    padding: 5em 0.7em 0;
  }
}
@media (min-width: 640px) {
  article {
    max-width: 640px;
    margin-left: 240px;
    padding: 3em 5em 0;
  }
}

@media (max-width: 639px) {
  footer {
    padding: 2em 0 0;
  }
  footer li {
    padding: 1em;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #fff;
  }
  footer li a {
    display: block;
  }
  footer small {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    display: block;
    background-color: #323834;
    padding: 2em 0;
  }
}
@media (min-width: 640px) {
  footer {
    margin-left: 240px;
    margin-bottom: 2em;
  }
  footer nav {
    font-size: 14px;
    font-size: 0.875rem;
    width: 640px;
    margin-left: 80px;
    padding-bottom: 1.5em;
  }
  footer ul {
    text-align: center;
  }
  footer li {
    display: inline-block;
    padding: 0 0.5em;
    border-right: 1px solid #ddd;
  }
  footer li:last-child {
    border: none;
  }
  footer small {
    display: none;
  }
}

.logoBox {
  text-align: center;
}
@media (max-width: 639px) {
  .logoBox {
    padding-top: 0.5em;
  }
}
@media (min-width: 640px) {
  .logoBox {
    margin: 2em 0 3em 0;
  }
}

@media (max-width: 639px) {
  .logo {
    width: 190px;
    vertical-align: text-top;
  }
}

@media (max-width: 639px) {
  .logo--sub {
    display: none;
  }
}

.ttl-01,
.ttl-02,
.ttl-03 {
  font-family: Arial, Roboto, “Droid Sans”, “游ゴシック”, YuGothic, “ヒラギノ角ゴ ProN W3”, “Hiragino Kaku Gothic ProN”, “メイリオ”, Meiryo, sans-serif;
}

.ttl-01 {
  font-size: 1.2em;
  margin-bottom: 1em;
  padding: 0.3em 0 0.2em 0.9em;
  background: url(../img/common/bg-ogi.jpg);
  color: #fff;
  -moz-border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  border-radius: 0.3em;
}

.ttl-02 {
  font-size: 1.1em;
  margin-bottom: 0.8em;
  padding-left: 0.8em;
  border-left: 2px solid #323834;
}

.ttl-03 {
  font-size: 1.1em;
  margin-bottom: 0.4em;
}

.txt-noIndent {
  text-indent: 0;
}

.txt-strong {
  background: linear-gradient(transparent 85%, #ecbd4c 0%);
}

.txt-weak, .list-caution {
  font-size: 0.8em;
  color: #777;
}

.txt-starRate {
  color: #ecbd4c;
}

.txt-price {
  color: #c03238;
  font-weight: bold;
}

.iconStrong {
  color: #fff;
  background: #c03238;
  font-size: 0.9em;
  display: inline-block;
  margin-right: 0.5em;
  padding: 0.1em 0.4em;
  -moz-border-radius: 0.3em;
  -webkit-border-radius: 0.3em;
  border-radius: 0.3em;
}

.photo {
  padding: 0.3em;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(20, 20, 20, 0.2);
}

.coverImgBox, .coverImgBox--tatami, .coverImgBox--price {
  height: 50%;
  position: relative;
}
.coverImgBox .catchTxt, .coverImgBox--tatami .catchTxt, .coverImgBox--price .catchTxt {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  text-shadow: 0 0 0.3em rgb(0, 0, 0);
}
@media (max-width: 639px) {
  .coverImgBox .catchTxt, .coverImgBox--tatami .catchTxt, .coverImgBox--price .catchTxt {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
@media (min-width: 640px) {
  .coverImgBox .catchTxt, .coverImgBox--tatami .catchTxt, .coverImgBox--price .catchTxt {
    position: absolute;
    bottom: 2em;
    left: 10%;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media (max-width: 639px) {
  .coverImgBox, .coverImgBox--tatami, .coverImgBox--price {
    background: url(../img/article/top/img-catch_top.jpg) no-repeat;
    background-size: cover;
    margin: 0 0 1em;
    padding: 50% 1em 0;
  }
}
@media (min-width: 640px) {
  .coverImgBox, .coverImgBox--tatami, .coverImgBox--price {
    background: url(../img/article/top/img-catch_top_l.jpg) no-repeat;
    background-size: cover;
    margin-left: 240px;
    margin-bottom: 2em;
  }
}

.coverImgBox + article, .coverImgBox--tatami + article, .coverImgBox--price + article {
  padding-top: 0;
}

.map {
  width: 100%;
  border: 1px solid #ddd;
}
@media (min-width: 640px) {
  .map {
    height: 400px;
  }
}
@media (max-width: 639px) {
  .map {
    height: 300px;
  }
}

#page-top {
  position: fixed;
  bottom: 1em;
  font-size: 0.7em;
}
#page-top a {
  background: #777;
  opacity: 0.9;
  color: #fff;
  width: 7em;
  padding: 1em 0;
  text-align: center;
  display: block;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}
#page-top a:hover {
  opacity: 0.7;
}
@media (max-width: 639px) {
  #page-top {
    left: 1em;
  }
}
@media (min-width: 640px) {
  #page-top {
    right: 1em;
  }
}

.list-caution {
  margin-left: 0;
  padding-left: 1em;
  text-indent: -1em;
}
.list-caution li:before {
  content: "※";
}
.list-caution li:after {
  display: none;
}

.list-icon-lightbox {
  margin: 0;
}
.list-icon-lightbox li {
  width: 18%;
  display: inline-block;
  position: none;
}
.list-icon-lightbox li:after {
  display: none;
}

@media (min-width: 640px) {
  .l_column2Img, .l_column2Img--last {
    width: 49%;
    margin-right: 2%;
  }
  .l_column2Img--last {
    margin-right: 0;
  }
}
.hide {
  display: none !important;
}

.box-01 {
  font-size: 0.9em;
  padding: 1.2em 2.7em 0.3em 2.3em;
  background: #f3f6f5;
  border: 1px solid #777;
  display: inline-block;
}

.coverImgBox--price {
  background: url(../img/article/price/img-catch_price.jpg) no-repeat;
  background-size: cover;
}

.table-herinashiPrice th:first-child,
.table-fusumaPrice th:first-child {
  width: 25%;
}

.table-heritsukiPrice th:first-child {
  width: 30%;
}

.table-otherPrice th:first-child {
  width: 20%;
}

.table-shojiPrice th:first-child {
  width: 20%;
}

@media (max-width: 639px) {
  .table-price td, .table-deff td, .table-shojiPrice td, .table-fusumaPrice td, .table-otherPrice td, .table-herinashiPrice td, .table-heritsukiPrice td {
    display: block;
  }
  .table-price th, .table-deff th, .table-shojiPrice th, .table-fusumaPrice th, .table-otherPrice th, .table-herinashiPrice th, .table-heritsukiPrice th {
    display: none;
  }
  .table-price .table-price__desc, .table-deff .table-price__desc, .table-shojiPrice .table-price__desc, .table-fusumaPrice .table-price__desc, .table-otherPrice .table-price__desc, .table-herinashiPrice .table-price__desc, .table-heritsukiPrice .table-price__desc {
    margin-top: 0.5em;
    margin-bottom: 1.5em;
  }
  .table-heritsukiPrice td:nth-of-type(2):before {
    content: "1帖料金： ";
  }
  .table-heritsukiPrice td:nth-of-type(3):before {
    content: "耐久性・美しさ： ";
  }
  .table-heritsukiPrice td:nth-of-type(4):before {
    content: "おすすめ度： ";
  }
  .table-herinashiPrice td:nth-of-type(2):before {
    content: "表替え 1帖料金： ";
  }
  .table-herinashiPrice td:nth-of-type(3):before {
    content: "新畳(ダイケン建材使用) 1帖料金： ";
  }
  .table-otherPrice td:nth-of-type(2):before {
    content: "1帖料金：";
  }
  .table-fusumaPrice td:nth-of-type(2):before {
    content: "片面張り料金： ";
  }
  .table-fusumaPrice td:nth-of-type(3):before {
    content: "天袋・地袋： ";
  }
  .table-fusumaPrice td:nth-of-type(4):before {
    content: "消臭抗菌機能： ";
  }
  .table-fusumaPrice tr td:last-child {
    margin-bottom: 1.5em;
  }
  .table-shojiPrice td:nth-of-type(2):before {
    content: "五八サイズ： ";
  }
  .table-shojiPrice td:nth-of-type(3):before {
    content: "四五サイズ： ";
  }
  .table-shojiPrice td:nth-of-type(4):before {
    content: "三尺サイズ： ";
  }
  .table-shojiPrice td:nth-of-type(5):before {
    content: "五八雪見： ";
  }
  .table-shojiPrice td:nth-of-type(6):before {
    content: "欄間： ";
  }
}
.coverImgBox--tatami {
  background: url(../img/article/content/img-catch_tatami.jpg) no-repeat;
  background-size: cover;
}

.table-deff th:first-child {
  width: 14%;
}
@media (max-width: 639px) {
  .table-deff td:nth-of-type(2):before {
    content: "長さ： ";
  }
  .table-deff td:nth-of-type(3):before {
    content: "種類： ";
  }
  .table-deff td:nth-of-type(4):before {
    content: "密度： ";
  }
  .table-deff td:nth-of-type(5):before {
    content: "色調： ";
  }
  .table-deff td:nth-of-type(6):before {
    content: "根白： ";
  }
  .table-deff td:nth-of-type(7):before {
    content: "変色い草： ";
  }
  .table-deff td:nth-of-type(8):before {
    content: "溝： ";
  }
}
