@charset "utf-8";
/* CSS Document */
/*全ページ共通*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #353535; /* RGB */
  background-color: #f0f0f0;
  font-family: 游明朝, YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
a {
  text-decoration: none;
}
button:hover{
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/*LINEで気軽にお問い合わせ*/
.button-line {
  background-color: #fff;
  color: #3D3D3D;
  font-size: 1.6rem;
  font-weight: 600;
  width: 250px;
  height: 65px;
  border-radius: 50px;
  box-shadow: none;
  border: solid 3px #3D3D3D;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 10px 35px;
}
.button-line img {
  width: 40px;
}
/*物件情報一覧へ*/
.button-buy, .button-return {
  display: block;
  background-color: #004780;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  vertical-align: baseline;
  font-weight: 600;
  width: 250px;
  height: 65px;
  border-radius: 50px;
  box-shadow: none;
  border: solid 3px #3D3D3D;
  cursor: pointer;
  margin: 30px auto 80px;
  padding: 10px 35px;
}

/*お問い合わせフォーム*/
.button-inquiry {
  background-color: #004780;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  width: 250px;
  height: 65px;
  border-radius: 50px;
  box-shadow: none;
  border: solid 3px #3D3D3D;
  cursor: pointer;
  margin: 30px auto 80px;
  padding: 10px 35px;
}

/*フェイドアップアニメーション*/
.fadeUpTrigger {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#open-button.UpMove{
  animation-name: UpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes UpAnime{
  from{
    opacity: 1;
    transform: translateY(0);
  }to{
    opacity: 0;
    transform: translateY(-100px);
  }
}
#open-button.DownMove{
   animation-name: DownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes DownAnime{
  from{
    opacity: 0;
    transform:translateY(-100px);
  }to{
    opacity: 1;
    transform: translateY(0);
  }
}
/*スクロールトップ*/
#scroll-top {
  background-color: #fff;
  opacity: 0.6;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
}
#scroll-top a {
  text-decoration: none;
  color: #333;
}

/*header*/
.header {
  height: 100vh;
  width: 100%;
}
.header-logo {
  display: block;
  position: absolute;
  top: 10px;
  left: 20px;
  width: 160px;
  height: 70px;
}
.header-logo h1 {
  width: 160px;
  height: 70px;
}
.header-logo img {
  width: 100%;
}
.SNS {
  width: 40px;
  margin-right:20px;
}
@media(min-width: 1140px){
  .header {
    height: 100vh;
    width: 100vw;
    margin: 0 auto;
  }
  #header_content {
    max-width: 1140px;
    height: 120px;
    margin: 20px auto 0;
    position: relative;
  }
  .header-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 240px;
    height: 103px;
  }
  .header-logo h1 {
    width: 240px;
    height: 103px;
  }
  .header-logo img {
    width: 100%;
  }
  #open-button {
    display: none;
  }
  #header_navigation {
    position: absolute;
    right: 10px;
    top: 0;
    display: flex;
    justify-content: flex-end;
    margin-top: 23px;
  }
  #header_navigation ul {
    display: flex;
  }
  #header_navigation ul li {
    margin-right: 50px;
    padding: 5px 0;
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
  #header_navigation .header_navigation-list_1 li {
    border-bottom: solid 1px #353535;
  }
  #header_navigation .header_navigation-list_2 li:first-child {
    margin-right: 157px;
  }
  #header_navigation .header_navigation-list_2 li:nth-child(2) {
    margin-right: 158px;
  }
  .header_navigation ul li a {
    text-decoration: none;
    color: #353535;
  }
  .header_navigation ul li a:hover, .footer nav ul li a:hover {
    opacity: 0.5;
  }
  #header_navigation #close-button {
    display: none;
  }
  .header_links {
    display: flex;
    align-items: center;
  }
  .header_links a {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
}
/*ハンバーガーメニュー*/
@media(max-width: 1139px) {
  #open-button {
    width: 50px;
    height: 40px;
    border-radius: 3px;
    background-color: rgba(255,255,255,0.50);
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 10px;
  }
  #open-button span, #open-button span:before, #open-button span:after {
    position: absolute;
 
    height: 2px;
    width: 30px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
    content: "";
  }
  #open-button span:before {
    bottom: -8px;
  }
  #open-button span:after {
    bottom: -16px;
  }
  /*ナビゲーション*/
  .header_navigation {
    z-index: 10000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 67%;
    height: 100vh;
    background-color: rgba(53, 52, 52, 0.75);
    padding-top: 80px;
    padding-left: 5%;
  }
  .header_navigation ul li a, .footer nav ul li a {
    text-decoration: none;
    color: #fff;
  }
  .header_navigation ul li a:hover, .footer nav ul li a:hover {
    opacity: 0.5;
  }
  .header_navigation ul li {
    color: #fff;
    text-align: left;
    font-weight: 600;
    margin-bottom: 13px;
    padding-top: 5px;
  }
  .header_navigation ul li span {
    padding-bottom: 5px;
    border-bottom: solid 1px #fff;
  }
  .header_links {
    display: flex;
    justify-content: flex-end;
    margin-top: 100px;
    margin-right: 20px;
  }
  #close-button {
    display: block;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 40px;
  }
  
}
.footer {
  height: 580px;
  width: 100%;
  background-color: #004780;
  position: relative;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 600;
  padding: 0 20px;
}
.footer-container {
  padding: 30px 0;
}
.footer p {
  text-align: left;
  color: #fff;
}
.footer_logo {
  width: 180px;
  line-height: 1px;
}
.footer_logo img {
  width: 100%;
}
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_links {
  display: flex;
  justify-content: flex-end;
}
.footer_links a {
  display: block;
}
.footer-p1 {
  font-size: 1.6rem;
}
.footer-p2 {
  font-size: 2.4rem;
  line-height: 3.6rem;
}
.footer-p3 {
  font-size: 1.2rem;
  line-height: 2.1rem;
  margin-top: 30px;
}
.footer-p4 {
  margin-bottom: 100px;
}
.footer ul {
  padding: 30px 30px 0 0;
}
.footer nav {
  display: flex;
  align-items: flex-end;
}
.footer ul li {
  color: #fff;
  text-align: left;
  font-weight: 600;
  margin-bottom: 13px;
  padding-top: 5px;
  font-size: 1.4rem;
}
.footer small {
  position: absolute;
  bottom: 20px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500;
}
@media(min-width:1140px) {
  .footer {
    height: 345px;
    width: 100%;
  }
  .footer-container {
    width: 100%;
    max-width: 1140px;
    padding: 30px 0 0 0;
    margin: 0 auto;
  }
  .footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-ps{
    width: 26%;
  }
  .footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer nav {
    display: flex;
    align-items: flex-start;
  }
  .footer nav ul {
    padding-top: 0;
  }
  .footer nav ul.footer-nav_after {
    padding-right: 0;
  }
  .footer nav ul li {
    padding-top: 0;
  }
  .footer nav ul li a {
    text-decoration: none;
    color: #fff;
  }
  .footer_logo {
    width: 273px;
    margin-bottom: 40px;
  }
}

