@charset "UTF-8";
/* =========================================================
   CRAFT MAISON / MV
   Figma: PC = node 95:2730（1400px） / SP = node 95:2735（375px）
   デザイン原寸を em で組み、基準 font-size を vw 化して
   全体を等倍でスケーリングさせる
   ========================================================= */
/* ---------------------------------------------------------
   コンテナ
   --------------------------------------------------------- */
.mv {
  background-color: #003652;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
  .mv {
    font-size: 1.142857vw;
  }
}
@media screen and (max-width: 1000px) {
  .mv {
    font-size: calc(0.1vw + 10.43px);
  }
}
@media screen and (max-width: 768px) {
  .mv {
    font-size: 4.266667vw;
  }
}
.mv img {
  display: block;
}
.mv .mv_hero,
.mv .mv_photo,
.mv .mv_body,
.mv .mv_wappen,
.mv .mv_inner,
.mv .mv_mission,
.mv .mv_value,
.mv .mv_value_list,
.mv .mv_value_item,
.mv .mv_value_points {
  font-size: 1em;
}

/* 改行出し分け */
@media screen and (max-width: 768px) {
  .mv_br_pc {
    display: none;
  }
}

.mv_br_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv_br_sp {
    display: inline;
  }
}

/* ---------------------------------------------------------
   キービジュアル／外観写真
   コピー・ZERO・CUBE・開催日はすべて画像に焼き込み済みのため、
   トリミングせず原寸比のまま敷く
   PC: mv.webp 1400×1400 ／ zero_photo.webp 1400×698
   SP: mv_sp.webp 375×630 ／ zero_photo_sp.webp 375×216
   --------------------------------------------------------- */
.mv_hero,
.mv_photo {
  margin: 0;
}
.mv_hero picture,
.mv_photo picture {
  display: block;
}
.mv_hero img,
.mv_photo img {
  width: 100%;
  height: auto;
}

/* ---------------------------------------------------------
   本文ブロック（ネイビー地）
   --------------------------------------------------------- */
.mv_body {
  position: relative;
  padding-top: 6em;
  padding-bottom: 4.1875em;
}
@media screen and (max-width: 768px) {
  .mv_body {
    padding-top: 8vw;
    padding-bottom: 0;
  }
}

.mv_wappen {
  position: absolute;
  z-index: 1;
  top: -2.625em;
  right: clamp(144px, 39.239vw - 248.391px, 505px);
  width: 16.875em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .mv_wappen {
    top: -4.375em;
    right: 1.5em;
    width: 5.5em;
    top: -3.375em;
    right: 1em;
    width: 38.4vw;
  }
}
.mv_wappen img {
  width: 100%;
  height: auto;
}

.mv_inner {
  position: relative;
  width: 52.5em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .mv_inner {
    width: 20.4375em;
  }
}

/* ---------------------------------------------------------
   MISSION
   --------------------------------------------------------- */
.mv_mission_label {
  font-size: 1.125em;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #C8BB9B;
}
@media screen and (max-width: 768px) {
  .mv_mission_label {
    font-size: 0.875em;
  }
}

.mv_mission_title {
  margin-top: 0.55em;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv_mission_title {
    margin-top: 0.5em;
    font-size: 1.125em;
    line-height: 1.555556;
  }
}

.mv_mission_text {
  margin-top: 0.941176em;
  font-size: 1.0625em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv_mission_text {
    margin-top: 0.857143em;
    font-size: 0.875em;
    line-height: 1.928571;
    text-align: justify;
  }
}

/* ---------------------------------------------------------
   VALUE
   --------------------------------------------------------- */
