@charset "UTF-8";
/*
Theme Name : MONDO CASA
Theme URI: http://example.com
Description:moritoneko.complest theme sample
Version: 1.0
Author: Takashi Abo / design studio moritoneko
Author URI : moritoneko.com
*/
/* Common */
body {
  color: #231815;
  font-family: "游ゴシック体", "YuGothic", "Yu Gothic medium", sans-serif,
    "Hiragino Sans";
  background-color: #c6d7d1 !important;
}

main {
  padding-top: 60px;
  margin-bottom: 65px;
}

h2 {
  font-size: 20px;
  line-height: 1.33em;
  font-weight: 600;
}

h3,
h4,
h5 {
  line-height: 1.5em;
}

p {
  font-size: 16px;
  line-height: 1.5em;
}

a {
  color: #231815;
  text-decoration: none;
  line-height: 1.5em;
  transition: 0.3s;
}
a:hover {
  color: #231815;
  transition: 0.3s;
  opacity: 0.8;
}
a:active {
  color: #231815;
}
a.more {
  display: block;
  font-size: 20px;
  position: relative;
  text-align: right;
  padding: 0 25px 0 0;
  margin: 5px 0 0;
  font-weight: 600;
}
a.more::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 20px;
  height: 23px;
}

.inr {
  margin: 0 auto;
  padding: 20px 4% 20px;
}

.line-u {
  display: block;
  margin: 0 auto 30px;
  height: 45px;
  width: 145px;
}
.line-u img {
  height: 45px;
  width: 145px;
}

/*** index_page ***/
#i_header {
  width: 100%;
  height: 60px;
  background-color: #626f7d;
  position: fixed;
  z-index: 9999;
  box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
#i_header .inr {
  padding-top: 0;
  padding-bottom: 0;
  -webkit-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
#i_header .inr #h__logo {
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
}
#i_header .inr #h__logo img {
  width: 262px;
}
#i_header .inr #h__logo p {
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  margin-top: 3px;
}
#i_header .inr #hamburger {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 17px;
  margin-top: 13px;
  position: relative;
}
#i_header .inr #hamburger:after {
  content: "";
  width: 30px;
  min-width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  border: 2px solid #fff;
  border-radius: 17px;
  position: absolute;
}
#i_header .inr #hamburger span {
  width: 14px;
  border-bottom: 2px solid #fff;
  border-radius: 1px;
  position: absolute;
  transition: all 0.4s;
  top: 0;
}
#i_header .inr #hamburger span:nth-child(1) {
  width: 14px;
  top: 11px;
  left: 10px;
}
#i_header .inr #hamburger span:nth-child(2) {
  width: 20px;
  top: 16px;
  left: 7px;
}
#i_header .inr #hamburger span:nth-child(3) {
  width: 14px;
  top: 21px;
  left: 10px;
}
#i_header .inr #hamburger.active:after {
  -webkit-animation: circle 0.2s 0.25s forwards;
  animation: circle 0.2s 0.25s forwards;
  border: 2px solid #fff;
}
#i_header .inr #hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}
#i_header .inr #hamburger.active span:nth-child(2) {
  opacity: 0;
}
#i_header .inr #hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}
#i_header .inr #spMenu {
  display: none;
  width: 100%;
  color: #ffffff;
  font-size: 18px;
  line-height: 4;
  margin-top: 25px;
}
#i_header .inr #spMenu ul li {
  opacity: 0;
}
#i_header .inr #spMenu ul li a {
  color: #ffffff;
  transition: 2s;
  position: relative;
}
#i_header .inr #spMenu ul li a:after {
  content: "";
  background: url("http://mondocasa.jp/img/header/menu_li_img.svg");
  background-repeat: no-repeat;
  width: 15px;
  height: 28px;
  display: block;
  opacity: 0;
  position: absolute;
  top: -5px;
  left: -23px;
  transition: 0.3s;
}
#i_header .inr #spMenu ul li a:hover:after {
  opacity: 1;
}
#i_header.active {
  height: 100vh;
  opacity: 0.97;
}
#i_header.active .inr #spMenu {
  display: block;
}
#i_header.active .inr #spMenu ul li {
  display: block;
  -webkit-animation: spmenu 0.8s 0.4s forwards;
  animation: spmenu 0.8s 0.4s forwards;
}

