/*===== PC、スマホ共通スタイル =====*/
*, *::before, *::after {
  box-sizing: border-box;
}

p {
  font-size: 20px;
  color: #916774;
  letter-spacing: 0.03em;
  margin: 0;
}

/*=== フォント設定 ===*/
body {
  font-family: "Noto Sans JP", sans-serif;
}

/*=== 全体設定 ===*/
body .container {
  padding-left: 0;
  padding-right: 0;
}

.container{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

img{
  max-width: 100%;
  height: auto;
}

/*=== 背景パターン ===*/
.bg-gray{
  background-color: #F4F1F1;
}

.bg-pattern{
  background-image: url("../../image/background.png");
  background-repeat: repeat;
  background-size: 300px auto;
  background-position: top left;
  
}

.bg-beige{
  background-color: #F8F2E8;
}

/*=== 見出し ===*/
/* =====================
  Lightning 見出しリセット
===================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

/* 疑似要素の装飾を殺す */
h1::before,
h1::after,
h2::before,
h2::after,
h3::before,
h3::after {
  content: none;
}

.entry-title,
.widget-title,
.section-title {
  border: none;
  padding: 0;
  margin: 0;
}

h1{
  font-size: 42px;
  letter-spacing: 0.05em;
  color: #916774;
}

h2{
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #916774;
}

h3{
  font-size: 24px;
  letter-spacing: 0.03em;
  color: #916774;
}

h4{
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #916774;
}

/*=== セクションのヘッダー ===*/
.section-header-type1,
.section-header-type2{
  margin-bottom: 50px;
}

.section-header-type1 h2,
.section-header-type2 h2{
  font-size: 58px;
  text-align: center;
  border-top: none;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.section-header-type1 span,
.section-header-type2 span{
  display: block;
  font-size: 20px;
  text-align: center;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* セクションのヘッダー */
  .section-header-type1 h2,
  .section-header-type2 h2{
    font-size: 46px;
  }
  
  .section-header-type1 span,
  .section-header-type2 span{
    font-size: 18px;
  }
}

/* カラー設定 */
.section-header-type1 h2,
.section-header-type1 span{
  color: #B28D99;
}

.section-header-type2 h2,
.section-header-type2 span{
  color: #BE9066;
}

/*=== ボタンのデザイン ===*/
/* プライマリ */
a.btn-primary,
button.btn-primary,
.wpforms-form button.btn-primary{
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #BA0809!important;
  width: 300px;
  height: 60px;
  border-radius: 30px!important;

  color: #FFFFFF;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
}

a.btn-primary:hover,
button.btn-primary:hover{
  background-color: #FF100D!important;
}

/* セカンダリ */
a.btn-secondary,
button.btn-secondary{
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #fff!important;
  width: 300px;
  height: 60px;
  border: 1px solid #B28D99!important;
  border-radius: 30px!important;

  color: #B28D99!important;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
}

a.btn-secondary:hover,
button.btn-secondary:hover{
  background-color: #F6ECEF!important;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  a.btn-primary,
  button.btn-primary,
  a.btn-secondary,
  button.btn-secondary{
    width: 280px;
    height: 55px;
    border-radius: 30px;
    font-size: 16px;
  }
}

/*=== バッジ ===*/
.badge{
  display: flex;
  height: 40px;
}

.badge--seasonal,
.badge--standard,
.badge--newproduct,
.badge--info{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
}

/* 季節限定 */
.badge--seasonal{
  background-color: #F0D489;
  border: #F0D489 solid 1px;
}

/* 定番 */
.badge--standard{
  background-color: #B28D99;
  border: #B28D99 solid 1px;
}

/* 新商品 */
.badge--newproduct{
  background-color: #F0D489;
  border: #F0D489 solid 1px;
}

/* お知らせ */
.badge--info{
  background-color: #B28D99;
  border: #B28D99 solid 1px;
}

/*=== ページネーション ===*/
/* SP用現在ページ非表示 */
.pagination__item--sp,
.pagination__current{
  display: none;
}

/* ページネーションレイアアウト */
.pagination.is-list,
.pagination.is-detail{
  margin: 150px auto 0 auto;
}

.pagination.is-detail{
  max-width: 600px;
}

.pagination.is-list .pagination__list{
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 15px;
}

.pagination.is-detail .pagination__list{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ページ番号部分 */
.pagination__numbers{
  list-style: none;
}

.pagination__numbers_inner{
  display: flex;
  justify-content: center;
}

/* 各要素のレイアウト */
.pagination__item{
  list-style: none;
  font-size: 24px;
  font-weight: bold;
  width: 70px;
  height: 70px;
}

.pagination__item.pagination__allpost,
.pagination__item.pagination__prevarticle,
.pagination__item.pagination__nextarticle{
  height: 130px;
}

.pagination__allpost,
.pagination__prevarticle,
.pagination__nextarticle{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-numbers,
.pagination__item--sp a{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F0D489;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers.next,
.page-numbers.prev,
.pagination__item--sp a{
  color: #FFFFFF;
  background-color: #F0D489;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.page-numbers.dots{
  color: #916774;
}

/* hover時の動き */
a.page-numbers:hover{
  color: #B28D99;
}

/* 記事詳細のページネーション */
.pagination__allpost a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0D489;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.pagination__prevarticle a,
.pagination__nextarticle a{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background-color: #B28D99;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

/* ページネーション文字部分 */
.pagination__allpost span,
.pagination__prevarticle span,
.pagination__nextarticle span{
  font-size: 20px;
}

.pagination__allpost span{
  color: #F0D489;
}

.pagination__prevarticle span,
.pagination__nextarticle span{
  color: #B28D99;
}

.pagination__allpost img{
  width: 50%;
  height: 50%;
}

/* hover時の動き */
.pagination__allpost a:hover,
.pagination__prevarticle a:hover,
.pagination__nextarticle a:hover{
  opacity: 0.8;
}

.pagination__prevarticle a:hover,
.pagination__nextarticle a:hover{
  color: #ffffff;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* PC用ページ番号非表示 */
  .pagination__item--pc{
    display: none;
  }

  /* SP用現在ページレイアウト */
  .pagination__item--sp,
  .pagination__current{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #916774;
  }

  .pagination__current span{
    font-size: 20px;
  }

  /* ページネーションレイアウト */
  .pagination.is-list,
  .pagination.is-detail{
    margin-top: 100px;
  }
  
  .pagination.is-list .pagination__list{
    gap: 60px;
  }
  
  .pagination.is-detail .pagination__list{
    gap: 50px;
  }
  
  /* 各要素のレイアウト */
  .pagination__item{
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  /* ページネーション文字 */
  .pagination__allpost span,
  .pagination__prevarticle span,
  .pagination__nextarticle span{
    font-size: 18px;
  }
}

/*======= ヘッダー =======*/
header{
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container{
  position: relative;
}

/* SP用ロゴ非表示 */
.sp-logo {
  display: none;
}

/* ハンバーガーボタン */
#menu{
  position: absolute;
  top: 10px;
  right: 10px;

  display: block;
  width: 80px;
  
  background-color: transparent;
  border: none;
  z-index: 50;
}

#menu img{
  width: 100%;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* PC用ロゴを非表示 */
  .pc-logo {
    display: none;
  }

  /* SP用ロゴ表示 */
  .sp-logo{
    display: block;
  }
  
  /* ハンバーガーボタン */
  #menu{
    width: 60px;
  }
}

/*===== ナビゲーションの設定 =====*/
#nav{
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  max-width: 1140px;
  width: 100%;
  z-index: 100;
  padding: 20px 0 40px 0;
}

#nav.is-open{
  display: block;
}

/* SNSリンク */
#nav .sns-link{
  position: absolute;
  top: 20px;
  left: 20px;
}

.sns-link{
  display: flex;
  gap: 20px;
}

.sns-link a{
  display: block;
  width: 90px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.sns-link a:hover{
  transform: translateY(-5px);
}

.sns-link img{
  width: 100%;
}

/* ×ボタン */
#menu-close{
  display: block;
  width: 90px;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
}

#menu-close img{
  width: 100%;
}

/* ロゴ部分設定 */
#nav-home{
  display: flex;
  width: 35%;
  margin: 30px auto 20px auto;
}

