* @charset "UTF-8";

/*header----------------
---------------------*/
l * {
    margin:0; padding:0;
  }
  header {
    width: 100%;
    height: 200px;
    padding: 5px 0;
    text-align: center;
    color: #aa5959;
    background-image: url("");
    background-position: center bottom;
    background-size: cover;
  }
  header .headline{
      line-height: 100px;
      font-size: 60px;
  }

  .headline a {
    font-size: 90px;
  }

  img {
    max-width: 100%;
  }
  
  a {
    color: #aa5959;
    font-family: "Darumadrop One", sans-serif;
    font-size: 40px;
  
  }

  .nav-list {
    line-height: 100px;
    list-style: none;
    font-weight: bold;
}
.nav-list-item {
  list-style: none;
  display: inline-block;
  margin: 0 30px;
  font-size: 25px;
}

.nav-list a {
  font-size: 140%;
  color: #aa5959;
  text-decoration: none;
}

.nav-list a:hover {
 color: #bf360c;
}


.wrapper {
  max-width: 1100px;
  margin: 0 auto;
}


footer{
  bottom: 0;
  width: 100%;
  height: 220px;
  background-color: #a06d6d82;
  color: white;
  text-align: center;
  font-size: 20px;
}
ul.footer-menu li {
display: inline;
}
.Tokiwa a {
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: "Sen", sans-serif;
  font-size: 20px;
}


/*スマホ対応---------------------
--------------*/
@media only screen and (max-width: 800px) {
  .main-nav li {
    font-size: 10px;
  }

  .br-sp {
    display: block;
  }
 
  .headline a {
    font-size: 70px;
    }


  .page-subtitle {
    font-size: 25px;
    text-align: left;
  }

  .main-nav {
    display: none;
  }

  .wrapper {
    font-size: 13px;
    margin: 10px;
  }

  footer{
    bottom: 0;
    width: 100%;
    height: 160px;
}

 footer p{
  font-size: 15px;
 }

  .Tokiwa a {
    font-size: 15px;
  }

  .Aplaudo-logo {
    width: 25%;
  }
  
  /* =================
ハンバーガーボタンの実装
================= */
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #aa5959;
}
.menu-btn:hover {
  cursor: pointer;
}
/* 三本線の実装 */
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
/* チェックボックスを非表示にする */
#menu-btn-check {
  display: none;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(
    255,
    255,
    255,
    0
  ); /*メニューオープン時は真ん中の線を透明にする*/
}

/* メニューを開いている時はハンバーガーボタンが×になる */
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-content ul li a {
  font-family: "Sen", sans-serif;
}

.menu-content a:hover {
  color: #bf360c;
}

/* =================
メニュー部分の実装
================= */
.menu-content {
  width: 80%;
  height: 100%;
  position: fixed;
  top: 0;
  /* メニューを外に出しておく */
  left: 100%;
  z-index: 80;
  background-color: #946a5c;
  transition: all 0.5s; /*アニメーションを滑らかにする*/
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
#menu-btn-check:checked ~ .menu-content {
  left: 30%; /*メニューを画面内へ動かす*/
}
}
/*----ハンバーガーメニューの非表示----------*/

@media only screen and (min-width: 800px) {
.hamburger-menu {
  display: none;
}
.menu-content {
  display: none;
}
}  