@-webkit-keyframes circle {
  0% {
    border-color: #fff;
    -webkit-transform: rotate(0);
  }
  25% {
    border-color: #fff #fff #fff transparent;
  }
  50% {
    border-color: #fff #fff transparent transparent;
  }
  75% {
    border-color: #fff transparent transparent transparent;
  }
  100% {
    border-color: transparent;
    -webkit-transform: rotate(-340deg);
  }
}
@keyframes circle {
  0% {
    border-color: #fff;
    -webkit-transform: rotate(0);
  }
  25% {
    border-color: #fff #fff #fff transparent;
  }
  50% {
    border-color: #fff #fff transparent transparent;
  }
  75% {
    border-color: #fff transparent transparent transparent;
  }
  100% {
    border-color: transparent;
    -webkit-transform: rotate(-340deg);
  }
}
@-webkit-keyframes spmenu {
  0% {
    -webkit-opacity: 0;
    -webkit-transform: translateX(0px);
  }
  100% {
    -webkit-opacity: 1;
    -webkit-transform: translateX(30px);
  }
}
@keyframes spmen {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(30px);
  }
}
/*** slider pro ***/
/*** slider pro end ***/
#i_news {
  background-color: #90b1af;
  width: 100%;
}
#i_news .inr {
  max-width: 768px;
}
#i_news .inr h2 {
  color: #ffffff;
}
#i_news .inr .box {
  background-color: #ffffff;
  margin: 10px 0 0 0;
  padding: 10px;
  position: relative;
  display: block;
}
#i_news .inr .box p {
  text-align: justify;
  width: calc(100% - 25px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#i_news .inr .box p span {
  font-size: 11px;
  display: inline-block;
  padding: 4px 8px;
  margin-left: 5px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.2;
  top: 13px;
  width: 63px;
}
#i_news .inr .box p span.news {
  background-color: #8f6a57;
  color: #fff;
}
#i_news .inr .box p span.event {
  background-color: #5c321c;
  color: #fff;
}
#i_news .inr .box p span.openhouse {
  background-color: #e17a46;
  color: #fff;
}
#i_news .inr .box .link {
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 23px;
  background-image: url("http://mondocasa.jp/img/arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
}

#i_bookCon {
  background-color: #f2f5f4;
  width: 100%;
}
#i_bookCon .inr {
  padding: 25px 25px 13px;
  text-align: center;
}
#i_bookCon .inr h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
#i_bookCon .inr .link {
  font-size: 14px;
  padding: 7px 2px;
  height: 22px;
  margin: 0 auto 12px;
  border: 1px #231815 solid;
  border-radius: 7px;
  max-width: calc(375px - 86px);
  background-color: #ffffff;
}
#i_bookCon .inr .link a {
  position: relative;
  vertical-align: sub;
  display: block;
}
#i_bookCon .inr .link a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 3px;
  width: 13px;
  height: 15px;
  background-image: url("http://mondocasa.jp/img/arrow.svg");
}
#i_bookCon .inr .link:hover {
  opacity: 0.5;
}

#i_catch .inr {
  background-color: #626f7d;
  text-align: center;
  color: #ffffff;
}
#i_catch .inr h2 {
  font-size: 28px;
  margin-bottom: 6px;
}
#i_catch .inr p {
  font-size: 14px;
}

#i_reason .inr {
  background-color: #c6d7d1;
  text-align: center;
}
#i_reason .inr h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #231815;
}
#i_reason .inr img {
  width: 100%;
  max-width: 480px;
}

#i_build {
  background-color: #f2f5f4;
  padding-bottom: 20px;
}
#i_build .inr h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
}
#i_build .inr ul li {
  font-size: 25px;
  list-style: none;
  background-color: #90b1af;
  margin: 0 auto 6px;
  padding: 6px 13px;
  height: 35px;
  max-width: 455px;
  transition: 0.3s;
  position: relative;
}
#i_build .inr ul li a {
  display: block;
  width: 100%;
  color: #ffffff;
}
#i_build .inr ul li:after {
  content: "";
  width: 13px;
  height: 15px;
  position: absolute;
  right: 13px;
  top: 16px;
  background-image: url("http://mondocasa.jp/img/arrow.svg");
}
#i_build .inr ul li:hover {
  background-color: #626f7d;
}
#i_build .inr ul li:hover:after {
  background-image: url("http://mondocasa.jp/img/arrow_w.svg");
}
#i_build .inr ul li.mini {
  font-size: 20px;
  padding: 11px 13px;
  height: 26px;
}

