/*------------------------------------------------------------
	記事コンテンツスタイル
------------------------------------------------------------*/
/*body {
    margin: 0px;
    padding: 0px;
    background: #f5f5f5;
    font-family: 'Segoe UI';
}*/

#main {
  width: auto;
}

.singleColumn #conts {
  width: auto;
}

ul.resp-tabs-list,
p {
  margin: 0px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  padding: 13px 15px;
  margin: 0;
  list-style: none;
  cursor: pointer;
  float: left;
}

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border: 1px solid #c1c1c1;
  border-bottom: none;
  margin-bottom: -1px !important;
  padding: 12px 14px 14px 14px !important;
}

.resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

.resp-tab-content {
  border: 1px solid #c1c1c1;
}

h2.resp-accordion {
  font-size: 13px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}
/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 15px 15px !important;
  margin: 0;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  float: left;
  width: 68%;
  min-height: 250px;
  border-radius: 4px;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
}

.resp-vtabs li.resp-tab-active {
  border: 1px solid #c1c1c1;
  border-right: none;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 14px 15px 15px 14px !important;
}

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #9b9797;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
  background: #dbdbdb !important;
}
.resp-easy-accordion h2.resp-accordion {
  display: block;
}
.resp-easy-accordion .resp-tab-content {
  border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
  border-bottom: 1px solid #c1c1c1 !important;
}

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active {
  display: block;
}

h2.resp-accordion:first-child {
  border-top: 1px solid #c1c1c1 !important;
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
  .owl-carousel .owl-item {
    width: 302px !important;
  }

  ul.resp-tabs-list {
    display: none;
  }

  h2.resp-accordion {
    display: block;
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #c1c1c1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: initial;
    clear: none;
  }
  .resp-accordion-closed {
    display: none !important;
  }
  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
  }
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 99999;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

.pswp__caption__center {
  color: #fff !important;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #ccc;
}

.pswp__error-msg a {
  color: #ccc;
  text-decoration: underline;
}

body {
  overflow-x: hidden;
}

#conts .bespokeCatchR {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  width: 960px;
  min-height: 510px;
  background: url(/img/service/semi-order/bg_bespoke.webp) no-repeat left top;
}

#conts section.works {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

#conts .contactBox {
  margin-left: auto;
  margin-right: auto;
  width: 880px;
}

#conts .bespokeCatchR .txt {
  top: 54px;
  right: 130px;
}

#conts .bespokeCatchR .txt p {
  margin-top: 15px;
  padding-left: 30px;
}

#conts .bespokeCatchR .txt br.pcHide {
  display: none;
}

#conts .bespokeCatchR .txt p.attention {
  width: 530px;
  margin-right: -80px;
}

#conts .bespokeCatchR .label img:hover {
  background: rgba(255, 255, 255, 0.3);
}

#conts .sliderBox {
  margin-bottom: 61px;
  position: relative;
}

#conts .sliderBox .photoUl {
  margin-right: -6px;
  width: 966px;
}

#conts .sliderBox .photoUl li {
  padding-right: 20px;
  float: left;
}

#conts .sliderBox .arrow li {
  margin-top: -55px;
  position: absolute;
  top: 50%;
  z-index: 10;
}

#conts .sliderBox .arrow .next {
  left: -68px;
  background: url(/img/service/semi-order/arrow_r_off.png) no-repeat center
    center;
}

#conts .sliderBox .arrow .prev {
  right: -68px;
  background: url(/img/service/semi-order/arrow_l_off.png) no-repeat center
    center;
}

#conts .sliderBox .arrow li.off img {
  visibility: hidden;
}

#conts #benefits {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

#conts #order-flow {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

#conts [id^="price-guide"] > .txt02,
#conts [id^="price-guide"] > .whiteBox,
#conts [id^="price-guide"] > .noteList,
#conts [id^="price-guide"] > .selectBox,
#conts [id^="price-guide"] > .optionBox {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

#conts #benefits .benefits {
  padding-top: 33px;
  overflow: hidden;
  margin-bottom: 60px;
}

#conts #benefits .benefits ul {
  width: 990px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#conts #benefits .benefits li {
  margin-right: 30px;
  padding: 74px 10px 10px;
  width: 274px;
  min-height: 103px;
  float: left;
  border: 3px solid #d1c9c2;
  background: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  color: #2c120c;
  text-align: center;
  position: relative;
}

#conts #benefits .benefits li .ico {
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  text-align: center;
}

#conts #benefits .benefits li .red {
  color: #990000;
}

#conts #benefits .benefits li .txt {
  color: #111;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  padding: 10px;
}

@media only screen and (max-width: 640px) {
  #conts #benefits {
    margin-bottom: 50px;
  }

  #conts #benefits .ttl03 .icon {
    margin: 0 auto;
    width: 210px;
    display: block;
  }

  #conts #benefits .ttl03 .icon .block　 {
    display: block;
  }

  #conts #benefits .benefits {
    margin-bottom: 30px;
  }

  #conts #benefits .benefits ul {
    width: auto;
    margin: 0 10px;
  }

  #conts #benefits .benefits li {
    width: 100%;
    float: none;
    padding-bottom: 40px;
    margin: 50px 0 0;
    min-height: 0;
    height: auto !important;
    box-sizing: border-box;
  }

  #conts #benefits .benefits li:first-child {
    margin: 0;
  }
}

#conts [id^="gift"] {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

#conts [id^="gift"] {
  margin-bottom: 60px;
}

#conts [id^="gift"] p {
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
  #conts [id^="gift"] {
    width: auto;
    margin-bottom: 30px;
  }

  #conts [id^="gift"] p {
    text-align: left;
  }

  #conts [id^="gift"] img {
    width: 100%;
    height: auto;
  }
}

#conts .tabBox {
  margin-bottom: 60px;
}

.resp-tabs-list {
  border-bottom: 4px solid #3f1e0b;
}

.resp-tabs-list li {
  width: 477px;
  float: right;
}

.resp-tabs-list li:first-child {
  float: left;
}

.resp-tab-item {
  padding: 0 !important;
}

.resp-tabs-list span {
  margin-top: 10px;
  padding: 16px 0;
  color: #444;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #d9d2ce;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
}

.resp-tab-active {
  margin-top: 0;
  padding: 0 !important;
  color: #fff;
  background-color: #3f1e0b;
  border: none;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
}

