@charset "utf-8";

/** ***************************************************************************
 * 共用
 * ************************************************************************* */

/**
 * セクショニング
 */

:where(#main .section ~ .section) {
  margin-top: 80px;
}

:where(#main .column ~ .column) {
  margin-top: 40px;
}

:where(#main .block ~ .block) {
  margin-top: 20px;
}

@media screen and (min-width:768px) {

  :where(#main .section ~ .section) {
    margin-top: 160px;
  }

  :where(#main .column ~ .column) {
    margin-top: 80px;
  }

  :where(#main .block ~ .block) {
    margin-top: 40px;
  }

}

/** ***************************************************************************
 * ビジュアル
 * ************************************************************************* */

#visual {
  width: 100%;
  /*
  height: calc(100vh - 75px);
  height: calc(100svh - 75px);
  */
  color: #fff;
  background-color: #000;
  overflow: hidden;
  position: relative;
  z-index: 0;
  aspect-ratio: 16 / 9;
}

#visual a {
  color: inherit;
}

@media screen and (min-width:768px) {

  #visual {
    height: auto;
    margin-top: 0;
    padding-top: 0;
  }

}

/**
 * テキスト
 */

#visual div.text {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.8;
  font-size: 1.125em;
  text-align: center;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
}

#visual div.text img {
  margin-bottom: 15px;
  width: 90%;
}

@media screen and (min-width:768px) {

  #visual div.text {
    padding-left: 100px;
    padding-right: 100px;
    font-size: 1.375em;
  }
  #visual div.text img {
    margin-bottom: 15px;
    width: auto;
  }
}

/**
 * 動画
 */

#visual div.movie {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

#visual iframe {
  max-width: none;
  width: 177.78vh;
  height: 100%;
  pointer-events: none;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
}

@media screen and (min-width:768px) {

  #visual div.movie {
    height: auto;
    padding-bottom: 56.25%;
  }

  #visual iframe {
    max-width: 100%;
    width: 100%;
    transform: none;
    left: 0;
  }

}

/** ***************************************************************************
 * 紹介文
 * ************************************************************************* */

#lead {
  color: #fff;
  padding: 50px 0 30px;
  background-color: #a39c97;
  position: relative;
  z-index: 0;
}

#lead div.body {
  padding-left: 50px;
  padding-right: 50px;
}

#lead::before {
  content: '';
  width: 330px;
  height: 100%;
  background: url("../_image/index/lead-logo.png") top right / 100% auto no-repeat;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}

#lead a {
  color: inherit;
}

@media screen and (min-width:768px) {

  #lead {
    padding: 40px 0;
  }

  #lead div.body {
    padding-left: min(7.143vw, 100px);
    padding-right: min(7.143vw, 100px);
  }

  #lead::before {
    width: 100%;
    height: 80px;
    background-size: auto 100%;
  }

}

/**
 * テキスト
 */

#lead div.text {
  font-size: 1.072em;
  text-align: center;
}

#lead div.text small {
  font-size: 0.75em;
  display: block;
}

#lead div.text em {
  font-size: 2em;
  display: inline-block;
}

#lead div.text span {
  display: inline-block;
}
#lead div.text span sup {
  font-size: 12px;
}

@media screen and (min-width:768px) {

  #lead div.text {
    font-size: 2.143em;
    text-align: unset;
  }

  #lead div.text small {
    font-size: 0.5em;
  }
  #lead div.text span sup {
    font-size: 18px;
  }

  #lead div.text em {
    line-height: 1.2;
  }

}

/**
 * 詳細
 */

#lead div.detail ul.list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

#lead div.detail ul.list li {
  width: calc(100% / 2);
  min-height: 50px;
  margin: 5px 0;
  padding: 0 15px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lead div.detail ul.list li:nth-of-type(even) {
  border-left: unset;
}

@media screen and (min-width:768px) {

  #lead div.detail ul.list li {
    width: calc(100% / 4);
    min-width: 280px;
    min-height: 50px;
  }

  #lead div.detail ul.list li:nth-of-type(even) {
    border-left: 1px solid #fff;
  }

  #lead div.detail ul.list li:nth-of-type(4n+1) ~ li {
    margin-left: -1px;
  }

}

