@charset "UTF-8";

/*--------------------------------------------------------------------
common
cssの初期化
--------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  outline: none;
  font-style: normal;
  font-weight: normal;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
h1,h2,h3,h4,h5 {
  line-height: 1.55;
  font-size: 100%;
  font-weight: normal;
}
table { border-collapse: collapse; }
table th, table td {
  text-align: left;
  vertical-align: top;
}
ul,ol { list-style-type: none; }
img {
  width /***/:auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
       -o-box-sizing: border-box;
          box-sizing: border-box;
}
.Clear { clear: both; }


/*--------------------------------------------------------------------
common
ページ共通部分
--------------------------------------------------------------------*/

/*------------body---------------------------------------------------------------*/
html {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	overflow-y: scroll;
	line-height: 1.55;
	font-feature-settings: "palt" 1;
	font-family: sans-serif;
	font-size: 18px;
	color: #2a2b2b;
}
a:hover {
	text-decoration: none;
	filter: alpha(opacity=80);
	-moz-opacity: 0.80;
	opacity: 0.80;
}
a:hover img {
	filter: alpha(opacity=80);
	-moz-opacity: 0.80;
	opacity: 0.80;
}

/*自分で追加*/
.container{
  width: 100%;
  margin: 0 auto;
}

/*画面幅739px以下：12px：12px÷18px×100＝66.67％*/
/*画面幅740px以上：14px：14px÷18px×100＝77.78％*/
/*画面幅980px以上：18px：18px÷18px×100＝100%*/
body{
  font-size: 66.67%;
}
@media screen and (min-width:740px){
  body{
    font-size: 77.78%;
  }
}
@media screen and (min-width:980px) {
  body{
    font-size: 100%;
  }  
}

/*-----header-----*/
header{
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}
.headerWrapper{
  display: flex;
  justify-content: space-between
}
.headerWrapper h1{
  margin: 25px 5%;
}



/*========= ハンバーガーメニューナビゲーションのためのCSS ===============*/

#g-nav{

  display: none;

  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
  z-index: -1;
  opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
  top:0;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background:#42210b;
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{

  display: block;

  opacity: 1;
  z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/

#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center; 
}

#g-nav li a{
  color: #ffffff;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.5em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:20px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;	
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color: #ffffff;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color: #ffffff;
}

/*サイドメニュー*/
/*.sideMenu img{
  width: 170px;
  height: 45px;
}
.mrside{
  position: absolute;
  top: 380px;
  right: -125px;
}
.mrside:hover{
  right: 0;
}
.inqside{
  position: absolute;
  top: 425px;
  right: -125px;
}
.inqside:hover{
  right: 0;
}
.telside{
  position: absolute;
  top: 470px;
  right: -125px;
}
.telside:hover{
  right: 0;
}
.instaside{
  position: absolute;
  top: 515px;
  right: -125px;
}
.instaside:hover{
  right: 0;
}*/
.sideMenu{
  display: none;
}

/*---Top Visual---*/
#top{
  height: 800px;
  margin-bottom: 0;
}
.slideshow{
  position: relative;
 }
 
 .slideshow img{
   display: none;
   position: absolute;
   width: 100%;
   height: 800px;
 }
/*.topVisual{
  position: relative;
}
.topVisual img{
  width: 100%;
  height: 800px;
}*/
#top .topText{
  position: absolute;
  top: 0;
  margin-top: 490px;
  width: 100%;
  height: 310px;
  background-color: rgba(0, 0, 0, 0.4);
}
.topWord{
  padding-top: 70px;
  font-family: "游明朝","YuMincho",serif;
  color: #ffffff;
}
.topText h1{
  font-size: 2.66em;/*48px*/
  padding-bottom: 0.31em;/*15px*/
  text-align: center;
}
.topText p{
  font-size: 1.3em;/*22px*/
  line-height: 1.65;
  text-align: center;
}