.resp-tab-active span {
  margin-top: 0;
  padding: 21px 0;
  color: #fff;
  background-color: #3f1e0b;
}

#conts .tabBox .spLink {
  display: none;
}

#conts .flow01 {
  padding: 30px 40px 40px;
}

#conts .flow01 .text {
  margin-bottom: 30px;
}

#conts .flow01 .step .txt01 {
  margin-bottom: 28px;
}

#conts .flow01 .step .line {
  margin: 12px 0 24px;
}

#conts .flow01 .step .line dt span {
  margin-bottom: 7px;
  display: block;
  font-weight: normal;
}

#conts .flow01 .step .line .banner li {
  padding-right: 14px;
  float: left;
}

#conts .flow01 .step .line .banner li a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#conts .list01 li {
  margin-bottom: 0;
  line-height: 2;
  background: url(/img/common/icon/icon01.png) no-repeat left 10px;
}

#conts .flow01 .step p.notes {
  margin-top: 15px;
}

#conts .flow01 .step .pTxt {
  margin: 40px 0 0 -180px;
  padding: 2px 0;
  color: #3f1f0c;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 3px solid #d9d2ce;
  position: relative;
  z-index: 10;
}

#conts .flow01 .step .pTxt01 {
  margin-top: 90px;
}

#conts .h2Ttl {
  margin-bottom: 11px;
}

#conts .txt02 {
  margin-bottom: 21px;
}

#conts .whiteBox {
  padding: 20px 20px 0;
}

#conts .whiteBox .ttl {
  margin-bottom: 4px;
  padding: 7px 20px 5px;
  color: #fff;
  background-color: #70594b;
}

#conts .basicTable dl {
  border: none !important;
}

#conts .basicTable dl:first-child {
  background: url(/img/service/semi-order/line01.png) repeat-x left bottom;
}

#conts .basicTable dl dt {
  padding-left: 0;
  width: 140px;
}

#conts .basicTable dl dd {
  color: #990000;
  font-weight: bold;
}

#conts .basicTable dl dt,
#conts .basicTable dl dd {
  padding: 13px 0;
}

#conts .basicTable h3 {
  font-size: 18px;
  margin: 1em 0 .5em;
  display: block;
  line-height: 1.25;
}

#conts .noteList {
  margin-bottom: 35px;
}

#conts .noteList li {
  margin-bottom: 0;
  padding-left: 2.5em;
  text-indent: -2.5em;
}

#conts .comTtl {
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #3f1f0c;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #40210f;
}

#conts .comTtl:not(:first-child){
  margin-top: 30px;
}


#conts .comTtl span {
  margin-left: 15px;
  font-size: 1.2rem;
  font-weight: normal;
}

#conts .selectBox {
  margin-bottom: 20px;
  background-color: #fff;
  border: 3px solid #70594b;
}

#conts .selectBox .title {
  padding: 5px 20px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #70594b;
}

#conts .selectBox .title span {
  margin-left: 20px;
  font-size: 1.4rem;
}

#conts .selectBox .subBox {
  padding: 27px 40px 25px;
}

#conts .selectBox .subBox .comTtl01 {
  margin-bottom: 5px;
}

#conts .selectBox .subBox .photoList {
  margin: 0 -10px 30px;
  width: 900px;
}

#conts .selectBox .subBox .photoList li {
  padding: 0 10px;
  float: left;
}

#conts .selectBox .subBox .photoList li .price {
  display: block;
  color: #900;
  line-height: 1;
  text-align: center;
}

#conts .selectBox .subBox .photoList li a {
  width: 158px;
  display: block;
  position: relative;
  border: 1px solid #d6d1ce;
}

#conts .selectBox .subBox .photoList li a .img {
  position: absolute;
  top: -1px;
  right: -1px;
}

#conts .selectBox .subBox .photoList li a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#conts .selectBox .subBox .photoList li p {
  padding-top: 6px;
  color: #3f1f0c;
  text-align: center;
  font-weight: bold;
}

#conts .selectBox .subBox .photoList li p:last-child {
  padding-top: 10px;
  font-weight: normal;
}

@media only screen and (max-width: 640px) {
  #conts .selectBox .subBox .photoList li p:last-child {
    padding-top: 0;
    margin-bottom: 20px;
  }
}

#conts .selectBox .subBox .basicTable {
  margin-bottom: 20px;
}

#conts .selectBox .subBox .basicTable dt {
  width: 155px;
  vertical-align: top;
}

#conts .selectBox .subBox .basicTable .wid01 {
  width: 225px;
  vertical-align: top;
}

#conts .selectBox .subBox .basicTable dd li {
  width: 220px;
  float: left;
}

#conts .selectBox .subBox .basicTable dd li:nth-child(1),
#conts .selectBox .subBox .basicTable dd li:nth-child(2),
#conts .selectBox .subBox .basicTable dd li:nth-child(3),
#conts .selectBox .subBox .basicTable dd li:nth-child(4) {
  margin-bottom: 12px;
}

#conts .selectBox .subBox .basicTable dd li img {
  margin-right: 8px;
  vertical-align: middle;
}

#conts .selectBox .subBox .basicTable dd li.black {
  color: #000;
}

#conts .selectBox .subBox .basicTable dd li.dark-brown {
  color: #4b2b1c;
}

#conts .selectBox .subBox .basicTable dd li.medium-brown {
  color: #7f4329;
}

#conts .selectBox .subBox .basicTable dd li.navy-blue {
  color: #1c3a5e;
}

#conts .selectBox .subBox .basicTable dd li.chestnut {
  color: #6a3300;
}

#conts .selectBox .subBox .basicTable dd li.burgundy {
  color: #67033f;
}

#conts .selectBox .subBox .basicTable dd li.beige {
  color: #E7D0A9;
}

#conts .selectBox .subBox .basicTable dd li.lightbrown {
  color: #AA6F43;
}

#conts .selectBox .subBox .basicTable dd li.green {
  color: #004B00;
}

#conts .selectBox .subBox .basicTable dd li.gray {
  color: #808080;
}

#conts .selectBox .subBox .photoList01 {
  margin: 0 -0px 0 0;
  width: 969px;
}

#conts .selectBox .subBox .photoList01 li {
  padding: 0 0 20px;
  width: 308px;
}

#conts .selectBox .subBox .photoList01 li a {
  width: 108px;
}

