@charset "UTF-8";

/* reset */
html {
  scroll-behavior: smooth;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

a {
  display: block;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* *********************************************** */
/* common css                                     */
/* ********************************************* */

/* color */
:root {
  --color-main: #3CC1BE;  /* メインカラー */
  --color-text-default: #231815;  /* テキストの色 */
  --color-text-sub: #858585;
  --color-white: #fff;
  --color-yellow: #FFE067;
  --color-yellow--pale: rgba(255, 224, 103, .15);
  --color-input--border: #C4C3C0;
  --color-shadow: #bfc0c0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "momochidori", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--color-text-default);
  background-color: var(--color-white);
  background-image: url(../images/attachment.jpeg);
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

p {
  font-size: clamp(0.75rem, 0.208rem + 2.22vw, 1.25rem);
  line-height: 1.8;
}

/* *********************************************** */
/* 固定ページ common css                           */
/* ********************************************* */

/* 固定コンテンツ枠 */
#contents_box {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow-x: clip;
  background-color: var(--color-white);
  background-image: linear-gradient(120deg, #fff 0%, #fdfbfb 100%);
  background-attachment: fixed;
  margin-top: 99px;
  padding-bottom: 100px;
}

/* ページタイトル エリア*/
.page_heading_area {
  margin-bottom: 2rem;
}

.page_heading_area p {
  font-size: clamp(0.938rem, 0.328rem + 2.5vw, 1.5rem);
  line-height: 1.8;
}

/* セクションタイトルの画像 */
.section_heading {
  padding-top: 48px;
  margin-bottom: 38px;
}

.section_heading img {
  height: 31px;
  /* filter: drop-shadow(1px 1px 1px var(--color-shadow)); */
}

.section_heading span {
  font-size: clamp(0.75rem, 0.208rem + 2.22vw, 1.25rem);
  margin-top: 18px;
  display: block;
  text-align: center;
}

/* 背景付きページ */
.bg_color {
  width: 100%;
  max-width: 750px;
  background-color: #fff;
  background-image: url(../images/fv/fv_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: clamp(0rem, -6.346rem + 28.21vw, 6.875rem);
}

/* 右矢印 ▶ */
.triangle_item {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
}

.triangle {
  background: var(--color-white);
  height: calc(tan(60deg) * 20px / 2);
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
}

.triangle_g {
  background: var(--color-main);
  height: calc(tan(60deg) * 20px / 2);
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
}

/* 下向き矢印（アコーディオンで使用）はFAQセクションで指定 */

/* 白フォントリンク */
.link_white {
  color: var(--color-white);
}

/* *********************************************** */
/* common header                                  */
/* ********************************************* */

.header {
  width: 100%;
  max-width: 750px;
  height: 100px;
  background-color: var(--color-main);
  display: flex;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(0.5rem, -0.43rem + 4.65vw, 1.75rem);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.1); */
}

/* ヘッダーロゴ */
.header .header_logo {
  margin: 0;
  width: 50%;
  max-width: 270px;
}

/* ヘッダーナビ */
.header .header_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
}

/* ヘッダー SNS */
.header .header_nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10%;
  margin: 0;
  padding: 0;
}

.header .header_nav ul li {
  width: 40px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
}

.header .header_nav ul li img {
  height: auto;
  object-fit: contain;
}


/* *********************************************** */
/* common hamburger                               */
/* ********************************************* */

/* ハンバーガーメニュー内 */
.ham_nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: var(--color-main);
  transform: translateX(100%);
  transition: transform .4s ease-in-out;
  /* opacity: 0; */
  z-index: 999;
  color: var(--color-white);
  padding-left: clamp(1.25rem, -0.145rem + 6.98vw, 3.125rem);
  padding-right: clamp(0.625rem, -0.026rem + 3.26vw, 1.5rem);
}

.ham_nav.active {
  transform: translateX(0);
  /* opacity: 1; */
}

.ham_nav__logo {
  width: 100%;
  max-width: 275px;
  margin: 50px 0;
}

