@charset "UTF-8";
/* CSS Document */
/*****************************
 カフェメニューここから 
 *****************************/
.cafe-menu__img {
  height: 650px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
.cafe-menu__main {
  margin-bottom: 3rem;
}
.cafe-menu__main img {
  width: 100%;
}
.cafe-menu__content img {
  width: 100%;
  margin-bottom: 3rem;
}
.cafe-menu__content h2 {
  color: #B19200;
  font-size: 4.0rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 3rem;
}
.cafe-menu__content p {
  font-size: 2.0rem;
  font-weight: normal;
  line-height: 2;
  margin: auto;
  margin: 3rem 0;
}
.cafe-menu__content h3 {
  color: #B19200;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 3rem;
  border-top: dotted 1px #B19200;
	padding-top: 2rem;
}
.cafe-menu__content span {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.cafe-menu__content h4 {
  color: #251E1C;
  font-size: 2.0rem;
  font-weight: normal;
}
.cafe-menu__container-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-bottom: 3rem;
}
.cafe-menu__list {
  width: 30%;
  border-top: solid 1px #251E1C;
  border-bottom: solid 1px #251E1C;
  margin-bottom: 2rem;
}
.cafe-menu__list dl {
  font-size: 2.0rem;
}
.cafe-menu__list2 {
  border-top: solid 1px #251E1C;
  border-bottom: solid 1px #251E1C;
  margin-bottom: 2rem;
}
.cafe-menu__list2 h3 {
  color: #251E1C;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: left;
}
.cafe-menu__list2 p {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: left;
  margin: auto;
  margin-bottom: 2rem;
}
.cafe-menu__list2 dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
/*******************************
 メディアクエリここから 959px 520px
 *******************************/
/*最大幅が0〜959pxまで*/
@media screen and (max-width:959px) {
  .cafe-menu__container-item {
    display: flex;
    flex-direction: column;
  }
  .cafe-menu__content h2 {
    font-size: 3.5rem;
  }
  .cafe-menu__content p {
    font-size: 1.6rem;
  }
  .cafe-menu__content h3 {
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
  .cafe-menu__list {
    width: 100%;
  }
  .cafe-menu__list dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
}

/*最大幅が0〜520pxまで*/
@media screen and (max-width: 520px) {
  .cafe-menu__img {
    width: auto;
    height: 400px;
    margin: 0;
  }
  .cafe-menu__img img {
    width: 30%;
    height: auto;
  }
}