#nav-home img{
  width: 100%;
}

/* ナビゲーション */
.nav-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  text-align: center;
  padding: 0;
}

.nav-links .section-header-type1,
.nav-links .section-header-type2{
  margin-bottom: 0px;
}

.nav-links li{
  display: inline-block;
}

.nav-links a{
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.nav-links a:hover{
  opacity: 0.7;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* SNSリンク */
  .sns-link{
    gap: 10px;
  }
  
  .sns-link a{
    width: 65px;
  }
  
  /* ×ボタン */
  #menu-close{
    width: 70px;
  }

  /* ロゴ部分設定 */
  #nav-home{
    margin-top: 70px;
  }
}

/*=======
トップページ
=======*/
/*======= トップページメインビジュアル =======*/
#home-visual .container{
  position: relative;
  height: 750px;
  overflow: hidden;
}

.home-visual__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SP用ロゴ非表示 */
.sp-ribonlogo{
  display: none;
}

/* ロゴ表示設定 */
#home{
  display: flex;
  max-width: 900px;
  padding: 0 130px;
}

.pc-ribonlogo{
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #home-visual .container{
    height: 400px;
  }

  /* PC用ロゴを非表示 */
  .pc-ribonlogo{
    display: none;
  }

  /* SP用ロゴ表示 */
  .sp-ribonlogo{
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
  }
}

