@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%;
  box-sizing: border-box; }

body {
  background-color: #222936;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left; }

section h2 {
  font-size: 2.4rem; }

a:hover {
  opacity: 0.5; }

*, *:before, *:after {
  box-sizing: border-box; }

img {
  width: 100%;
  height: auto; }
h1{
  font-family: "Contrail One", sans-serif;
  font-weight: 500;
  font-style: normal;
}
button{
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
padding: 0;
appearance: none;
}
/*header*/

.openbtn1{
  display: none;
}
.container{
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 10000; 
  padding: 10px;
  display: flex;
  justify-content: space-between;
  background-color: rgba(34,41,54,0.7);
}
.header-menu-btn{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-menu-btn nav{
  margin-right: 30px;
}
.nav ul{
  display: flex;
  justify-content: space-between;
}
.nav ul a{
  font-size: 1.8rem;
  font-weight: 500;
  padding-right: 30px;
}
.logo{
  align-content: center;
}
.logo a{
  display: flex;
  align-content: center;
}
.logo p{
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 1.8rem;
  padding-right: 5px;
}
.logo img{
  width: 200px;
  height: 100%;
  transform: rotate(-2deg);
}
.contact-btn p{
  text-align: end;
}
.contact-button_pc{
  display: block;
  width: auto;
  height: auto;
  padding: 10px 20px ;
  border: solid 1px #ffffff;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  background-color: #222936;
}
.contact-button_pc a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  font-family: "Contrail One", sans-serif;
  text-align: center;
}
.contact-button_pc img{
  width: 50px;
  height: auto;
  padding-right: 15px;
}
.contact-btn-sp{
  display: none;
}
.drawer{
  display: none;
}
@media(max-width:786px){
  .logo img{
    width: 30vw;
  }
  .header-menu-btn nav{
    display: none;
  }
  .contact-btn-sp{
    display: block;
    }
  .contact-button_mobile{
  display: block;
  width: auto;
  height: auto;
  padding: 5px 20px ;
  border: solid 1px #ffffff;
  background-color: #ffffff;
  border-radius: 30px;
  }
  .contact-button_mobile a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  font-family: "Contrail One", sans-serif;
  color: #244274;
  text-align: center;
}
.contact-button_mobile img{
  width: 50px;
  height: auto;
  padding-right: 15px;
}
  .contact-btn{
    display: none;
  }
  /*ハンバーガーメニュー*/
  .drawer{
    display: block;
  }
  .drawer_hidden {
  display: none;
}
  .menu-content {
    display: none;
    background-color: #222936;
    width: 100%;
    height: 100%;
    max-height: 500px;
    position: fixed;
    top: 0;
    bottom: 100%;/* メニューを画面の外に飛ばす */
    left: 0%; /* メニューを画面の外に飛ばす */
    z-index: 1000;
    transition: all .5s;
    padding-top: 20px;
    margin: 0 auto;
     }
  .menu-list {
      width: 90%;
      margin: auto;
     }
  .menu-list li {
        margin: auto;
        display: flex;
        justify-content: space-between;
        padding: 22px 0; }
  .menu-list li a {
        display: block;
        color: #fff;
        font-size: 1.8rem; }
  /* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .menu_content {
  bottom: 0;/* メニューを画面に入れる */
  
}
.menu-content.is-active {
  display: block; /* is-activeがつくと表示 */
}
  /*ハンバーガーボタン*/
  .openbtn1{
  display: block;
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
}
/*ボタン内側*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background: #fff;
    width: 45%;
  }

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

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

.openbtn1 span:nth-of-type(3) {
  top:31px;
}
  .drawer_close {
  display: none;
}
  .closebtn1{
  display: block;
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
  left: 85%;
}
.closebtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background: #fff;
    width: 45%;
  }

.closebtn1 span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.closebtn1 span:nth-of-type(2) {
 top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*========= レイアウトのためのCSS ===============*/
}



/*footer*/
.footer{
  display: block;
  margin: 0 0 0 auto;
  width: 95%;
  height: 45vh;
  background-color: #F5F5F5;
  color: #222936;
  padding: 60px 0 20px 30px;
  border-radius: 50px 0 0 0;
  position: relative;
}
.footer-frame{
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 30%;
}
.footer-contact{
  width: 35%;
}
.footer-contact a{
  font-family: "Sen", sans-serif;
  font-size: 9.0rem;
  font-weight: 500;
}
.footer-contact span{
  display: block;
  border: solid  rgba(189,198,212,1)0.3px;
  margin: 30px 0;
}
.footer-contact img{
  width: 60%;
  height: 100%;
  transform: rotate(-2deg);
}
.footer-logo{
  width: auto;
  height: auto;
  display: flex;
  align-content: center;
}
.footer-logo p{
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 2.0rem;
  padding-right: 10px;
}
.footer .nav li{
  font-weight: 500;
}
.section-copyright{
  position: absolute;
  bottom: 5px;
  right: 30px;
}
.copyright-text{
  color: #222936;
  text-align: center;
  font-size: 1.2rem;
}
@media(max-width:786px){
  .footer-frame{
    flex-direction: column;
    align-items: baseline;
    top: 15%;
  }
  .footer-contact{
    width: 100%;
  }
  .footer-contact a{
    font-size: 7.0rem;
  }
  .footer-contact img{
    width: 40%;
  }
  .footer nav{
    padding-top: 30px;
  }
}
@media(max-width:440px){
  .footer{
    height: 80vh;
  }
  .footer nav ul{
    flex-direction: column;
    font-size: 1.6rem;
  }
  .footer nav li{
    padding-bottom: 25px;
  }
  .footer-logo img{
    width: 70%;
  }
  
}