.ham_nav__list {
  margin: 0;
  padding: 0;
}

.ham_nav__item {
  padding-bottom: 20px;
}

.ham_nav__link {
  display: inline-block;
  padding-left: 20px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(0.938rem, 0.328rem + 2.5vw, 1.5rem);
}

.ham_nav_top {
  display: flex;
  align-items: center;
  gap: 5%;
  padding-left: 0;
}

.ham_nav_top::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: var(--color-white);
}

.to_footer {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  text-align: center;
  letter-spacing: 0.17em;
  font-weight: 500;
  color: var(--color-main);
  background-color: var(--color-white);
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
  margin-top: 20px;
  transition: all .2s ease;
}

.to_footer:hover {
  background-color: var(--color-yellow);
}

/* ハンバーガーアクティブ時の背景 */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  /* 半透明のグレー */
  z-index: 998;
  /* ナビより後ろにするなら調整 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1s ease-in-out;
}

/* ハンバーガーアクティブ時の背景を固定する */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  /* iOS対策として推奨 */
  position: fixed;
  width: 100%;
}

/* *********************************************** */
/* common footer                                  */
/* ********************************************* */

.footer {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: var(--color-main);
  scroll-margin-top: 100px;
  /* ヘッダーの高さぶん */
  position: relative;
  bottom: 0;
}

.footer_gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.fg_01 {
  grid-area: 1 / 1 / 3 / 2;
}

.fg_02 {
  grid-area: 1 / 2 / 2 / 3;
}

.fg_03 {
  grid-area: 2 / 2 / 3 / 3;
}

.footer_gallery__item {
  height: 100%;
  object-fit: cover;
}

.footer_gallery__item img {
  object-fit: cover;
}

.footer_info {
  padding-top: 48px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: var(--color-white);
  font-size: 14px;
}

.footer_info dt {
  width: 30%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1;
  border-bottom: .35px solid var(--color-white);
}

.footer_info dd {
  width: 70%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: .35px solid var(--color-white);
}

.footer_info .tel {
  color: var(--color-white);

}

.footer_copyright {
  width: 100%;
  max-width: 750px;
  background-color: var(--color-white);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  color: var(--color-main);
  font-size: 14px;
}

/* *********************************************** */
/* staff ページ                                    */
/* ********************************************* */
.staff_list {
  padding-left: 0;
}

.staff_list_item {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* 高さ調整 */
@media screen and (min-width: 540px) {
  .yc {
    margin-top: -10%;
  }
}

.staff_list_item_img {
  width: 40%;
  margin: 0;
}

.xc {
  width: 35%;
}


.staff_list_item_data {
  width: 54%;
  color: var(--color-white);
}

.staff_list_item_data dt {
  font-size: clamp(1.5rem, 1.125rem + 1.6vw, 1.875rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: clamp(0.5rem, -0.25rem + 3.2vw, 1.25rem);
}

.staff_list_item_data dd {
  font-size: clamp(0.875rem, 0.5rem + 1.6vw, 1.25rem);
}

/* *********************************************** */
/* こだわり ページ                                 */
/* ********************************************* */
#Commitment {
  margin-bottom: -50px;
}

#Commitment .page_heading_area p {
  letter-spacing: 0.01em;
}

.method_list_item {
  margin-bottom: 43px;
}

.method_list_item_figure {
  position: relative;
}

.method_list_figure_bg {
  width: 75%;
  max-width: 437px;
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
  display: block;
  position: relative;
  z-index: 1;
}

.method_list_figure_bg img {
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
}

.method_list_figure_bg::after {
  content: "";
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--color-main);
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
  position: absolute;
  top: 10%;
  right: -5%;
  z-index: -1;
}

.balloon {
  width: 55%;
  min-width: 250px;
  position: absolute;
  top: 10%;
  right: 15%;
  z-index: 10;
}

.balloon img {
  position: relative;
}