/*======= トップページNEWSセクション =======*/
#news .container{
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* NEWSセクションタイトル */
.news-section-header{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;

  background-color: #B28D99;

  width: 90px;
  height: 50px;
}

.news-section-header h3{
  color: #FFFFFF;
  font-size: 20px;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-section-header h3::after{
  content: none;
}

/* 最新のお知らせ３件 */
.topics{
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style: none;
  padding-left: 0;
  margin: 80px auto 40px 70px;
}

.topics li{
  position: relative;
  padding-left: 55px;
  width: fit-content;
}

.topics a{
  text-decoration: none;
  color: #916774;
  font-size: 20px;
}

.text-news-date{
  margin-right: 8px;
  font-size: 0.9em;
}

.topics li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-image: url(../../image/list_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* hover時の動き */
.topics li::after{
  content: "";
  position: absolute;
  left: 55px;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #916774;
  transition: width 0.3s ease;
}

.topics li:hover::after{
  width: calc(100% - 55px);
}

.topics a:hover{
  color: #916774;
}

/* NEWS LISTへボタン */
/* SP用非表示 */
.newslist-btn-sp{
  display: none;
}

/* PC用ボタンレイアウト */
.newslist-btn-pc{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 15px;
  
  background-color: #B28D99;

  width: 120px;
  height: auto;
  align-self: stretch; 

  transition: transform 0.3s ease;
}

.newslist-btn-pc p{
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
}

.newslist-btn-pc img{
  width: 23px;
  transition: transform 0.3s ease;
}

/* hover時の動き */
.newslist-btn-pc:hover{
  opacity: 0.8;
}

.newslist-btn-pc:hover img{
  transform: translateX(6px);
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #news .container{
    flex-direction: column;
    justify-content: flex-start;
  }

  /* 最新のお知らせ３件 */
  .topics{
    margin-left: 10px;
  }

  /* NEWS LISTへボタン */
  /* PC用非表示 */
  .newslist-btn-pc{
    display: none;
  }
  
  /* SP用ボタンレイアウト */
  .newslist-btn-sp{
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: center;
    text-decoration: none;
    gap: 15px;
  
    height: auto;
    align-self: stretch; 

    margin: 0 20px 40px 0;
  }

  .newslist-btn-sp p{
    color: #B28D99;
    font-size: 24px;
    font-weight: bold;
  }
  
  .newslist-arrow{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 53px;
    height: 53px;
    
    background-color: #B28D99;
    border: #B28D99 solid 1px;
    border-radius: 50%;
  }
}

/*======= トップページCONCEPTセクション =======*/
#concept .container{
  padding: 60px 20px;
}

.concept-inner{
  display: flex;
  gap: 50px;
}

/* CONCEPTのイメージ画像 */
.concept-img{
  max-width: 500px;
}

.concept-img img{
  width: 100%;
}

/* CONCEPTのテキスト */
.concept-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 450px;
  gap: 70px;
}

.concept-text h2{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  border-top: none;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.concept-text p{
  line-height: 50px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  .concept-inner{
    flex-direction: column;
    align-items: center;
  }

  /* CONCEPTのテキスト */
  .concept-text{
    min-width: 0;
  }
}

/*======= トップページBREADセクション =======*/
#bread .container{
  padding: 40px 0 100px 0;
}

/* カルーセル部分 */
.bread-carousel-wrap{
  position: relative;
  margin: 0 auto 50px auto;
}

.bread-carousel {
  position: relative;
}

/* 矢印 */
.carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.carousel-arrow.prev{
  left: 50%;
  margin-left: -250px;
  background-image: url("../../image/carousel_arrow_left.png");
}

.carousel-arrow.next{
  left: 50%;
  margin-left: 190px;
  background-image: url("../../image/carousel_arrow_right.png");
}