.mv_value {
  margin-top: 2.5em;
  padding: 2.625em;
  background-color: rgba(255, 255, 255, 0.16);
}
@media screen and (max-width: 768px) {
  .mv_value {
    position: relative;
    margin-top: 2.375em;
    padding: 2em 0;
    background-color: transparent;
  }
  .mv_value::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1.5em;
    width: calc(100% + 3em);
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.mv_value_list {
  position: relative;
  list-style: none;
}

.mv_value_item {
  display: grid;
  grid-template-columns: 6em max-content 1fr;
  grid-template-areas: "num target title" "num text   text" "num points points";
  column-gap: 1em;
  align-items: start;
}
.mv_value_item + .mv_value_item {
  position: relative;
  margin-top: 1.625em;
  padding-top: 1.625em;
}
.mv_value_item + .mv_value_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 3px, transparent 3px, transparent 7px);
}
@media screen and (max-width: 768px) {
  .mv_value_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 0.75em;
  }
  .mv_value_item + .mv_value_item {
    margin-top: 1.5em;
    padding-top: 1.5em;
  }
  .mv_value_item + .mv_value_item::before {
    left: -1.5em;
    width: calc(100% + 3em);
  }
}

.mv_value_num {
  grid-area: num;
  align-self: center;
  font-size: 1em;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #C8BB9B;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .mv_value_num {
    align-self: auto;
    font-size: 0.9375em;
  }
}

.mv_value_target {
  grid-area: target;
  align-self: center;
  padding: 0.285714em 0.714286em;
  background-color: #fff;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.428571;
  letter-spacing: 0.04em;
  color: #003652;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .mv_value_target {
    align-self: auto;
    padding: 0.230769em 0.692308em;
    font-size: 0.8125em;
  }
}

.mv_value_title {
  grid-area: title;
  align-self: center;
  font-size: 1.3125em;
  font-weight: 700;
  line-height: 1.428571;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv_value_title {
    width: 100%;
    margin-top: 0.7em;
    font-size: 1.25em;
    line-height: 1.5;
  }
}

.mv_value_text {
  grid-area: text;
  margin-top: 0.6em;
  font-size: 0.9375em;
  font-weight: 400;
  line-height: 1.733333;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv_value_text {
    width: 100%;
    margin-top: 0.857143em;
    font-size: 0.875em;
    line-height: 1.857143;
  }
}

.mv_value_points {
  grid-area: points;
  list-style: none;
  display: grid;
  grid-template-columns: 16.125em max-content;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  justify-content: start;
  margin-top: 0.75em;
}
@media screen and (max-width: 768px) {
  .mv_value_points {
    display: block;
    width: 100%;
    margin-top: 0.875em;
  }
}
.mv_value_points li {
  position: relative;
  padding-left: 1em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.857143;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}
.mv_value_points li::before {
  content: "";
  position: absolute;
  top: 0.678571em;
  left: 0;
  width: 0.642857em;
  height: 0.642857em;
  background-color: #C8BB9B;
}
@media screen and (max-width: 768px) {
  .mv_value_points li {
    white-space: normal;
  }
}

/* =========================================================
   商品ラインナップ（ZERO-CUBE）
   Figma: PC = 1400px / SP = 375px
   上部のベージュ帯は .lineup::before で敷き、内観写真だけが帯を跨ぐ
   ========================================================= */
.lineup {
  position: relative;
  padding-top: 4.1875em;
  padding-bottom: 3.8125em;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #212121;
}
@media screen and (max-width: 1400px) {
  .lineup {
    font-size: 1.142857vw;
  }
}
@media screen and (max-width: 1000px) {
  .lineup {
    font-size: calc(0.1vw + 10.43px);
  }
}
@media screen and (max-width: 768px) {
  .lineup {
    padding-top: 1.75em;
    padding-bottom: 2.3125em;
    font-size: 4.266667vw;
  }
}
.lineup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18.75em;
  background-color: #C8BB9B;
}
@media screen and (max-width: 768px) {
  .lineup::before {
    height: 52em;
  }
}
.lineup img {
  display: block;
}
.lineup .lineup_inner,
.lineup .lineup_head,
.lineup .lineup_body,
.lineup .lineup_photo,
.lineup .lineup_detail,
.lineup .lineup_detail_head,
.lineup .lineup_detail_title,
.lineup .lineup_price,
.lineup .lineup_spec,
.lineup .lineup_spec_area,
.lineup .lineup_plans,
.lineup .lineup_plan,
.lineup .lineup_cta {
  font-size: 1em;
}

