@charset "UTF-8";
* {
  -webkit-user-select: none;
  /* Safari, Chrome, iOS用 */
  -moz-user-select: none;
  /* Firefox用 */
  -ms-user-select: none;
  /* Internet Explorer 10+/Edge用 */
  user-select: none;
  /* 標準構文 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* iOS Safari用、透明を指定 */
  -webkit-touch-callout: none;
  /* iOS Safariでの長押しメニューを無効化 */
  -ms-touch-action: none;
  /* IE 10+、スクロールやズームのジェスチャーを無効化 */
  -webkit-user-drag: none;
  /* Safariでのドラッグを無効化 */ }

.c-flex-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .c-flex-row {
      flex-direction: column;
      align-items: center;
      justify-content: start; } }

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

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

.ie21-header__sub {
  display: none; }

.c-button {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  background-image: url("/ie/modelhouse/theme/assets/dannetsu_240301/images/button_arrow.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center  right 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 54px; }
  .c-button p {
    font-size: 14px;
    font-weight: 600;
    transform: translateY(1px); }

.c-yoyaku-button {
  transition: opacity 0.3s ease;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  letter-spacing: 0.1em;
  color: #fff;
  position: fixed;
  display: block;
  font-size: 14px;
  line-height: 1.2em;
  cursor: pointer;
  transition: 0.5s ease;
  background: url(/ie/modelhouse/theme/assets/dannetsu_240301/images/yoyaku_arrow_pc.svg) no-repeat bottom 27px left 19.5px #7F0019;
  padding: 36px 22.5px 45px;
  border-radius: 8px 0 0 8px;
  width: 58px;
  top: calc(30vh);
  right: 0;
  transform: translate(150%, 0%);
  animation: slidein 2s ease 1s 1 forwards; }
  @media screen and (max-width: 768px) {
    .c-yoyaku-button {
      width: 335px;
      background: url(/ie/modelhouse/theme/assets/dannetsu_240301/images/yoyaku_arrow_sp.svg) no-repeat #7F0019;
      background-position: 280px 50%;
      padding: 20px 51px;
      border-radius: 5px;
      top: calc(88vh);
      left: 50%;
      transform: translate(-50%, 550%);
      animation: slideup-in ease 1s 1s 1 forwards; } }

@keyframes slidein {
  0% {
    transform: translate(150%, 0%); }
  100% {
    transform: translate(0%, 0%); } }
@keyframes slideup-in {
  0% {
    transform: translate(-50%, 550%); }
  100% {
    transform: translate(-50%, 0%); } }
/* モーダル */
.modal {
  display: none; }

.modal.is-open {
  display: block; }

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000; }

.modal-container {
  background-color: #fff;
  overflow-y: auto;
  overflow-x: auto;
  padding: 20px;
  width: 593px;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none; }
  @media screen and (max-width: 768px) {
    .modal-container {
      width: 100vw;
      max-height: calc(90vh);
      margin: 30px; } }

.modal-container::-webkit-scrollbar {
  display: none; }

.modal-header {
  align-items: center;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .modal-header {
      position: fixed;
      width: 100vw; } }
  .modal-header h2 {
    font-size: 14px;
    font-weight: 600; }

.modal-close {
  background: transparent;
  color: #707070;
  font-size: 20px;
  border: 0; }
  @media screen and (max-width: 768px) {
    .modal-close {
      margin-right: 100px; } }

.modal-header .modal-close::before {
  content: "\2715"; }

.modal-content {
  margin: 50px 0;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none; }
  .modal-content img {
    width: 593px; }
  @media screen and (max-width: 768px) {
    .modal-content {
      width: 593px;
      margin: 25px 0; } }

.modal-content::-webkit-scrollbar {
  display: none; }

.modal-open {
  display: block; }

.box01 {
  background-color: #ccc;
  height: 200px;
  margin: 0 auto;
  width: 80%; }

.box02 {
  background-color: #ccc;
  height: 200px;
  margin: 0 auto;
  width: 80%; }

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes mmfadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes mmslideIn {
  from {
    transform: translateY(15%); }
  to {
    transform: translateY(0); } }
@keyframes mmslideOut {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(-10%); } }
.micromodal-slide {
  display: none; }

.micromodal-slide.is-open {
  display: block; }

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1); }

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1); }

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1); }

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1); }

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform; }