/* slick設定 */
.slick-track {
  display: flex;
  align-items: center;
}

.slick-slide{
  opacity: 0.8;
  transform: scale(0.9);
  transition: 0.3s;
}

.slick-list{
  overflow: visible;
}

.slick-center{
  opacity: 1;
  transform: scale(1);
}

/* BREAD商品カード */
.product-card{
  position: relative;
  display: block;
  text-decoration: none;
  width: 340px;
  min-height: 450px;
  margin: 0 auto;
}

.product-card:hover{
  transform: translateY(-4px);
}

/* バッジの配置 */
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

/* 商品写真 */
.product-card__image{
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 商品説明 */
.product-card__body{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 20px;
}

.text-product-name{
  font-family: "Zen Maru Gothic", sans-serif;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.text-product-name::after{
  content: none;
}

.text-product-price{
  color: #B28D99;
}

.product-card__name{
  text-align: center;
}

.product-card__price{
  text-align: center;
  font-size: 24px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* 矢印 */
.carousel-arrow{
  width: 40px;
  height: 40px;
}

.carousel-arrow.prev{
  left: 50%;
  margin-left: -190px;
}

.carousel-arrow.next{
  left: 50%;
  margin-left: 150px;
}
}

/*======= トップページSHOPセクション =======*/
#shop .container{
  padding: 60px;
}

.shop-info{
  display: flex;
  justify-content: center;
  gap: 80px;
}

/* マップのレイアウト */
.shop-map{
  border: #BE9066 solid 1px;
  width: 400px;
  height: 300px;
  position: relative;
}

.shop-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 店舗情報説明文 */
.info-description{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-content{
  display: flex;
  gap: 30px;
}

.info-icon{
  width: 30px;
  height: 30px;
}

.info-icon img{
  width: 100%;
  height: 100%;
}

.info-content p{
  color: #BE9066;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #shop .container{
    padding-right: 10px;
    padding-left: 10px;
  }

  .shop-info{
    flex-direction: column;
    align-items: center;
  }

  /* マップのレイアウト */
  .shop-map{
    width: 320px;
  }
}

/*======= トップページCONTACTセクション =======*/
#contact .container{
  padding: 60px;
}

/* 注意書き */
.contact-text{
  text-align: center;
}

.contact-text p{
  color: #BE9066;
  line-height: 40px;
}

/* CONTACTボタン */
.contact-btns{
  display: flex;
  flex-direction: column;
  gap: 33px;
  width: 400px;
  margin: 50px auto 0 auto;
}

.contact-btn{
  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  
  background-color: #F0D489;
  border: #F0D489 solid 1px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  
  width: 100%;
  height: 80px;
}

.contact-btn:hover{
  color: #FFFFFF;
  box-shadow: none;
  opacity: 0.8;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #contact .container{
    padding-right: 20px;
    padding-left: 20px;
  }

  /* CONTACTボタン */
  .contact-btns{
    width: 310px;
  }
}

/*======= フッター =======*/
footer .container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 110px;
  padding: 150px 0 80px 0;
}

/* コピーライト */
.copyright p{
  font-size: 16px;
  color: #BE9066;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  footer .container{
    padding-top: 40px;
    padding-bottom: 130px;
    gap: 80px;
  }
}

/* トップへ戻るボタン */
.top-btn{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #BE9066;
  background-color: #F0D489;
  border-radius: 50%;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;

  width: 100px;
  height: 100px;
}

/* 表示状態 */
.top-btn.is-show{
  opacity: 0.8;
  pointer-events: auto;
  transform: translateY(0);
}

.top-btn:hover{
  color: #BE9066;
  opacity: 1;
}

.top-btn img{
  width: 20px;
}

/* デフォルトのトップボタン非表示 */
#page_top.page_top_btn{
  display: none;
}

/*=======
下層ページ共通設定
=======*/
/*======= メインビジュアル =======*/
#page-visual .container{
  position: relative;
  height: 400px;
  overflow: hidden;
}

/* メイン画像 */
.page-visual__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* オーバーレイ */
.page-visual__overlay{
  position: absolute;
  inset: 0;
  background-color: rgba(145, 103, 116, 0.4);
  z-index: 1;
}

/* ロゴ表示設定 */
#page-visual .pc-logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  z-index: 2;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* SP用ロゴ表示 */
  #page-visual .sp-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    z-index: 2;
  }
}

/*======= 記事詳細 =======*/
/* デフォルトSNSリンク非表示 */
.veu_socialSet{
  display: none;
}