.lineup_inner {
  position: relative;
  z-index: 1;
  max-width: 62.5em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .lineup_inner {
    max-width: none;
    padding-inline: 1.5em;
  }
}

/* ---------------------------------------------------------
   見出し（バッジ＋タイトル）
   --------------------------------------------------------- */
.lineup_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lineup_head {
    display: block;
    text-align: center;
  }
}

.lineup_head_badge {
  flex-shrink: 0;
  padding: 0.285714em 2.190476em;
  border: 1px solid #fff;
  background-color: #4B5D5D;
  font-size: 1.3125em;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .lineup_head_badge {
    display: block;
    padding: 0.55em 0;
    font-size: 1.25em;
    letter-spacing: 0.06em;
  }
}

.lineup_head_title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.8125em;
  line-height: 1;
  letter-spacing: 0.013333em;
  color: #003652;
  white-space: nowrap;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 768px) {
  .lineup_head_title {
    margin-top: 0.5em;
    font-size: 2em;
    letter-spacing: 0.01875em;
  }
}

@media screen and (max-width: 768px) {
  .lineup_head_title_name {
    display: block;
    white-space: nowrap;
  }
}

.lineup_head_title_en {
  font-family: "Crimson Pro", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lineup_head_title_en {
    font-size: 1.25em;
  }
}

.lineup_head_title_sub {
  font-size: 0.488889em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lineup_head_title_sub {
    display: block;
    margin-top: 0.375em;
    font-size: 0.5em;
    line-height: 1.625;
  }
}

@media screen and (max-width: 768px) {
  .lineup_head_title_bracket_pc {
    display: none;
  }
}

.lineup_head_title_bracket_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .lineup_head_title_bracket_sp {
    display: inline;
  }
}

/* ---------------------------------------------------------
   本体（左：内観写真／右：商品情報）
   --------------------------------------------------------- */
.lineup_body {
  display: flex;
  align-items: flex-start;
  gap: 2.9375em;
  margin-top: 1.0625em;
}
@media screen and (max-width: 768px) {
  .lineup_body {
    display: block;
    margin-top: 1.125em;
  }
}

.lineup_photo {
  flex-shrink: 0;
  width: 25.5em;
}
@media screen and (max-width: 768px) {
  .lineup_photo {
    width: 100%;
  }
}
.lineup_photo img {
  width: 100%;
  height: auto;
}

.lineup_detail {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .lineup_detail {
    margin-top: 1.375em;
  }
}

/* ----- ZERO-CUBE ロゴ＋価格 ----- */
.lineup_detail_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.625em;
}
@media screen and (max-width: 768px) {
  .lineup_detail_head {
    display: block;
  }
}

.lineup_detail_title {
  flex-shrink: 0;
  width: 17.125em;
  margin-top: 0.25em;
}
@media screen and (max-width: 768px) {
  .lineup_detail_title {
    width: 16.25em;
    margin-top: 0;
    margin-inline: auto;
  }
}
.lineup_detail_title img {
  width: 100%;
  height: auto;
}

.lineup_price {
  flex-shrink: 0;
  width: 15.5em;
  padding: 0.3125em 0.3125em 0.4375em 0.8125em;
  border: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  .lineup_price {
    width: 100%;
    margin-top: 1.125em;
    padding: 0.5625em 0.625em 0.6875em;
    text-align: center;
  }
}

.lineup_price_label {
  position: relative;
  padding-left: 1em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.538462;
  letter-spacing: 0.02em;
}
.lineup_price_label::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background-color: #212121;
}
@media screen and (max-width: 768px) {
  .lineup_price_label {
    display: inline-block;
    text-align: left;
  }
}

.lineup_price_value {
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #C8102E;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .lineup_price_value {
    font-size: 1.75em;
  }
}

.lineup_price_unit {
  font-size: 0.533333em;
}

.lineup_price_tax {
  font-size: 0.433333em;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #212121;
}

/* ----- 間取りタイプ＋面積 ----- */
.lineup_spec {
  display: flex;
  align-items: center;
  gap: 0.875em;
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .lineup_spec {
    margin-top: 1.125em;
  }
}