.p-top {
  width: 100%;
  border-bottom: solid 1px #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  margin: 0 !important; }
  @media screen and (max-width: 768px) {
    .p-top {
      padding: 0;
      padding-bottom: 50px; } }
  .p-top__mainv {
    margin-bottom: 100px; }
    @media screen and (max-width: 768px) {
      .p-top__mainv {
        margin-bottom: 50px; } }
  .p-top p {
    width: 565px; }
    @media screen and (max-width: 768px) {
      .p-top p {
        width: 315px; } }
  .p-top__button {
    margin-top: 50px;
    width: 262px; }
    .p-top__button p {
      font-size: 14px;
      font-weight: 600; }

.p-charts {
  width: 100%;
  border-bottom: solid 1px #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  margin: 0 !important; }
  @media screen and (max-width: 768px) {
    .p-charts {
      padding: 50px 0; } }
  .p-charts__heading {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start; }
    .p-charts__heading h3 {
      font-size: 18px;
      font-weight: 700;
      color: #808080; }
      @media screen and (max-width: 768px) {
        .p-charts__heading h3 {
          font-size: 14px; } }
      .p-charts__heading h3 small {
        font-size: 14px;
        font-weight: 300; }
        @media screen and (max-width: 768px) {
          .p-charts__heading h3 small {
            font-size: 11px; } }
  .p-charts__dannetsu {
    width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: dotted 1px black; }
    @media screen and (max-width: 768px) {
      .p-charts__dannetsu {
        width: 315px;
        padding: 0; } }
    .p-charts__dannetsu__heading {
      margin-bottom: 60px; }
      .p-charts__dannetsu__heading img {
        height: 24px; }
        @media screen and (max-width: 768px) {
          .p-charts__dannetsu__heading img {
            height: 17px; } }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__heading {
          margin-bottom: 35px; } }
    .p-charts__dannetsu__ua {
      background-color: #F7F7F7;
      width: 500px;
      padding: 30px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 114px; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__ua {
          width: 315px;
          margin-bottom: 30px; } }
      .p-charts__dannetsu__ua__container {
        width: 318px; }
        @media screen and (max-width: 768px) {
          .p-charts__dannetsu__ua__container {
            width: 264px; } }
        .p-charts__dannetsu__ua__container__red p {
          color: #7F0019;
          font-size: 16px;
          font-weight: 700; }
          @media screen and (max-width: 768px) {
            .p-charts__dannetsu__ua__container__red p {
              font-size: 13px; } }
        .p-charts__dannetsu__ua__container__normal p {
          color: #3C3C43;
          font-size: 16px;
          font-weight: 700; }
          .p-charts__dannetsu__ua__container__normal p small {
            font-weight: 13px;
            font-weight: 300; }
          @media screen and (max-width: 768px) {
            .p-charts__dannetsu__ua__container__normal p {
              font-size: 13px; }
              .p-charts__dannetsu__ua__container__normal p small {
                font-size: 10px; } }
    .p-charts__dannetsu__charts-wrap {
      width: 577px;
      margin-top: 75px;
      margin-bottom: 80px; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__charts-wrap {
          width: 315px;
          margin-top: 51px; } }
    .p-charts__dannetsu__chart-1 {
      width: 100%;
      display: flex;
      justify-content: right; }
      .p-charts__dannetsu__chart-1 img {
        width: 500px; }
        @media screen and (max-width: 768px) {
          .p-charts__dannetsu__chart-1 img {
            width: 315px; } }
    .p-charts__dannetsu__chart-2 {
      width: 410px;
      margin-bottom: 30px; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__chart-2 {
          width: 250px; } }
    .p-charts__dannetsu__desc {
      width: 565px;
      margin-bottom: 10px; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__desc {
          width: 302px;
          margin-bottom: 20px; } }
    .p-charts__dannetsu__button-wrapper {
      width: 565px;
      display: flex;
      flex-direction: row;
      justify-content: left;
      margin-bottom: 80px; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__button-wrapper {
          width: 315px;
          padding-left: 5px;
          margin-bottom: 50px; } }
    .p-charts__dannetsu__button {
      text-align: left;
      width: 94px;
      height: auto;
      border: none; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__button {
          background-size: 13px;
          width: 83px; } }
      .p-charts__dannetsu__button p {
        font-size: 16px;
        transform: translateY(-0.5px); }
        @media screen and (max-width: 768px) {
          .p-charts__dannetsu__button p {
            font-size: 14px;
            transform: translateY(0.5px); } }
    .p-charts__dannetsu__shoene {
      width: 410px;
      display: flex;
      justify-content: start;
      margin-bottom: 30px; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__shoene {
          width: 315px; } }
      .p-charts__dannetsu__shoene h3 {
        font-size: 18px;
        font-weight: 700; }
        .p-charts__dannetsu__shoene h3 span {
          font-size: 18px;
          color: #7F0019;
          font-weight: 700; }
        @media screen and (max-width: 768px) {
          .p-charts__dannetsu__shoene h3 {
            font-size: 14px;
            font-weight: 700; }
            .p-charts__dannetsu__shoene h3 span {
              font-size: 14px;
              color: #7F0019;
              font-weight: 700; } }
    .p-charts__dannetsu__chart-3 {
      width: 410px;
      margin-bottom: 80px; }
      @media screen and (max-width: 768px) {
        .p-charts__dannetsu__chart-3 {
          width: 250px; } }
  .p-charts__costs {
    width: 800px;
    padding: 100px 20px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media screen and (max-width: 768px) {
      .p-charts__costs {
        width: 315px;
        padding-top: 50px; } }
    .p-charts__costs__heading {
      margin-bottom: 100px; }
      .p-charts__costs__heading img {
        height: 24px; }
        @media screen and (max-width: 768px) {
          .p-charts__costs__heading img {
            height: 17px; } }
      @media screen and (max-width: 768px) {
        .p-charts__costs__heading {
          margin-bottom: 50px; } }
    .p-charts__costs__chart {
      margin-top: 100px;
      width: 350px;
      margin-bottom: 80px; }
      @media screen and (max-width: 768px) {
        .p-charts__costs__chart {
          margin-top: 50px;
          width: 250px;
          margin-bottom: 50px; } }
    .p-charts__costs small {
      font-size: 13px;
      font-weight: 300;
      width: 565px; }
      @media screen and (max-width: 768px) {
        .p-charts__costs small {
          width: 315px;
          font-size: 11px;
          font-weight: 300; } }

.p-house {
  width: 100%;
  border-bottom: solid 1px #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  margin: 0 !important;
  border-bottom: none; }
  @media screen and (max-width: 768px) {
    .p-house {
      padding: 50px 0; } }
  .p-house__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 780px; }
    @media screen and (max-width: 768px) {
      .p-house__wrapper {
        width: 315px; } }
  .p-house__kv {
    margin-top: -10px;
    margin-bottom: 45px; }
    .p-house__kv__container__txt {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: end; }
      .p-house__kv__container__txt img {
        width: 80px; }
    .p-house__kv__container__img {
      width: 780px;
      margin-top: -50px; }
      @media screen and (max-width: 768px) {
        .p-house__kv__container__img {
          width: 315px;
          margin-top: -10px; } }
    @media screen and (max-width: 768px) {
      .p-house__kv {
        width: 315px;
        margin-bottom: 30px; } }
  .p-house__feature {
    width: 453px;
    margin-bottom: 143px; }
    @media screen and (max-width: 768px) {
      .p-house__feature {
        width: 315px;
        margin-bottom: 50px; } }
  .p-house__double-dannetsu {
    padding: 0 10px;
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: start; }
    @media screen and (max-width: 768px) {
      .p-house__double-dannetsu {
        margin-bottom: 60px;
        padding: 0; } }
    .p-house__double-dannetsu__header {
      margin-bottom: 30px; }
      .p-house__double-dannetsu__header img {
        height: 18px;
        width: auto; }
    .p-house__double-dannetsu__flex {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
      .p-house__double-dannetsu__flex p {
        width: 370px; }
      .p-house__double-dannetsu__flex img {
        width: 315px; }
      @media screen and (max-width: 768px) {
        .p-house__double-dannetsu__flex {
          flex-direction: column; }
          .p-house__double-dannetsu__flex p {
            width: 315px;
            margin-bottom: 30px; } }
  .p-house__triple_glass {
    padding: 0 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start; }
    @media screen and (max-width: 768px) {
      .p-house__triple_glass {
        padding: 0;
        padding-bottom: 30px; } }
    .p-house__triple_glass__header {
      margin-bottom: 30px; }
      .p-house__triple_glass__header img {
        height: 18px;
        width: auto; }
    .p-house__triple_glass__flex {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
      .p-house__triple_glass__flex p {
        width: 370px; }
      .p-house__triple_glass__flex img {
        width: 315px; }
      @media screen and (max-width: 768px) {
        .p-house__triple_glass__flex {
          flex-direction: column; }
          .p-house__triple_glass__flex p {
            width: 315px;
            margin-bottom: 30px; } }

.p-basic-feature {
  width: 100%;
  border-bottom: solid 1px #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  margin: 0 !important;
  background-color: #F7F7F7; }
  @media screen and (max-width: 768px) {
    .p-basic-feature {
      padding: 50px 0; } }
  .p-basic-feature__heading {
    margin-bottom: 50px; }
    .p-basic-feature__heading img {
      height: 120px; }
      @media screen and (max-width: 768px) {
        .p-basic-feature__heading img {
          height: 80px; } }
  .p-basic-feature h3 {
    font-size: 18px;
    font-weight: 600; }
  .p-basic-feature__detail {
    margin-bottom: 92px;
    margin-top: 50px;
    width: 154px;
    height: 24px;
    border: none; }
    @media screen and (max-width: 768px) {
      .p-basic-feature__detail {
        margin-bottom: 80px; } }
  .p-basic-feature__containers-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center; }
    @media screen and (max-width: 768px) {
      .p-basic-feature__containers-wrapper {
        display: block; } }
  .p-basic-feature__container {
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-bottom: 80px; }
    @media screen and (max-width: 768px) {
      .p-basic-feature__container {
        width: 295px;
        flex-direction: row;
        justify-content: space-between;
        align-items: start; } }
    .p-basic-feature__container img {
      height: 26px;
      margin-bottom: 20px; }
      @media screen and (max-width: 768px) {
        .p-basic-feature__container img {
          margin-left: 8px;
          width: 25px;
          height: auto;
          margin-bottom: 0; } }
    .p-basic-feature__container p {
      width: 225px; }
      @media screen and (max-width: 768px) {
        .p-basic-feature__container p {
          width: 220px; } }
  .p-basic-feature__container-1 {
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-bottom: 80px;
    margin-top: -26px; }
    @media screen and (max-width: 768px) {
      .p-basic-feature__container-1 {
        width: 306px;
        flex-direction: row;
        justify-content: space-between;
        align-items: start; } }
    .p-basic-feature__container-1 img {
      height: 53px;
      margin-bottom: 20px; }
      @media screen and (max-width: 768px) {
        .p-basic-feature__container-1 img {
          width: 52px;
          height: auto;
          margin-bottom: 0; } }
    .p-basic-feature__container-1 p {
      width: 225px; }
      @media screen and (max-width: 768px) {
        .p-basic-feature__container-1 p {
          width: 220px; } }
  .p-basic-feature video {
    width: 225px;
    margin-top: 20px; }
    @media screen and (max-width: 768px) {
      .p-basic-feature video {
        width: 100%;
        margin-top: -45px; } }
  .p-basic-feature__modelhouse {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 140px; }
    @media screen and (max-width: 768px) {
      .p-basic-feature__modelhouse {
        margin-top: 50px;
        flex-direction: column;
        align-items: center; } }
    .p-basic-feature__modelhouse img {
      width: 320px; }
      @media screen and (max-width: 768px) {
        .p-basic-feature__modelhouse img {
          width: 315px;
          margin-bottom: 30px; } }
    .p-basic-feature__modelhouse__texts {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-left: 20px;
      width: 320px; }
      @media screen and (max-width: 768px) {
        .p-basic-feature__modelhouse__texts {
          margin: 0; } }
      .p-basic-feature__modelhouse__texts p {
        width: 300px;
        margin-bottom: 30px; }
        @media screen and (max-width: 768px) {
          .p-basic-feature__modelhouse__texts p {
            width: 315px;
            margin-bottom: 24px; } }
      .p-basic-feature__modelhouse__texts__button {
        width: 250px;
        background-color: white; }
        .p-basic-feature__modelhouse__texts__button p {
          width: auto;
          margin-bottom: 0; }

.p-sumainokatachi {
  padding: 100px 0;
  width: 710px; }
  @media screen and (max-width: 768px) {
    .p-sumainokatachi {
      width: 320px;
      padding-bottom: 0; } }
  .p-sumainokatachi__container {
    margin-right: 70px;
    display: flex;
    flex-direction: row;
    justify-content: left; }
    @media screen and (max-width: 768px) {
      .p-sumainokatachi__container {
        margin: 0;
        margin-bottom: 20px; } }
    .p-sumainokatachi__container__kv {
      height: 132px; }
    .p-sumainokatachi__container__texts {
      width: 200px;
      margin-left: 20px; }
      .p-sumainokatachi__container__texts small {
        font-size: 12px;
        color: #808080;
        font-weight: 300; }
      .p-sumainokatachi__container__texts p {
        font-size: 14px;
        font-weight: 600; }
      .p-sumainokatachi__container__texts__fukidashi {
        width: 155px; }
  .p-sumainokatachi__container:last-child {
    margin-right: 0; }

/*# sourceMappingURL=style.css.map */