#conts .selectBox .subBox .photoList01 li .photo {
  padding-right: 15px;
  float: left;
}

#conts .selectBox .subBox .photoList01 li p {
  margin-top: -10px;
  width: 175px;
  float: left;
  line-height: 1.5;
  text-align: left;
}

#conts .selectBox .subBox .photoList01 li p .price {
  display: block;
  color: #990000;
  text-align: right;
}

#conts .optionBox {
  margin-bottom: 60px;
  background-color: #fff;
  border: 3px solid #e3dedb;
}

#conts .optionBox .title {
  padding: 5px 20px 7px;
  color: #40210f;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #e3dedb;
}

#conts .optionBox .title span {
  margin-left: 20px;
  font-size: 1.4rem;
  font-weight: normal;
}

#conts .optionBox .title small {
  font-size: 1.2rem;
}

#conts .optionBox .subBox {
  padding: 40px 40px;
}

#conts .optionBox .subBox .comTtl01 {
  margin-bottom: 15px;
}

#conts .optionBox .subBox .text {
  margin-bottom: 10px;
}

#conts .optionBox .subBox .text span {
  background-color: #ece7e4;
  border-radius: 2px;
}

#conts .optionBox .subBox ul {
  margin-bottom: 35px;
}

#conts .optionBox .subBox li {
  width: 420px;
  float: right;
}

#conts .optionBox .subBox li:first-child {
  float: left;
}

#conts .optionBox .subBox li .photo {
  padding-right: 15px;
  float: left;
}

#conts .optionBox .subBox li p {
  margin-top: -5px;
  width: 160px;
  float: left;
  font-weight: bold;
}

#conts .optionBox .subBox li p span {
  display: block;
  color: #990000;
  text-align: right;
}

#conts .woodBox01 {
  margin-bottom: 50px;
}

#conts .woodBox01 .inner {
  overflow: hidden;
}

#conts .woodBox01 .inner .contact {
  float: left;
}

#conts .woodBox01 .inner .contact a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#conts .woodBox01 .inner .tel {
  width: 370px;
  float: right;
}

#conts .snsList li {
  padding-right: 15px;
  display: inline-block;
  vertical-align: top;
}

#conts .snsList li a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

@media only screen and (max-width: 640px) {
  #conts {
    margin: 0 10px;
  }

  #main .ttl03 {
    margin-bottom: 12px;
  }

  #conts .bespokeCatchR {
    margin-bottom: 30px;
    width: 100%;
    min-height: 0;
  }
  #conts .bespokeCatchR .txt br.pcHide {
    display: block;
  }

  #conts .tabBox {
    margin-bottom: 30px;
  }

  #conts .tabBox .menu {
    display: none;
  }

  #conts .tabBox .spLink {
    margin-top: 10px;
    display: block;
  }

  #conts .tabBox .spLink a {
    padding: 15px 0;
    display: block;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    background-color: #3f1e0b;
  }

  #conts .flow01 {
    padding: 15px 20px 20px;
  }

  #conts .flow01 .text {
    margin-bottom: 15px;
  }

  #conts .flow01 .text + .step {
    background-image: none;
  }

  #conts .flow01 .step .pTxt {
    margin: 0;
  }

  #conts .flow01 .step .txt01 {
    margin-bottom: 14px;
  }

  #conts .basicTable dl {
    padding: 8px 0;
  }

  #conts .basicTable dl dt,
  #conts .basicTable dl dd {
    margin-bottom: 0;
    padding: 5px 0;
    width: auto !important;
  }

  #conts .whiteBox {
    padding: 15px;
  }

  #conts .noteList {
    margin-bottom: 18px;
  }

  #conts .selectBox .title {
    padding: 5px 10px;
    line-height: 1.2;
  }

  #conts .selectBox .title span {
    margin-left: 10px;
  }

  #conts .selectBox .subBox .photoList {
    margin: 0 0 15px;
    width: auto;
  }

  #conts .selectBox .subBox {
    padding: 15px 20px;
  }

  #conts .selectBox .subBox .photoList li {
    padding: 0;
    float: none;
  }

  #conts .selectBox .subBox .photoList li a {
    width: auto;
    text-align: center;
  }

  #conts .selectBox .subBox .basicTable dd li {
    margin-bottom: 0 !important;
  }

  #conts .selectBox .subBox .basicTable {
    margin-bottom: 10px;
  }

  #conts .selectBox .subBox .photoList01 li {
    width: auto;
  }

  #conts .selectBox .subBox .photoList01 li .photo {
    padding: 0 0 5px;
    float: none;
    text-align: center;
  }

  #conts .selectBox .subBox .photoList01 li p {
    margin-top: 0;
    padding-top: 0;
    width: auto;
    float: none;
    text-align: center;
  }

  #conts .selectBox .subBox .photoList01 li p .price {
    text-align: center;
  }

  #conts .comTtl span {
    margin-left: 0;
    display: block;
  }

  #conts .optionBox .title {
    padding: 5px 10px;
    line-height: 1.2;
  }

  #conts .optionBox .title span {
    margin-left: 10px;
  }

  #conts .optionBox .subBox {
    padding: 20px;
  }

  #conts .optionBox .subBox ul {
    margin-bottom: 18px;
  }

  #conts .optionBox .subBox li {
    padding-bottom: 10px;
    width: auto;
    float: none !important;
  }

  #conts .optionBox .subBox li .photo {
    padding: 0 0 10px;
    width: auto;
    float: none;
  }

  #conts .optionBox .subBox li .photo img {
    width: 100%;
  }

  #conts .optionBox .subBox li p {
    margin-top: 0;
    width: auto;
    float: none;
    line-height: 1.5;
  }

  #conts .optionBox .subBox li p span {
    text-align: left;
  }

  #conts .woodBox01 .inner .contact {
    margin-bottom: 10px;
    float: none;
  }

  #conts .woodBox01 .inner .contact img {
    width: 100%;
    height: auto;
  }

  #conts .woodBox01 .inner .tel {
    width: auto;
    float: none;
  }

  #conts .woodBox01 .inner .tel img {
    width: 100%;
    height: auto;
  }

  #conts .snsList li {
    padding-right: 0;
  }

  #conts .snsList li:last-child {
    padding-right: 0;
  }

  .resp-tab-active span {
    padding: 0;
    background: none;
  }

  h2.resp-accordion {
    color: #444;
    background-color: #d9d2ce;
  }

  h2.resp-tab-active {
    color: #fff;
    background: #3f1e0b !important;
    border-radius: 0;
  }

  #conts .sliderBox {
    margin: 0 auto 70px;
    width: 302px;
  }

  #conts .sliderBox .photoUl {
    margin: 0;
    width: auto;
    overflow: hidden;
  }

  #conts .sliderBox .photoUl li {
    width: 302px;
  }

  #conts .sliderBox .photoUl li img {
    width: 100%;
    height: auto;
  }

  #conts .sliderBox .arrow {
    margin-left: -85px;
    width: 170px;
    position: absolute;
    left: 50%;
    bottom: -6px;
  }

  #conts .sliderBox .arrow li {
    margin-top: 0;
    position: inherit;
  }

  #conts .sliderBox .arrow li img {
    width: 48px;
    height: auto;
  }

  #conts .sliderBox .arrow .prev {
    right: 0;
  }

  #conts .sliderBox .arrow .next {
    left: 0;
  }

  #conts .sliderBox .arrow .next,
  #conts .sliderBox .arrow .prev {
    background-size: 44px 44px;
  }
}
/* 20171030 */
.works .itemList {
  width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 640px) {
  .works .itemList {
    width: 100%;
  }
}

