@charset "utf-8";
/* CSS Document */
body {
  background-color: #c5e8d0;
}
/*ヘッダー（logoとnav）---------------------------------------*/
.header {
  position: relative;
  z-index: 1;
}
.h__logo {
  top: 60px;
  left: 150px;
  height: calc(192vw/14.4);
  position: absolute;
  width: calc(226vw/14.4);
  z-index: 1;
}
.h__logoTarget {
  display: block;
}
.h__logoTarget img {
  height: 100%;
  width: 100%;
}
.gn {
  display: flex;
  height: 60px;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: 15rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.gn li {
  padding-left: 30px;
}
.gn li a {
  color: #271403;
}
@media screen and (max-width:768px) {
  .gn {
    /*display: none;*/
    height: auto;
    margin-right: 0;
  }
  
  .gn li {
  padding-left: 0;

  }
  .h__logo {
    position: static;
    display: flex;
    height: 100%;
    margin: 1rem auto;
    justify-content: center;
  }
  .h__logoTarget img {
    width: calc(139vw/3.75)
  }
}
/*------------------------------------トップ---------------------------------------*/
.top-h2 {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 8rem 0 2rem;
}
.title {
  height: 70px;
}
.top-h3 {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 3rem;
}
.top-img-container {
  display: flex;
  height: calc(448vw/14.4);
}
.item-img-wrap img {
  height: calc(448vw/14.4);
  padding: 0 1rem;
}
.scroll-infinity {
  padding-bottom: 2.5rem;
  border-bottom: #fff solid 1px;
}
.top-lead {
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  padding-bottom: 10rem;
}
.top-lead-h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 11.5rem 0 7rem;
}
.top-lead-p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width:768px) {

  .top-h23 {
    display: flex;
    flex-flow: column-reverse;
    position: relative;
  }
  .top-h3 {
    font-size: 1.6rem;
    padding: 2.2rem 0;
  }
  .top-h2 {
    padding: 0 0 2rem;
    position: absolute;
    top: 325%;
    z-index: 1;
  }
  .title {
    height: 33px;
  }
  .top-img-container {
  height: calc(317vw / 3.75);
}
  .item-img-wrap img {
    height: calc(317vw / 3.75);
    padding: 0 0.5rem;
  }
  .scroll-infinity {
    padding-bottom: 1rem;
  }
  .top-lead {
    font-size: 1.6rem;
    padding: 0 3rem 6.5rem;
  }
  .top-lead-h2 {
    font-size: 1.8rem;
    padding: 8rem 0 5rem;
  }
  .top-lead-p {
    font-size: 1.4rem;
  }
}
/*---------------------------------------LINEUP--------------------------*/
.LINEUP-container {
  padding-bottom: 10rem;
}
/*ベーグル*/
.L-bagle-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 321px);
  gap: 5rem;
  justify-content: center;
  align-items: center;
  margin: 0 10rem 10rem
}
.LINEUP-b-name {
  display: flex;
  width: 234px;
  margin-bottom: calc(20vw/14.4);
  padding: 0.5em 2em;
  border: none;
  border-radius: 26.5px;
  background-color: #ffffff;
  font-weight: 500;
  font-size: 1.8rem;
  height: 53px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.L-bagle-wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
  padding-bottom: 6rem;
}
.LINEUP-h2_bagles {
  margin-bottom: 7.638vw;
}
.L-item-img-wrap {
  position: relative;
}
.L-item-img-wrap img {
  width: 320px;
}
/*ボタン--------------------------------*/
.buttonIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  aspect-ratio: 1;
  background-color: #ffffff;
  border-radius: 50%;
  border: none;
  font-size: 3rem;
  font-weight: 700;
  color: #c5e8d0;
  position: absolute;
  bottom: 20px;
  left: 250px;
  cursor: pointer;
}
/*-----------ChatGPT------------*/
.modal { /* モーダルを開いたときの指定。 */
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /*背景が暗くなる*/
  /*padding-top: 10rem;top0なので上寄せを解消*/
}
.modal-content { /* モーダルのstyle */
  background-color: #c5e8d0;
  padding: 2rem 2rem 5rem;
  width: min(500px, 40%);/*calc(508.666vw / 14.4)*/
  /*height: calc(680vw / 14.4);*/
  text-align: center;
  border-radius: 140px;
  margin: 0 auto;
  border: 20px solid #fff;
  outline: 10px solid #c5e8d0;
  outline-offset: -17px;
}
.modal img {
  max-width: 100%;
  max-height: 80vh;
  margin-bottom: 20px;
}
.close {
  color: #fff;
  float: none;
  font-size: 36px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/*-----------ChatGPT終わり------------*/
.modal-wrap {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 1rem;
}
.L-item-p {
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 1rem 3rem;
  border-radius: 99px;
  width: 70%;
  margin: 0 auto;
}
/*.brezel {
  letter-spacing: -0.2em;
}*/
.LINEUP-memo {
  width: 40%;
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  margin: 0 0 0 auto;
}
.LINEUP-memo p:first-child {
  text-indent: -1em;
}
.Instagramlogo {
  height: 1.5em;
  vertical-align: bottom;
}

@media screen and (max-width:768px) {
  .L-bagle-container {
    grid-template-columns: repeat(auto-fit, 166px);
    gap: 1rem;
    margin: 0 auto;
}
.L-item-img-wrap img {
    width: 166px;
}
.LINEUP-b-name {
    width: 143px;
    margin-bottom: calc(15vw / 3.75);
    padding: 0.3em 1em;
    border-radius: 20px;
    font-size: 1.3rem;
    height: 38px;
}

.buttonIcon {
    width: 37px;
    aspect-ratio: 1;
    font-size: 2rem;
    bottom: 10px;
    left: 125px;
}
  .LINEUP-memo {
    width: 100%;
    font-size: 1.3rem;
    margin: 0 auto;
}
  .LINEUP-memo p:first-child {
    text-indent: 1em;
}
  .LINEUP-memo p:last-child {
    padding: 0 2em;
  }
}


/*-------------------おいしい食べ方-------------------*/
.howtoeat-container {
  background-color: #fffdf4;
  line-height: 1.5;
  width: 80%;
  /* margin: 0 20rem; */
  /* width: calc(1140vw / 14.4); */
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 0 auto 10rem;
}
.howtoeat-container h2 {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 10rem 0;
}
.howtoeat-container h2::before { /* -----画像あしらい -----*/
  content: ''; /* 空白の要素を作る */
  height: 51px; /* 高さ指定 */
  width: 56px; /* 幅指定 */
  display: inline-block; /* インラインブロックにする */
  background-image: url("../images/LINEUP/cheese@2x.png"); /* 背景画像指定 */
  background-size: contain; /* 背景画像サイズ指定 */
  background-repeat: no-repeat; /* 背景画像リピート指定 */
  background-position: left; /* 背景画像位置指定 */
  vertical-align: middle; /* 上下中央揃え */
  margin-right: 3rem;
  /*position: relative; 　※位置調整したい場合
    top: -20px;*/
}
.howtoeat-container h2::after { /* -----画像あしらい -----*/
  content: ''; /* 空白の要素を作る */
  height: 51px; /* 高さ指定 */
  width: 56px; /* 幅指定 */
  display: inline-block; /* インラインブロックにする */
  background-image: url("../images/LINEUP/chocolate@2x.png"); /* 背景画像指定 */
  background-size: contain; /* 背景画像サイズ指定 */
  background-repeat: no-repeat; /* 背景画像リピート指定 */
  background-position: left; /* 背景画像位置指定 */
  vertical-align: middle; /* 上下中央揃え */
  margin-left: 3rem;
  /*position: relative; 　※位置調整したい場合
    top: -20px;*/
}
.howtoeat-container h3 {
  font-size: 2rem;
  font-weight: 500;
  padding: 0 2rem 5rem;
}
.howtoeat-p1 {
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: center;
  padding: 0 2rem 3rem;
}
.howtoeat-p2 {
  line-height: 1.7;
  padding: 0 2rem 3rem;
}
.howtoeat-p3 {
  color: #ad692d;
  font-weight: 500;
  padding: 0 2rem 10rem;
}
.box {
  display: flex;
  flex-flow: column;
  align-items: center;
  border-bottom: 1px solid;
}
.eat h3 {
  padding: 2rem 0;
}
.box-lead img {
  width: 170px;
}
.eat-wrap {
  display: flex;
  padding-bottom: 8rem;
}
.eat-wrap h4 {
  font-size: 2.4rem;
}
.step {
  font-family: "Montserrat";
  font-weight: 100;
}
.number {
  font-family: "Montserrat";
  font-weight: 100;
  font-size: 4rem;
}
.inline {
  font-weight: 500;
  display: inline-block;
  padding-left: 2em;
}
.eat-wrap p {
  margin: 4rem 0 4rem 12rem;
  line-height: 1.7;
}
.eat-img1, .eat-img2 {
  width: 100%;
}
.eat-img1 img {
  width: 210px;
  margin-left: 12rem;
}
.eat-wrap1 {
  padding-top: 5rem;
}
.eat-wrap2 {
  padding-left: 2rem;
  padding-top: 5rem;
}
.eat-img2 img {
  width: 230px;
  margin-left: 12rem;
}
.eat-wrap3 {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-bottom: 9rem;
}
.eat-wrap3 h4 {
  font-size: 2rem;
  font-weight: 500;
  padding: 4.5rem 0;
}
.eat-wrap3 p {
  line-height: 1.8;
  padding-bottom: 5rem;
}
.steamer img {
  width: 275px;
}
.eat-img3 img {
  width: 295px;
}
.eat-img4 img {
  width: 275px;
}
.comment {
  font-size: 1.8rem;
  background-color: #ffddd1;
  padding: 1rem;
  max-width: 826px;
  margin-bottom: 10rem;
  border-radius: 10px;
  margin: 0 2rem 10rem;
}

@media screen and (max-width:768px) {
  .eat-wrap {
    flex-flow: column;
    align-items: center;
  }
  
  .howtoeat-container h2::after {
    display: none;
  }
  .howtoeat-container h2::before {
    display: none;
  }
  .howtoeat-container h2 {
    font-size: 1.8rem;
    font-weight: 500;
    padding: 6rem 0 2.5rem;
}
  .cheese-ashi {
    display: flex;
    align-items: center;
    height: 51px; /* 高さ指定 */
  width: 56px;
    padding-bottom: 3rem;
  }
  .cheese-ashi img {
    width: 100%;
  }
  .howtoeat-container {
    width: 90%;
}
.howtoeat-container h3 {
    font-size: 1.6rem;
    padding-bottom: 3.5rem;
    text-align: center;
    padding: 0 2rem 3.5rem;
}
.howtoeat-p1 {
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: center;
    padding: 0 2rem 2rem;
}
.howtoeat-p2 {
    font-size: 1.3rem;
    padding: 0 2rem 2rem;
}
.howtoeat-p3 {
    color: #ad692d;
    font-weight: 500;
    padding-bottom: 10rem;
    font-size: 1.4rem;
    padding: 0 2rem 5.5rem;
}
  .eat-wrap h4 {
    font-size: 1.8rem;
}
.number {
    font-size: 3.2rem;
}
.inline {
    padding-left: 1.8em;
}
.eat-wrap1 {
    padding: 3rem;
}
.eat-wrap p {
    font-size: 1.4rem;
    margin: 2rem 0 3rem 9rem;
}
.eat-img1 img {
    width: 170px;
    margin-left: 9rem;
}
  .eat-img2 img {
    width: 180px;
    margin-left: 9rem;
}
  .eat-wrap2 {
    padding: 0;
  }
  .eat-wrap3 h4 {
    font-size: 1.8rem;
    padding: 4rem 0;
}
.eat-img3 img {
    width: 260px;
}
.eat-wrap3 p {
    font-size: 1.4rem;
    padding: 3rem;
}
.comment {
    font-size: 1.4rem;
    width: 80%;
    display: flex;
    margin: 0 auto 5rem;
}
.eat-img4 img {
    width: 260px;
}
  .eat-wrap3 {
    padding-bottom: 8rem;
}
  .modal-content {
    background-color: #c5e8d0;
    padding: 1rem 1rem 5rem;
    width: calc(300vw / 3.75);
    /*height: calc(500vw / 3.75);*/
    text-align: center;
    border-radius: 95px;
    margin: 0 auto;
    border: 14px solid #fff;
    outline: 10px solid #c5e8d0;
    outline-offset: -13px;
}
  .L-item-p {
    background-color: #fff;
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 2rem 3rem;
    border-radius: 50px;
    width: 80%;
    margin: 0 auto;
}
  
  
}