@media screen and (max-width: 768px) {
  @font-face {
    font-family: りいクッキーお試し;
    src: url('font/RiiCookieRt.otf') format('opentype');
  }

  @font-face {
    font-family: ほのか新アンティーク角Medium;
    src: url('font/Honoka-Shin-Antique-Kaku_M.otf') format('opentype');
  }

  body {
    margin: 0;
  }

  .header {
    display: none;
  }

  .mlheader {
    display: inline-block;
    background-color: #ebdfc8;
    position: fixed;
    top: 0;
    z-index: 99;
    height: 80px;
    width: 100%;
  }

  .mlheader img {
    width: 180px;
    height: 80px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .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: #fff;
  }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
  }

  .menu-btn span:before {
    bottom: 8px;
  }

  .menu-btn span:after {
    top: 8px;
  }

  #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: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #ebdfc8;
  }

  .menu-content ul {
    padding: 70px 30px 0;
  }

  .menu-content ul li {
    border-bottom: solid 1px #000;
    list-style: none;
    font-family: ほのか新アンティーク角Medium;
    font-weight: bold;
    font-size: 16px;
  }

  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    padding: 20px;
    position: relative;
  }

  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 25px;
  }

  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    transition: all 0.5s;
    /*アニメーション設定*/
    background-color: #ebdfc8;
  }

  #menu-btn-check:checked~.menu-content {
    left: 0;
    /*メニューを画面内へ*/
  }

  .resave {
    background-color: #eb9800;
    border-radius: 45px;
    padding: 0 10px;
    height: 45px;
    width: 223px;
    position: relative;
    top: 20px;
    margin: auto;
  }

  .resave a {
    color: #fff;
    top: 14px;
    left: 40px;
    text-align: center;
    position: relative;
    text-decoration: none;
    font-family: ほのか新アンティーク角Medium;
    font-weight: bold;
  }

  .concept {
    display: none;
  }

  .spconcept {
    display: block;
    padding-top: 50px;
  }

  .title {
    background-image: url(../images/background.jpg);
    width: 100%;
    height: 259px;
    background-position: 100% 350px;
    font-family: ほのか新アンティーク角Medium;
    font-weight: bold;
    background-size: cover;
  }

  .title h2 {
    font-size: 22px;
    text-align: center;
    position: relative;
    top: 100px;
  }

  .explain {
    text-align: center;
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .explain p {
    margin: 10px;
  }

  .text h3 {
    font-size: 16px;
    text-align: center;
    margin: 10px;
    color: #c4942e ;
  }

  .text p {
    margin: 10px;
    line-height: 24px;
  }

  .text {
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
  }

  .text p {
    font-size: 14px;
  }

  .image img {
    object-fit: cover;
    width: 100%;
    height: 210px;
  }

  .access h2 {
    background-color: #c4942e;
    color: #fff;
    padding: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .flex2 {
    display: block;
    padding: initial;
  }

  .footer {
    display: none;
  }

  .spfooter {
    display: block;
    text-align: center;
    background-color: #ebdfc8;
    font-size: 8px;
    padding: 10px;
  }
}