@charset "UTF-8";

/****************************************page-cafe__index01***********************************/

.page-cafe__index01-image {
  width: 50%;
  margin: auto;
  margin-top: 4rem;
}

.page-cafe__index01-text {
  margin-top: 4rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .page-cafe__index01-image {
    width: 100%;
  }
}

/****************************************page-cafe__index02***********************************/

.page-cafe__index02-list {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}

.page-cafe__index02-list-item {
  width: 23%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
  padding: 2rem;
  text-align: center;
  background-color: #fff;
}

.page-cafe__index02-list-item-text {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.page-cafe__index02-list-item img {
  width: 50%;
  margin: auto;
}

.page-cafe__index02-text {
  margin-top: 4rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .page-cafe__index02-list {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .page-cafe__index02-list-item {
    width: 47%;
  }

  .page-cafe__index02-list-item-text {
    font-size: 1.2rem;
  }
}

/****************************************page-cafe__index03***********************************/

.page-cafe__index03-image {
  width: 70%;
  margin: auto;
  margin-top: 4rem;
}

.page-cafe__index03-text {
  margin-top: 4rem;
  font-size: 1.6rem;
}

.page-cafe__index03-subttl {
  margin-top: 8rem;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
}

.page-cafe__index03-subttl span {
  font-size: 3.2rem;
  color: #955b00;
  display: inline-block;
}

.page-cafe__index03-text02 {
  margin-top: 4rem;
  font-size: 1.6rem;
  text-align: center;
}

.page-cafe__index03-container {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}

.page-cafe__index03-container-box {
  width: 49%;
  text-align: center;
  background-color: #fff;
  border: 2px solid #955b00;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
  padding: 2rem;
}

.page-cafe__index03-container-box-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
  display: inline-block;
  background: linear-gradient(transparent 60%, #ffcc7d 60%);
}

.page-cafe__index03-container-box-text {
  background: #fff;
  margin-top: 2rem;
  font-size: 1.4rem;
  text-align: left;
  line-height: 2;
  font-weight: bold;
  min-height: 15rem;
}

@media screen and (max-width: 768px) {

  .page-cafe__index03-image {
    width: 100%;
  }

  .page-cafe__index03-subttl {
    margin-top: 4rem;
  }

  .page-cafe__index03-text02 {
    text-align: left;
  }

  .page-cafe__index03-container {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2rem;
  }

  .page-cafe__index03-container-box {
    width: 100%;
  }

  .page-cafe__index03-container-box-text {
    font-size: 1.2rem;
    min-height: auto;
  }
}

/****************************************page-cafe__index04***********************************/

.page-cafe__index04-text {
  margin-top: 4rem;
  font-size: 1.6rem;
}

.page-cafe__slide {
  margin: 8rem 0;
}

/****************************************page-cafe__index05***********************************/

.page-cafe__index05-text {
  margin-top: 4rem;
  font-size: 2.4rem;
  text-align: center;
}

.page-cafe__index05-container-textarea {
  position: relative;
  display: inline-block;
  background: #fff;
  /* 背景色（画像のグレー） */
  border-radius: 8px;
  padding: 10px 16px;
  color: #333;
  font-size: 2rem;
  line-height: 1.6;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
  padding: 2rem;
}

/* 左側の吹き出し（三角） */
.page-cafe__index05-container-textarea::before {
  content: "";
  position: absolute;
  top: 10px;
  /* 上からの位置を調整 */
  left: -10px;
  /* 本体との距離 */
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid #fff;
  /* 背景と同じ色 */
}

.page-cafe__index05-container {
  display: flex;
  margin-top: 8rem;
  gap: 4rem;
  align-items: center;
}

.page-cafe__index05-container.--reverse {
  flex-direction: row-reverse;
}

.page-cafe__index05-container.--reverse .page-cafe__index05-container-textarea::before {
  content: "";
  position: absolute;
  top: 10px;
  left: auto;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  border-right: none;
}

@media screen and (max-width: 768px) {
  .page-cafe__index05-text {
    font-size: 2rem;
  }

  .page-cafe__index05-container {
    margin-top: 4rem;
  }

  .page-cafe__index05-container-textarea {
    font-size: 1.4rem;
  }
}