@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: "myFont";
  src: url("../fonts/Gotham-Book.eot?") format("eot"),
    url("../fonts/Gotham-Book.woff2") format("woff2"),
    url("../fonts/Gotham-Book.woff") format("woff");
}
/* Gothamフォントを使いたい時（0123456789/*-+=HOMEのみ） */
.numeral {
  font-family: "myFont";
}

@font-face {
  font-family: "company_name";
  src: url("../fonts/companyname.eot?") format("eot"),
    url("../fonts/companyname.woff2") format("woff2"),
    url("../fonts/companyname.woff") format("woff");
}

/* ロゴのフォント（株式会社イワサキホームのみ） */
.logo {
  font-family: "company_name";
  white-space: nowrap;
}

body {
  font-family: "メイリオ", Meiryo, Helvetica, Arial, Roboto, "Droid Sans",
    "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    sans-serif;
  /*border-top:calc(2px + 0.2vw) solid #fa2d00;*/
  margin: 0;
  padding: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}
.f_alpha {
  opacity: 0.7;
}
.display_inline_block {
  display: inline-block;
}
.f-l {
  float: left;
}
.harf {
  width: 50%;
  height: auto;
}
.bg_gray {
  background: #f8f8f8;
}
.mb2 {
  margin-bottom: 2%;
}
.mb3 {
  margin-bottom: 3%;
}
.mb4 {
  margin-bottom: 4%;
}
.mb5 {
  margin-bottom: 5%;
}
.mb6 {
  margin-bottom: 6%;
}
.ml2 {
  margin-left: 2%;
}
.ml3 {
  margin-left: 3%;
}
.ml4 {
  margin-left: 4%;
}
.ml5 {
  margin-left: 5%;
}
.ml6 {
  margin-left: 6%;
}
.mr2 {
  margin-right: 2%;
}
.mr3 {
  margin-right: 3%;
}
.mr4 {
  margin-right: 4%;
}
.mr5 {
  margin-right: 5%;
}
.mr6 {
  margin-right: 6%;
}
.mt2 {
  margin-top: 2%;
}
.fc-fa2d00 {
  color: #fa2d00;
}
.ta-c {
  text-align: center !important;
}

h2 {
  background-image: url(../image_common/h_tag/h2_bg.png);
  background-repeat: repeat-x;
  background-position: center 100%;
  margin-bottom: 3%;
}
h2 span.no_image {
  padding: 0 2% 0 0;
  background-color: #fff;
  font-size: calc(14px + 0.8vw);
  line-height: calc(14px + 1.4vw);
}
h2.pattern2 {
  background: #ccc;
  color: #333;
  text-align: center;
  padding: 1% 0 0.8% 0;
  margin-bottom: 3%;
  width: 100%;
  font-size: calc(16px + 0.6vw);
}

h3.lattice {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 2% 2% 2% 2%;
  background-color: #fff;
  background-image: linear-gradient(#ccc 2px, transparent 2px),
    linear-gradient(90deg, #ccc 2px, transparent 2px),
    linear-gradient(rgba(144, 144, 144, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 144, 144, 0.3) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
  margin-bottom: 3%;
  text-align: center;
  color: #000;
  font-size: calc(20px + 1vw);
  line-height: calc(36px + 1vw);
}

/* PC */
#main_contents h3.black_arrow {
  position: relative;
  width: 100%;
  height: 3vw;
  background-color: #000;
  text-align: center;
  color: #fff;
  padding-top: 1vw;
  font-size: calc(8px + 1vw);
  line-height: calc(24px + 1vw);
  margin-bottom: 3vw;
}
#main_contents h3.black_arrow .triangle {
  position: absolute;
  bottom: -2vw;
  left: 50%;
  margin: 0 auto 0 -5vw;
  width: 0;
  height: 0;
  border-top: 2vw solid #000;
  border-left: 5vw solid transparent;
  border-right: 5vw solid transparent;
}

/* SP */
#sp_main_contents h3.black_arrow {
  position: relative;
  width: 100%;
  height: 10vw;
  background-color: #000;
  text-align: center;
  color: #fff;
  padding-top: 1vw;
  font-size: calc(8px + 1vw);
  line-height: calc(24px + 1vw);
  margin-bottom: 3vw;
}
#sp_main_contents h3.black_arrow .triangle {
  position: absolute;
  bottom: -2vw;
  left: 50%;
  margin: 0 auto 0 -5vw;
  width: 0;
  height: 0;
  border-top: 2vw solid #000;
  border-left: 5vw solid transparent;
  border-right: 5vw solid transparent;
}