.balloon h3 {
  position: absolute;
  top: 53%;
  left: 30%;
  transform: translate(-30%, -50%);
  font-size: clamp(0.875rem, 0.529rem + 1.54vw, 1.25rem);
  color: var(--color-main);
  width: 80%;
  text-align: center;
  margin-bottom: 0;
}

.method_list_figure_staff {
  width: 13%;
  position: absolute;
  bottom: 20px;
  right: 0;
}

.staff_b {
  width: 12%;
}

.staff_d {
  width: 15%;
}

.method_list_item_data {
  width: 90%;
  max-width: 540px;
  padding: clamp(0.938rem, -0.078rem + 4.17vw, 1.875rem);
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
  border: 1px solid var(--color-main);
  background-color: var(--color-white);
  margin: clamp(-1.875rem, -0.859rem + -4.17vw, -2.813rem) 0 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and(min-width: 750px) {
  .method_list_item_data {
    margin-top: -10%;
  }
}

.method_list_item_data p {
  margin: 0;
  letter-spacing: 0.08em;
}

/* 反転ver*/
.mli_r>.method_list_item_figure {
  display: flex;
  flex-direction: row-reverse;
}

.mli_r>.method_list_item_figure .balloon {
  left: 15%;
  right: auto;
}

.mli_r>.method_list_item_figure .method_list_figure_staff {
  left: 0;
}

.mli_r>.method_list_item_data {
  margin: clamp(-1.875rem, -0.859rem + -4.17vw, -2.813rem) 0 0 0;
}


/* *********************************************** */
/* ネットショップ ページ                            */
/* ********************************************* */
#NetShop .page_heading_area p {
  letter-spacing: 0.01em;
}

.product_list_item {
  margin-bottom: 3rem;
}

.product_list_item_figure {
  width: 90%;
  position: relative;
  z-index: 1;
}

.product_list_item_figure img {
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
}

.product_list_item_figure::after {
  content: "";
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--color-main);
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
  position: absolute;
  top: 10%;
  right: -5%;
  z-index: -1;
}

.product_list_item_data {
  width: 90%;
  max-width: 540px;
  padding: clamp(0.938rem, -0.078rem + 4.17vw, 1.875rem);
  border-radius: clamp(0.938rem, 0.26rem + 2.78vw, 1.563rem);
  border: 1px solid var(--color-main);
  background-color: var(--color-white);
  margin: -10% 0 0 auto;
  position: relative;
  z-index: 2;
}

.product_list_item_data p {
  margin: 0;
}

.product_list_item_data .price {
  color: var(--color-main);
  font-weight: 700;
}