.works .itemList li {
  margin-bottom: 50px;
  width: 31%;
}

.works .itemList li:nth-child(n + 10) {
  margin-bottom: 20px;
  width: 31%;
}

@media only screen and (max-width: 640px) {
  .works .itemList li {
    max-width: 200px;
  }

  .works .itemList li:nth-child(n + 10) {
    max-width: 200px;
  }
}

.works .itemList li img {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}

.works .itemList li dl {
  font-weight: bold;
  clear: both;
}

.works .itemList li dt {
  float: left;
}

.works .itemList li dt,
.works .itemList li dd {
  margin-bottom: 5px;
}

.works .itemList li .c-model dt,
.works .itemList li .c-leather dt {
  width: 60px;
}

.works .itemList li .c-model dd,
.works .itemList li .c-leather dd {
  margin-left: 60px;
}

.works .itemList li .c-text {
  min-height: 100px;
}

@media only screen and (max-width: 640px) {
  #conts .works .itemList li,
  #conts .works .itemList li {
    font-size: 1.2em;
  }

  .works .itemList li .c-text {
    min-height: 190px;
  }

  .works .itemList li .c-model dt,
  .works .itemList li .c-leather dt {
    width: auto;
  }

  .works .itemList li .c-model dd,
  .works .itemList li .c-leather dd {
    margin-left: 0;
    font-weight: normal;
  }

  .works .itemList li .c-model {
    margin-bottom: 15px;
  }

  .works .itemList li .c-model dt,
  .works .itemList li .c-leather dt {
    float: none;
  }

  .works .itemList li .c-model dd,
  .works .itemList li .c-leather dd {
    word-break: break-word;
  }
}

@media only screen and (max-width: 360px) {
  .works .itemList li .c-text {
    min-height: 230px;
  }
}

.works .itemList li .c-btn {
  width: 100%;
  background-color: #7f100b;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 36px;
}

.works .itemList li .c-btn:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 640px){
  .works .itemList.sp-2c {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 0;
    margin-bottom: 20px;
  }

  .works .itemList.sp-2c li {
    width: calc((100% - 20px) / 2);
    margin: 0;
  }

  .works .itemList.sp-2c li .c-text {
    min-height: 143px;
  }
}

.works .btn_more {
  *zoom: 1;
}

.works .btn_more:after {
  display: block;
  content: "";
  clear: both;
}

.works .btn_more a {
  border-radius: 5px;
  padding: 10px;
  width: 120px;
  display: block;
  background-color: #fff;
  font-size: 1.4em;
  text-align: center;
  float: right;
}

.selectBox .l-list {
  margin-bottom: 30px;
}

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

.selectBox .c-ttl h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.selectBox .comBox {
  margin-bottom: 20px;
}

.selectBox .comBox:not(:last-child) {
  border-bottom: 1px dashed #40210f;
}

.selectBox .boxCol1 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10%;
  width: 50%;
  float: left;
}

@media only screen and (max-width: 640px) {
  .selectBox .boxCol1 {
    padding: 0;
    width: 100%;
    float: none;
  }
}

.selectBox .boxCol1 .listMD {
  width: 220px;
  display: block;
}

@media only screen and (max-width: 640px) {
  .selectBox .boxCol1 .listMD {
    width: 100%;
  }
}

.selectBox .boxCol1 .listMD .price {
  text-align: center;
  color: #990000;
  font-weight: bold;
}

.selectBox .boxCol1.box04 {
  border-right: 1px dashed #40210f;
}

@media only screen and (max-width: 640px) {
  .selectBox .boxCol1.box04 {
    margin-bottom: 20px;
    border-right: none;
    border-bottom: 1px dashed #40210f;
  }
}

.selectBox .listMD {
  margin: 20px auto 0;
  width: 874px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 640px) {
  .selectBox .listMD {
    width: 100%;
    display: block;
  }
}

.selectBox .listMD li {
  margin-bottom: 20px;
  width: 210px;
}

@media only screen and (max-width: 640px) {
  .selectBox .listMD li {
    margin-right: auto;
    width: 100%;
    text-align: center;
  }
}

.selectBox .listMD li:not(:nth-of-type(3n)):not(:last-child) {
  margin-right: 100px;
}

.selectBox .listMD img {
  margin-bottom: 20px;
  border: 1px solid #d6d1ce;
}

.selectBox .listMD h4 {
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.8;
}

.selectBox .listMD p {
  text-align: left;
}

#conts .optionBox .subBox li .option_text {
  padding-top: 20px;
  text-align: left;
  font-weight: normal;
}

@media only screen and (max-width: 640px) {
  #conts .optionBox .subBox li:not(:last-child) {
    margin-bottom: 20px;
  }
  #conts .optionBox .subBox li .option_text {
    padding-top: 0;
  }
}

#main #conts .accessBox {
  margin-bottom: 60px;
}