.lineup_spec_type {
  flex-shrink: 0;
  width: 5.277778em;
  padding: 0.444444em 0;
  border: 1px solid #333333;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.222222;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lineup_spec_type {
    width: 3.444444em;
    padding: 0.611111em 0;
  }
}

.lineup_spec_area {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .lineup_spec_area {
    display: block;
  }
}
.lineup_spec_area li {
  position: relative;
  padding-left: 1.153846em;
  font-size: 0.8125em;
  font-weight: 400;
  line-height: 1.615385;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lineup_spec_area li::before {
  content: "";
  position: absolute;
  top: 0.615385em;
  left: 0;
  width: 0.615385em;
  height: 0.615385em;
  background-color: #212121;
}
.lineup_spec_area li:first-child {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lineup_spec_area li {
    font-size: 0.875em;
    padding-left: 1em;
    line-height: 1.857143;
  }
  .lineup_spec_area li::before {
    top: 0.55em;
    width: 0.8em;
    height: 0.8em;
  }
  .lineup_spec_area li:first-child {
    width: auto;
  }
}

/* ----- 間取り図 ----- */
.lineup_plans {
  display: flex;
  justify-content: space-between;
  margin-top: 2.8125em;
}
@media screen and (max-width: 768px) {
  .lineup_plans {
    display: block;
    margin-top: 4.1875em;
  }
}

@media screen and (max-width: 768px) {
  .lineup_plan + .lineup_plan {
    margin-top: 1.75em;
  }
}
.lineup_plan img {
  width: auto;
  height: 17.5em;
}
@media screen and (max-width: 768px) {
  .lineup_plan img {
    height: 17.1875em;
    margin-inline: auto;
  }
}

/* ---------------------------------------------------------
   注記・CTA
   --------------------------------------------------------- */
.lineup_note {
  margin-top: 1.214286em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.857143;
  letter-spacing: 0.02em;
  color: #212121;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .lineup_note {
    margin-top: 1.4em;
    font-size: 0.625em;
    line-height: 2.6;
    text-align: center;
  }
}

.lineup_cta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5em;
  margin-top: 3.5em;
  background-image: linear-gradient(to bottom, transparent 0.875em, #FEFA76 0.875em, #FEFA76 1.625em, transparent 1.625em);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 43.375em 100%;
}
.lineup_cta::before, .lineup_cta::after {
  content: "";
  flex-shrink: 0;
  width: 0.875em;
  height: 1.5em;
  margin-top: 0.5em;
  background: url(../craftmaison/images/cta_slash.svg) no-repeat center/contain;
}
.lineup_cta::before {
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .lineup_cta {
    display: block;
    position: relative;
    margin-top: 1.375em;
    background-image: none;
    text-align: center;
  }
  .lineup_cta::before, .lineup_cta::after {
    position: absolute;
    top: 0.4375em;
    width: 1.375em;
    height: 2.625em;
    margin-top: 0;
  }
  .lineup_cta::before {
    left: -0.6875em;
  }
  .lineup_cta::after {
    left: 18.6875em;
  }
}

.lineup_cta_text {
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1.461538;
  letter-spacing: 0.02em;
  color: #212121;
}
@media screen and (max-width: 768px) {
  .lineup_cta_text {
    display: block;
    font-size: 1.125em;
    line-height: 1.444444;
    letter-spacing: 0.02em;
  }
}

@media screen and (max-width: 768px) {
  .lineup_cta_line {
    display: block;
    background-image: linear-gradient(to bottom, transparent 0.611111em, #FEFA76 0.611111em, #FEFA76 1.055556em, transparent 1.055556em);
    background-repeat: no-repeat;
    background-position: center top;
  }
}
@media screen and (max-width: 768px) {
  .lineup_cta_line:first-child {
    background-size: 15.666667em 100%;
  }
}
@media screen and (max-width: 768px) {
  .lineup_cta_line:last-child {
    background-size: 14.111111em 100%;
  }
}/*# sourceMappingURL=craftmaison-event.css.map */