@charset "utf-8";

/* ----- common style ----- */

#header {
  margin-bottom: 0;
}
#contents {
	margin-left: auto;
	margin-right: auto;
	width: 100% !important;
	max-width: 1080px !important;
}


/* ----- section ----- */

.jj-section01 {
	margin: 120px auto;
	max-width: 960px;
}
#contents .jj-section01 * {
	box-sizing: border-box !important;
}
.jj-section01 h3 {
	background-image: none !important;
	border-top: none !important;
}

.jj-lead {
	margin: 60px auto 0;
}

.jj-section-inner {
	margin: 60px 0;
}
.jj-section-inner.jj-border {
  padding: 30px 0;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
}

@media (max-width: 640px) {
	.jj-section01 {
		margin: 60px 0;
		padding: 0 30px;
	}

	.jj-lead {
		margin: 30px auto 0;
		padding: 0 30px;
	}

	.jj-section-inner {
		margin: 30px 0;
	}
  .jj-section-inner.jj-border {
    padding: 30px 0;
  }

}


/* ----- title ----- */

.jj-titleA01 {
  margin: 0 0 60px !important;
  padding: 0 0 48px !important;
  font-size: 32px !important;
  font-weight: normal !important;
  line-height: 1.6 !important;
  letter-spacing: 6px !important;
  text-align: center !important;
  -webkit-font-smoothing: antialiased;
  background: url(/common/images/h3_bg.gif) no-repeat center bottom;
}
.jj-titleB01 {
  margin: 0 0 30px !important;
  padding: 0 0 20px !important;
  font-size: 26px !important;
  font-weight: normal !important;
  line-height: 1.6 !important;
  letter-spacing: 4px !important;
  text-align: left !important;
  -webkit-font-smoothing: antialiased;
  border-bottom: solid 1px #444 !important;
}
.jj-titleC01 {
  margin: 15px 0 !important;
  padding: 0 !important;
  font-size: 20px !important;
  font-weight: normal !important;
  line-height: 1.4 !important;
  letter-spacing: 4px !important;
  text-align: left !important;
  -webkit-font-smoothing: antialiased;
}
.jj-small {
	font-size: 80%;
	line-height: 1.4;
}
.jj-underline {
	background: linear-gradient(transparent 70%, #ffb8c1 70%);
}

@media (max-width: 640px) {
	.jj-titleA01 {
		margin: 0 0 30px !important;
		padding: 0 0 24px !important;
		font-size: 24px !important;
    letter-spacing: 3px !important;
	}
	.jj-titleB01 {
		margin: 0 0 15px !important;
		padding: 0 0 10px !important;
		font-size: 18px !important;
    letter-spacing: 2px !important;
	}
	.jj-titleC01 {
		margin: 10px 0 !important;
		font-size: 16px !important;
    letter-spacing: 2px !important;
	}
}



/* ----- remodel work ----- */

.jj-remodel-work {
  background-color:#ffffff;
  color: #333333;
  font-size: 16px;
}

.jj-remodel-work .jj-remodel-work-title {
  background-color: #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 !important;
  padding: 0 40px !important;
  height: 100px;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  cursor: pointer;
}
.jj-remodel-work .jj-remodel-work-title .jj-icon {
  position: absolute;
  top: calc(50% - 15px);
  right: 40px;
  width: 30px;
  height: 30px;
}
.jj-remodel-work .jj-remodel-work-title .jj-icon::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}
.jj-remodel-work .jj-remodel-work-title .jj-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  display: block;
  width: 2px;
  height: 100%;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.jj-remodel-work .jj-remodel-work-title.jj-active .jj-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
@media (max-width: 640px) {
	.jj-remodel-work {
  background-color: #f0f0f0;
  color: #333333;
  margin: 0 20px;
  font-size: 16px;
}
  .jj-remodel-work .jj-remodel-work-title {
    padding: 0 20px !important;
    height: 80px;
    font-size: 18px;
  }
  .jj-remodel-work .jj-remodel-work-title .jj-icon {
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

.jj-remodel-work .jj-remodel-work-body {
  position: relative;
  display: none;
  padding: 41px 40px 40px;
}
.jj-remodel-work .jj-remodel-work-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  display: block;
  width: calc(100% - 80px);
  height: 1px;
  background-color: #fff;
}
@media (max-width: 640px) {
  .jj-remodel-work .jj-remodel-work-body {
	    background-color: #fff;
    padding: 21px 20px 20px;
  }
  .jj-remodel-work .jj-remodel-work-body::before {
    left: 20px;
    width: calc(100% - 40px);
  }
}

.jj-remodel-work .jj-remodel-work-body p {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .jj-remodel-work .jj-remodel-work-body p {
    font-size: 14px;
  }
}

.jj-remodel-work .jj-remodel-work-body .jj-table01 {
  margin: 40px 0 0;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table {
  width: 100%;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th {
  padding: 20px 25px;
  background-color: #333;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th.jj-table-title01 {
  background-color: #c26767;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th.jj-table-title02 {
  background-color: #4c6a92;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th .jj-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #fff;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th .jj-title .jj-sub {
  display: block;
  font-size: 15px;
  font-weight: normal;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table tbody td {
  padding: 25px 10px 22px;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid 1px #999;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table tbody td.jj-td-title {
  width: 70%;
}
.jj-remodel-work .jj-remodel-work-body .jj-table01 table tbody td.jj-td-target {
  width: 30%;
  font-size: 13px;
  text-align: right;
}
@media (max-width: 640px) {
  .jj-remodel-work .jj-remodel-work-body .jj-table01 {
    margin: 30px 0 0;
  }
  .jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th {
    padding: 20px 10px 20px 15px;
  }
  .jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th .jj-title {
    gap: 20px;
    font-size: 16px;
  }
  .jj-remodel-work .jj-remodel-work-body .jj-table01 table thead th .jj-title .jj-sub {
    font-size: 13px;
    width: 130px;
  }
  .jj-remodel-work .jj-remodel-work-body .jj-table01 table tbody td {
    padding: 20px 0 16px;
    font-size: 13px;
  }
  .jj-remodel-work .jj-remodel-work-body .jj-table01 table tbody td.jj-td-title {
    width: 60%;
  }
  .jj-remodel-work .jj-remodel-work-body .jj-table01 table tbody td.jj-td-target {
    width: 40%;
    font-size: 11px;
  }
}

.jj-remodel-work .jj-remodel-work-body .jj-remodel-work-body-other {
  margin: 40px 0 0;
}
.jj-remodel-work .jj-remodel-work-body .jj-remodel-work-body-other p {
  font-size: 13px;
}
@media (max-width: 640px) {
  .jj-remodel-work .jj-remodel-work-body .jj-remodel-work-body-other {
    margin: 30px 0 0;
  }
}





/* ----- other ----- */

.cf {
	min-height: 1px;
}
.cf:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
* html .cf {
  height: 1px;
  /*＼*//*/
  height: auto;
  overflow: hidden;
  /**/
}


/* close button */
.add-control .action-close {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
}

