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;
}


iframe {
  margin-top: 60px;
  width: 80%;
}

.info {
  margin-top: 80px;
  background: #F7F6F0;
  height: 370px;
}

.info ul {
  padding-left: 0;
  margin: 30px auto 0;
  width: 20%;
}

.info li {
  text-align: left;
  color: #6F5436;
  line-height: 3;
  font-size: 10%;
}

h5 {
  color: #89AC71;
  width: 30%;
  margin: 0 auto;
  padding-top: 40px;
}


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

/* パソコン */
@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;
  }

  h5 {
    font-size: 13px;
  }

  .info li {
    font-size: 1vw;
  }


}

/* 中間 */
@media screen and (max-width:750px) {

  .info ul {
    width: 40%;
  }

  .info li {
    font-size: 12px;
  }



}




/* スマホ*/
@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;
  }

  iframe {
    margin-top: 20px;
  }

  h5 {
    font-size: 13px;
  }

  .info ul {
    margin-top: 20px;
    width: 55%;
  }

  .info li {
    font-size: 13px;
  }


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


}