#i_case {
  background-color: #626f7d;
}
#i_case .inr {
  max-width: 768px;
  text-align: center;
  color: #ffffff;
}
#i_case .inr h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
#i_case .inr img {
  width: 100%;
  border-radius: 3px;
}
#i_case .inr a.more {
  color: #ffffff;
}
#i_case .inr a.more::after {
  background-image: url("http://mondocasa.jp/img/arrow_w.svg");
  background-repeat: no-repeat;
}

#i_about {
  background-color: #f2f5f4;
}
#i_about .inr {
  max-width: 768px;
  text-align: center;
  color: #231815;
}
#i_about .inr h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
#i_about .inr img {
  width: 100%;
  max-width: 480px;
  border-radius: 3px;
}
#i_about .inr a.more {
  color: #626f7d;
}
#i_about .inr a.more::after {
  background-image: url("http://mondocasa.jp/img/arrow.svg");
}

#i_note {
  background-color: #90b1af;
}
#i_note .inr {
  max-width: 768px;
  color: #231815;
  text-align: center;
}
#i_note .inr h2 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}
#i_note .inr .textDiv {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
}
#i_note .inr .textDiv h3 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: justify;
}
#i_note .inr .textDiv p {
  margin-bottom: 3%;
  text-align: justify;
}
#i_note .inr .textDiv p br {
  display: none;
}
#i_note .inr figure {
  overflow: hidden;
  position: relative;
  padding-top: 65%;
  margin-bottom: 5%;
}
#i_note .inr figure img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#i_note .inr a.more {
  color: #ffffff;
}
#i_note .inr a.more::after {
  background-image: url("http://mondocasa.jp/img/arrow_w.svg");
}

#i_insta {
  background-color: #f2f5f4;
}
#i_insta .inr {
  max-width: 768px;
  text-align: center;
  color: #231815;
  padding: 20px 4% 5%;
}
#i_insta .inr h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #i_insta .inr h2 br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #i_insta .inr h2 span {
    display: none;
  }
}
#i_insta .inr div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}
#i_insta .inr div a {
  display: block;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
}
#i_insta .inr div a:nth-child(2n) {
  margin-right: 0;
}
#i_insta .inr div a:nth-child(3) {
  margin-bottom: 0;
}
#i_insta .inr div a:nth-child(4) {
  margin-bottom: 0;
}
#i_insta .inr div a img {
  width: 100%;
}
#i_insta .inr .insta {
  width: 50px;
  border-radius: 3px;
}

#footer {
  background-color: #626f7d;
  position: fixed;
  height: 65px;
  bottom: 0;
  width: 100%;
  box-shadow: 0px 0px 3px 4px rgba(0, 0, 0, 0.05);
}
#footer .inr {
  padding: 0;
  color: #231815;
  width: 92%;
}
#footer .inr a.f_link {
  width: 52px;
  float: left;
  margin-top: 13px;
}
#footer .inr a.f_link:hover {
  opacity: 0.5;
}
#footer .inr a.f_link:nth-child(1) {
  margin-right: 22px;
}
#footer .inr a.f_link img {
  width: 52px;
}
#footer .inr .line {
  float: right;
  margin: 10px 0 0 0;
}
#footer .inr .line img {
  height: 45px;
}

/* LINE@　友だちボタン*/
#line_atto {
  float: right;
  max-width: 768px;
  margin-top: 23px;
}
#line_atto a {
  background: #25af00;
  box-shadow: 0 2px 0 #219900;
  font-size: 12px;
  position: relative;
  padding: 10px 15px;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
#line_atto a:hover {
  opacity: 1;
  background: #219900;
  -webkit-transform: translate3d(0px, 5px, 1px);
  -moz-transform: translate3d(0px, 5px, 1px);
  transform: translate3d(0px, 5px, 1px);
  box-shadow: none;
}
#line_atto a:after {
  background-image: url("http://mondocasa.jp/img/footer/line_icon.svg");
  background-repeat: no-repeat;
  width: 52px;
  height: 48px;
}

