/* テキスト指定 */
body {
  font-family: "Yu Gothic UI", YuGothic, "Yu Gothic", sans-serif;
}

/* 見出し */
.gradient {
  padding: 3em;
  text-align: center;
  /* border-radius: 10px 10px 0 0; */
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(252, 213, 113, 1) 100%
  );
}
.gradient_r {
  padding: 3em;
  text-align: center;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(252, 213, 113, 1) 100%
  );
}

.gradient h2 {
  margin: 0.5em auto;
}
.gradient h2::before {
  position: unset;
  background: none;
}
.gradient span {
  font-size: 1.2rem;
}

/* flex設定 */
.flex_contents,
.flex_flavor {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
}
.flex_contents > div {
  padding: 0.5em;
}

/* フレーバー */
.flavor {
  width: 30%;
}

.f_img {
  width: 35%;
  float: left;
  margin-right: 1em;
}

/* リゾート */
.resort_h2 {
  line-height: 1.5;
  margin: 3em 0 1.5em;
}
.resort_h2::before {
  background: none;
}

/* flex item */
.resort_img,
.resort_txt {
  width: 49.5%;
}
.resort_txt h4 {
  font-size: 1.5rem;
  line-height: 1.2;
}
.resort_txt h4 span {
  font-size: 0.75em;
}

.resort_txt p {
  margin-bottom: 0.4em;
}
.resort_txt ul {
  background-color: #ffffcc;
  padding: 0.5rem;
  margin-bottom: 0.5em;
  border-radius: 10px;
}
.resort_txt li {
  list-style: none;
  margin: 0;
}
.resort_txt li::before {
  content: "●";
  color: #fcd571;
}

/* トップへ */
.go_top {
  text-align: right;
  margin: -1em 0 2em 0;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  /* flex設定 */
  .flex_contents {
    flex-flow: column;
    margin-bottom: 1.5em;
  }

  .flex_flavor {
    flex-wrap: wrap;
  }

  .flavor {
    width: 48.5%;
  }

  .resort_h2 {
    margin: 1.5em 0;
  }

  /* flex item */
  .resort_img,
  .resort_txt {
    width: 100%;
  }
  .resort_txt h4 {
    font-size: 1.25rem;
  }
}