#main #conts .accessBox .info {
  width: 960px;
  margin: 0 auto 60px;
}
#main #conts .accessBox .info .woodBox02 {
  padding: 0;
}
#main #conts .accessBox .info .woodBox02 .img {
  float: left;
}
#main #conts .accessBox .info .woodBox02 .basicTable {
  width: 420px;
  margin: 30px;
  float: right;
  background: url(/img/common/icon/border_dash03.gif) repeat-x 0 bottom;
}
#main #conts .accessBox .info .woodBox02 .basicTable dl {
  border-bottom: none;
  background: url(/img/common/icon/border_dash03.gif) repeat-x 0 0;
}
#main #conts .accessBox .info .woodBox02 .basicTable dl:first-child {
  border-top: none;
}
#main #conts .accessBox .info .woodBox02 .basicTable dl dt,
#main #conts .accessBox .info .woodBox02 .basicTable dl dd {
  color: #fff;
  padding: 15px 0 14px 10px;
}
#main #conts .accessBox .info .woodBox02 .basicTable dl dt {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 120px;
}
#main #conts .accessBox .access p {
  text-align: center;
  margin-bottom: 20px;
}

#main #conts .accessBox .access .google-maps {
  position: relative;
  padding-bottom: 420px;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

#main #conts .accessBox .access .google-maps iframe,
#main #conts .accessBox .access .google-maps object,
#main #conts .accessBox .access .google-maps embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 640px) {
  #main #conts .accessBox .info {
    width: 100%;
  }
  #main #conts .accessBox .info .woodBox02 {
    background-position: -50px 0;
    padding-bottom: 10px;
  }
  #main #conts .accessBox .info .woodBox02 .img,
  #main #conts .accessBox .info .woodBox02 .basicTable {
    float: none;
  }
  #main #conts .accessBox .info .woodBox02 .img img {
    width: 100%;
    height: auto;
  }
  #main #conts .accessBox .info .woodBox02 .basicTable {
    width: auto;
    margin: 10px 10px 0;
  }
  #main #conts .accessBox .info .woodBox02 .basicTable dl dt,
  #main #conts .accessBox .info .woodBox02 .basicTable dl dd {
    padding: 0;
    padding-left: 10px;
  }
  #main #conts .accessBox .access {
    margin-bottom: 20px;
    padding: 0 10px;
  }
  #main #conts .accessBox .access p {
    padding: 0 10px;
  }
  #main #conts .accessBox .access .google-maps {
    padding-bottom: 56.25%;
    padding-top: 100px;
  }

  #conts section.works,
  #conts .contactBox,
  #conts #benefits,
  #conts #order-flow,
  #conts [id^="price-guide"] > .txt02,
  #conts [id^="price-guide"] > .whiteBox,
  #conts [id^="price-guide"] > .noteList,
  #conts [id^="price-guide"] > .selectBox,
  #conts [id^="price-guide"] > .optionBox {
    width: auto;
  }
}

/*------------------------------------------------------------
	エラー画面のフッターナビ非表示
------------------------------------------------------------*/
#error #footer .footNavi {
  display: none !important;
}

/*------------------------------------------------------------
	お問い合わせ
------------------------------------------------------------*/
.test {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
}
@media (max-width: 639px) {
  .pc-only {
    display: none;
  }
}
@media (min-width: 640px) {
  .sp-only {
    display: none;
  }
}

body {
  margin: 0;
}

.semiorder-shoes #pagePath {
  margin-bottom: 0;
}

.c-mvsemi1 {
  padding: 3.7vw 0;
  width: 100vw;
  height: calc(100vh - 173px);
  background: url("/img/service/semi-order/bg_bespoke.webp") center/cover
    no-repeat;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  box-sizing: border-box;
  position: relative;
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1 {
    padding: 5.91vh 0;
  }
}

/*
@media only screen and (max-width: 1279px) {
	.c-mvsemi1 {
	  padding: 60px 0;
	}
}
*/

@media only screen and (max-width: 640px) {
  .c-mvsemi1 {
    height: 610px;
    padding: 33px 0 45px;
  }
}

.c-mvsemi1__txt1 {
  color: #fff;
  font-size: 2.32vw;
  letter-spacing: -0.7px;
  text-align: center;
  animation: fadeIn 0.8s ease-out 2.7s forwards;
  opacity: 0;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1__txt1 {
    font-size: 3.71vh;
  }
}

/*
@media only screen and (max-width: 1279px) {
	.c-mvsemi1__txt1 {
	  font-size: 3.2rem;
	}
}
*/

@media only screen and (max-width: 640px) {
  .c-mvsemi1__txt1 {
    font-size: 1.5rem;
    line-height: 30px;
    letter-spacing: 0.3px;
  }
}

.c-mvsemi1__ttl1 {
  padding: 0.55vw 3.75vw;
  text-align: center;
  font-size: 1.9vw;
  line-height: 1.7;
  letter-spacing: 1.45px;
  font-weight: 400;
  color: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  display: table;
  margin: 0 auto;
  background: url("/service/semi-order/img/bg-ttlmv.png") no-repeat;
  background-size: 100%;
  background-position-y: center;
  animation: fadeIn 2s ease-in 0.5s forwards;
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1__ttl1 {
    padding: 0.88vh 6vh;
    font-size: 3vh;
  }
}

/*
@media only screen and (max-width: 1279px) {
	.c-mvsemi1__ttl1 {
	  font-size: 2.9rem;
	}
}
*/

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl1 {
    font-size: 1.8rem;
    line-height: 24px;
    letter-spacing: 1px;
    padding: 2px 0 0;
    background-size: 100%;
  }
}

.c-mvsemi1__ttl1 .line {
  display: block;
  width: 25.4vw;
  height: 10px;
  margin: 18px auto 0;
  position: relative;
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1__ttl1 .line {
    width: 40.62vh;
  }
}

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl1 .line {
    width: 240px;
    margin: 10px auto 0;
  }
}

.c-mvsemi1__ttl1 .line:before,
.c-mvsemi1__ttl1 .line:after {
  content: "";
  width: 9vw;
  height: 1px;
  position: absolute;
  background: #fff;
  left: 0;
  top: 4px;
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1__ttl1 .line:before,
  .c-mvsemi1__ttl1 .line:after {
    width: 14.4vh;
  }
}

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl1 .line:before,
  .c-mvsemi1__ttl1 .line:after {
    width: 65px;
    left: 27px;
  }
}

.c-mvsemi1__ttl1 .line:after {
  left: auto;
  right: 0;
}

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl1 .line:after {
    right: 27px;
  }
}

.c-mvsemi1__ttl1 .line img {
  max-width: 100%;
}

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl1 .line img {
    width: 10px;
  }
}