/* archive-news */
.u_header {
  background-color: #f2f5f4;
}
.u_header h2 {
  font-size: 22px;
  text-align: center;
  padding: 12px 4%;
  overflow: hidden;
  max-width: 768px;
  margin: 0 auto;
}
.u_header figure img {
  width: 100%;
}
.u_header.build_a_architect {
  text-align: left;
  max-width: 348px;
}
.u_header.cost_header {
  background-color: #f2f5f4;
}
.u_header.cost_header figure {
  background-color: #c6d7d1;
  margin: 0 auto;
}
.u_header.cost_header figure img {
  width: 100%;
  max-width: 828px;
  margin: 0 auto;
  display: block;
}

.u_news {
  background-color: #c6d7d1;
}
.u_news .inr {
  max-width: 768px;
  color: #231815;
  padding-bottom: 1px;
}
.u_news .inr h3 {
  font-size: 20px;
  text-align: left;
  margin: 0 5% 45px;
}
.u_news .inr h3.place {
  margin-bottom: 10px;
}
.u_news .inr h3.housename {
  text-align: right;
  margin-bottom: 20px;
}
.u_news .inr h4 {
  margin: 0 5% 0;
  line-height: 1.5em;
}
.u_news .inr p {
  max-width: 90%;
  margin: 0 5% 3%;
  text-align: justify;
}
.u_news .inr p:nth-of-type(2) {
  margin-bottom: 10%;
}
.u_news .inr figure {
  overflow: hidden;
  position: relative;
  padding-top: 65%;
  margin-bottom: 5%;
}
.u_news .inr figure img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.u_news .inr a.more {
  color: #ffffff;
}
.u_news .inr a.more::after {
  background-image: url("http://mondocasa.jp/img/arrow_w.svg");
}
.u_news .inr .line {
  width: 200px;
  height: 42px;
  margin: 0 auto 10px;
  text-align: center;
}
.u_news .inr .line a {
  background-color: #25af00;
  color: #ffffff;
  display: table-cell;
  height: 42px;
  width: 200px;
  vertical-align: middle;
}
.u_news .inr .line:hover {
  opacity: 0.9;
}
.u_news .inr .privacy {
  position: relative;
  text-align: center;
  margin: 0 auto 20px;
  display: block;
  width: 280px;
  color: #231815;
}
.u_news .inr .privacy::after {
  content: "";
  position: absolute;
  background-image: url("http://mondocasa.jp/img/arrow.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 40px;
  top: 0;
  right: 0;
}
.u_news:nth-of-type(2n) {
  background-color: #90b1af;
}

.u_form {
  background-color: #c6d7d1;
}
.u_form .inr {
  max-width: 368px;
  padding-bottom: 1px;
}
.u_form .inr h3 {
  font-size: 20px;
  text-align: left;
  margin: 0 5% 45px;
}
.u_form .inr h3.place {
  margin-bottom: 10px;
}
.u_form .inr h3.housename {
  text-align: right;
  margin-bottom: 20px;
}
.u_form .inr p {
  max-width: 90%;
  margin: 0 5%;
  text-align: justify;
}
.u_form .inr p:nth-of-type(2) {
  margin-bottom: 10%;
}
.u_form .inr .bubble {
  position: relative;
  background: #ffffff;
  border-radius: 23px;
  padding: 2%;
  width: 96%;
  margin: 0 0 15px;
}
.u_form .inr .bubble:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 23px;
  background-image: url("http://mondocasa.jp/img/under/triangle.svg");
  background-repeat: no-repeat;
  bottom: -2px;
  right: -3px;
}
.u_form .inr .bubble.formbubble p {
  text-align: center;
}
.u_form .inr figure {
  overflow: hidden;
  position: relative;
  padding-top: 65%;
  margin-bottom: 5%;
}
.u_form .inr figure img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.u_form .inr a.more {
  color: #ffffff;
}
.u_form .inr a.more::after {
  background-image: url("http://mondocasa.jp/img/arrow_w.svg");
}
.u_form .inr .privacy {
  position: relative;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 30px;
  display: block;
  width: 255px;
  color: #231815;
}
.u_form .inr .privacy::after {
  content: "";
  position: absolute;
  background-image: url("http://mondocasa.jp/img/arrow.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 40px;
  top: 0;
  right: 0;
}
.u_form .inr .line-it-button {
  margin: 0 auto 26px !important;
  display: block;
}
.u_form:nth-of-type(2n) {
  background-color: #90b1af;
}
.u_form.exp .inr h3 {
  height: 30px;
}
.u_form.exp .inr ul {
  margin: 0;
  max-width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin-left: 23px;
  margin-bottom: 19px;
  line-height: 1.5em;
}
.u_form.exp .inr ul li {
  list-style-type: none;
  padding-left: 8px;
  position: relative;
}
.u_form.exp .inr ul li:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: 3px;
  background-image: url("http://mondocasa.jp/img/under/list_disc.svg");
  background-repeat: no-repeat;
}
.u_form.exp .inr ul li span {
  color: #e83d18;
}