/*=======
BREAD一覧ページ
=======*/
#page-bread .container{
  padding: 60px 0 120px 0;
}

.bread-lists{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 20px;
}

.bread-list{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* パンの種類タイトル（季節限定商品・定番商品） */
.breadlist-title{
  color: #BA0809;
  border: none;
  margin-bottom: 0;
  margin-left: 20px;
}

.bread-list-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* BREAD一覧ページ商品カードのレイアウト */
#page-bread .product-card{
  width: 280px;
  min-height: 400px;
}

/* 商品写真 */
#page-bread .product-card__image{
  width: 100%;
  height: 280px;
  overflow: hidden;
}

/* 商品名 */
#page-bread .product-card__name{
  font-size: 20px;
}

/* 価格 */
#page-bread .product-card__price{
  font-size: 18px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  .bread-lists{
    margin: 0;
  }

  /* パンの種類タイトル（季節限定商品・定番商品） */
  .breadlist-title{
    font-size: 26px;
  }

  .bread-list-inner{
    gap: 5px;
  }

  #page-bread .product-card{
    width: 180px;
    min-height: 230px;
  }
  
  /* バッジ */
  #page-bread .badge{
    top: 3px;
    left: 3px;
    height: 30px;
  }
  
  #page-bread .badge--seasonal,
  #page-bread .badge--standard{
    font-size: 12px;
    border-radius: 5px;
    padding: 5px;
  }

  /* 商品写真 */
  #page-bread .product-card__image{
    width: 100%;
    height: 140px;
  }

  /* 商品説明 */
  #page-bread .product-card__body{
    margin-top: 10px;
  }

  /* 商品名 */
  #page-bread .product-card__name{
    font-size: 18px;
  }
  
  /* 価格 */
  #page-bread .product-card__price{
    font-size: 16px;
  }
}

/*=======
BREAD詳細ページ
=======*/
#bread-detail .container{
  display: flex;
  gap: 50px;
  padding: 120px 40px;
}

/* 商品の写真 */
.bread-detail__image{
  max-width: 550px;
  max-height: 470px;
  overflow: hidden;
}

.bread-detail__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* パン説明部分 */
.bread-detail__body{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* バッジ */
.badge--inline{
  position: static;
}

.bread-detail__header{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 商品名 */
.bread-detail__name{
  font-size: 32px;
}

/* 価格 */
.bread-detail__price{
  font-size: 24px;
  font-weight: bold;
}

/* パンの説明 */
.bread-detail__description{
  line-height: 40px;
}

/* アレルギー表示 */
.bread-detail__allergen{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bread-detail__allergen h4{
  font-size: 20px;
  margin-bottom: 0;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #bread-detail .container{
    flex-direction: column;
    gap: 20px;
    padding: 40px 10px;
  }

  /* パン説明部分 */
  .bread-detail__body{
    gap: 15px;
  }

  .bread-detail__header{
    gap: 5px;
  }
  
  /* アレルギー表示 */
  .bread-detail__allergen{
    gap: 5px;
  }
}

/*=======
NEWS一覧ページ
=======*/
#page-news .container{
  padding: 80px 40px;
}

.news-list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* NEWSカード */
.news-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  width: 330px;
  min-height: 540px;
  margin: 0 auto;
}

.news-card__thumbnail img {
  transition: transform 0.3s ease;
}

/* hover時のレイアウト */
.news-card:hover .news-card__thumbnail img {
  transform: scale(1.05);
}

/* サムネイル */
.news-thumbnail{
  overflow: hidden;
}

.news-card__thumbnail{
  width: 100%;
  height: 330px;
}

.news-thumbnail img{
  object-fit: cover;
}

.news-card__thumbnail img{
  width: 100%;
  height: 100%;
}

/* メタ情報 */
.news-card__meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 投稿日 */
.text-news-date{
  color: #916774;
}

.news-card__date{
  font-size: 20px;
}

/* 記事タイトル */
.text-news-title{
  color: #916774;
}