.shop_link_btn {

  background: var(--color-main);
  border-radius: 25px;
  border: solid 2px var(--color-main);
  width: fit-content;
  font-size: clamp(1rem, 0.458rem + 2.22vw, 1.5rem);
  margin: clamp(1.5rem, -0.125rem + 6.67vw, 3rem) auto 0;
  transition: all .2s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop_link_btn a {
  padding: 1rem 1rem 1rem 3rem;
  color: var(--color-white);
}

.shop_link_btn .triangle {
  margin-right: 3rem;
}

.shop_link_btn:hover {
  background-color: var(--color-white);
}

.shop_link_btn:hover a {
  color: var(--color-main);
}

.shop_link_btn:hover .triangle {
  background-color: var(--color-main);
}

.about_shipping_area {
  padding: 32px;
  border: 1px solid var(--color-main);
}

.about_shipping_area ul {
  margin-bottom: 0;
}

.about_shipping_area li {
  margin-bottom: 2rem;
}

.about_shipping_area li:last-child {
  margin-bottom: 0;
}

.about_shipping_area dt {
  font-size: clamp(0.875rem, 0.469rem + 1.67vw, 1.25rem);
  color: var(--color-main);
  font-weight: 400;
  margin-bottom: 1rem;
}

.about_shipping_area dd {
  font-size: clamp(0.75rem, 0.479rem + 1.11vw, 1rem);
  font-weight: 100;
}

.shipping_button {
  font-weight: 400;
  padding-bottom: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 14px;
  transition: .2s;
  display: block;
  position: relative;
  transition: all .3s ease;
}

.shipping_button:hover {
  opacity: .5;
}

summary::-webkit-details-marker {
  display: none;
}

.shipping_button::after {
  content: '';
  position: absolute;
  top: 10px;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0px 7px 12.12px;
  border-color: transparent transparent transparent var(--color-main);
  box-sizing: border-box;
  transition: .1s;
}

/* オープン時 */
details[open] .shipping_button::after {
  transform: rotate(90deg);
}

@media screen and (max-width: 420px) {
  .shipping_button::after {
    right: 0;
  }
}

.shipping_content {
  font-weight: 400;
  font-size: 14px;
  padding: 0 1rem 1rem 1rem;
}

@media screen and (max-width: 600px) {
  .shipping_content {
  padding: 0 0 1rem 0;
  }
}

.shipping_content table {
  border: 1px solid var(--color-main);
  background: var(--color-yellow--pale);
}

.shipping_content th , .shipping_content td {
  padding: 8px;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}

.shipping_content th {
  padding: 8px;
  background: var(--color-main);
  color: var(--color-white);
}

.shipping_content th:first-child {
  width: 84px;
}

.shipping_content th small {
  font-weight: 400;
}

.shipping_content th:first-child {
  border-right: 1px solid var(--color-white);
}

/* *********************************************** */
/* お知らせ ページ       　　　                     */
/* ********************************************* */
.news_list {
  padding: clamp(1.5rem, 0.958rem + 2.22vw, 2rem) clamp(1.5rem, -0.26rem + 7.22vw, 3.125rem);
  border: 2.78px solid var(--color-main);
  position: relative;
  z-index: 1;
}

.news_list::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-yellow--pale);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

.news_list_item {
  padding-top: 1rem;
  border-bottom: 1px solid var(--color-main);
  width: 100%;
}

.news_list_item a {
  color: var(--color-main);
}

.news_list_item .news_date {
  margin: 0;
  width: 100%;
}

.news_list_item .news_title {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  margin-top: 8px;
}

@media screen and (min-width: 540px) {
  .news_list_item a {
    width: 100%;
  }

  .news_list_item dl {
    display: flex;
  }

  .news_list_item .news_date {
    margin: 0;
    width: 30%;
  }

  .news_list_item .news_title {
    margin-top: 0;
    width: 70%;
  }
}

/* お知らせ記事 */
.news_item_header .news_date {
  display: block;
  margin-bottom: 4px;
}

.news_item_header .news_title {
  color: var(--color-main);
}

.news_item_body {
  padding: 2.5rem 1.5rem;
  /* background-color: var(--color-yellow); */
  border-radius: 15px;
}

/* 投稿記事内の写真にスタイルを当てないようにする */
.news_item_body img {
  width: auto; /*引き延ばさない*/
  max-width: 100%; /*ただし表示枠内におさめる*/
  height: auto; /*縦横比を変えない*/
}

/* 一覧 ページネーション */
.pagination_wrap {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.paginations {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
}

.page-item {
  border-radius: 25px;
  display: block;
  background: var(--color-main);
  width: fit-content;
}

.page-item .page-link {
  padding: 16px clamp(0.875rem, 0.198rem + 2.78vw, 1.5rem);
  font-size: clamp(0.875rem, 0.74rem + 0.56vw, 1rem);
  width: fit-content;
  line-height: 1;
  border-radius: 25px;
  display: block;
  color: var(--color-white);
}

.page-item:hover {
  background-color: var(--color-yellow);
  color: var(--color-text-default);
}

.page-link:hover {
  color: var(--color-text-default);
}


.page-item-to_list {
  background-color: var(--color-main);
}



/* *********************************************** */
/* フロントページ 　　　　　　　　　　　　　　　　　  */
/* ********************************************* */

/* フロント 固定コンテンツ枠 */
#front_contents_box {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow-x: clip;
  background-color: var(--color-white);
  padding-bottom: 60px;
}