.u_privacy {
  background-color: #c6d7d1;
}
.u_privacy .inr {
  max-width: 768px;
  color: #231815;
  padding-bottom: 20px;
}
.u_privacy .inr h3 {
  font-size: 20px;
  text-align: left;
  margin: 0 5% 45px;
}
.u_privacy .inr h4 {
  font-size: 12.5px;
  margin: 0 5% 0;
}
.u_privacy .inr p {
  font-size: 12.5px;
  max-width: 90%;
  margin: 0 5% 8%;
  text-align: justify;
}

.u_build_a {
  background-color: #c6d7d1;
}
.u_build_a:nth-of-type(2n) {
  background-color: #f2f5f4;
}
.u_build_a .inr {
  max-width: 768px;
  color: #231815;
  padding-bottom: 1px;
}
.u_build_a .inr h3 {
  font-size: 20px;
  text-align: left;
  margin: 0 0 10px;
}
.u_build_a .inr h3.place {
  margin-bottom: 10px;
}
.u_build_a .inr h3.housename {
  text-align: right;
  margin-bottom: 20px;
}
.u_build_a .inr h4 {
  margin: 0 5% 0;
  line-height: 1.5em;
}
.u_build_a .inr p {
  max-width: 100%;
  margin: 0 0 6%;
  text-align: justify;
  font-size: 14px;
}
.u_build_a .inr p:nth-of-type(2) {
  margin-bottom: 10%;
}
.u_build_a .inr .bubble {
  position: relative;
  background: #ffffff;
  border-radius: 23px;
  padding: 2%;
  width: 96%;
  margin: 0 0 15px;
}
.u_build_a .inr .bubble:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 23px;
  background-image: url("http://mondocasa.jp/img/under/triangle.svg");
  background-repeat: no-repeat;
  bottom: -2px;
  right: -3px;
}
.u_build_a .inr .bubble ul {
  margin: 0;
  max-width: calc(100% - 15px);
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
  margin-left: 5px;
  line-height: 1.5em;
}
.u_build_a .inr .bubble ul li {
  list-style-type: none;
  padding-left: 8px;
  position: relative;
}
.u_build_a .inr .bubble ul li:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: 3px;
  background-image: url("http://mondocasa.jp/img/under/list_disc.svg");
  background-repeat: no-repeat;
}
.u_build_a .inr .bubble ul li span {
  color: #e83d18;
}
.u_build_a .inr figure {
  margin-bottom: 15px;
}
.u_build_a .inr figure img {
  width: 100%;
}

.u_build_b {
  background-color: #c6d7d1;
}
.u_build_b:nth-of-type(2n) {
  background-color: #90b1af;
  padding-bottom: 8px;
}
.u_build_b .inr {
  max-width: 768px;
  color: #231815;
  padding-bottom: 1px;
}
.u_build_b .inr h3 {
  font-size: 20px;
  text-align: left;
  margin: 0 0 10px;
}
.u_build_b .inr .bubble {
  position: relative;
  background: #ffffff;
  border-radius: 23px;
  padding: 15px 2%;
  width: 96%;
  margin: 0 0 20px;
}
.u_build_b .inr .bubble:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 23px;
  background-image: url("http://mondocasa.jp/img/under/triangle.svg");
  background-repeat: no-repeat;
  bottom: -2px;
  right: -3px;
}
.u_build_b .inr .bubble p {
  max-width: 100%;
  margin: 0;
  text-align: justify;
  font-size: 14px;
}
.u_build_b .inr .bubble p span {
  font-weight: 600;
}
.u_build_b .inr figure {
  margin-bottom: 15px;
}
.u_build_b .inr figure img {
  width: 100%;
}