/*---About　４つの強み---*/
/*私たちのこと*/
.strengths{
  width: 100%;
  height: auto;
  background-color: #ebebeb;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
.aboutWrapper{
  position: relative;
}
.aboutTitle{
  display: flex;
  justify-content:left;
  height: 130px;
  margin-bottom: 10px;
  border-bottom: 1px solid #42210b;
  font-family: "游明朝","YuMincho",serif;
}

.aboutTitle h2{
  background-color: #42210b;
  color: #ffffff;
  font-size: 1.33em;/*24px*/
  padding: 52px 20px;
} 
.aboutTitle p{
  color: #333;
  font-size: 2em;/*36px*/
  padding: 45px 30px;
}

@media (max-width: 468px){
  .aboutTitle{
    display: flex;
    flex-direction: column;
    height: 50px;
    margin-bottom: 80px;
    padding: 0;
    border: none;
  }
  .aboutTitle h2{
    height: 60px;
    font-size: 1.8em;
    padding: 15px 20px;
    text-align: center;
  } 
  .aboutTitle p{
    height: 60px;
    font-size: 1.8em;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #42210b;
  }
}


/*４つの強み　4写真*/

.fours{
  display: flex;
  justify-content: space-between;
}
.fours a{
  display: block;
  width: 24%;
  height: 24%;
}
.foursWrapper{
  text-align: center;
  margin-top: 20px;
  padding: 24% 0;/*75px 0*/
  font-size: 2em;/*36px*/
  color: #ffffff;
  font-family: "游明朝","YuMincho",serif;
  text-shadow: 0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b,0 0 10px #42210b;
}
.about01{
  background: linear-gradient(to bottom, rgb(66,33,11,1) 0%,rgb(66,33,11,0) 60%),
              url(../images/about01.jpg);
  background-repeat: no-repeat;
}
.about02{
  background: linear-gradient(to bottom, rgb(66,33,11,1) 0%,rgb(66,33,11,0) 60%),
              url(../images/about02.jpg);
  background-repeat: no-repeat;
}
.about03{
  background: linear-gradient(to bottom, rgb(66,33,11,1) 0%,rgb(66,33,11,0) 60%),
              url(../images/about03.jpg);
  background-repeat: no-repeat;
}
.about04{
  background: linear-gradient(to bottom, rgb(66,33,11,1) 0%,rgb(66,33,11,0) 60%),
              url(../images/about04.jpg);
  background-repeat: no-repeat;
}
/*コンセプトのボタン*/
.conceptIcon{
  position: absolute;
  top: 50px;
  right: 0;
  display: flex;
}
.conceptIcon dt{
  width: 165px;
  height: 35px;
  color: #000000;
  background-color: #ffffff;
  font-size: 18px;
  text-align: center;
  border: 1px solid #42210b;
  padding-top: 3px;
  font-family: "游明朝","YuMincho",serif;
}
.conceptIcon dd{
  width: 100px;
  height: 35px;
  color: #ffffff;
  background-color: #42210b;
  font-size: 10px;
  text-align: center;
  border: 1px solid #42210b;
  padding-top: 8px;
  font-family: "メイリオ","meiryo",serif;
}
@media (max-width: 780px){
  .conceptIcon{
    position: static;
    justify-content: center;
    margin-top: 50px;
  }
}
@media (max-width: 530px){
  .fours{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .fours a{
    width: 48%;
    height: 48%;
  }
  
}

/*---提案します---*/
.suggestionWrapper{
  /*display: flex;
  justify-content: space-between;*/
  margin-bottom: 50px;
}
.suggestionWrapper h2{
  /*writing-mode: vertical-rl;
  padding-right: 70px;*/
  padding: 30px 0;
  font-size: 2em;/*36px*/
  font-family: "游明朝","YuMincho",serif;
  width: 100%;
  text-align: center;
}
.suggestionWrapper img{
  width: 100%;
  margin-bottom: 30px;
}
.suggestionWrapper p{
  font-family: "游明朝","YuMincho",serif;
  font-size: 1.3em;
  margin: 0px 20px 30px;
  line-height: 1.75;
  text-align: center;
}

.thoughtsIcon{
  display: flex;
  justify-content: center;
}
.thoughtsIcon dt{
  width: 165px;
  height: 35px;
  color: #000000;
  background-color: #ffffff;
  font-size: 18px;
  text-align: center;
  border: 1px solid #42210b;
  padding-top: 3px;
  font-family: "游明朝","YuMincho",serif;
}
.thoughtsIcon dd{
  width: 100px;
  height: 35px;
  color: #ffffff;
  background-color: #42210b;
  font-size: 10px;
  text-align: center;
  border: 1px solid #42210b;
  padding-top: 8px;
  font-family: "メイリオ","meiryo",serif;
}

/*各項目別のリンク*/
.linkList{
  width: 100%;
  margin-bottom: 0;
}
/*.link{
  display: flex;
}*/
.linkPic img{
  /*flex: 1 1 auto;*/
  width: 100%;
}
.linkBtn{
  /*flex: 1 1 auto;*/ 
  background-color: #ebebeb;
  text-align: center;
  padding-top: 50px;
  height: 230px;
}
.linkBtn h3{
  font-family: "游明朝","YuMincho",serif;
  font-size: 2em;/*36px*/
}
.linkBtn p a{
  display: block;
  width: 100px;
  height: 35px;
  font-size: 10px;
  text-align: center;
  border: 1px solid #42210b;
  margin: 35px auto;
  padding-top: 9px;
  font-family: "メイリオ","meiryo",serif;
  color: #000;
}
.linkBtn p a:hover{
  background-color: #a9a9a9;
}

/*---物件---*/
#property{
  background-color: #42210b;
  padding-top: 50px;
}
.propertyTitle{
  /*position: relative;*/
  /*display: flex;
  justify-content: right;*/
  color: #ffffff;
  margin-bottom: 80px;
}
.propertyTitle img{
  /*position: absolute;
  top: -50px;
  left: 0;*/
  width: 100%;
  height: 500px;
}
.propertyTitle h2{
  /*writing-mode: vertical-rl;*/
  padding-top: 30px;
  padding-right: 0;
  font-size: 2em;/*36px*/
  font-family: "游明朝","YuMincho",serif;
  text-align: center;
}
.propertyTitle p{
  padding-top: 50px;
  padding-right: 0;
  font-size: 1.3em;
  font-family: "游明朝","YuMincho",serif;
  text-align: center;
}
/*物件リスト*/
.propertyBoxs{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.propertyBoxs::after{
  content:"";
  display: block;
  width:30%;
}

/*@media (max-width: 820px){
  .propertyBoxs::after{
    content:"";
    display: block;
    width:48%;
  }
}*/


.box{
  position: relative;
  margin-bottom: 25px;
  margin-right: 2%;
  width: 30%;
}
.box:nth-child(3n){
  margin-right: 0;
}

@media (max-width: 740px){
  .propertyBoxs::after{
    width:47%;
  }
  .box{
    width: 47%;
    margin-right: 0;
  }
}
@media (max-width: 640px){
  .propertyBoxs{
    margin-bottom: 50px;
  }
}
@media (max-width: 480px){
  .propertyBoxs{
    justify-content: center;
  }
  .propertyBoxs::after{
    display: none;
  }
  .box{
    width: 75%;
  }
}

.box p,.box dd{
  color: #ffffff;
}
.box dl{
  display: flex;
  justify-content: space-between;
  height: 10%;/*35px*/
}
.box dt{
  width: 71.43%;/*250px*/
  background-color: #ffffff;
  font-size: 14px;
  font-family: "游明朝","YuMincho",serif;
  text-align: center;
  border: 1px solid #42210b;
  color: #333333;
  padding: 0.86% 0;/*3px*/
}
.box dd{
  width: 100px;
  padding: 2.86% 0;/*10px 0*/
  background-color: #42210b;
  font-size: 10px;
  font-family: "メイリオ","meiryo",serif;
  text-align: center;
}
/*.box dd a{
  display: block;
  width: 100px;
  padding: 10px 0;
}*/
/*@media (max-width: 350px){
  .box img{
    width: auto;
  }
  .box dt{
    width: 230px;
  }
  .box dd{
    width: 90px;  }
}*/
.box p{
  position: absolute;
  top: 0;
  width: 22.86%;/*80px*/
  height: 8.57%;/*30px*/;
  background-color: #ff0000;
  font-size: 12px;
  font-family: "メイリオ","meiryo",serif;
  text-align: center;
  padding: 0.86% 0;/*3px*/
}



/*---footer---*/

.footerIcon1{
  display: flex;
  justify-content: center;
}
.footerIcon1 li{
  display: flex;
  border: 2px solid #42210b;
  font-size: 28px;
  font-family: "メイリオ","meiryo",serif;
  margin: 0 10px 100px 10px;
  position: relative;
  border-radius: 4.5px;
}
.footerIcon1 li a{
  display: block;
  width: 310px;
  height: 80px;
  box-sizing: border-box;
  /*color: #42210b;*/
  padding-top: 20px;
  /*padding-left: 20px;*/
  text-align: center;
  filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
.footerIcon1 .iconMark a{
  padding-left: 90px;
}
.footerIcon1 .iconMark a::before{
  content: url(../images/blogicon.png);
  position: absolute;
  top: 7px;
  left: 20px;
}
@media (max-width: 650px){
  .footerIcon1{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .footerIcon1 li{
    margin: 15px 10px;
  }
}

/*== ボタン共通設定 */
.btn{
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  /*text-decoration: none;*/
  display: inline-block;
  /*border: 1px solid #555;/* ボーダーの色と太さ */
  /*padding: 10px 30px;
  text-align: center;
  outline: none;*/
  /*アニメーションの指定*/   
  transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span a{
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #42210b;
}

.btn:hover span a{
  color:#fff;
}

/*== 背景が流れる（左から右） */
  .bgleft:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#6b9abf;/*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}



.footerIcon2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /*margin-bottom: 50px;*/
}
.footerIcon2 li{
  
  width: 50%;
  font-size: 28px;
  font-family: "メイリオ","meiryo",serif;
  text-align: left;
  
  position: relative;
}

.footerIcon2 li a{
  display: block;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 90px;
  /*padding-left: 15px;*/
}
.mrIcon a{
  background-color: #6b9abf;
}
.mrIcon a::before{
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 50px;/*画像の幅*/
  height: 50px;/*画像の高さ*/
  background-image: url(../images/bookicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 25px;
  left: 20px;
}
.inqIcon a{
  background-color: #3872a8;
}
.inqIcon a::before{
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 50px;/*画像の幅*/
  height: 50px;/*画像の高さ*/
  background-image: url(../images/lettericon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 25px;
  left: 20px;
}
.telIcon a{
  background-color: #004879;
}
.telIcon a::before{
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 40px;/*画像の幅*/
  height: 40px;/*画像の高さ*/
  background-image: url(../images/telicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 20px;
  left: 25px;
}
.instaIcon a{
  background-color: #002e55;
}
.instaIcon a::before{
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 40px;/*画像の幅*/
  height: 40px;/*画像の高さ*/
  background-image: url(../images/instaicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 20px;
  left: 25px;
}



/*---addressとfooterメニュー---*/
.addressWrapper{
  margin: 0 auto;
  padding: 0 5px;

}

/*footer nav*/

.menuBox{
  display: none;
}

/*住所、電話*/
.addressBox{
  margin-bottom: 50px;
  /*border-right: 3px solid #333333;*/
  padding-bottom: 180px;
  padding-top: 0;
  text-align: center;
}
.addressBox img{
  margin-bottom: 20px;
}
address{
  margin-bottom: 20px;
  font-size: 12px;
}
.telWrapper{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
address dl {
  display: flex;
  padding-right: 30px;
}
address dd::before{
  content: ":";
}
@media (max-width: 590px){
  .addressBox{
    margin-bottom: 50px;
    padding-bottom: 80px;
  }
  /*.footerIcon2 li{
    width: 100%;
  }*/
  .footerIcon2 li a{
    /*width: 100%;*/
    height: 40px;
    font-size: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 35px;
  }
  .mrIcon a::before{
    width: 20px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    top: 15px;
    left: 8px;
  }
  .inqIcon a::before{
    width: 20px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    top: 15px;
    left: 8px;
  }
  .telIcon a::before{
    width: 20px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    top: 10px;
    left: 8px;
  }
  .instaIcon a::before{
    width: 20px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    top: 8px;
    left: 10px;
  }
}

/*1.---ふわっとFadeUp---*/

/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
          
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .fadeUpTrigger{
      opacity: 0;
  }

  /*2.---footernavを下部に固定---*/
  /*========= 下部固定させるためのCSS ===============*/
  #footerFix{
    position: absolute;
    bottom: 0;
    position: fixed;/*fixedを設定して固定*/
    height: 160px;/*高さ指定*/
    width:100%;/*横幅指定*/
    z-index: 999;/*最前面へ*/
  
  }
  #footerFix.menuErase{
    display: none;/*ハンバーガーメニューを開くとフッターメニューを消す*/
    opacity: 0;
    z-index:999;
  }
  @media (max-width: 590px){
    #footerFix{
      height: 80px;
    }
  }