/* グリーンバー */
.green-bar {
  height: 6px;
  /*background: linear-gradient(to right, #009900 30%, #00bf00 70%);*/
  background: linear-gradient(to right,
    #009900 0%,
    #009900 calc(100% * 2 / 7),
    #00bf00 calc(100% * 2 / 7),
    #00bf00 100%);  
  position: relative;
}

.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 共通レイアウト幅 */
.main-wrapper {
  padding: 20px 10px;
}

.sc-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 10px;
  box-sizing: border-box;
}

.right-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .sc-container {
    padding: 15px;
  }
}

.main-table,
.main-content {
  width: 1000px;
  padding: 0 10px;
  margin: 0 auto 40px;
  border: 0;
}

.content-table {
  width: 100%;
}
.section {
  padding: 10px 0;
}
.label {
  font-weight: bold;
  width: 20%;
  vertical-align: top;
  padding-right: 10px;
}

/*階層*/
.breadcrumb {
  font-size: 13px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  margin-right: 8px;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 8px;
  color: #888;
}

.breadcrumb li:last-child::after {
  content: "";
}
/*階層*/

/* インラインスタイルのCSS化 */
.border-bottom {
  border-bottom: 1px solid #ccc;
}

.border-top {
  border-top: 1px solid #ccc;
}

/* 工事中ページ */
.construction-section {
  text-align: center;
  padding: 80px 20px;
}

.construction-section h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 30px;
}

.construction-section .main-text {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.construction-section .sub-text {
  font-size: 1em;
  color: #888;
}

@media screen and (max-width: 768px) {
  .construction-section {
    padding: 60px 15px;
  }
  
  .construction-section h1 {
    font-size: 2em;
  }
}

/*横並び*/
.property-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.property-wrapper .property-section {
  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box;
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
  .property-wrapper {
    flex-direction: column;
  }

  .property-wrapper .property-section {
    flex: 1 1 100%;
  }
}
/*横並び*/