.u_build_c {
  background-color: #f2f5f4;
}
.u_build_c:nth-of-type(2n) {
  background-color: #c6d7d1;
  padding-bottom: 8px;
}
.u_build_c .inr {
  max-width: 768px;
  color: #231815;
  padding-bottom: 1px;
}
.u_build_c .inr h3 {
  font-size: 20px;
  text-align: left;
  margin: 0 0 10px;
}
.u_build_c .inr .bubble {
  position: relative;
  background: #ffffff;
  border-radius: 23px;
  padding: 15px 2%;
  width: 96%;
  margin: 0 0 20px;
}
.u_build_c .inr .bubble:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 23px;
  background-image: url("http://mondocasa.jp/img/under/triangle.svg");
  background-repeat: no-repeat;
  bottom: -2px;
  right: -3px;
}
.u_build_c .inr .bubble p {
  max-width: 100%;
  margin: 0;
  text-align: justify;
  font-size: 14px;
}
.u_build_c .inr .bubble p span {
  font-weight: 600;
}
.u_build_c .inr figure {
  margin-bottom: 15px;
}
.u_build_c .inr figure img {
  width: 100%;
}

.u_shop {
  background-color: #c6d7d1;
  height: 100%;
}
.u_shop .inr {
  max-width: 598px;
  color: #231815;
  padding-bottom: 1px;
}
.u_shop .inr .bubble {
  position: relative;
  background: #ffffff;
  border-radius: 47px;
  padding: 35px 2%;
  width: 96%;
  margin: 0 0 15px;
}
.u_shop .inr .bubble:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 23px;
  background-image: url("http://mondocasa.jp/img/under/triangle.svg");
  background-repeat: no-repeat;
  bottom: -2px;
  right: -3px;
}
.u_shop .inr .bubble p {
  text-align: center;
}
.u_shop .inr .shop {
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.u_shop .inr .shop h3 {
  width: 80%;
  font-size: 20px;
  text-align: left;
  margin: 25px 10% 10px;
  color: #d0745f;
  line-height: 1em;
}
.u_shop .inr .shop h3 span {
  font-size: 13px;
}
.u_shop .inr .shop p {
  max-width: 100%;
  width: 80%;
  margin: 0 10%;
  text-align: justify;
  font-size: 14px;
}
.u_shop .inr .shop p:nth-of-type(2) {
  margin-bottom: 10px;
  text-align: right;
}
.u_shop .inr .shop .map {
  width: calc(80% - 10px);
  text-align: center;
  display: block;
  margin: 0 10%;
  padding: 10px 0;
  border: 5px #231815 solid;
  border-radius: 9px;
}
.u_shop .inr .shop .map:hover {
  background-color: #231815;
  color: #ffffff;
  opacity: 1;
}
.u_shop .inr .shop figure {
  overflow: hidden;
  position: relative;
  padding-top: 45%;
}
.u_shop .inr .shop figure img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.u_works {
  background-color: #c6d7d1;
}
.u_works .inr {
  max-width: 768px;
  padding: 20px 4% 15%;
  color: #231815;
}
.u_works .inr .works--div {
  -webkit-display: flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-bottom: 5%;
}
.u_works .inr .works--div .left {
  width: 50%;
}
.u_works .inr .works--div .left figure {
  overflow: hidden;
  position: relative;
  padding-top: 95%;
}
.u_works .inr .works--div .left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.u_works .inr .works--div .right {
  width: 50%;
  background-color: #ffffff;
  position: relative;
}
.u_works .inr .works--div .right h3 {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  font-size: 18px;
  font-weight: 300;
}
.u_works .inr .works--div .right p {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  font-size: 12px;
}
.u_works .inr .works--div .right a.more {
  position: absolute;
  bottom: 4%;
  right: 4%;
  width: calc(92% - 15px);
  font-size: 12px;
  color: #231815;
  padding: 0 15px 0 0;
}
.u_works .inr .works--div .right a.more::after {
  background-image: url("http://mondocasa.jp/img/arrow.svg");
  background-repeat: no-repeat;
  top: 2px;
  width: 13px;
  height: 14px;
}

.u_works--single {
  background-color: #c6d7d1;
}
.u_works--single .inr {
  max-width: 768px;
  padding: 20px 4% 5%;
  color: #231815;
}
.u_works--single .inr h3 {
  font-size: 14px;
  font-weight: 300;
}
.u_works--single .inr p {
  font-size: 14px;
  max-width: 498px;
  margin-bottom: 5%;
}
.u_works--single .inr figure {
  margin-bottom: 5%;
}
.u_works--single .inr figure img {
  width: 100%;
}

.u_blog {
  background-color: #c6d7d1;
  max-width: 498px;
  margin: 0 auto;
}
.u_blog .inr {
  max-width: 768px;
  padding: 20px 4% 15%;
  color: #231815;
}
.u_blog .inr .contents {
  margin-bottom: 5%;
  max-width: 768px;
  background-color: #ffffff;
  width: 100%;
  overflow: hidden;
}
.u_blog .inr .contents figure {
  overflow: hidden;
  position: relative;
  margin: 0 5% 5%;
  width: 90%;
  padding-top: 65%;
}
.u_blog .inr .contents figure img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.u_blog .inr .contents h3 {
  font-size: 20px;
  font-weight: 300;
  border-bottom: 1px solid #7e7c7d;
  padding: 8px 5%;
  width: 90%;
}
.u_blog .inr .contents p {
  width: 90%;
  font-size: 14px;
  padding: 20px 5%;
}
.u_blog .inr .contents a.more {
  position: absolute;
  bottom: 4%;
  right: 4%;
  width: calc(92% - 15px);
  font-size: 12px;
  color: #231815;
  padding: 0 15px 0 0;
}
.u_blog .inr .contents a.more::after {
  background-image: url("http://mondocasa.jp/img/arrow.svg");
  background-repeat: no-repeat;
  top: 2px;
  width: 13px;
  height: 14px;
}

.u_works--single {
  background-color: #c6d7d1;
}
.u_works--single .inr {
  max-width: 768px;
  padding: 20px 4% 5%;
  color: #231815;
}
.u_works--single .inr h3 {
  font-size: 14px;
  font-weight: 300;
}
.u_works--single .inr p {
  font-size: 14px;
  max-width: 498px;
  margin-bottom: 5%;
}
.u_works--single .inr figure {
  margin-bottom: 5%;
}
.u_works--single .inr figure img {
  width: 100%;
}

.page-numbers {
  margin-top: 50px;
}
.page-numbers li {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #626f7d;
  border: 1px #626f7d solid;
  margin-right: 10px;
}
.page-numbers li a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
}
.page-numbers li a:hover {
  color: #626f7d;
  opacity: 1;
}
.page-numbers li a:hover {
  background-color: #ffffff;
  opacity: 1;
}
.page-numbers li span.current {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 30px;
  height: 30px;
  color: #626f7d;
  background-color: #ffffff;
}