.c-mvsemi1__ttl2 {
  padding: 5.53vw 0 7.1vw;
  text-align: center;
  font-size: 6.34vw;
  letter-spacing: 0;
  color: #c88b1c;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  animation: fadeIn 0.6s ease 4.5s forwards;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1__ttl2 {
    padding: 8.84vh 0 11.35vh;
    font-size: 10.13vh;
  }
}

/*
@media only screen and (max-width: 1279px) {
	.c-mvsemi1__ttl2 {
	  font-size: 9.3rem;
	  padding: 60px 0 115px;
	}
}
*/

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl2 {
    font-size: 3.8rem;
    letter-spacing: 0;
    line-height: 1;
    padding: 109px 0 116px;
  }
}

.c-mvsemi1__ttl2 img {
  width: 27.64vw;
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1__ttl2 img {
    width: 44.3vh;
  }
}

/*
@media only screen and (max-width: 1279px) {
	.c-mvsemi1__ttl2 img {
		width: 418px;
	}
}
*/

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl2 img {
    width: 130px;
  }
}

.c-mvsemi1__ttl2 span {
  color: #fff;
  font-size: 5.28vw;
}

@media only screen and (min-width: 1500px) {
  .c-mvsemi1__ttl2 span {
    font-size: 8.45vh;
  }
}

/*
@media only screen and (max-width: 1279px) {
	.c-mvsemi1__ttl2 span {
	  font-size: 8rem;
	}
}
*/

@media only screen and (max-width: 640px) {
  .c-mvsemi1__ttl2 span {
    font-size: 3.3rem;
    line-height: 1;
    vertical-align: super;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.feature {
  width: 960px;
  margin: 94px auto 100px;
}

@media only screen and (max-width: 640px) {
  .feature {
    width: 100%;
    margin: 50px 0;
  }
}

.feature .feelings {
  margin-bottom: 40px;
  padding: 37px 42px 37px 37px;
  border: 3px #9f9087 solid;
  background-color: #fff;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .feature .feelings {
    padding: 10px;
    margin-bottom: 20px;
  }
}

.feature .feelings:after {
  display: block;
  clear: both;
  content: "";
}

@media only screen and (max-width: 640px) {
  .feature .ttl03 {
    margin-bottom: 25px !important;
    font-size: 1.7rem !important;
  }
}

.feature .feelings .txt {
  width: 440px;
  float: left;
}

@media only screen and (max-width: 640px) {
  .feature .feelings .txt {
    margin-bottom: 15px;
    width: auto;
    float: none;
  }
}

.feature .feelings .txt .num {
  padding: 0 0 0 93px;
  color: #3f1f0c;
  font-size: 1.8em;
  line-height: 31px;
}

@media only screen and (max-width: 640px) {
  .feature .feelings .txt .num {
    padding: 7px 0 0 50px;
    color: #3f1f0c;
    font-size: 1.8em;
  }
}

.feature .feelings .txt .num img {
  position: absolute;
  top: -3px;
  left: -3px;
}

@media only screen and (max-width: 640px) {
  .feature .feelings .txt .num img {
    width: 55px;
    height: auto;
  }
}

.feature .feelings .txt p {
  margin-top: 30px;
  font-weight: 500;
}

@media only screen and (max-width: 640px) {
  .feature .feelings .txt p {
    margin-top: 15px;
  }
}

.feature .feelings .txt p:first-child {
  margin-top: 0;
}

.feature .feelings .txt p.notes {
  margin-top: 0 !important;
}

.feature .feelings .img {
  float: right;
  margin-top: 5px;
}

@media only screen and (max-width: 640px) {
  .feature .feelings .img {
    float: none;
  }
}

@media only screen and (max-width: 640px) {
  .feature .feelings .img img {
    width: 100%;
  }
}

.conceptual {
  margin: 0 auto 100px;
  width: 960px;
}

@media only screen and (max-width: 640px) {
  .conceptual {
    margin: 0 0 50px;
    width: auto;
  }
}

.conceptual .c-slide1 li img {
  max-width: 100%;
}

@media only screen and (max-width: 640px) {
  .conceptual .c-slide1 li img {
    width: 100%;
  }
}

#conts .conceptual .caption {
  margin-top: 46px;
  font-weight: bold;
  text-align: center;
}

#conts .conceptual .caption li {
  color: #333;
  font-size: 1.6rem;
}

.p-voice {
  background: #f7f5f3;
  padding: 104px 0 100px;
  margin: 10px 0;
}

@media only screen and (max-width: 640px) {
  .p-voice {
    padding: 50px 0;
  }
}

.p-voice .ttl03 {
  margin-bottom: 49px;
}

@media only screen and (max-width: 640px) {
  .p-voice .ttl03 {
    margin: 0 0 25px !important;
  }
}

.voice {
  width: 960px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .voice {
    width: 100%;
  }
}

.c-list1__item {
  display: flex;
  align-items: center;
  margin-bottom: 56px;
}

@media only screen and (max-width: 640px) {
  .c-list1__item {
    display: block;
    margin-bottom: 50px;
  }
}

.c-list1__item:last-of-type {
  margin-bottom: 0;
}

.c-list1__icon {
  width: 202px;
  height: 202px;
  background: #d8d2ce;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 48px;
}

@media only screen and (max-width: 640px) {
  .c-list1__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 640px) {
  .c-list1__icon img {
    width: 50%;
  }
}

.c-list1__ttl1 {
  font-size: 2.4rem;
  line-height: 36px;
  color: #3f1f0c;
}

@media only screen and (max-width: 640px) {
  .c-list1__ttl1 {
    font-size: 1.8rem;
  }
}

.c-list1__txt1 {
  font-size: 1.8rem !important;
  line-height: 36px;
  font-weight: 600;
  color: #3f1f0c;
}

@media only screen and (max-width: 640px) {
  .c-list1__txt1 {
    font-size: 1.6rem !important;
  }
}

.c-list1__txt2 {
  font-weight: 1.4rem;
  line-height: 24px;
  color: #111;
}

.c-imgTxt1 {
  display: flex;
  background: #fff;
  padding: 25px 0;
  margin: 103px 0 0;
}

@media only screen and (max-width: 640px) {
  .c-imgTxt1 {
    margin: 50px 15px 0;
    display: block;
    padding: 25px 20px;
  }
}