/* フロント＿ ファーストビュー */
#front_fv {
  /* width: 100%;
  max-width: 750px;
  margin: 0 auto; */
  background-image: url(../images/fv/fv_bg.svg);
  background-color: var(--color-white);
  background-size: cover;
  position: relative;
  width: 100%;
  padding-top: clamp(3.125rem, 1.73rem + 6.98vw, 5rem);
  padding-bottom: clamp(12.5rem, 5.523rem + 34.88vw, 21.875rem);
  padding-bottom: clamp(12.5rem, 0.872rem + 58.14vw, 28.125rem);
  padding-bottom: clamp(12.5rem, 7.955rem + 22.73vw, 25rem);
  margin-bottom: 1rem;
}

.front_imgs {
  width: 100%;
  height: 100%;
  /* position: relative; */
}

.front_img {
  position: absolute;
  margin: 0;
}

.front_img img {
  filter: drop-shadow(1px 1px 10px var(--color-shadow));
}

/* 一番上のベーグル */
.front_imgs_item01 {
  width: 50%;
  top: 0;
  left: 30%;
  z-index: 2;
}

/* 左真ん中ベーグル */
.front_imgs_item02 {
  width: 50%;
  top: 15%;
  left: 0;
  position: absolute;
}

/* 真ん中ベーグルの文字 */
.fim_02_t {
  width: 70%;
  left: 20%;
  position: absolute;
  bottom: -10%;
}

/* 左下のベーグル */
.front_imgs_item03 {
  width: 45%;
  bottom: 0;
  left: 0;
}

/* 右下のベーグル */
.front_imgs_item04 {
  width: 53%;
  bottom: 0;
  right: 0;
}

/* 右下のベーグルの女の子 */
.fim_04_svg {
  width: 30%;
  left: 30%;
  position: absolute;
  top: 18%;
}

/* ベーグルふわふわアニメーション */
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite;
}

@keyframes fuwafuwa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.fuwafuwa2 {
  animation: fuwafuwa2 4s ease-in-out infinite;
}

@keyframes fuwafuwa2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* フロント＿ ヘッダー */
.front_header {
  position: fixed;
  z-index: 1;
  height: clamp(3.125rem, 1.73rem + 6.98vw, 5rem);
}

.front_header .front_header_nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.front_header .front_header_nav ul {
  width: 100%;
  ;
  justify-content: space-between;
}

.front_header .front_header_nav ul li {
  width: clamp(1.5rem, 0.105rem + 6.98vw, 3.375rem);
}

.front_header_nav_sns {
  display: flex;
  align-items: center;
  gap: 10px;
  ;
}

/* フロント＿ ヘッダー ナビ */
.front_nav_wrap,
.front_txt_wrap {
  padding: 0 clamp(1.25rem, 0.785rem + 2.33vw, 1.875rem) 0 clamp(1rem, -0.86rem + 9.3vw, 3.5rem);
  z-index: 0;
  position: relative;
}

/* フロント_ ファーストビュー ロゴ */
.front_logo {
  width: 30%;
  margin: 0 clamp(1rem, 0.628rem + 1.86vw, 1.5rem) 0 auto;
  cursor: pointer;
}

/* フロント_ファーストビュー ナビゲーション */
.front_nav {
  position: relative;
  width: clamp(10rem, 4.884rem + 25.58vw, 16.875rem);
  margin: 48px 0 0 auto;
  min-height: clamp(10.625rem, 9.23rem + 6.98vw, 12.5rem);
}

.front_nav li {
  transition: all .3s ease-in;
}

.front_nav_item_01 {
  position: absolute;
  width: clamp(5.625rem, 4.462rem + 5.81vw, 7.188rem);
  left: 30%;
}

.front_nav_item_01:hover {
  transform-origin: right;
  scale: 1.5;
  transform: rotate(10deg);
}

.front_nav_item_02 {
  position: absolute;
  width: clamp(7.5rem, 5.314rem + 10.93vw, 10.438rem);
  top: 30%;
  left: 0;
}