a img {
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden; /* 追加 */
  backface-visibility: hidden; /* 追加 */
}

a:hover img {
  opacity: 0.8;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80); /* IE lt 8 */
  -ms-filter: "alpha(opacity=80)"; /* IE 8 */
  vertical-align: bottom;
  -webkit-backface-visibility: hidden; /* 追加 */
  backface-visibility: hidden; /* 追加 */
}

.sub-header {
  background: #74001a;
  padding: 7px 0;
}

.sub-header > .container {
  width: 96%;
  max-width: 1040px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sub-header > .container p,
.sub-header > .container h1 {
  font-weight: 500;
  line-height: 1;
  color: #fff;
  font-size: 12px;
}

#header {
  width: 96%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.8vw 0 0 0;
}
#header_logo {
  display: flex;
  align-items: center;
  justify-content: left;
  vertical-align: middle;
  float: left;
  width: 48%;
  max-width: 520px;
  margin-bottom: 0.8vw;
}
#header_logo img.logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin-right: 1vw;
}
#header_logo .fsize_100 {
  font-size: calc(12px + 1.2vw);
  white-space: nowrap;
}
#header_logo .fsize_80 {
  font-size: calc(8px + 1vw);
  white-space: nowrap;
}
.logo_style {
  color: #000;
  text-decoration: none;
}

#header_tel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  vertical-align: middle;
  width: 50%;
  margin-top: 22px;
  margin-left: 0.6vw;
  white-space: nowrap;
}
#header_tel img.tel {
  width: 10%;
  height: auto;
  margin-right: 0.5vw;
}
#header_tel .fsize_100 {
  font-size: 170%;
  font-weight: bold;
}
#header_tel_sp {
  display: none;
}
a.header_contact {
  display: inline-block;
  background: #000;
  border-radius: 0.3vw; /* CSS3草案 */
  -webkit-border-radius: 0.3vw; /* Safari,Google Chrome用 */
  -moz-border-radius: 0.3vw; /* Firefox用 */
  padding: 1vw 2vw;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin-left: 0.6vw;
}
a.header_contact:hover {
  background: #666;
}

#header_tel img.tel_pc {
  width: 17%;
  height: 8%;
  margin-right: 0.5vw;
  margin-top: 0.1vw;
}
@media screen and (min-width: 601px) and (max-width: 970px) {
  #header_tel img.tel_pc {
    width: 17%;
    height: 8%;
    margin-right: 0.5vw;
    margin-top: 0.5vw;
  }
}

/* 共通回遊バナー */
.common_bnr ul {
  width: 100%;
  max-width: 1040px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.common_bnr a {
  display: block;
}
.common_bnr li {
  width: 20%;
}

/* Gotop PC */
#footer .gotop {
  width: 100%;
  border-bottom: 2px solid #74001a;
  vertical-align: bottom;
  padding: 0;
  margin: 0 0 3% 0;
}
#footer .gotop .inner {
  width: 100%;
  max-width: 1040px;
  text-align: right;
  margin: 0 auto;
}
#footer .gotop .inner a {
  display: block;
  padding: 1%;
  background: #74001a;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  border-top: 2px solid #74001a;
  border-left: 2px solid #74001a;
  border-right: 2px solid #74001a;
  width: 10%;
  text-align: center;
  margin-left: 85%;
}
#footer .gotop .inner a:hover {
  background: #fff;
  text-decoration: none;
  font-weight: bold;
  color: #74001a;
  border-top: 2px solid #74001a;
  border-left: 2px solid #74001a;
  border-right: 2px solid #74001a;
}

