@charset "UTF-8" ;
* {
  margin:0; padding:0;
}
header {
  width: 100%;
  height: 300px;
  padding: 5px 0;
  text-align: center;
  color: #aa5959;
  background-image: url("");
  background-position: center bottom;
  background-size: cover;
}
header .headline{
  line-height: 190px;
  font-size: 60px;
}

.headline a {
  font-size: 90px;
  }

  header h1 {
    font-size: 60px;
    margin: 0;
    padding: 0;
  }

  ul {
    list-style: none;
  }
  
  ruby {
    font-size: 60px;
    font-family: "Darumadrop One", sans-serif;
    margin: 0;
    padding: 0;
  }

  rt {
    font-family: "Zen Maru Gothic", serif;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Darumadrop One", sans-serif;
    font-size: 150%;
  }
  
 .main-nav a {
   font-size: 140%;
   color: #aa5959;
   text-decoration: none;
 }
 
 .main-nav a:hover {
  color: #bf360c;
}

 h1 {
  font-size: 60px;
  margin-bottom:30px;
  text-align: center;
  padding-top:  50px;
  font-size: 65px;
}

.nav-list {
  line-height: 70px;
  list-style: none;
  font-weight: bold;
}

.nav-list-item {
  list-style: none;
  display: inline-block;
  margin: 0 30px;
  font-size: 25px;
}

main p {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-size: 30px;
}

p {
    text-align: center;
    font-family: "Zen Maru Gothic", serif;
    font-size: 30px;
}

img {
    max-width: 100%;
}

span {
    color: #228b22;
}


main li {
    font-size: 30px;
    margin: 30px;
    padding: 30px;
}

.btn02 a{
  border-radius: 6px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 300px;
  display:block;
  letter-spacing: 0.05em;
  background: #a06d6d82;
  color: #fff;
  font-weight:bold;
  font-size: 30px;
  text-decoration: none;
}
button:hover {
  box-shadow: none;
  transform: translate3d(0, 5px, 0);
}

button{
  border: none;
  background-color: #fff;
}

footer p{
  bottom: 0;
  width: 100%;
  height: 220px;
  background-color: #a06d6d82;
  color: white;
  text-align: center;
  font-size: 90%;
}
footer a{
  text-decoration: none;
  color: #fff;
}
ul.footer-menu li {
display: inline;
}


/*スマホ対応---------------------
--------------*/
@media only screen and (max-width: 800px) {
  .main-nav li {
    font-size: 10px;
  }
  
  .br-sp {
    display: block;
  }

  header {
    width: 100%;
    height: 200px;
  }
  .headline a {
      font-size: 70px;
      }
  
     h1 {
       font-size: 45px;
      }
      
  p {
    font-size: 14px;
  }

  main p {
    text-align: center;
    font-family: "Zen Maru Gothic", serif;
    font-size: 14px;
  }

  .page-subtitle {
    font-size: 20px;
  }

  
  .main-nav {
    display: none;
  }

  ul.slider img{
    width: 330px;
    height:200px;
  }

  
  footer p{
    bottom: 0;
    width: 100%;
    height: 160px;
    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-content a:hover {
    color: #bf360c;
  }
  /* 三本線の実装 */
  .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 {
    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;
    font-family: "Sen", sans-serif;
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 30%; /*メニューを画面内へ動かす*/
  }

  .policy-detail {
    font-size: 15px;
    padding: 20px;
  }
  }
/*----ハンバーガーメニューの非表示----------*/

@media only screen and (min-width: 800px) {
  .hamburger-menu {
    display: none;
  }
  .menu-content {
    display: none;
  }
}