.c-imgTxt1__img {
  width: 374px;
  flex-shrink: 0;
}

.c-imgTxt1__img img:hover {
  background: rgba(221, 221, 221, 0.3);
}
@media only screen and (max-width: 640px) {
  .c-imgTxt1__img {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .c-imgTxt1__img img {
    max-width: 100%;
  }
}

.c-imgTxt1__info p {
  padding: 0 20px;
  font-size: 1.4rem !important;
  color: #333 !important;
  font-weight: 400;
}

@media only screen and (max-width: 640px) {
  .c-imgTxt1__info p {
    padding: 0 3px;
  }
}

/*------------------------------------------------------------
  スライダーカスタマイズ
------------------------------------------------------------*/
.slick-dots {
  bottom: -33px;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before,
.slick-dots li.slick-active button:before {
  background-color: #3f1f0c;
  opacity: 1;
}

.slick-dots li button:before {
  width: 11px;
  height: 11px;
  background-color: #c6bcb6;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

@media only screen and (max-width: 640px) {
  .slick-dots li {
    width: 15px;
    height: 15px;
  }
  .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}

/*------------------------------------------------------------
  フォーム
------------------------------------------------------------*/
#conts #contact {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}
#conts #contact .catch {
  text-align: center;
  margin-bottom: 40px;
}
#conts #contact .woodBox01 {
  margin-bottom: 40px;
}
#conts #contact .woodBox01 .inner p {
  display: none;
}
#conts #contact .woodBox01 .inner .telBtn {
  display: none;
}
#conts #contact h3.subTitle {
  margin-bottom: 35px;
  padding: 9px 0;
  background: #ebe8e6;
  color: #3f1f0c;
  font-size: 1.8em;
  text-align: center;
}
#conts #contact .formTable dl dd {
  padding-right: 20px;
}
#conts .formTable p.formLabel {
  margin-bottom: 0;
  padding-right: 50px;
  color: #3f200e;
  font-size: 1em;
  line-height: 1.5;
  display: block;
  position: relative;
}
#conts .formTable p.formLabel .required {
  margin-top: -10px;
  position: absolute;
  top: 50%;
  right: 0;
}
#conts .formTable dl dd input,
#conts #contact .formTable dl dd select {
  padding: 10px 15px;
  font-size: 16px;
  line-height: normal;
  box-sizing: border-box;
  border: 1px solid #a9a9a9;
}
#conts .formTable dl dd textarea {
  padding: 10px 15px;
  width: 100%;
  font-size: 16px;
  line-height: 1.714;
}

#conts .formTable dl dd.name .frame {
  width: auto;
}
#conts .formTable dl dd.name .frame .input input {
  width: 380px;
}
#conts .formTable dl dd .arrow {
  margin-left: 15px;
  padding-left: 20px;
  background-color: transparent;
  border: none;
  position: relative;
  color: #111;
  text-decoration: none;
  cursor: pointer;
}

#conts .formTable dl dd .arrow:hover {
  text-decoration: underline;
}

#conts .formTable dl dd .arrow::before {
  margin: auto;
  width: 14px;
  height: 14px;
  background: url(/img/common/icon/arrow_08.png) no-repeat center;
  background-size: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
}
#conts #contact .formTable dl dd .rowList li {
  line-height: 2.5;
}
#conts #contact .formTable dl dd input[type="radio"] {
  display: none;
}
#conts #contact .formTable dl dd .rb-label {
  margin-right: 26px;
  padding-left: 40px;
  color: #3b4043;
  font-size: 16px;
  position: relative;
}
#conts #contact .formTable dl dd .rb {
  color: #666666;
}
#conts #contact .formTable dl dd .rb-label:before {
  width: 30px;
  height: 30px;
  border: 1px solid #999;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  box-sizing: border-box;
}
#conts #contact .formTable dl dd input[type="radio"]:checked + .rb-label:after {
  width: 18px;
  height: 18px;
  background-color: #740f05;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  content: "";
  box-sizing: border-box;
}
#conts #contact .formTable dl.js-radio-target.is-disable,
#conts #contact .formTable dl.js-radio-target2.is-disable {
  display: none;
}
#conts #contact .formTable dl dd .row {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
#conts #contact .formTable dl dd .row:first-of-type {
  margin-top: 0;
}
#conts #contact .formTable dl dd .row .subLabel {
  margin: 0 43px 0 0;
  color: #3f1f0c;
  font-size: 12px;
}
#conts #contact .formTable dl dd .row .input input.datepicker {
  margin: 0 13px 0 0;
  width: 200px;
  background-color: transparent;
  position: relative;
  z-index: 1;
}
#conts #contact .formTable dl dd .row .calendar {
  position: relative;
}
#conts #contact .formTable dl dd .row .calendar:before {
  margin: auto;
  width: 16px;
  height: 16px;
  background-image: url(/service/semi-order/img/icon_calender.png);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 29px;
  content: "";
}
#conts #contact .formTable dl dd select {
  padding: 11px 15px;
}
#conts #contact .formTable p.error {
  margin: 0;
  color: #900;
}
#conts #contact .formTable p.information {
  margin: 20px 0 16px 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: normal;
}
#conts #contact .formTable ul.submit {
  width: 440px;
  margin-top: 35px;
  overflow: hidden;
}
#conts #contact .formTable ul.submit li {
  float: left;
  margin: 0 10px;
}
#conts #contact .formTable ul.submit li input:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
#conts #contact .formTable .goTop {
  padding-bottom: 25px;
  text-align: center;
}
#conts #contact .formTable .goTop a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