/* Gotop SP */
#sp_footer .gotop {
  width: 100%;
  border-bottom: 2px solid #74001a;
  vertical-align: bottom;
  padding: 0;
  margin: 0 0 3% 0;
}
#sp_footer .gotop .inner {
  width: 100%;
  max-width: 1040px;
  text-align: right;
  margin: 0 auto;
}
#sp_footer .gotop .inner a {
  display: block;
  padding: 1%;
  background: #74001a;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  border-top: 2px solid #74001a;
  border-left: 2px solid #74001a;
  border-right: 2px solid #74001a;
  width: 30%;
  text-align: center;
  margin-left: 65%;
}
#sp_footer .gotop .inner a:hover {
  background: #fff;
  text-decoration: none;
  font-weight: bold;
  color: #74001a;
  border-top: 2px solid #74001a;
  border-left: 2px solid #74001a;
  border-right: 2px solid #74001a;
}

/* フッター PC */
#footer {
  width: 100%;
  text-align: center;
  vertical-align: top;
}

#footer .inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}
#footer .company_comment {
  display: table-cell;
  width: 55%;
  max-width: 500px;
  text-align: left;
  float: left;
  margin-right: 3%;
}
#footer p.message {
  line-height: calc(18px + 0.4vw);
  font-size: calc(10px + 0.2vw);
  margin-bottom: 2%;
  text-align: left;
}
#footer .company_comment .company_info {
  text-align: left;
  padding: 2%;
  border: 1px dashed #333;
  vertical-align: top;
  margin-bottom: 5%;
}
#footer .company_comment .company_info .footer_logo {
  display: inline-block;
  padding: 0 2% 0 0;
}
#footer .company_comment .company_info p {
  display: inline-block;
  padding: 0;
  vertical-align: top;
  line-height: calc(20px + 0.4vw);
  font-size: calc(12px + 0.2vw);
}
#footer .company_comment .company_info_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#footer .company_comment img.fudosan_bnr {
  display: inline-block;
  height: 59px;
  width: auto;
  margin-bottom: 10%;
}
#footer .company_comment img.instagram_bnr {
  display: inline-block;
  height: 59px;
  width: auto;
  margin-bottom: 10%;
}
#footer .company_comment img.kuchikomi_bnr {
  display: inline-block;
  height: 101px;
  width: auto;
  margin-bottom: 10%;
}

#footer .foot_menu {
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 20px;
}
#footer .foot_menu a {
  text-decoration: none;
}
#footer .foot_menu a:hover {
  text-decoration: underline;
}
#footer .foot_menu .parent {
  min-width: 13%;
  display: inline-block;
}
#footer .foot_menu .tit {
  display: block;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
#footer .foot_menu .child {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.5em;
}
#footer .foot_menu .child li {
  margin-bottom: 5px;
}
#footer .foot_menu .child a {
  color: #333;
}
#footer .foot_menu li {
  /* 	font-size:calc( 10px + 0.2vw ); */
}
#footer .map {
  width: 40%;
  display: table-cell;
  max-width: 460px;
  border: 1px solid #999;
}
#footer .map iframe {
  width: 93%;
  height: 17vw;
  border: 5px solid #fff !important;
}
.copyright {
  background: #2d2d2d;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 1% 0;
  font-size: calc(10px + 0.2vw);
  position: relative;
  bottom: 0;
}

/* フッター SP */
#sp_footer {
  width: 100%;
  text-align: center;
  vertical-align: top;
}

#sp_footer .inner {
  width: 94%;
  margin: 0 auto;
  padding: 0;
}
#sp_footer .company_comment {
  width: 100%;
  text-align: center;
}
#sp_footer p.message {
  line-height: calc(18px + 0.4vw);
  font-size: calc(10px + 0.2vw);
  margin-bottom: 5%;
  text-align: left;
}
#sp_footer .company_comment .company_info {
  text-align: left;
  padding: 2% 0 2% 2%;
  border: 1px dashed #333;
  vertical-align: top;
  margin-bottom: 5%;
}
#sp_footer .company_comment .company_info_bottom {
  margin-bottom: 5%;
}
#sp_footer .company_comment .company_info .footer_logo {
  display: inline-block;
  padding: 0;
  width: 24%;
}
#sp_footer .company_comment .company_info p {
  display: inline-block;
  padding: 0;
  vertical-align: top;
  line-height: calc(16px + 0.4vw);
  font-size: calc(10px + 0.2vw);
  width: 72%;
  text-align: left;
}
#sp_footer .company_comment img.fudosan_bnr {
  display: inline-block;
  height: 59px;
  width: auto;
  margin-bottom: 10%;
  margin-left: 2%;
}
#sp_footer .company_comment img.instagram_bnr {
  display: inline-block;
  height: 59px;
  width: auto;
  margin-bottom: 10%;
}

