@charset "UTF-8";

body {
  color: #464646;
  /*font-family: '小塚ゴシック Pro L','Kozuka Gothic Pro Light',sans-serif;フォントのウェイトを指定するとFirefoxで認識できない*/
  font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
  font-size: 14px;
  font-weight: normal;
}

/* --

緑10％ #e9f5f3;
緑25％ #c9e7e2;
緑30％ #bee2dc;
緑100％ #28a08c;

グレー #eaeaea;

------------------------------------------ */
/* -------------------- PC -------------------- */
/* -------------------------------------------- */

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

  .mobile { display: none; }

/* -------------------- スライダーボタン -------------------- */

  #page-top {
    position: fixed;
    bottom: 0;
    right: 30px;
    font-size: 14px
  }
  #page-top a {
    text-decoration: none;
    width: 100px;
    padding: 10px 0;
    text-align: center;
    display: block;
  }
  #page-top a img { width: 100%; }
  #page-top a img:hover {
    text-decoration: none;
    opacity: .5;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    transition: .5s;
  }

/* -------------------- アニメーション -------------------- */

  /*下からフェードイン*/
  .fade-in-bottom {
    opacity: 0;
    animation-name: fadein-bottom;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-bottom {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*右からフェードイン*/
  .fade-in-right {
    opacity: 0;
    animation-name: fadein-right;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-right {
    0% {
      opacity: 0;
      transform: translateX(150px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .element {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px);
    transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
  }
  /* フェードイン時に入るクラス */
  .is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .upDown {
    animation: upDown 5s infinite;
  }
  @keyframes upDown {
    0% { transform:translateY(0px); }
    70% { transform:translateY(0px); }
    80% { transform:translateY(-10px); }
    90% { transform:translateY(0px); }
  }

/* ------------------------ ヘッダー ------------------------ */

  header {
    width: 100%;
    height: 120px;
    position: relative;
  }
  header .backcolor {
    width: 70%;
    height: 120px;
    background-color: #e9f5f3;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  header .headmenu {
    width: 80%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  header .headmenu h1 {
    width: 50%;
    display: block;
  }
  header .headmenu h1 img {
    width: 320px;
  }
  header .headmenu .head_box {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  /* -- ラジオ広告 -- */
  header .headmenu .head_box .btn {
    display: inline-block;
    width: 350px;
    height: 60px;
    margin: 20px 0 0 0;
    padding: 0;
  }
  header .headmenu .head_box .btn img {
    width: 100%;
    cursor: pointer;
    cursor: hand;
  }
  header .headmenu .head_box .tel_box {
    text-align: center;
    width: 250px;
    height: 60px;
    display: table;
    margin: 20px 0 0 0;
    padding: 0 30px;
  }
  header .headmenu .head_box .tel_box img {
    width: 25px;
    display: block;
  }
  header .headmenu .head_box .tel_box a {
    color: #464646;
    font-size: 27px;
    font-weight: bold;
    letter-spacing: .1px;
    line-height: 1;
    text-decoration: none;
  }
  header .headmenu .head_box .tel_box p {
    font-size: 12px;
    line-height: .3;
  }
  header .headmenu .head_box .tel_box div {
    display: table-cell;
    vertical-align: middle;
  }
  header .headmenu .head_box .contact {
    display: table;
    width: 200px;
    height: 50px;
    margin: 20px 0 0 0;
    padding: 0;
  }
  header .headmenu .head_box .contact a {
    display: table-cell;
    vertical-align: middle;
    height: 50px;
    text-align: center;
    color: white;
    text-decoration: none;
    background-color: #006837;
    border: 2px solid #006837;
    margin: 0;
    transition: .5s;
    text-decoration: none;
  }
  header .headmenu .head_box .contact a:hover {
    background: #e9f5f3;
    color: #006837;
    transition: .5s;
  }
  header .menu_ber {
    width: 80%;
    text-align: right;
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  header .menu_ber ul {
    width: 1000px;
    display: block;
    padding: 0;
    margin: 0 0 0 auto;
  }
  header .menu_ber ul li {
    display: inline-block;
    padding: 0 20px;
    text-align: right;
    font-size: 13px;
    letter-spacing: 1px;
  }
  header .menu_ber ul li:last-child { padding: 0 0 0 20px; }
  header .menu_ber ul li a {
    color: #666;
    transition: .3s;
    text-decoration: none;
    position: relative;
  }
  header .menu_ber ul li a::after {
    content: '';
    width: 105%;
    height: 2px;
    background: #006837;
    position: absolute;
    left: -5px;
    bottom: -9px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.5s;
  }
  header .menu_ber ul li a:hover::after { transform: scale(1, 1); }

/* --------------------------- top --------------------------- */

  #top {
    width: 100%;
    height: 270px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url('../img/sale_top.jpg');
  }
  #top img {
    display: block;
    width: 100%;
  }
  #top h3 {
    font-size: 36px;
    letter-spacing: 5px;
    margin: 0;
    padding: 100px 0 0 0;
    line-height: 1;
    color: white;
  }
  #top h3 span {
    font-size: 18px;
    letter-spacing: 1px;
    color: white;
  }

/*----------------------   パンくず   ----------------------*/

  #nav {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #eaeaea;
  }
  .Breadcrumb {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  .Breadcrumb-ListGroup {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 1em;
  }
  .Breadcrumb-ListGroup-Item-Link[href] {
    color: #006837;
    text-decoration: none;
  }
  .Breadcrumb-ListGroup-Item-Link[href]:hover { opacity: 0.5; }
  .Breadcrumb-ListGroup > * + * { margin-left: 0.5em; }
  .Breadcrumb-ListGroup > * + *::before {
    content: ">";
    margin-left: 0.75em;
    margin-right: 0.75em;
  }

/* ------------------------ content01 ------------------------ */

  #content01 {
    width: 100%;
    background-color: #eaeaea;
    margin: 0;
    padding: 100px 0 50px;
  }
  h3 {
    text-align: center;
    font-size: 36px;
    letter-spacing: 5px;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
   h3 span {
    font-size: 18px;
    letter-spacing: 1px;
    color: #006837;
  }
  #content01 .boxContainer {
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  #content01 .boxContainer .box {
    width: 30%;
    margin: 0 auto;
  }
  #content01 .boxContainer .box img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  #content01 .boxContainer .box h4 {
    font-size: 12px;
    color: white;
    display: block;
    text-align: center;
    width: 130px;
    padding: 10px 0;
    margin: 0 0 10px 0;
  }
  #content01 .boxContainer .box h4.apart { background-color: #7ac743; }
  #content01 .boxContainer .box h4.mansion { background-color: #3fa7f3; }
  #content01 .boxContainer .box h5 {
    font-size: 24px;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 0;
  }
  #content01 .boxContainer .box p {
    font-size: 16px;
    line-height: 2;
  }

