@charset "UTF-8";

* {
	float: none;
  position: static;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* フォントサイズの計算に1rem=10pxを使いたいのでhtmlに62.5%を指定 */
  font-size: 62.5%;
}

body {
  /* どんなにブラウザ幅が狭くなっても最低1,000pxのコンテンツの幅を確保する */
  font-family: '游明朝体', YuMincho, '游明朝 Medium', 'Yu Mincho Medium', '游明朝', 'Yu Mincho', serif;
  line-height: 1.75;
  letter-spacing: 1.5px;
  color: #000;
}

/* ボールド書体についてはEdgeに対応するため別途指定する */
strong, b, mark, b, .typo-bold {
  font-family: '游明朝体', YuMincho, '游明朝', 'Yu Mincho', '游明朝', 'Yu Mincho', serif;
  font-weight: 700;
}

img {
  /* height: auto; */
  vertical-align: top;
}

a {
  text-decoration: none;
}

.inner{
  max-width: 1000px;
  width: 100%;
  margin: 0px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.omori {
  font-size: 16px;
  margin-bottom: 60px;
}

.red {
  display: block;
  color: red;
}
/* ---------------header---------------- */
.page-header {
  background-color: olivedrab;
  color: white;
  padding: 12px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-title {
  font-size: 28px;
  font-weight: bold;
}

.header-info {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 1.8px;
}
.header-info li {
  list-style-type: none;
}

.yellow {
  color: yellow;
}
/* ---------------main---------------- */
.main-visual-bg {
  background-image: url(../img/main.JPG);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 65vh;
  object-fit: cover;
  color: white;
}
.main-info {
  margin: 120px auto 40px;
}
.main-info-ttl {
  font-size: 24px;
  margin-bottom: 20px;
}
.main-info-ttx {
  font-size: 16px;
}

.title {
  padding: 80px 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
/* --------menu-------- */
.menu-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.menu-list li {
  width: 421.6px;
  margin-bottom: 40px;
  border: .8px solid lightgray;
  list-style-type: none;
}
.menu-photo {
  object-fit: cover;
}
.menu-list-inner {
  font-size: 18px;
  margin: 12px 12px 24px 12px;
  padding: 12px 12px 24px 12px;
  color: #333;
}
.menu-list-title {
  margin-bottom: 16px;
}
.menu-list-ttx  {
  font-size: 16px;
  color: gray;
}
.menu-ttl-bold {
  font-weight: bold;
}
.menu-ttl-small {
  font-size: small;
}
/* --------order-info-------- */
.order-info-list {
  max-width: 780px;
  width: 80%;
  margin: 0 auto;
  font-size: 16px;
  list-style-type: disc;
}

/* ---------------footer---------------- */
footer {
  text-align: center;
  padding: 80px 0 40px 0;
  background-color: lightgrey;
  margin-top: 120px;
}
.footer-info {
  margin-bottom: 40px;
  font-size: 14px;
}

@media screen and (min-width: 601px) {
  .phone {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .inner{
    margin: 0px auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .title {
    padding: 60px 0;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }
  
/* ---------------header---------------- */

.header-info {
  display: none;
}
.header-title {
  font-size: 18px;
  font-weight: bold;
}
.red {
  color: red;
}
/* ---------------main---------------- */
.main-info-ttl {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.main-info {
  max-width: 320px;
  width: 100%;
  margin: 60px auto;
}
.menu-photo {
  max-width: 420px;
  width: 100%;
  height: auto;
}
.menu-list-inner {
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.phone {
  display: block;
  width: 320px;
  margin: 20px auto;
  text-align: center;
  font-size: 18px;
  border: .8px solid lightgray;
}
.menu-list li {
  max-width: 160px;
  width: 100%;
  margin: 0 auto 40px;
}


/* ---------------footer---------------- */
footer {
  margin-top: 80px;
}

}