#sp_footer .foot_menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 20px;
}
#sp_footer .foot_menu a {
  text-decoration: none;
}
#sp_footer .foot_menu .parent {
  /*width: 19%;*/
  display: inline-block;
}
#sp_footer .foot_menu .tit {
  display: block;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
#sp_footer .foot_menu .child {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.5em;
}
#sp_footer .foot_menu .child li {
  margin-bottom: 5px;
}
#sp_footer .foot_menu .child a {
  color: #333;
}
#sp_footer .foot_menu li {
  /* 	font-size:calc( 10px + 0.2vw ); */
}

#sp_footer .map {
  width: 100%;
  border: 1px solid #999;
}
#sp_footer .map iframe {
  width: 96%;
  height: 200px;
  border: 5px solid #fff !important;
}
.sp_copyright {
  background: #2d2d2d;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 2% 0 25% 0;
  font-size: calc(10px + 0.2vw);
  position: relative;
  bottom: 0;
}

/* フローティングメニュー */
#footerFloatingMenu {
  display: block;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  text-align: center;
  padding: 0 auto;
}

#footerFloatingMenu a {
  max-width: 25%;
  display: table-cell;
}
#footerFloatingMenu a img {
  vertical-align: top;
}
#footerFloatingMenu a:hover img {
  opacity: 1;
}

#sp-float-menu {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  text-align: center;
}
#sp-float-menu a:nth-child(1)  {
  color: #000;
}
#sp-float-menu a {
  color: #fff;
  width: 25%;
  display: block;
  text-decoration: none;
  padding: 4vw 0;
  font-size: 3.2vw;
  height: 13vw;
}
#sp-float-menu i {
  display: block;
  font-size: 9vw;
  margin-bottom: 1vw;
}
#sp-float-menu img {
  width: 9vw;
  display: block;
  margin: 0 auto 1.5vw;
}
#sp-float-menu a:nth-child(1) {
  background: #fff;
  outline: 1px solid #000;
}
#sp-float-menu a:nth-child(2) {
  background: #74001a;
}
#sp-float-menu a:nth-child(3) {
  background: #000;
}
#sp-float-menu a:nth-child(4) {
  background: #25b800;
}