.u_about .inr {
  max-width: 498px;
  padding: 20px 4% 10px;
  color: #231815;
}
.u_about .inr figure {
  margin-bottom: 25px;
}
.u_about .inr figure img {
  width: 100%;
}
.u_about .inr p.about--p {
  font-size: 14px;
  margin-bottom: 25px;
  text-align: center;
}

.u_about--menber {
  background: #c6d7d1;
}
.u_about--menber .inr {
  max-width: 498px;
  padding: 20px 4% 35px;
  color: #231815;
}
.u_about--menber .inr .name {
  position: relative;
  border-bottom: 1px solid #231815;
  height: 50px;
}
.u_about--menber .inr .name h3 {
  width: 50%;
  font-size: 30px;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.u_about--menber .inr .name p {
  width: 50%;
  text-align: right;
  color: #666464;
  font-size: 14px;
  position: absolute;
  bottom: -1px;
  right: 0;
}
.u_about--menber .inr .company {
  text-align: left;
  color: #666464;
  font-size: 14px;
}
.u_about--menber .inr figure {
  margin-bottom: 15px;
}
.u_about--menber .inr figure img {
  width: 100%;
}
.u_about--menber .inr .intro {
  font-size: 13px;
}
.u_about--menber .inr .profile {
  font-size: 12px;
  margin-top: 70px;
}
.u_about--menber:nth-of-type(2n + 1) {
  background: #f2f5f4;
}

.u_navi {
  background-color: #c6d7d1;
}
.u_navi .inr {
  max-width: 768px;
  padding: 20px 4% 15%;
}
.u_navi .inr .page-numbers {
  margin: 0 5%;
}

.openhouse_navi {
  margin: 0;
}
