@charset "utf-8";

/*****************************************
*
* 食べる
*
******************************************/

/*------------------------------------------*/
/* main
/*------------------------------------------*/

.gourmet-main {
  position: relative;
}

/* 画像 --------------------------------*/
.gourmet-main figure img {
  width: 100%;
}

.gourmet-main figure {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

@media screen and (min-width: 834px), print {
  .gourmet-main figure {
    border-radius: 40px;
  }
}


/* 吹き出し --------------------------------*/
.gourmet-main .balloon-type-cloud {
  width: 300px;
  font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
  .gourmet-main .balloon-type-cloud {
    margin-top: -20px;
  }
}

@media screen and (min-width: 768px), print {
  .gourmet-main .balloon-type-cloud {
    width: calc(calc(500 / 1400) * 100vw);
    font-size: calc(calc(22 / 1400) * 100vw);
    position: absolute;
    bottom: calc(calc(200 / 1400) * -100vw);
    right: 0;
  }
}

@media screen and (min-width: 1400px), print {
  .gourmet-main .balloon-type-cloud {
    font-size: 1.4rem;
    width: 500px;
    bottom: -200px;
  }
}


/*------------------------------------------*/
/* contents
/*------------------------------------------*/

.gourmet-contents {
  position: relative;
  padding: 0;
  margin-top: 40px;
}

.gourmet-contents .box {
  overflow: hidden;
  border-radius: 20px;
}

@media screen and (min-width: 768px), print {
  .gourmet-main+.gourmet-contents {
    margin-top: 160px;
  }

  .gourmet-balloon+.gourmet-contents {
    margin-top: 100px;
  }

  .gourmet-contents .box {
    display: flex;
    align-items: flex-start;
  }

  .gourmet-contents .cont {
    width: 100%;
  }

  .gourmet-contents.reverse .box {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 834px), print {
  .gourmet-contents {
    margin-top: 100px;
  }

  .gourmet-main+.gourmet-contents {
    margin-top: 240px;
  }

  .gourmet-balloon+.gourmet-contents {
    margin-top: 160px;
  }

  .gourmet-contents .box {
    border-radius: 40px;
  }
}

/* 画像 --------------------------------*/
.gourmet-contents figure img {
  width: 100%;
}

.gourmet-contents figure {
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .gourmet-contents figure {
    flex-shrink: 0;
    width: calc(calc(500 / 1400) * 100vw);
  }
}

@media screen and (min-width: 834px), print {
  .gourmet-contents figure {
    width: calc(calc(460 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .gourmet-contents figure {
    width: 460px;
  }
}


/* 吹き出し --------------------------------*/
.gourmet-contents.reverse .balloon-type-cloud {
  padding-top: 0.5em;
}

@media screen and (max-width: 767px) {
  .gourmet-contents .balloon-type-cloud {
    margin-top: -40px;
  }
}

@media screen and (min-width: 768px), print {
  .gourmet-contents .balloon-type-cloud {
    position: absolute;
    top: calc(calc(80 / 1400) * -100vw);
    left: calc(calc(80 / 1400) * -100vw);
  }

  .gourmet-contents.reverse .balloon-type-cloud {
    left: auto;
    right: calc(calc(80 / 1400) * -100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .gourmet-contents .balloon-type-cloud {
    top: -80px;
    left: -100px;
  }

  .gourmet-contents.reverse .balloon-type-cloud {
    left: auto;
    right: -100px;
  }
}


/* テキスト --------------------------------*/
.gourmet-contents .text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  padding: 20px 20px 40px 20px;
}

@media screen and (min-width: 768px), print {
  .gourmet-contents .text {
    padding: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .gourmet-contents .text {
    font-size: 1.1rem;
    padding: 60px;
  }
}

@media screen and (min-width: 1400px), print {
  .gourmet-contents .text {
    padding: 90px;
  }
}


/*------------------------------------------*/
/* 吹き出しのみ
/*------------------------------------------*/


.gourmet-balloon .box {
  position: relative;
}

@media screen and (max-width: 767px) {
  .gourmet-balloon .box+.box {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px), print {
  .gourmet-balloon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: calc(calc(140 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .gourmet-balloon {
    column-gap: 140px;
  }
}


/* 画像 --------------------------------*/
.gourmet-balloon figure img {
  width: 100%;
}

.gourmet-balloon figure {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

@media screen and (min-width: 834px), print {
  .gourmet-balloon figure {
    border-radius: 40px;
  }
}


/* 吹き出し --------------------------------*/
.gourmet-balloon .balloon-type-cloud {
  width: 300px;
  font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
  .gourmet-balloon .balloon-type-cloud {
    margin-top: -40px;
  }
}

@media screen and (min-width: 768px), print {
  .gourmet-balloon .balloon-type-cloud {
    width: calc(calc(400 / 1400) * 100vw);
    font-size: calc(calc(22 / 1400) * 100vw);
    position: absolute;
    bottom: calc(calc(90 / 1400) * -100vw);
    right: calc(calc(40 / 1400) * -100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .gourmet-balloon .balloon-type-cloud {
    font-size: 1.4rem;
    width: 400px;
    bottom: -90px;
    right: -40px;
  }
}


/* テキスト --------------------------------*/
.gourmet-balloon .text {
  display: inline-block;
  text-align: left;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1em;
}

@media screen and (min-width: 768px), print {
  .gourmet-balloon .text {
    font-size: calc(calc(20 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  .gourmet-balloon .text {
    font-size: 1.1rem;
  }
}