.rightside_bnr {
  display: block;
  width: 67px;
  position: fixed;
  right: 0px;
  top: 100px;
  z-index: 9999;
  text-align: center;
  padding: 0 auto;
}
.rightside_bnr .b_line {
  width: 56px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #00b900;
  height: 170px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rightside_bnr .b_line img {
  width: 100%;
}
.rightside_bnr .b_event {
  width: 56px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #868686;
  height: 170px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-decoration: none;
}
.rightside_bnr .b_raiten {
  width: 56px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #74001a;
  height: 170px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-decoration: none;
}
.rightside_bnr .b_toi {
  width: 56px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #000;
  height: 170px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-decoration: none;
}
.rightside_bnr .b_line:hover,
.rightside_bnr .b_event:hover,
.rightside_bnr .b_raiten:hover,
.rightside_bnr .b_toi:hover {
  opacity: 0.7;
}

#main_contents {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.customer_navi,
.customer_navi_c {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #f2f2f2;
  clear: left;
  overflow: hidden;
}
.customer_navi p {
  margin: 0;
}
.customer_navi {
  text-align: right;
}
.customer_navi_c {
  text-align: center;
}
.customer_navi_left {
  dislpay: inline-block;
  float: left;
  margin: 0;
  padding: 0;
}
.customer_navi .pages {
  display: inlline-block;
  padding: 5px;
  margin: 0;
}
.customer_navi .current {
  display: inlline-block;
  padding: 3px 5px;
  margin: 0 2px;
  border: 1px solid #333;
  background-color: #fff;
}
.customer_photo01 img {
  border: 1px solid #ccc;
}
.customer_navi .page,
.customer_navi .last,
.customer_navi .nextpostslink,
.customer_navi .first,
.customer_navi .previouspostslink {
  display: inlline-block;
  padding: 5px 5px;
  margin: 0 2px;
  border: 1px solid #ccc;
  background-color: #fff;
}
.customer_navi .page:hover,
.customer_navi .last:hover,
.customer_navi .nextpostslink:hover,
.customer_navi .first:hover,
.customer_navi .previouspostslink:hover {
  background-color: #333;
  color: #fff;
}
.customer_navi .last,
.customer_navi .nextpostslink {
  text-decoration: none;
}

.page_back_btn01 {
  float: left;
}
.page_back_btn02 {
  margin: 0 auto;
}
.page_back_btn03 {
  float: right;
}

.page_back_btn01 a {
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0 0.2vw;
  color: #333;
  font-size: calc(10px + 0.2vw);
}
.page_back_btn02 a {
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0 0.2vw;
  color: #333;
  font-size: calc(10px + 0.2vw);
}
.page_back_btn03 a {
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0 0.2vw;
  color: #333;
  font-size: calc(10px + 0.2vw);
}

@media only screen and (max-width: 600px) /* 640 */ {
  .sub-header {
    padding: 1.87vw 0;
  }

  .sub-header > .container h1 {
    font-size: 3.2vw;
  }

  #header .menu-collapser {
    position: fixed;
    z-index: 9999;
    width: 13.45%;
    /* height: 7.6%; */
    padding: 0;
    margin-right: 2%;
    line-height: normal;
    top: 11.5vw;
  }
  #header .collapse-button {
    width: 100%;
    height: 13.45vw;
    top: 0;
    -o-transform: none;
    -ms-transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    transform: none;
    background-color: transparent;
  }
  #header_logo {
    display: flex;
    align-items: center;
    justify-content: left;
    vertical-align: middle;
    float: left;
    width: 70%;
  }
  #header_logo span {
    display: block;
    margin: 1.4vw 0;
  }
  #header_logo .head_logo {
    width: 34%;
    height: auto;
    margin-right: 1vw;
  }
  #header_tel {
    display: none;
  }
  #header_tel_sp {
    display: inline-block;
    width: 14%;
    margin-top: 0.6vw;
    z-index: 99999 !important;
  }
  /* 共通回遊バナー */
  .common_bnr ul {
    justify-content: center;
  }
  .common_bnr li {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .common_bnr img {
    width: 92%;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 0px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}

@media screen and (min-width: 300px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}

/* テーブル装飾PC */
#main_contents table.contact_form {
  width: 100%;
  max-width: 1040px;
  border-top: 1px dotted #aaa;
}
#main_contents table.contact_form p {
  margin: 0;
  padding: 0;
}
#main_contents table.contact_form th {
  width: 30%;
  padding: 1.5%;
  vertical-align: top;
  text-align: left;
  background: #eee;
  border-bottom: 1px dotted #aaa;
}
#main_contents table.contact_form td {
  padding: 1.5%;
  border-bottom: 1px dotted #aaa;
}
#main_contents table.contact_form td input {
  padding: 1.5%;
}
#main_contents table.contact_form tr.req th:before {
  background: #d20000;
  content: "必須";
  color: #fff;
  font-size: calc(10px + 0.2vw);
  padding: 0.1vw 0.3vw;
  border-radius: 0.3vw; /* CSS3草案 */
  -webkit-border-radius: 0.3vw; /* Safari,Google Chrome用 */
  -moz-border-radius: 0.3vw; /* Firefox用 */
  margin: 0 2% 0 0;
}
#main_contents table.contact_form tr.noreq th:before {
  background: #999;
  content: "任意";
  color: #fff;
  font-size: calc(10px + 0.2vw);
  padding: 0.1vw 0.3vw;
  border-radius: 0.3vw; /* CSS3草案 */
  -webkit-border-radius: 0.3vw; /* Safari,Google Chrome用 */
  -moz-border-radius: 0.3vw; /* Firefox用 */
  margin: 0 2% 0 0;
}
#main_contents table.contact_form tr.req td input,
.contact_form tr.req td textarea,
.contact_form tr.req td select {
  background-color: #ffeff5;
}
#main_contents table.contact_form td #kibo .wpcf7-list-item {
  display: inline-block;
  width: 30% !important;
}
#main_contents .submit {
  width: 96%;
  max-width: 1040px;
  text-align: center;
  background: #ddd;
  padding: 2%;
  margin: 2% 0;
}
#main_contents .submit input {
  padding: 1% 2%;
  letter-spacing: 0.5%;
  font-size: calc(16px + 0.2vw);
}