.front_nav_item_02:hover {
  transform-origin: bottom right;
  transform: rotate(-5deg);
  scale: 1.3;
}

.front_nav_item_03 {
  position: absolute;
  width: clamp(7.5rem, 5.314rem + 10.93vw, 10.438rem);
  top: 63%;
  left: 0;
  transform: rotate(-5deg);
}

.front_nav_item_03:hover {
  transform-origin: right;
  scale: 1.3;
  transform: rotate(-12deg);
}

.front_nav_item_girl {
  position: absolute;
  right: clamp(-0.938rem, -1.635rem + 3.49vw, 0rem);
  bottom: 10%;
  width: clamp(3.75rem, 1.89rem + 9.3vw, 6.25rem);
}

.front_nav li:last-child:hover {
  scale: 1;
}

/* フロント_ファーストビュー テキスト */
.front_txt_wrap {
  margin-top: 16px;
}

.front_txt_wrap p{
  text-shadow: 1px 1px 10px var(--color-shadow);
}

.fv_txt_r {
  text-align: right;
  margin-bottom: 0;
  font-size: clamp(0.75rem, 0.192rem + 2.79vw, 1.5rem);
}

.fv_txt_l {
  margin-top: clamp(-3.438rem, -7.856rem + 22.09vw, 2.5rem);
  font-size: clamp(0.75rem, 0.192rem + 2.79vw, 1.5rem);
}

/* フロント_ セクションタイトルの画像 */
.front_section_heading {
  padding-top: 48px;
  margin-bottom: 18px;
}

.front_section_heading img {
  height: 31px;
  /* filter: drop-shadow(1px 1px 1px var(--color-shadow)) !important; */
}

.front_section_heading span {
  font-size: clamp(0.75rem, 0.564rem + 0.93vw, 1rem);
  margin-top: 18px;
  display: block;
  text-align: center;
  margin-bottom: 0;
}

.front_section_heading_p {
  font-size: clamp(0.688rem, 0.5rem + 0.8vw, 0.875rem);
}

/* フトント_ お知らせ */
.front_news_list_area .news_list {
  padding: clamp(1.5rem, 0.958rem + 2.22vw, 2rem) clamp(1.5rem, -0.26rem + 7.22vw, 3.125rem);
  border: 3.4px solid var(--color-main);
  position: relative;
  z-index: 0;
}

/* フロント_ ベーグルリスト */
#menu {
  scroll-margin-top: 100px;
  /* ヘッダーの高さぶん */
}

/* 商品リストの横3列 */
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product {
  width: 33.3333%;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  transition: all 1s ease;
}

.product img {
  margin-bottom: 1rem;
  transition: all .2s ease;
  width: 200px;
  height: clamp(5.625rem, -0.721rem + 28.21vw, 12.5rem);
  max-width: 100%;
  object-fit: contain;
  /* filter: drop-shadow(1px 1px 10px var(--color-shadow)); */
}

.product img:hover {
  scale: 1.1;
  transform-origin: center;
  filter: drop-shadow(1px 1px 10px var(--color-shadow));
}

.product-title {
  letter-spacing: 0;
  font-size: clamp(0.688rem, 0.125rem + 2.4vw, 1.25rem);
  margin-bottom: 0;
  line-height: 1;
}

.sandwich-list {
  padding: 0 1rem;
  /* justify-content: space-around; */
}

.sandwich-list>.product {
  width: 50%;
}

.sandwich-list>.product img {
  width: 260px;
  height: clamp(5.625rem, -2.452rem + 35.9vw, 14.375rem);
  max-width: 100%;
  object-fit: contain;
}

