/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #40210F;
  color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #40210F;
}
.menu__item{
  width: 100%;
  height: auto;
  padding: 1em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

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

/* アニメーション前のメニューの状態 */
.menu{
  pointer-events: none;
  opacity: 0;
  transform-origin: center;
  transform: scale(.5);
  transition: all .3s ease;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  pointer-events: auto;
  opacity: 1;
  transform: scale(2.5);
}
.PC{
  display: block;
}
.SP{
  display: none;
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
  .PC{
    display: none;
  }
  .SP{
    display: block;
  }
  body{
    min-width: 260%;
  }
    h2 img{
    width: 40%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .conceptBox p{
    font-size: 38px;
    padding: 3% 3%;
    text-align: left;
  }
  .photo img{
    width: 100%;
    height: auto;
  }
  .comLinkList li a img{
    width: 150%;
    height: auto;
    padding: 2%;
  }
  .houseBox h2 img{
    width: 58%;
    height: auto;
  }
  #main p{
    font-size: 38px;
    padding:3%;
    width: 70%;
    text-align: center;
    margin: 0 auto;
    } /*common*/
  
.foretBox .subBox .iconImg{
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.textImg img {
    width: 44%;
    height: auto;
}
.foretBox .subBox .iconImg{
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#main .newsBox{
  width: 90%;
  padding: 0;
  margin: 0 auto;
}
#main .newsBox .lBox {
  width: 100%;
  margin: 0 auto;
　float: none;
  }
#main .newsBox .link {
  width: 100%;
  padding: 20px 0;
  margin: 30px auto;
  text-align: center;
}
#main .newsBox .link img {
  width: 60%;
  height: auto;
  margin: 10px;
}
#main .newsBox .rBox {
  margin: 60px auto 0;
  float: none;
  width: 100%;
  }
h2{
  margin: 20px 0;
}
#main .comLinkList{
  width: 64%;
  margin: 0 auto 30px;
}
#main .comLinkList li {
    padding: 0;
    clear: both;    /* float解除*/
    margin: 0 auto;
    width: 64%;
    display: block;
  }
#container{
width: 100%!important;  
}
#main .houseBox section{
padding: 80px 0 80px;
}
#main .houseBox .link img{
  width: 63%;
  height: auto;
}
#main .planBox .infoUl li img{
  width: auto;
  height: 240px;
}
#main .planBox .infoUl {
  width: 70%;
}
#main .planBox .infoUl li .link img{
  width: 100%;
  height: auto;
}
#main .planBox .photoList{
  margin: 0 auto;
  width: 70%;
}
#main .planBox .photoList li img{
  width: 176px;
  height: auto;
}
#footer .fInner .lBox{
    float: none;
    width: 95%;
    text-align: center;
    border-right:none;
    border-bottom: 1px solid #B5B5B5;
    margin: 0 auto;
    height: 548px!important;
    padding: 35px 10px;
}
#footer .fInner .lBox p{
  font-size: 38px;
}
#footer .fInner .rBox{
  float: none;
  width: 90%;
    margin: 0 auto;
  padding: 80px 10px 60px;
}
#footer .fInner .lBox p,
#footer .fInner .rBox li a{
  font-size: 38px;
  padding: 0;
  width: 90%;
}
#footer .fInner .lBox .text{
  font-size: 42px;
}
#footer .fInner .rBox li a:hover, #footer .fInner .rBox li.on a{
  background-size: 5%;
}
#footer .fInner .rBox li a{
  padding-left: 56px;
  background: url(../img/common/icon/icon04.png) no-repeat left 8px;
  background-size: 40px;
}
#footer .copyright p{
  font-size: 20px;
}
}