#main_contents table.contact_form p.kibou_01 {
  margin-bottom: 1%;
}
#main_contents table.contact_form p.kibou_02 {
  margin-bottom: 1%;
}
#main_contents table.contact_form p.henshin {
  margin: 2% 0;
}

#main_contents table.noform_table {
  width: 96%;
  max-width: 1040px;
  border-top: 1px dotted #aaa;
  margin-bottom: 3%;
}
#main_contents table.noform_table td {
  padding: 1.5%;
  border-bottom: 1px dotted #aaa;
  line-height: calc(22px + 0.2vw);
}
#main_contents table.noform_table td:nth-of-type(1n) {
  white-space: nowrap;
}
#main_contents table.noform_table td ul {
  margin-left: 2%;
}
#main_contents table.noform_table td ul li {
  list-style: disc;
}

/* テーブル装飾SP */
#sp_main_contents .sp_table table.contact_form {
  width: 100%;
  border-top: 1px dotted #aaa;
}
#sp_main_contents table.contact_form p {
  margin: 0;
  padding: 0;
}
#sp_main_contents .sp_table table.contact_form th {
  padding: 1.5%;
  vertical-align: top;
  text-align: left;
  background: #eee;
  border-bottom: 1px dotted #aaa;
  display: list-item;
  list-style: none;
}
#sp_main_contents .sp_table table.contact_form td {
  padding: 1.5%;
  border-bottom: 1px dotted #aaa;
  display: list-item;
  list-style: none;
}
#sp_main_contents .sp_table table.contact_form td input {
  padding: 1.5%;
  width: 80%;
}
#sp_main_contents .sp_table table.contact_form tr.req th:before {
  background: #d20000;
  content: "必須";
  color: #fff;
  font-size: calc(10px + 0.2vw);
  padding: 0.1vw 0.3vw;
  border-radius: 0.3vw;
  -webkit-border-radius: 0.3vw;
  -moz-border-radius: 0.3vw;
  margin: 0 2% 0 0;
}
#sp_main_contents .sp_table table.contact_form tr.noreq th:before {
  background: #999;
  content: "任意";
  color: #fff;
  font-size: calc(10px + 0.2vw);
  padding: 0.1vw 0.3vw;
  border-radius: 0.3vw;
  -webkit-border-radius: 0.3vw;
  -moz-border-radius: 0.3vw;
  margin: 0 2% 0 0;
}
#sp_main_contents .sp_table table.contact_form tr.req td input,
.contact_form tr.req td textarea,
.contact_form tr.req td select {
  background-color: #ffeff5;
}

.contact_form tr.req td select {
  padding: 1rem;
}
.your-message textarea {
  width: 100%;
}

#sp_main_contents .sp_table table.contact_form td #kibo .wpcf7-list-item,
#sp_main_contents .sp_table table.contact_form td #chance .wpcf7-list-item {
  display: inline-block;
  width: 45% !important;
  padding: 0;
  margin: 0;
}
#sp_main_contents .sp_table table.contact_form td #kibo .wpcf7-list-item input,
#sp_main_contents
  .sp_table
  table.contact_form
  td
  #chance
  .wpcf7-list-item
  input {
  width: 10%;
}
#sp_main_contents .sp_table .submit {
  width: 96%;
  text-align: center;
  background: #ddd;
  padding: 2%;
  margin: 2% 0;
}
#sp_main_contents .sp_table .submit input {
  padding: 1% 2%;
  letter-spacing: 0.5%;
  font-size: calc(16px + 0.2vw);
}
#sp_main_contents .sp_table textarea {
  width: 90%;
}

#sp_main_contents table.noform_table {
  width: 100%;
  border-top: 1px dotted #aaa;
  margin-bottom: 3%;
}
#sp_main_contents table.noform_table td {
  padding: 1.5%;
  border-bottom: 1px dotted #aaa;
  line-height: calc(22px + 0.2vw);
  display: list-item;
  list-style: none;
  word-wrap: break-word;
  width: 96%;
}
#sp_main_contents table.noform_table td:nth-child(odd) {
  background: #eee;
}
#sp_main_contents table.noform_table td:nth-of-type(2n) {
  word-wrap: break-word !important;
  width: 96%;
}
#sp_main_contents table.noform_table td ul {
  margin-left: 5%;
}
#sp_main_contents table.noform_table td ul li {
  list-style: disc;
}