/* モーダル */
.modal-overlay {
  display: none;
  /* 最初は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 3rem;
  padding: clamp(1.5rem, 0.384rem + 5.58vw, 3rem);
  max-width: 350px;
  width: 80%;
  border: 4px solid var(--color-main);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 48px;
  font-size: clamp(2.5rem, 2.128rem + 1.86vw, 3rem);
  color: var(--color-main);
  background: none;
  border: none;
  cursor: pointer;
}

.modal-img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.modal-title {
  color: var(--color-main);
  text-align: center;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 0.628rem + 1.86vw, 1.5rem);
}

.modal-desc {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: clamp(0.875rem, 0.76rem + 0.51vw, 1rem);
}

.modal-span {
  font-size: clamp(0.75rem, 0.657rem + 0.47vw, 0.875rem);
}

.modal-allergens {
  margin-bottom: 0rem;
  font-size: clamp(0.875rem, 0.76rem + 0.51vw, 1rem);
}

/* *********************************************** */
/* よくあるご質問 ページ 　　　　　　　　　　　　　　　*/
/* ********************************************* */

.faq_item_header {
  width: clamp(12.5rem, 9.849rem + 13.26vw, 16.063rem);
  height: clamp(4.375rem, 3.584rem + 3.95vw, 5.438rem);
  background-image: url(../images/icon/baloon03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  color: var(--color-white);
  position: relative;
  font-size: clamp(0.875rem, 0.689rem + 0.93vw, 1.125rem);
  margin-bottom: 1.5rem;
}

.faq_item_header::before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 30%;

}

.faq_item_head_01::before {
  background-image: url('../images/faq/faq01.svg');
  width: clamp(3.75rem, 1.424rem + 11.63vw, 6.875rem);
  /*60 109*/
  height: clamp(3.75rem, 0.959rem + 13.95vw, 7.5rem);
  margin-right: clamp(16.25rem, 10.669rem + 27.91vw, 23.75rem);
  /*260 380 */
}

.faq_item_head_02::before {
  background-image: url('../images/faq/faq02.svg');
  width: clamp(3.375rem, 2.561rem + 9.07vw, 6.813rem);
  /*60 109*/
  height: clamp(5rem, 2.674rem + 11.63vw, 8.125rem);
  /*80 130*/
  margin-right: clamp(15.625rem, 10.974rem + 23.26vw, 21.875rem);
  /*250 350 */
}

.faq_item_head_03::before {
  background-image: url('../images/faq/faq03.svg');
  width: clamp(3.375rem, 2.561rem + 9.07vw, 6.813rem);
  /*60 109*/
  height: clamp(5rem, 2.674rem + 11.63vw, 8.125rem);
  /*80 130*/
  margin-right: clamp(15.625rem, 10.974rem + 23.26vw, 21.875rem);
  /*250 350 */
}

.faq_item_head_04::before {
  background-image: url('../images/faq/faq04.svg');
  width: clamp(3.75rem, 1.424rem + 11.63vw, 6.875rem);
  /*60 109*/
  height: clamp(3.75rem, 0.959rem + 13.95vw, 7.5rem);
  margin-right: clamp(16.25rem, 10.669rem + 27.91vw, 23.75rem);
  /*260 380 */
}

.faq_item {
  margin-bottom: 1rem;
}

.faq_item_f {
  font-weight: 400;
  padding-bottom: 1rem;
  cursor: pointer;
  transition-duration: 0.2s;
  padding: 1rem .5rem;
}

.faq_item_f:hover {
  background: var(--color-yellow--pale);
}

.faq_item_f.open {
  background: var(--color-yellow--pale);
}

.faq_item_a {
  color: var(--color-main);
  font-weight: 400;
  font-size: 14px;
  display: none;
  padding: 1rem;
}

/* 下矢印 ▼ */
.faq_item_f.triangle_item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  line-height: 1.2;
}

.triangle_down {
  background: var(--color-main);
  min-height: calc(tan(60deg) * 20px / 2);
  min-width: 20px;
  clip-path: polygon(45% 100%, 0 0, 100% 0);
  display: inline-block;
  transition: all .2s ease;
}

/* 矢印回す */
.faq_item_f.open .triangle_down {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}



/* *********************************************** */
/* 特定商取引法に基づく表記ページ 　　　　　　　　　  */
/* ********************************************* */
.legal_information_area > dl > dt {
  width: fit-content;
  padding: 2px 3px;
  background-color: var(--color-main);
  color: var(--color-white);
  margin-bottom: .5rem;
}

