@charset "UTF-8";

body{
  font-family: 'Kosugi Maru', sans-serif;
}

.site-title{
  padding: 50px 0;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
}

.wrapper{
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.header{
  position: fixed;
  top: 0;
  z-index: 3;
  background-color: #dad4de;
  padding: 25px;
  width: 100%;
  height: 75px;
}

.header_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  width: 150px;
  height: 30px;
  vertical-align: middle;
}

.web_yoyaku a{
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  background-color: #d9aacd;
  width: 70px;
  height: 75px;
  line-height: 75px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.nav_menu_area{
  position: relative;
  top: -4px;
  cursor: pointer;
}

.nav_menu{
  display: block;
  width: 30px;
  height: 3px;
  background-color: #d9aacd;
}

.nav_menu:nth-child(2){
  position: relative;
  top: 5px;
}

.nav_menu:nth-child(3){
  position: relative;
  top: 10px;
}

.header_nav_list{
  display: none;
  position: fixed;
  top: 74px;
  right: 0px;
  margin: 0 0 0 auto;
  z-index: 2;
  background-color: #d9aacd;
  opacity: .9;
  width: 50%;
}

.header_nav_list li{
  padding: 30px 40px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

main{
  margin-top: 75px;
}

.footer{
  padding-top: 50px;
  text-align: center;
}

.footer_btn{
  padding: 0 35px;
}

.yoyaku_btn{
  padding: 30px 0;
  margin: 0 auto;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: .2rem;
  color: #d9aacd;
  border: #d9aacd 1px solid;
}

.yoyaku_btn:hover{
  background-color: #d9aacd;
  color: #fff;
}

.footer_sns{
  padding: 0 35px;
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
}

.footer_sns img{
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.footer small{
  display: block;
  padding: 30px 0;
  margin-top: 50px;
  background-color: #dad4de;
  font-size: 0.9rem;
  color: #fff;
}


/* PCディスプレイ */


@media(min-width:820px){

  .site-title{
    letter-spacing: .2rem;
    font-size: 2.5rem;
  }

  .header{
    padding: 0px 80px;
    line-height: 75px;
  }
  
  .logo{
    width: 180px;
    height: 30px;
  }
  
  .web_yoyaku a{
    left: 280px;
    width: 100px;
    font-size: 1.2rem;
  }
  
  .nav_menu{
    display: none;
  }

  .header_nav_list{
    display: block;
    position: static;
    top: auto;
    right: auto;
    display: flex;
    margin: 0;
    z-index: 1;
    background-color: transparent;
    opacity: .9;
    width: auto;
  }
  
  .header_nav_list li{
    padding: 0;
    font-size: 1.3rem;
  }
  
  .header_nav_list li a:hover{
    color: #d9aacd;
  }
  
  .header_nav_list li + li{
    margin-left: 30px;
  }
  
  .yoyaku_btn{
    width: 500px;
    font-size: 1.5rem;
  }
  
  .footer_sns{
    padding: 0px;
    max-width: 700px;
  }
  
  .footer_sns img{
    width: 100%;
    height: 80px;
    object-fit: contain;
  }

  .footer small{
    font-size: 1rem;
  }
  

}