#main_contents .page {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  line-height: calc(22px + 0.2vw);
}
#main_contents .page h2 {
  margin-top: 4vw;
}
#main_contents .page p {
  margin-bottom: 3%;
}

#sp_main_contents .page {
  width: 96%;
  margin: 0 auto;
  line-height: calc(22px + 0.2vw);
}
#sp_main_contents .page h2 {
  margin-top: 4vw;
}
#sp_main_contents .page p {
  margin-bottom: 3%;
}

@media screen and (min-width: 1758px) {
  /*　画面サイズが1758pxからはここを読み込む　*/
  #footer .company_comment .company_info {
    text-align: left;
    padding: 2%;
    border: 1px dashed #333;
    vertical-align: top;
    margin-bottom: 5%;
    white-space: nowrap;
  }
  #footer .company_comment .company_info p {
    display: inline-block;
    padding: 0;
    vertical-align: top;
    line-height: calc(20px + 0.4vw);
    font-size: calc(10px + 0.2vw);
  }
}

@media screen and (min-width: 1023px) and (max-width: 1024px) {
  /*　iPadPro　*/
  #header_logo {
    display: flex;
    align-items: center;
    justify-content: left;
    vertical-align: middle;
    float: left;
    width: 50%;
    margin-bottom: 0.8vw;
  }
  #header_tel {
    display: flex;
    align-items: center;
    justify-content: left;
    vertical-align: middle;
    float: left;
    width: 50%;
    margin-top: 10px;
    white-space: nowrap;
  }
}

@media screen and (min-width: 767px) and (max-width: 768px) {
  /*　iPad　*/
  #header_logo {
    display: flex;
    align-items: center;
    justify-content: left;
    vertical-align: middle;
    float: left;
    width: 38%;
    margin-bottom: 0.8vw;
    margin-right: 1vw;
  }
  #header_tel {
    display: flex;
    align-items: center;
    justify-content: left;
    vertical-align: middle;
    float: left;
    width: 50%;
    margin-top: 3px !important;
    white-space: nowrap;
  }
  #footer .map {
    width: 20% !important;
    display: table-cell;
    border: 1px solid #999;
  }
  　　#footer .map iframe {
    width: 80% !important;
    height: 17vw;
    border: 3px solid #fff !important;
  }
  #footer .company_comment {
    display: table-cell;
    width: 40%;
    max-width: 500px;
    text-align: left;
    float: left;
    margin-right: 1%;
    margin-left: 3%;
  }
}

.marker_y {
  background: linear-gradient(transparent 40%, #ff3 40%);
  font-size: 90%;
}
.headtel_flex {
  display: flex;
}
.numeral_s {
  font-size: 100%;
  line-height: 1.2;
  width: min-content;
}

@media screen and (min-width: 601px) and (max-width: 875px) {
  .numeral_s {
    display: none;
  }
}

#sp_main_contents .sp_table #tatemono span {
  margin: 0 !important;
}

#sp_main_contents .sp_table #henshin span {
  margin: 0 !important;
  width: 100%;
}

#sp_main_contents .sp_table #tatemono input,
#sp_main_contents .sp_table #henshin input {
  width: 8% !important;
}

.single-date {
  text-align: right !important;
}

.c_center{text-align: center; margin: 50px auto; display: table;}
a.cnt_btn { padding:20px; display:block; border:1px solid #2d2d2d; background:#2d2d2d; color:#FFF; font-weight:normal; text-decoration:none; width:500px; text-align:center; }
a.cnt_btn:hover { background:#FFF; border:1px solid #2d2d2d; color:#2d2d2d; font-weight:bold;}

@media only screen and (max-width: 600px){
.c_center{display: block;}
a.cnt_btn { width:70%; margin: auto; }	
}

.renov_area_post{
	font-size:90%;
	line-height: 1.6;
}

ul.slimmenu li>ul {
  min-width: 240px;
}

ul.slimmenu li ul li {
  min-width: 240px;
}