@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  /*box-sizing: border-box;*/

}
body {
  color: #566069; /* RGB */
  font-family: 'IBM Plex Sans JP', sans-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;
}
.none {
  /* display: none;　　レスポンシブPCヘッダーを作るときに消す*/
}
/*追記↓*/
*, *:before, *:after {
  box-sizing: border-box;
}
.header {
  height: 70px;
  width: 100%;
  position: relative;
  
}
.header-content-wrapper {
  background-color: #fff;
}
.header h1 {
  position: absolute;
  left: 40;
  top: 25;
  /*padding:  20px 0 30px 25px;*/
}
.header-image {
  height: 45px;
  width: 150px;
  padding: 20px 0 0 24px;
}
/*レスポンシブ　pc↓*/
@media(min-width: 1090px) {
  .header {
    height: 100px;
    /* background-color: transparent;/*透明になる？*/
  }
  .header-content-wrapper {
    max-width: 950px;
    margin: 0 auto;
    /*background-color: transparent;*/
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: flex-end;
    position: relative;
  }
  .header h1 {
    padding-top: 10px;
    font-size: 4.0rem;
    position: absolute;
    left: 0;
  }
  .header-image {
    height: 60px;
    width: 170px;
    /*position: absolute;
    left: 0;
     */
  }
  .header nav {
    display: block;
    text-align: right;
    position: fixed;
    z-index: 1000;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
    
  }
  .header nav ul li {
    padding-left: 20px;
    padding-top: 40px;
    
  }
  .header nav ul li a {
    color: #566069;
    font-size: 1.2rem;
    text-decoration: none;
  }
}
/*navigation*/
.open-button, .close-button {
  display: none;
}
@media(max-width:1160px) {
  .open-button {
    display: block; /*表示する*/
    position: absolute; /*絶対座標*/
    right: 30px;
    top: 25px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 2px;
    width: 40px;
    background: #235339;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  /*わからない！！！！！！！！！！　　　　　　　　　　　　　　　　メニューという文字をハンバーガーメニューの下に表示させたい
  .open-button-moji{
    font-size: 0.8rem;
    color: #235339;
    top: 0px;
  }
  */
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    font-size: 20px;
    padding: 20px;
  }
  /*@mediaに入れてみる↓*/
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #235339;
    padding: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-aline: middle;
    text-decoration: none;
    color: #FFF;
  }
  /*@mediaに入れてみる↑*/
}
.footer {
  background-color: #235339;
  width: 100%;
  height: 550px;
  color: #fff;
  text-align: left;
  padding: 60px 30px 0 24px;
}
.footer h2 {
  font-size: 2.4rem;
  padding-bottom: 20px;
  /*border-bottom: 1px solid #fff;*/
  display: inline-block;
}
.footer-otoiawase {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  border-bottom: 1px solid #fff;
  margin-right: 20px;
}
.footer-tel-wrapper {
  display: flex;
  padding-top: 15px;
  padding-bottom: 10px;
}
.footer-tel {
  font-size: 2.4rem;
  font-weight: 300;
  padding-right: 45px;
}
.footer-tel-number {
  font-size: 3.0rem;
  font-weight: 600;
}
.footer-youbi {
  margin-bottom: 35px;
}
.footer p {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-weight: 400;
}
.footer-nav a {
  text-decoration: none;
  color: #fff;
}
.footer-nav {
  margin-top: 40px;
}
.footer-nav ul li {
  line-height: 35px;
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-weight: 400;
}
/*レスポンシブ　pc↓*/
@media(min-width: 1090px) {
  .footer {
    
    height: 400px;
    padding: 70px 0px 0 60px;
   
   
  }
  .footer-all-wrapper{
    max-width: 900px;
    margin: 0 auto;
    
     display: flex;
  }
  .footer h2 {
    font-size: 3.2rem;
    padding-bottom: 40px;
    /*border-bottom: 1px solid #fff;*/
    display: inline-block;
  }
  .footer-otoiawase {
    font-size: 1.6rem;
  }
  .footer-tel-wrapper {
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .footer-tel {
    font-size: 3.6rem;
  }
  .footer-tel-number {
    font-size: 4.0rem;
  }
  .footer-youbi {
    margin-bottom: 30px;
  }
  .footer-nav {
  margin-left: 190px;
    
    font-size: 1.6rem;
}
}
#scroll-top {
  width: 50px;
  height: 50px;
  background-color: #FFF;
  border-radius: 50%;
  /*background-color: #eee;*/
  opacity: 0.8;
  position: fixed;
  bottom: 30px;
  right: 30px;
  /*padding: 10px;*/
  z-index: 2000;
  box-shadow: 0 2px 10px -6px rgba(0, 0, 0, .5), 0 3px 10px -4px rgba(0, 0, 0, .2);
}
#scroll-top a {
  text-decoration: none;
  color: #707070;
  font-size: 1.2rem;
  bottom: 30px;
  right: 30px;
  padding: 12px;
  position: fixed;
}
#scroll-top a::before {
  /*content: "";
  text-decoration: none;
  color: #707070;
  font-size: 2.5rem;
  bottom: 25px;
  right: 25px;*/
}
.button-text{
  margin-bottom: 0;
  font-size: 1.6rem;

}