@media only screen and (max-width: 640px) {
  #conts #contact {
    width: auto;
    margin-bottom: 30px;
  }
  #conts #contact {
    padding: 0 10px;
  }
  #conts #contact .woodBox01 {
    margin-bottom: 20px;
  }
  #conts #contact .woodBox01 .inner figure {
    display: none;
  }
  #conts #contact .woodBox01 .inner p {
    margin-bottom: 5px;
    display: block;
    text-align: center;
  }
  #conts #contact .woodBox01 .inner .telBtn {
    display: block;
  }
  #conts #contact .woodBox01 .inner .telBtn a {
    display: block;
  }
  #conts #contact .woodBox01 .inner .telBtn a img {
    width: 100%;
    height: auto;
  }
  #conts #contact h3.subTitle {
    margin-bottom: 15px;
  }
  #conts #contact .formTable dl dd {
    padding-right: 0;
  }
  #conts .formTable p.formLabel .required {
    margin: -10px 0 0 5px;
    right: auto;
  }
  #conts .formTable dl dd input,
  #conts #contact .formTable dl dd select {
    padding: 10px 15px;
    font-size: 1.4rem;
  }
  #conts .formTable dl dd textarea {
    font-size: 1.4rem;
  }
  #conts .formTable dl dd.name .frame {
    width: 100%;
  }
  #conts .formTable dl dd.name .frame .input {
    padding-right: 0;
  }
  #conts .formTable dl dd.name .frame .input input {
    width: 100%;
  }
  #conts .formTable dl dd .arrow {
    margin-top: 5px;
    margin-left: 0;
  }
  #conts #contact .formTable dl dd .rowList li {
    line-height: 1.5;
  }
  #conts #contact .formTable dl dd .rowList li:first-of-type {
    margin-bottom: 10px;
  }
  #conts #contact .formTable dl dd input[type="radio"] {
    display: none;
  }
  #conts #contact .formTable dl dd .rb-label {
    margin-right: 0;
    padding-left: 30px;
    font-size: 14px;
  }
  #conts #contact .formTable dl dd .rb {
    padding-left: 30px;
    font-size: 11px;
  }
  #conts #contact .formTable dl dd .rb-label:before {
    width: 20px;
    height: 20px;
  }
  #conts
    #contact
    .formTable
    dl
    dd
    input[type="radio"]:checked
    + .rb-label:after {
    width: 8px;
    height: 8px;
  }

  #conts #contact .formTable dl dd .row {
    flex-wrap: wrap;
  }

  #conts #contact .formTable dl dd .row .subLabel {
    width: 100%;
  }
  #conts #contact .formTable p.information {
    margin-top: 0;
  }

  #conts #contact .formTable ul.submit {
    width: 100%;
    text-align: center;
  }
  #conts #contact .formTable ul.submit li {
    float: none;
  }
  #conts #contact .formTable ul.submit li:first-child {
    margin-bottom: 10px;
  }
}

/*------------------------------------------------------------
  Datepicker
------------------------------------------------------------*/

.ui-widget {
  font-size: 1.6em;
}
.to-semi-order{
	z-index: 999;
	background: #290d09;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}
.to-semi-order.ver2{
	margin-bottom: 50px;
}
.to-semi-order p a{
	color: #FFF;
	padding: 20px;
	display: block;
	text-decoration: none;
	font-size:16px;
	font-weight:bold;
}
.to-semi-order p a:after{
	content:">";
	display: inline-block;
	transform: scale(1,.7) rotate(90deg);
	margin-left: 10px;
}
.only-sp{
	display: none;
}
@media only screen and (max-width: 640px) {
	.only-sp{
	display: block;
}
	.to-semi-order p a{
		font-size:14px;
		line-height: 1.7;
		letter-spacing: 2px;
	}
}


.c-slide {
  padding: 50px 0 60px;
}

.c-slide__ttl {
  text-align: center;
  font-size: 3.4rem;
  line-height: 1.95;
  color: #3f1f0c;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media only screen and (max-width: 640px) {
  .c-slide__ttl {
    font-size: 1.8rem;
    line-height: 1.7;
    padding: 0 10px;
  }
}

.c-slide__ttl.attention {
  margin-top: 18px;
  line-height: 1.6;
  box-sizing: border-box;
}

.c-slide__ttl.attention span {
  font-size: 12px;
  padding-top: 10px;
}

.c-slide__box {
  display: flex;
  gap: 20px;
  margin: 39px 0 0;
}

@media only screen and (max-width: 640px) {
  .c-slide__box {
    margin: 30px 0 0;
  }
}

.c-slide__item {
  max-width: 590px;
  margin: 0 10px;
}

.c-slide__item img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 640px) {
  .c-slide {
    padding: 30px 0;
    box-sizing: border-box;
  }

  .c-slide__box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .c-slide__item {
    margin: 0;
    width: calc((100% - 10px)/2);
  }
}

@media only screen and (min-width: 641px) {
  .sec-ana {
    width: 960px;
    margin: 0 auto 60px;
  }

  .sec-ana figure {
    width: 100%;
    margin: 0 auto;
  }

  .sec-ana figure a {
    transition: opacity .3s;
    display: block;
  }

  .sec-ana figure a:hover {
    opacity: 0.6;
  }

  .sec-ana_text {
    margin-top: 40px;
  }
}


@media only screen and (max-width: 640px) {
  .sec-ana {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    box-sizing: border-box;
    background-color: #fff;
  }

  .sec-ana_text {
    padding: 14px 20px;
    font-size: 14px;
    line-height: 2.2;
  }

  .sec-ana_text p {
    font-size: inherit!important;
    line-height: inherit!important;
  }
}

.c-list3__item {
  background: #fff;
  padding: 30px 30px 22px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
  .c-list3__item {
    padding: 15px 15px;
  }
}

.c-list3__item:last-of-type {
  margin-bottom: 0;
}

.c-list3__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  .c-list3__heading {
    width: 100%;
  }
}

.c-list3__icon {
  width: 70px;
  height: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f4f3f0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 7px 0 0;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .c-list3__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
}

.c-list3__icon img {
  display: block;
  max-height: 100%;
  width: auto;
}

.c-list3__txt1 {
  width: calc(100% - 88px);
  font-size: 1.8rem!important;
  line-height: 1.5!important;
  color: #3f1f0c;
  font-weight: bold;
}

@media only screen and (max-width: 640px) {
  .c-list3__txt1 {
    width: 100%;
    font-size: 1.6rem!important;
    margin: 20px 0 0;
  }
}

.c-list3__info {
  margin: 17px 0 0;
}

@media only screen and (max-width: 640px) {
  .c-list3__info {
    margin: 10px 0 0;
  }
}

.c-list3__txt2 {
  font-size: 1.4rem;
  line-height: 2;
  color: #111111;
}

@media only screen and (max-width: 640px) {
  .c-list3__txt2 {
    font-size: 1.2rem !important;
  }
}

.sec-first {
  background-color: #fff;
}

@media only screen and (max-width: 640px) {
  .sec-first {
    padding: 0 10px;
  }
}


.basicService li img{
    object-fit: contain;
} 

.fixedContact a.btn_mail{
    display:none;
}