/* ------------------------ content06 ------------------------ */

  #content06 {
    background-image: url('../img/content06.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0;
    padding: 100px 0;
  }
  #content06 h4 {
    text-align: center;
    padding: 100px 0 30px;
    font-weight: normal;
  }
  #content06 .box {
    width: 550px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  #content06 .box .tel_box {
    text-align: center;
    width: 230px;
    height: 60px;
    display: table;
    margin: 20px 0 0 0;
    padding: 0 20px 0 0;
    border-right: #464646 1.5px solid;
  }
  #content06 .box .tel_box img {
    width: 25px;
    display: block;
    padding: 0 10px;
  }
  #content06 .box .tel_box a {
    color: #464646;
    font-size: 27px;
    font-weight: bold;
    letter-spacing: .1px;
    line-height: 1;
    text-decoration: none;
  }
  #content06 .box .tel_box p {
    font-size: 12px;
    line-height: .3;
  }
  #content06 .box .tel_box div {
    display: table-cell;
    vertical-align: middle;
  }
  #content06 .box .contact {
    display: table;
    width: 230px;
    height: 60px;
    margin: 20px 0 0 0;
    padding: 0;
  }
  #content06 .box .contact a {
    display: table-cell;
    vertical-align: middle;
    height: 50px;
    text-align: center;
    color: white;
    text-decoration: none;
    background-color: #006837;
    border: 2px solid #006837;
    margin: 0;
    transition: .5s;
    text-decoration: none;
  }
  #content06 .box .contact a:hover {
    background: rgba(255, 255, 255, .2);
    color: #006837;
    transition: .5s;
  }

