
@charset "UTF-8";
/**
 *
 * 全ページ共通部分（font、header、footer、etc）
 *
 */

/**
 * fonts
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@600&display=swap');
.roboto{
  font-family: 'Roboto', sans-serif;
}
.noto{
  font-family: 'Noto Sans JP', sans-serif;
}

/**
 * common
 */
html {
}
body{
  font-family: "Roboto", "Noto Sans JP", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: 500;
  color: #1a1a1a;
  font-size: 15px;
  letter-spacing: .07em;
  width: 100%;
  padding: 0;
  margin: 0;
}

img{
  max-width: 100%;
  height: auto;
}

a{
  color: #FFF;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
a:hover{
  opacity: 0.7;
}

/* IE11の場合表示 */
.ie11{
  display: none;
}
_:lang(x)::-ms-backdrop, .ie11 {
  display: block;
}
/* IE11の場合非表示 */
_:lang(x)::-ms-backdrop, .not_ie11{
  display: none !important;
}

/* Edgeの場合表示 */
.edge{
  display: none;
}
_:-ms-lang(x)::backdrop, .edge {
  display: block;
}
/* Edgeの場合非表示 */
_:-ms-lang(x)::backdrop, .not_edge{
  display: none !important;
}



/**
 * 左右分割
 */
#parent {
 height: 100vh;
 text-align: center;
 color: #FFF;
 display: flex;
}
.contents {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#consulting {
  flex-grow: 1;
  width: 50%;
  background: url(../image/consulting_bg.jpg) no-repeat;
  background-size: cover;
}
#villa {
  flex-grow: 1;
  width: 50%;
  background: url(../image/villa_bg.jpg) no-repeat center bottom;
  background-size: cover;
}
section {
  position: relative;
}
h1 {
  font-size: 32px;
  font-weight: 600;
  border: 3px solid #FFF;
  margin-bottom: 3rem;
  padding: .3rem 1.5rem;
}
#villa h1 {
  padding: .3rem 5rem;
}
p {
  /* margin-bottom: 50%; */
  /* margin-bottom: 250px; */
}
p img {
  width: 250px;
}
p a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  border-bottom: solid 3px #FFF;
  padding-bottom: 10px;
  position: relative;
  bottom: -60px;
}

@media (max-width: 736px) {
  #parent {
     display: block;
   }
  #consulting {
    width: 100%;
    height: 50%;
  }
  #villa {
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 599px) {
  h1 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  /* h1+p {
    margin-bottom: 50%;
  } */
  p img {
    width: 180px;
  }
  p a {
    font-size: 16px;
    font-weight: 600;
    bottom: -20px;
  }
}