/** ***************************************************************************
 * INFORMATION
 * ************************************************************************* */

#information {
  padding: 40px 0;
}

#information div.body {
  max-width: 900px;
}

@media screen and (min-width:768px) {

  #information {
    padding: 60px 0;
  }

}

/**
 * タイトル
 */

#information .section-title {
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
}

/**
 * 内容
 */

#information div.content {
  padding: 20px 0;
  border-top: 1px solid #8c8572;
  border-bottom: 1px solid #8c8572;
}

#information div.content .button {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

#information div.content .button a {
  font-size: 1.375em;
  text-decoration: none;
  display: inline-block;
}

@media screen and (min-width:768px) {

  #information div.content {
    text-align: center;
  }

  #information div.content em {
    font-size: 1.25em;
  }

  #information div.content .button a {
    font-size: 2.125em;
  }

}

/**
 * ボタン
 */

#information div.button {
  text-align: center;
}

#information div.button a {
  margin: 5px;
}

/** ***************************************************************************
 * コンセプト
 * ************************************************************************* */

#concept {
  padding: 30px 0;
  background: url("../_image/index/concept-bg.jpg?20260625") center center / cover no-repeat;
}

#concept div.body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#concept div.contents {
  padding: 30px 20px 40px;
  color: #fff;
  font-weight: 500;
  position: relative;
}

#concept div.contents::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #008fa7;
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

#concept div.content {
  position: relative;
  z-index: 2;
}

@media screen and (min-width:768px) {

  #concept {
    position: relative;
    padding: 50px 0;
  }
  /*#concept::before {
    content: "みのり商店会（約240m／徒歩3分）";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 0.786em;
  }
  #concept::after {
    content: "みのり商店会（約240m／徒歩3分）";
    display: block;
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #000;
    font-weight: bold;
    font-size: 0.786em;
  }*/

  #concept div.contents {
    padding: 50px 50px 60px;
  }

}

/**
 * タイトル
 */

#concept .section-title {
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-size: 1.5em;
  text-align: center;
}

@media screen and (min-width:768px) {

  #concept .section-title {
    margin-bottom: 40px;
    letter-spacing: 4px;
  }

}

/**
 * キャッチコピー
 */

#concept div.content .catchcopy {
  margin-bottom: 40px;
  font-size: 1.5em;
  text-align: center;
}

@media screen and (min-width:768px) {

  #concept div.content .catchcopy {
    font-size: 2.25em;
  }

}

/**
 * 画像
 */

#concept div.content .image {
  text-align: center;
}

@media screen and (min-width:768px) {
}

/**
 * テキスト
 */

#concept div.content .text {
  line-height: 2;
}

@media screen and (min-width:768px) {

  #concept div.content .text {
    letter-spacing: 2px;
    line-height: 2.5;
    font-size: 1.25em;
    text-align: center;
  }

}

/** ***************************************************************************
 * Value
 * ************************************************************************* */

#value-1 {
  background: url("../_image/index/top-value-1.jpg?2026062502") 35% center / cover no-repeat;
  margin-top: 5px;
  display: block;
  width: 100%;
}
#value-1 a {
  padding: 30px 0;
  display: block;
  text-decoration: none;
}
#value-2 {
  background: url("../_image/index/top-value-2.jpg?2026062502") 34% center / cover no-repeat;
  margin-top: 5px;
  display: block;
  width: 100%;
}
#value-2 a {
  padding: 30px 0;
  display: block;
  text-decoration: none;
}
#value-3 {
  background: url("../_image/index/top-value-3.jpg?2026062502") 77% center / cover no-repeat;
  margin-top: 5px;
  display: block;
  width: 100%;
}
#value-3 a {
  padding: 30px 0;
  display: block;
  text-decoration: none;
}
#value-4 {
  background: url("../_image/index/top-value-4.jpg?2026062502") 32% center / cover no-repeat;
  margin-top: 5px;
  display: block;
  width: 100%;
}
#value-4 a {
  padding: 30px 0;
  display: block;
  text-decoration: none;
}
@media screen and (min-width:768px) {
#value-1 {
  background: url("../_image/index/top-value-1.jpg?2026062502") center center / cover no-repeat;
  margin-top: 10px;
  display: block;
  width: 100%;
}
#value-1 a {
  padding: 100px 0 30px;
  display: block;
}
#value-2 {
  background: url("../_image/index/top-value-2.jpg?2026062502") center center / cover no-repeat;
  margin-top: 10px;
  display: block;
  width: 100%;
}
#value-2 a {
  padding: 100px 0 30px;
  display: block;
}
#value-3 {
  background: url("../_image/index/top-value-3.jpg?2026062502") center center / cover no-repeat;
  margin-top: 10px;
  display: block;
  width: 100%;
}
#value-3 a {
  padding: 100px 0 30px;
  display: block;
}
#value-4 {
  background: url("../_image/index/top-value-4.jpg?2026062502") left center / cover no-repeat;
  margin-top: 10px;
  display: block;
  width: 100%;
}
#value-4 a {
  padding: 100px 0 30px;
  display: block;
}
}