/* -------------------- フッター -------------------- */

  footer {
    width: 100%;
    height: 200px;
    text-align: center;
    line-height: 3;
    font-size: 12px;
  }
  footer img {
    display: block;
    margin: 80px auto 50px;
    width: 300px;
  }
  footer small {
    font-size: 12px;
    letter-spacing: 1.25px;
  }

}
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* -------------------- レスポンシブ -------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* ---------------------------------------------------- */
/* --

緑10％ #e9f5f3;
緑25％ #c9e7e2;
緑30％ #bee2dc;
緑100％ #28a08c;
グレー #eaeaea;

text-align: justify;
text-justify: inter-ideograph;

 */
@media screen and (max-width: 749px) {
  header .headmenu ,
  header .menu_ber ,
  header .head_box ,
  header .tel_box ,
  header .contact { display: none; }

  body { font-size: 14px; }
  html, body { overflow-x: hidden; }

/* ------------------------ ヘッダー ------------------------ */

  header {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  header .headmenu {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  header .headmenu h1 {
    display: flex;
    align-items: center;
    width: 60%;
    margin: 0 auto 0 0;
    padding-left: 10px;
  }
  header .headmenu .head_box { display: none; }
  header .mobile nav.globalMenuSp {
    position: fixed;
    z-index: 6;
    top: 0;
    left: 0;
    background: rgba(233, 245, 243, .95);
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
  }
  header .mobile nav.globalMenuSp ul {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  header .mobile nav.globalMenuSp ul li {
    font-size: 14px;
    list-style-type: none;
    width: 100%;
    border-top: 1px solid #464646;
  }
  header .mobile nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  header .mobile nav.globalMenuSp ul li a {
    display: block;
    width: 90%;
    height: 55px;
    line-height: 55px;
    color: #666;
    text-decoration: none;
    margin: 0 auto;
  }
  header .mobile nav.globalMenuSp img {
    display: block;
    width: 90%;
    margin: 30px auto 0;
  }
  header .mobile nav.globalMenuSp.active { transform: translateY(0%); }
  header .mobile .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: rgba(233, 245, 243, .9);
    z-index: 10;
  }
  header .mobile .navToggle {
    display: block;
    position: fixed;
    right: 27px;
    top: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  }
  header .mobile .navToggle span {
    display: block;
    position: absolute;
    width: 35px;
    border-bottom: solid 3px #006837;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
  }
  header .mobile .navToggle span:nth-child(1) { top: 5px; }
  header .mobile .navToggle span:nth-child(2) { top: 14px; }
  header .mobile .navToggle span:nth-child(3) { top: 23px; }
  header .mobile .navToggle span:nth-child(4) {
    border: none;
    font-size: 12px;
    font-weight: bold;
    top: 32px;
    color: #006837;
  }
  header .mobile .navToggle.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .mobile .navToggle.active span:nth-child(2),
  header .mobile .navToggle.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header img {
    width: 100%;
    display: block;
  }

/* --------------------------- top --------------------------- */

  #top {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url('../img/about_top.jpg');
    background-size: cover;       /* 余白なしで画面いっぱい */
    background-position: center;
    text-align: center;
  }
  #top img {
    display: block;
    width: 100%;
  }
  #top h3 {
    font-size: 34px;
    letter-spacing: 5px;
    margin: 0;
    padding: 70px 0 0 0;
    line-height: 1;
    color: white;
  }
  #top h3 span {
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
  }

/*----------------------   パンくず   ----------------------*/

  .Breadcrumb {
    width: 95%;
    display: block;
    margin: 0 auto;
    padding: 0;
    font-size: 12px;
  }
  .Breadcrumb-ListGroup {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 1em;
  }
  .Breadcrumb-ListGroup-Item-Link[href] {
    color: #006837;
    text-decoration: none;
  }
  .Breadcrumb-ListGroup-Item-Link[href]:hover { opacity: 0.5; }
  .Breadcrumb-ListGroup > * + * { margin-left: 0.5em; }
  .Breadcrumb-ListGroup > * + *::before {
    content: ">";
    margin-left: 0.75em;
    margin-right: 0.75em;
  }

