body {
  margin: 0;
}

/*タイトル*/
.menu_title_oya {
  margin: 0 0 40px;
}

.menu_title {
  font-size: 1.8em;
  font-weight: bold;
  color: #fffacd;
  margin: 50px 10% 15px;
  padding: 0 auto;

  text-align: center;

  background-color: #b22222;
  border: solid 5px #b22222;
}

@media screen and (max-width: 800px) {
  .menu_title {
    margin: 50px 3% 15px;
  }
}

@media screen and (max-width: 500px) {
  .menu_title {
    font-size: 1.5em;
  }
}

.menu_text {
  text-align: left;
  margin: 20px 12%;
  border-bottom: solid 1px #a9a9a9;
  font-size: 0.9em;
}

@media screen and (max-width: 800px) {
  .menu_text {
    font-size: 0.8em;
    margin: 20px 5%;
  }
}


/*店主からメッセージ*/
.menu_message_oya {
  margin: 0 0 40px;
}

.message_title {
  font-size: 1.3em;
  font-weight: bold;
  color: #b22222;
  margin: 50px 12% 10px;
  padding: 0 auto;

  text-align: center;

  border: solid 2px #b22222;
}

@media screen and (max-width: 800px) {
  .message_title {
    margin: 50px 5% 10px;
  }
}

@media screen and (max-width: 500px) {
  .message_title {
    font-size: 1.3em;
  }
}

.message_text {
  text-align: left;
  margin: 10px 12% 80px;
  font-size: 0.9em;
}

@media screen and (max-width: 800px) {
  .message_text {
    font-size: 0.8em;
    margin: 10px 5% 80px;
  }
}


/*料理一覧*/
.hinmoku_title_oya {
  margin: 0 0 20px;
}

.hinmoku_title {
  font-size: 1.3em;
  font-weight: bold;
  color: #fffacd;
  margin: 50px 10% 15px;
  padding: 0 auto;

  text-align: center;

  background-color: #6b8e23;
  border: solid 5px #6b8e23;
}

@media screen and (max-width: 800px) {
  .hinmoku_title {
    margin: 50px 3% 15px;
  }
}

@media screen and (max-width: 500px) {
  .hinmoku_title {
    font-size: 1.1em;
  }
}


.hinmoku {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto;
  grid-column-start: 1;
  grid-column-end: 3;

  column-gap: 10px;

  margin: 0 10% 150px;
}

@media screen and (max-width: 800px) {
  .hinmoku {
    display: block;
    margin: 0 10px 100px;
  }
}

.hinmoku_picture {
  display: block;
}

@media screen and (max-width: 800px) {
  .hinmoku_picture {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-column-start: 1;
    grid-column-end: 3;

    column-gap: 10px;

    margin: 0 10% 10px;
  }
}


.hinmoku_picture img {
  width: 95%;
}

.hinmoku_picture_ko {
  padding-bottom: 10px;
}

.hinmoku_other {}

@media screen and (max-width: 800px) {
  .hinmoku_other_text {
    font-size: 0.8em;
    margin: 10px 10% 25px;
    text-align: center;
  }
}

.hinmoku_other_text {
  font-size: 1em;
}

.hinmoku_other_text_name {
  font-size: 1.1em;
  font-weight: bold;
  margin-left: -10px;
}

@media screen and (max-width: 800px) {
  .hinmoku_other_text_name {
    margin-left: 0;
  }
}

@media screen and (max-width: 370px) {
  .hinmoku_other_text_name {
    font-size: 0.9em;
  }
}

.hinmoku_other_text_kome {
  text-align: left;
  margin: 10px 0;
  border-bottom: solid 1px #a9a9a9;
  font-size: 0.9em;

  max-width: 500px;
}

@media screen and (max-width: 800px) {
  .hinmoku_other_text_kome {
    font-size: 0.8em;
    margin: 10px 10%;
    text-align: center;
  }
}

@media screen and (max-width: 370px) {
  .hinmoku_other_text_kome {
    font-size: 0.7em;
  }
}







/*TOPに戻る*/
.top {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 100px 0;
}



/*フッター*/
.futter {
  background-color: #800000;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 100px;
}

.copywrite {
  font-size: 0.6em;
  color: #fff;
  text-align: center;
}

.copy_mark {
  font-size: 2em;
  vertical-align: -3px;
}