#main [class*="value-"] div.body {
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.value-left .content {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}
.value-right .content {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:768px) {
.value-left .content {
  width: 50%;
  max-width: 430px;
  margin-left: 60px;
  margin-right: auto;
}
.value-right .content {
  width: 50%;
  max-width: 430px;
  margin-left: auto;
  margin-right: 0;
}
}


[class*="value-"] .content > * {
  color: #fff;
}
[class*="value-"] .content .number span {
  font-size: 0.786em;
}
[class*="value-"] .content .text {
  margin-top: 20px;
}
[class*="value-"] .content .text h2 {
  font-size: 1.5em;
}
[class*="value-"] .content .button.block {
  margin-top: 20px;
  margin-bottom: 50px;
}
[class*="value-"] .content .button.block .btn {
  font-size: 0.786em;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
[class*="value-"] .content .button.block .btn:hover {
  opacity: 0.7;
}
[class*="value-"] .content .caption {
  font-size: 0.786em;
}

@media screen and (min-width:768px) {
[class*="value-"] .content .number {}
[class*="value-"] .content .number span {
  font-size: 1.357em;
}
[class*="value-"] .content .text {
  margin-top: 40px;
}
[class*="value-"] .content .text h2 {
  font-size: 2.214em;
}
[class*="value-"] .content .button.block {
  margin-top: 40px;
  margin-bottom: 100px;
}
[class*="value-"] .content .button.block .btn {
  font-size: 1.357em;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
[class*="value-"] .content .button.block .btn:hover {
  opacity: 0.7;
}
[class*="value-"] .content .caption {
  font-size: 0.786em;
}

}

/** ***************************************************************************
 * 東京都マンション環境性能表示
 * ************************************************************************* */

#rating {
  padding: 40px 0;
}

#rating div.body {
  max-width: 1000px;
}

#rating .image {
  text-align: center;
}
#rating .text {
  margin-top: 60px;
  font-size: 0.714em;
}

@media screen and (min-width:768px) {

  #rating {
    padding: 60px 0;
  }

}


/** ***************************************************************************
 * 予告広告
 * ************************************************************************* */

#advertisement {
  padding: 40px 0;
}

#advertisement dl {
  display: block;
  margin: 0 auto;
  border-top: 1px solid #614a34;
  border-bottom: 1px solid #614a34;
  padding: 10px;
}

#advertisement dt {
  width: 140px;
  padding: 0.5em;
  border: 1px solid #614a34;
  margin: 0 auto;
}

#advertisement dt span {
  display: block;
  text-align: center;
  font-size: 1em;
}

#advertisement dd {
  width: 100%;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
}

#advertisement dd .text {
  font-size: 0.786em;
}

@media screen and (min-width:768px) {

  #advertisement {
    padding: 60px 0;
  }

#advertisement dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #614a34;
  border-bottom: 1px solid #614a34;
  padding: 10px;
}

#advertisement dt {
  width: 140px;
  padding: 0.5em;
  border: 1px solid #614a34;
}

#advertisement dt span {
  display: block;
  text-align: center;
  font-size: 1em;
}

#advertisement dd {
  width: calc(100% - 140px);
  margin-top: 0;
  margin-left: 1em;
}

#advertisement dd .text {
  font-size: 0.786em;
}

}