/* ------------------------ content01 ------------------------ */

  #content01 {
    width: 100%;
    background-color: #eaeaea;
    margin: 0;
    padding: 100px 0 50px;
  }
  h3 {
    text-align: center;
    font-size: 36px;
    letter-spacing: 5px;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
   h3 span {
    font-size: 18px;
    letter-spacing: 1px;
    color: #006837;
  }
  #content01 .boxContainer {
    width: 90%;
    margin: 50px auto;
    display: block;
  }
  #content01 .boxContainer .box {
    width: 80%;
    margin: 0 auto 40px;
  }
  #content01 .boxContainer .box img {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
  }
  #content01 .boxContainer .box h4 {
    font-size: 12px;
    color: white;
    display: block;
    text-align: center;
    width: 130px;
    padding: 10px 0;
    margin: 0 0 10px 0;
  }
  #content01 .boxContainer .box h4.apart { background-color: #7ac743; }
  #content01 .boxContainer .box h4.mansion { background-color: #3fa7f3; }
  #content01 .boxContainer .box h5 {
    font-size: 24px;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 0;
  }
  #content01 .boxContainer .box p {
    font-size: 16px;
    line-height: 2;
  }

/* ------------------------ content06 ------------------------ */

  #content06 {
    background-image: url('../img/content06.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0;
    padding: 100px 0;
  }
  #content06 h3 {
    text-align: center;
    font-size: 34px;
    letter-spacing: 5px;
    margin: 0 0 50px 0;
    padding: 0;
    line-height: 1;
  }
  #content06 h3 span {
    font-size: 16px;
    letter-spacing: 1px;
    color: #006837;
  }
  #content06 h4 {
    text-align: center;
    padding: 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 2;
  }
  #content06 .box {
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: block;
  }
  #content06 .box .tel_box {
    text-align: center;
    width: 100%;
    height: 60px;
    display: table;
    margin: 40px 0 0 0;
    padding: 0 20px 0 0;
    border-right: #464646 1.5px solid;
  }
  #content06 .box .tel_box img {
    width: 25px;
    display: block;
    padding: 0 10px;
  }
  #content06 .box .tel_box a {
    color: #464646;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: .1px;
    line-height: 1;
    text-decoration: none;
  }
  #content06 .box .tel_box p {
    font-size: 12px;
    line-height: .3;
  }
  #content06 .box .tel_box div {
    display: table-cell;
    vertical-align: middle;
  }
  #content06 .box .contact {
    display: table;
    width: 100%;
    height: 60px;
    margin: 50px 0 0 0;
    padding: 0;
  }
  #content06 .box .contact a {
    display: table-cell;
    vertical-align: middle;
    height: 50px;
    text-align: center;
    color: white;
    text-decoration: none;
    background-color: #006837;
    border: 2px solid #006837;
    margin: 0;
    transition: .5s;
    text-decoration: none;
  }

/* -------------------- フッター -------------------- */

  footer {
    width: 100%;
    height: 200px;
    text-align: center;
    line-height: 3;
    font-size: 12px;
  }
  footer img {
    display: block;
    margin: 80px auto 50px;
    width: 80%;
  }
  footer small {
    font-size: 12px;
    letter-spacing: 1.25px;
  }

/* -------------------- スライダーボタン -------------------- */

  #page-top {
    display: block;
    position: fixed;
    bottom: 0;
    right: 10px;
    font-size: 14px;
    z-index: 10;
  }
  #page-top a {
    text-decoration: none;
    width: 80px;
    padding: 10px 0;
    text-align: center;
    display: block;
  }
  #page-top a img { width: 100%; }
  #page-top a img:hover {
    text-decoration: none;
    opacity: .5;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    transition: .5s;
  }

/* -------------------- アニメーション -------------------- */

  /*下からフェードイン*/
  .fade-in-bottom {
    opacity: 0;
    animation-name: fadein-bottom;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-bottom {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /*右からフェードイン*/
  .fade-in-right {
    opacity: 0;
    animation-name: fadein-right;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein-right {
    0% {
      opacity: 0;
      transform: translateX(150px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .element {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100px);
    transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
  }
  /* フェードイン時に入るクラス */
  .is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .upDown { animation: upDown 5s infinite; }
  @keyframes upDown {
    0% { transform:translateY(0px); }
    70% { transform:translateY(0px); }
    80% { transform:translateY(-10px); }
    90% { transform:translateY(0px); }
  }
}