body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  background: #265A3C;
  width: 100%;
}

header a {
  color: white;
}

h1 {
  color: #be8f68;
  margin-top: 60px;
  font-size: 5vw;
}

h1::before {
  content: '';
  display: inline-block;
  background-image: url(../img/title-logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 1.5em;
  height: 1.5em;
  margin-right: 10px;
}

h1::after {
  content: '';
  display: inline-block;
  background-image: url(../img/title-logo2.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 1.5em;
  height: 1.5em;
  margin-left: 10px;
  margin-top: 5px;
}


h3 {
  background: #6f5436;
  color: white;
  margin-top: 60px;
  font-size: 4vw;
  height: 40px;
  line-height: 40px;
}

p {
  color: #6f5436;
}

.deli {
  position: relative;
  margin-top: 60px;
}

.deli img {
  width: 80%;
}

.deli p {
  position: absolute;
  top: 67%;
  left: 35%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  padding: 0;
  text-align: left;
  width: 50%;
  margin-top: 40px;
}

.joy {
  position: relative;
  margin-top: 60px;
}

.joy img {
  width: 80%;
}

.joy p {
  position: absolute;
  top: 85%;
  left: 35%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin-top: 40px;
  padding:0;
  text-align: left;
  width: 50%;
}

.wonder {
  position: relative;
  margin-top: 60px;
}

.wonder img {
  width: 80%;
}

.wonder p {
  position: absolute;
  top: 72%;
  left: 35%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin-top: 40px;
  padding:0;
  text-align: left;
  width: 50%;
}


footer {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  background: #265A3C;
  margin-top: 100px;
}

/* パソコン */
@media screen and (min-width:500px) {
  .nav {
    display: none;
  }

  header {
    width: 100%;
    text-align: center;
    height: 100px;
    display: flex;
  }

  .head img {
    width: 56px;
    height: 56px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .head {
    width: 90%;
    display: flex;
    margin: 0 auto;
  }

  .pc-head {
    width: 80%;
    height: 100px;
    padding-left: 0;
    margin: 0 auto;
    line-height: 100px;
  }

  .pc-head li {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
  }

  h1 {
    font-size: 25px;
  }

  p {
    font-size: 15px;
  }

  h3 {
    font-size: 20px;
  }

  .deli p {
    font-size: 14px;
  }

  .joy p {
    font-size: 14px;
  }

  .wonder p {
    font-size: 14px;
  }



}



/* スマホ*/
@media screen and (max-width:499px) {

  .pc-head {
    display: none;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }

  .head {
    display: flex;
    width: 90%;
    margin: 0 auto;
  }

  .head img {
    width: 9vw;
    height: 9vw;
    margin: auto 0;
  }

  .nav {
    margin: 0 0 0 auto;
  }

  .drawer-hidden {
    display: none;
  }

  .drawer-open {
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上に */
    cursor: pointer;
  }

  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: white;
    transition: 0.5s;
    position: absolute;
  }

  .drawer-open span:before {
    bottom: 8px;
  }

  .drawer-open span:after {
    top: 8px;
  }

  #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
  }

  #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #265a3c;
    transition: .5s;
  }

  #drawer-check:checked ~ .drawer-content {
    left: 0;/* メニューを画面に入れる */
  }

  .sumaho-head {
    width: 100%;
    padding-left: 0;
    text-align:center;
    margin-top: 60px;
    line-height: 2;
  }

  h1 {
    margin-top: 30px;
  }

  .bun {
    font-size: 14px;
  }

  .deli-h3 {
    margin-top: 20px;
  }

  .deli {
    margin-top: 30px;
  }

  .deli p {
    margin-top: 30px;
    font-size: 12px;
    width: 60%;
    left: 40%;
  }

  .joy {
    margin-top: 30px;
  }

  .joy p {
    margin-top: 30px;
    font-size: 12px;
    width: 60%;
    left: 40%;
    top: 90%;
  }

  .wonder-h3 {
    margin-top: 100px;
  }

  .wonder {
    margin-top: 30px;
  }

  .wonder p {
    margin-top: 30px;
    font-size: 12px;
    width: 60%;
    left: 40%;
    top: 80%;
  }



  footer {
    font-size: 10px;
    height: 40px;
    line-height: 40px;
  }


}
