@charset "UTF-8";
#home main {
margin: 0 0 0 0;
}

/* =========================
　　　メインイメージ
=========================*/
.herobox {
width: 100%;
overflow: hidden;
}
.herobox .picture{
width: 100%;
height: 75vh;
background: url("../img/top/mainimg01.jpg") center center / 100% auto no-repeat;
position: relative;
margin-bottom: 30px;
}
/* ===============　キャッチコピー　================*/
.herobox .fronttxt {
position: absolute;
top:3vh;
right:5%;
color: #333;
margin-top: 80px;
}
.herobox .fronttxt h2 {
	font-size: 23px;
	font-weight: 600;
	line-height: 1.8;
	writing-mode: vertical-rl;
	letter-spacing: 2px;
}
.herobox .fronttxt h2 span{
color: #e00000;
}

/* ====　キャッチコピー2　====*/
.catch{
width: 100%;
position: absolute;
top: 62vh;
left: 10%;
font-size: 14px;
font-weight: 300;
line-height: 1.2;
letter-spacing: 2px;
border-bottom: dotted 1px #B6B6B6;
padding: 0 0 10px 0;
}

/* =========================
　　　横並びメインボタン
=========================*/
.herobox .mainbtn {
position: absolute;
top: 68vh;
left: 5px;
display: flex;
gap: 3px; /* ボタン間の余白 */
justify-content: space-between;
width: 98%;
padding-bottom: 30px;

z-index: 3;
}
.herobox .mainbtn button {
width: 49%;
position: relative;
padding: 20px 20px 20px 20px;
font-size: 14px;
font-weight: bold;
color: #fff;
background: linear-gradient(180deg, #ff2a2a 0%, #d60000 100%);
border: none;
cursor: pointer;
text-align: center;
white-space: nowrap;
}
/* 左の三角アイコン */
.herobox .mainbtn button::before {
content: "";
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-left: 7px solid #fff;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
}


/* =========================
   ピックアップスライダー
========================= */
.pickup-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 30px auto;
  padding: 12px 0 18px;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.pickup-slider-window {
  overflow: hidden;
  width: 100%;
}

.pickup-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.pickup-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 14px;
}

/* カード全体 */
.pickup-card {
  display: block;
  text-decoration: none;
  color: #333;
  background: #f7f1eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.pickup-card-lg {
  border: 1px solid #e7dfd7;
}

/* 画像 */
.pickup-thumb {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.pickup-thumb-lg {
  aspect-ratio: 1.45 / 1;
}

.pickup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像上ラベル */
.pickup-thumb-label {
  position: absolute;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.pickup-thumb-label-top {
  top: 10px;
  background: rgba(136, 54, 66, 0.9);
  font-weight: 700;
}

.pickup-thumb-label-bottom {
  bottom: 10px;
  background: rgba(128, 128, 128, 0.88);
}

/* 本文 */
.pickup-body {
  padding: 12px 12px 14px;
}

.pickup-title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* 金額+進捗 */
.pickup-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pickup-price {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

/* ピックアップ　進捗グラフ */
.pickup-progress-wrap {
  flex: 1;
  min-width: 0;
}
.pickup-progress-bar {
  position: relative;
  width: 100%;
  height: 16px;
  background: #fff;
  border: 1.5px solid #ef6767;
  border-radius: 999px;
  overflow: hidden;
  box-sizing: border-box;
}
.pickup-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--rate) * 1%);
  min-width: 15%;
  max-width: 100%;
  height: 100%;
  background: #ef6767;
  border-radius: 999px 0 0 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.pickup-progress-text {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}


/* メタ情報 */
.pickup-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  color: #666;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
.pickup-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* タグ */
.pickup-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
}

.pickup-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 9px;
  border-radius: 999px;
  background: #d4837a;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}


/* 左右矢印 */
.pickup-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pickup-arrow span {
  display: block;
  font-size: 60px;
  line-height: 1;
  color: #fff;
}
.pickup-prev {
  left: 2px;
}
.pickup-next {
  right: 2px;
}

/* ドット */
.pickup-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.pickup-dot {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  background: #d7d7d7;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.pickup-dot.is-active {
  background: #e35b5b;
}

/* PCで見た時の確認用 */
@media (min-width: 768px) {
  .pickup-slider {
    max-width: 100%;
  }
}
/* =========================
   ／ピックアップスライダーEND
========================= */



/* =========================
   お知らせここから
========================= */
.top-news {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 56px 8px 70px;
  background: #fff;
  box-sizing: border-box;
}

.top-news__head {
  text-align: center;
}

.top-news__title {
  margin: 0;
  color: #333;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.top-news__line {
  width: 94px;
  height: 1px;
  margin: 17px auto 0;
  background: #666;
}
.top-news__sub {
  margin: 17px 0 0;
  color: #333;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
}

.top-news__list {
  margin-top: 50px;
}
.top-news__item {
  border-bottom: 1px solid #bcbcbc;
}
.top-news__item:first-child {
  border-top: none;
}
.top-news__link {
  display: block;
  padding: 0 0 20px;
  text-decoration: none;
  color: inherit;
}
.top-news__item + .top-news__item .top-news__link {
  padding-top: 24px;
}
.top-news__date {
  display: block;
  color: #333;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}
.top-news__text {
  margin: 4px 0 0;
  color: #444;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 400;
}

/* PC確認用 */
@media (min-width: 768px) {
  .top-news {
    max-width: 390px;
  }
}
/* =========================
   お知らせここまで
========================= */


/* =========================
   簡単プロジェクト検索ここから
========================= */
.simple-search-box {
  width: calc(100% - 18px);
  margin: 0px auto 32px;
  padding: 24px 20px 26px;
  background: #fcf6e4;
  border: 1px solid #C2B893;
  border-radius: 20px;
  box-sizing: border-box;
}
.simple-search-box__title {
  margin: 0 0 26px;
  color: #333333;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
}
.simple-search-box__section {
  margin-top: 24px;
}
.simple-search-box__section:first-of-type {
  margin-top: 0;
}
.simple-search-box__heading {
  position: relative;
  margin: 0 0 18px;
  padding-left: 18px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
}
.simple-search-box__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.3em;
}
.simple-search-box__section--category .simple-search-box__heading {
  color: #af463e;
}
.simple-search-box__section--category .simple-search-box__heading::before {
  background: #d4837a;
}
.simple-search-box__section--area .simple-search-box__heading {
  color: #406f57;
}
.simple-search-box__section--area .simple-search-box__heading::before {
  background: #769a87;
}
.simple-search-box__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
}
.simple-search-box__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 12px 20px;
  white-space: nowrap;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
}
.simple-search-box__btn::before {
  content: "▶";
  margin-right: 7px;
  font-size: 6px;
}
.simple-search-box__btn--category {
  background: #d4837a;
}
.simple-search-box__btn--area {
  background: #769a87;
}
.simple-search-box__map {
  margin-top: 24px;
  text-align: center;
}
.simple-search-box__map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
		padding: 14px 30px 15px 30px;
  border-radius: 999px;
  background: #769a87;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  box-sizing: border-box;
}
.simple-search-box__map-btn::before {
  content: "▶";
  margin-right: 16px;
  font-size: 8px;
}
/* =========================
   ／簡単プロジェクト検索ここまで
========================= */