.legal_information_area > dl > dd {
  color: var(--color-text-sub);
  margin-bottom: 1rem;
}

/* *********************************************** */
/* オーダーフォーム　　　　　　　　　　　　　　　　　  */
/* ********************************************* */
#orderFormArea {
  padding: 1rem clamp(0.5rem, -0.409rem + 4.55vw, 3rem);
  border: 3px solid var(--color-main);
  border-radius: 20px;
}

#orderFormArea p, #orderFormArea dt,
#orderFormArea dd {
  color: var(--color-text-sub);
}

/* ベーグルの数量・金額 */
.order_item h3 {
  color: var(--color-main);
  font-size: clamp(1.125rem, 0.727rem + 1.7vw, 2rem);
  font-weight: 800;
  margin-bottom: 0;
}

.order_item p {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  margin-bottom: 4px;
}

.order_item_figure {
  margin-bottom: 3rem;
}

.order_item_figure img {
  border-radius: 5px;
  box-shadow: 10px 10px 0 var(--color-main);
}

/* 注文の個数と金額欄 */
.order_item p input {
  width: 100%;
  height: clamp(3rem, 2.545rem + 2.27vw, 4.25rem);
}

/* 注文合計 */
#totalAmount {
  max-width: 400px;
}

#orderFormArea h4 {
  color: var(--color-main);
}

#orderFormArea dt {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

#orderFormArea dd {
  margin-bottom: 3rem;
}

#orderFormArea dd.addres {
  margin-bottom: .5rem;
  display: flex;
  flex-wrap: wrap;
}

#orderFormArea input,
#orderFormArea textarea {
  border: 2px solid var(--color-input--border);
  padding: 2px 8px;
  border-radius: 5px;
}

#orderFormArea label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}


#OtherDestinations {
  padding-top: 1rem;
  border-top: 1px solid var(--color-input--border);
}

/* 必須 */
span.must {
  color: var(--color-white);
  font-size: 70%;
  font-weight: 400;
  padding: .5rem;
  background: var(--color-main);
  border-radius: 3px;
  margin-left: 0.5rem;
}

/* 任意 */
span.any {
  color: var(--color-white);
  font-size: 70%;
  font-weight: 400;
  padding: .5rem;
  background: var(--color-text-sub);
  border-radius: 3px;
  margin-left: 0.5rem;
}

/* 郵便番号 input */
.zipcode {
  width: fit-content;
  max-width: 150px;
}

/* 住所検索ボタン ※プラグインでボタン無しでも住所自動入力ができるため退避*/
/* button.address_search {
  color: var(--color-white);
  font-weight: 400;
  padding: .5rem;
  background: var(--color-main);
  border-radius: 3px;
  margin-left: 0.5rem;
} */

/* 特定商取引法ページへのリンク */
.to-legal-information {
  border-radius: 5px;
  background: var(--color-main);
  padding: .5rem;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.wpcf7-number,
.wpcf7-text  {
  height: 36px;
  width: 100%
}

/* 別のお届け先の入力エリア */
#OtherDestinations {
  display:none;
}

/* 備考欄 */
#text-remarks {
  width: 100%;
}

/* 確認画面 */
/*確認画面と完了画面を非表示*/
#confirm_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output{
    display: none;
}

#orderFormArea #confirm_area dt {
  margin-bottom: .5rem;
}
#confirm_area dd {
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--color-input--border);
}


/* ボタン */
.button-wrap {
  display: flex;
  margin-bottom: 1rem;
}

.confirm_button {
  margin: 0 auto;
  width: 50%;
}

.confirm_button:not(:disabled) {
  background-color: var(--color-main);
  color: var(--color-white);
  border: 2px solid var(--color-main) !important;
}

.send_button {
  width: 50%;
  margin: 0 auto;
  background-color: var(--color-main);
  color: var(--color-white);
  border: 2px solid var(--color-main) !important;
}