.news-card__title{
  font-size: 20px;
  font-weight: normal;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #page-news .container{
    padding: 50px 10px;
  }

  .news-list{
    gap: 5px;
  }

  /* NEWSカード */
  .news-card{
    gap: 8px;
    width: 170px;
    min-height: 320px;
  }

  /* サムネイル */
  .news-card__thumbnail{
    height: 150px;
  }

  /* メタ情報 */
  .news-card__meta{
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }

  /* バッジ */
  #page-news .badge{
    top: 3px;
    left: 3px;
    height: 30px;
  }
  
  #page-bread .badge--newproduct,
  #page-bread .badge--info{
    font-size: 12px;
    border-radius: 5px;
    padding: 5px;
  }

  /* 投稿日 */
  .news-card__date{
    font-size: 16px;
    font-weight: normal;
  }
  
  /* 記事タイトル */
  .news-card__heading{
    font-size: 20px;
  }
}

/*=======
NEWS詳細ページ
=======*/
#news-detail .container{
  padding: 120px 40px;
}

/* 記事タイトル */
.news-detail__title{
  font-size: 32px;
  margin: 10px 0 40px 0;
}

/* サムネイル */
.news-detail__thumbnail{
  width: 700px;
  height: 500px;
}

.news-card__thumbnail img{
  width: 100%;
  height: 100%;
}

/* 仕切り線 */
.news-detail__line{
  border-top: #B28D99 solid 2px;
  opacity: 0.15;
  margin: 80px 0 40px 0;
}

/* 投稿日 */
.news-detail__date{
  font-size: 20px;
}

/* 記事本文 */
.news-detail__text{
  font-size: 20px;
  line-height: 70px;
  letter-spacing: 5%;
  color: #916774;
  margin-top: 40px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #news-detail .container{
    padding: 40px 10px;
  }

  /* 記事タイトル */
  .news-detail__title{
    font-size: 24px;
    margin: 10px 0 40px 0;
  }

  /* サムネイル */
  .news-detail__thumbnail{
    width: 100%;
    height: 250px;
  }

  /* 仕切り線 */
  .news-detail__line{
    margin: 40px 0 20px 0;
  }

  /* 投稿日 */
  .news-detail__date{
    font-size: 18px;
  }
  
  /* 記事本文 */
  .news-detail__text{
    font-size: 18px;
    line-height: 40px;
  }
}

/*=======
CONTACTページ
=======*/
#page-contact .container{
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 説明文 */
.contact__lead p,
.contact__lead a{
  color: #BE9066;
  font-size: 20px;
  line-height: 40px;
}

/* 入力フォーム */
.contact__form{
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100% !important;
  max-width: 800px;
}

/* 各項目のレイアウト */
.contact__item{
  display: flex;
  flex-direction: column;
}

.contact__item label.wpforms-field-label{
  color: #916774 !important;
}

.contact__item input,
.contact__item select,
.contact__item textarea{
  width: 100%;
  border-color: rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.contact__item input,
.contact__item select{
  height: 60px;
}

.contact__item textarea{
  height: 150px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #page-contact .container{
    padding: 40px 20px;
  }

  /* 説明文 */
  .contact__lead p,
  .contact__lead a{
    font-size: 18px;
  }
}

/*=======
CONTACT内容確認ページ
=======*/
#page-contact-confirm .container{
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-confirm{
  max-width: 800px;
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}

.contact-confirm__item{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-confirm__item .label{
  font-size: 18px;
  color: #916774;
}

.contact-confirm__item .value{
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.8;
  width: 100%;
}

.contact-confirm__btns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px){
  .contact-confirm__btns{
    flex-direction: column;
  }
}

/*=======
THANKSページ
=======*/
#page-thanks .container{
  padding: 120px 40px;
  text-align: center;
}

.thanks__message{
  margin-top: 40px;
  color: #916774;
  font-size: 20px;
  line-height: 1.8;
}

.thanks__note{
  margin-top: 20px;
  font-size: 16px;
  color: #BE9066;
}

.thanks__btn{
  margin-top: 60px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px){
  #page-thanks .container{
    padding: 40px 20px;
  }

  .thanks__message{
    font-size: 18px;
  }

  .thanks__note{
    font-size: 14px;
  }
}

/*=======
プライバシーポリシーページ
=======*/
#page-privacy .container{
  padding: 120px 40px;
}

.privacy{
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy__item h3{
  font-size: 22px;
  color: #916774;
  margin-bottom: 10px;
}

.privacy__item p{
  font-size: 16px;
  line-height: 2;
  color: #BE9066;
}

/* =======
ERRORページ共通
======= */
#page-error .container{
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error{
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.error__code{
  font-size: 96px;
  font-weight: bold;
  color: #B28D99;
}

.error__title{
  font-size: 28px;
  color: #916774;
}

.error__text{
  font-size: 18px;
  line-height: 1.8;
  color: #BE9066;
}

.error__actions{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}