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

p {
  font-size: 16px;
  color: #595959;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", "Merriweather Sans", "Shippori Mincho";
}

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

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

#tips .container-wide, #mini-note .container-wide, #review .container-wide{
  padding: 70px 0;
}

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

/* 見出し */
h1, h2, h3, h4, h5, h6{
  margin: 0;
}

h1{
  font-size: 24px;
}

h2{
  font-size: 20px;
}

h3{
  font-size: 18px;
}

/* セクションの見出し装飾 */
.section-header-wrap{
  display: flex;
  justify-content: center;
}

.section-header{
  position: relative;
  margin: 0 50px 40px 50px;
  max-width: 400px;
}

.section-header-text{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  border: 1px solid #595959;
  z-index: 2;
}

.section-header h2{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow:
    -1px -1px 0 #e1b0aa,
     1px -1px 0 #e1b0aa,
    -1px  1px 0 #e1b0aa,
     1px  1px 0 #e1b0aa;
  padding: 3px 30px;
  border-bottom: 1px solid #595959;
}

.section-header p{
  font-family: 'Indie Flower', sans-serif;
  padding: 3px;
  letter-spacing: 0.1em;
}

.section-header-bg{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: #F6D685;
  z-index: 1;
}


/* メインビジュアルの共通レイアウト */
/* 背景画像 */
.mv-bg{
  background-image: url(img/wine_silhouette.png);
  background-size: contain;
}

/* 背景の線 */
.mv-bg-line{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
  height: 90%;
  border-style: solid;
  border-color: #E1B0AA;
}

#about-piyo-mv .container-wide,
#review-list-mv .container-wide{
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 90px 0;
}

/* ピヨの設定 */
.mv-piyo-img{
  max-width: 230px;
  margin: 0 10px 0 30px;
}

.mv-piyo-img img{
  width: 100%;
}

/* テキストの設定 */
.mv-text{
  display: flex;
  align-items: center;
  background-color: rgba(225, 176, 170, 0.8);
  border-radius: 90px 0 0 90px;
  width: 60%;
  height: 150px;
}

.mv-text-inner{
  position: relative;
  margin-left: 50px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.en-header{
  font-family: 'Indie Flower', sans-serif;
  font-size: 70px;
  color: #FFFFFF;
  opacity: 0.9;
  margin-bottom: 10px;
}

.ja-header{
  position: absolute;
  top: 90px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #966363;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #about-piyo-mv .container-wide,
  #review-list-mv .container-wide{
    flex-direction: column;
    position: relative;
    padding: 20px 0 130px 0;
  }

  /* テキストエリア（上へ） */
  .mv-text{
    order: 0;
    width: 100%;
    margin-left: 30px;
    justify-content: end;
  }

  .en-header{
    font-size: 50px;
  }

  .ja-header{
    top: 50px;
  }

  /* 画像（下へ） */
  .mv-piyo-img{
    position: absolute;
    bottom: 0;
    left: 0;
    order: 1;
    width: 160px;
  }
}


/*======= ヘッダー =======*/
/* SP用レイアウト非表示 */
#nav-sp,
#menu-sp {
  display: none;
}

/* ヘッダーの設定 */
header .container-wide{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F6D685;
  padding: 0 100px;
}

/* ロゴ */
#logo{
  max-width: 140px;
}

#logo img{
  width: 100%;
  display: block;
}

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

.nav-links a{
  text-decoration: none;
  font-weight: 500;
  color: #966363;
}

.nav-links a:hover{
  color: #E1B0AA;
}

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

  /* PC用ナビを非表示 */
  #nav-pc {
    display: none;
  }

  /* ハンバーガーメニュー */
  #menu-sp {
    display: block;
    background-color: transparent;
    border: none;
  }

   /* スマホ用画面の表示切替*/
   #nav-sp {
    display: flex;
    justify-content: center;
    background-color: #F6D685;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    display: none;
    z-index: 100;
  }

  /* ナビゲーションメニュー用ロゴ */
  .logo-sp-wrap {
    display: flex;
    height: 64px;
    align-items: center;
  }

  #logo-sp{
    margin-left: 16px;
    height: 100%;
  }

  #logo-sp img{
    height: 100%;
  }
  
  /* ×ボタン */
  #menu-sp-close {
    position: absolute;
    top: 20px;
    right: 10px;
    background-color: transparent;
    border: none;
  }

  /* ナビゲーションのレイアウト */
  .nav-wrap{
    margin: 0 32px 32px 32px;
  }

  .nav-wrap h3{
    margin-bottom: 16px;
  }

  .nav-wrap ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 0;
    margin: 0;
  }

  .nav-wrap li {
    list-style: none;
  }
}


/*======= メインビジュアル =======*/
#main-visual .container-wide{
  position: relative;
  display: flex;
  gap: 65px;
  justify-content: center;
  align-items: center;
  background-color: #FCF4E3;
}

/* メインビジュアルのコンテンツ */
.mv-contents{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 200px 20px 50px;
  margin: 60px auto;
  gap: 20px;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

/* テキストのレイアウト */
.mv-contents h1{
  color: #966363;
  letter-spacing: 0.02em;
  line-height: 50px;
}

.mv-contents p{
  line-height: 30px;
}

.mv-contents .sp-br{
  display: none;
}

/* 画像 */
.mv-img{
  position: absolute;
  right: 0;
  max-width: 180px;
  z-index: 1;
}

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

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #main-visual .container-wide{
    flex-direction: column;
    margin-bottom: 0;
  }

  /* 背景 */
  #main-visual .container-wide svg{
    left: -40px;
    padding-right: 5px;
    height: 180px;
  }

  /* メインビジュアルのコンテンツ */
  .mv-contents{
    padding: 20px 90px 20px 20px;
    margin-left: 5px;
    margin-right: 5px;
  }

  /* テキストのレイアウト */
  .mv-contents .sp-br{
    display: block;
  }

  /* 画像 */
  .mv-img{
    right: 10px;
    bottom: 0;
    max-width: 100px;
  }
}


/*======= 楽しみ方のコツセクション =======*/
#tips .container-wide{
  position: relative;
  overflow: hidden;
}

/* 背景 */
.tips-bg-1{
  position: absolute;
  top: -280px;
  right: -270px;
  z-index: 0;
  width: 100%;
}

.tips-bg-2{
  position: absolute;
  bottom: -291px;
  left: -258px;
  z-index: 1;
  width: 100%;
}

/* 見出し */
#tips .section-header{
  position: relative;
  z-index: 2;
}

/* カード */
.tips-contents-top{
  padding: 0 140px;
}

.tips-contents-bottom{
  justify-content: flex-end;
  padding: 0 140px;
}

.tips-cardgroup{
  position: relative;
  display: flex;
  gap: 200px;
  z-index: 2;
  margin-bottom: 45px;
}

.tips-card{
  display: flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  width: 230px;
}

.tips-card img{
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.tips-card-inner{
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
}

.tips-card-text{
  position: relative;
  width: 210px;
}

.tips-card-title{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FDFFF4;
  width: 160px;
  height: 80px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.tips-card-title h3{
  font-size: 16px;
  color: #966363;
}

.tips-more{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E1B0AA;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.tips-more span{
  color: #595959;
  font-size: 26px;
  font-weight: bold;
}

.tips-card:hover img,
.tips-card:hover .tips-card-title,
.tips-card:hover .tips-more {
  box-shadow: none;
  opacity: 0.75;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  .tips-cardgroup{
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
  }
  /* 背景 */
  .tips-bg-1{
    top: 50px;
    left: 0;
    width: 140%;
  }
  
  .tips-bg-2{
    bottom: 0;
    left: -158px;
    width: 140%;
  }

  /* カード */
  .tips-contents-top, .tips-contents-bottom{
    padding: 0;
  }
}


/*======= ピヨのミニ知識セクション =======*/
#mini-note .container-wide{
  position: relative;
  background-color: #FCF4E3;
}

.hukidashi-area{
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* エリア別レイアウト */
.hukidashi-left, .hukidashi-center, .hukidashi-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hukidashi-left{
  margin-top: 70px;
}

.hukidashi-right{
  margin-top: 80px;
}

/* ふきだしのレイアウト */
.hukidashi{
  display: inline-block;
  text-decoration: none;
  width: 250px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hukidashi h3{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 200px;
  background-image: url(img/hukidashi.png);
  background-repeat: no-repeat;
  background-size: 250px 200px;
  color: #595959;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.huki-1 {
  transform: translateX(0);
}

.huki-2 {
  transform: translateX(30px);
}

.huki-3 {
  transform: translateX(0);
}

.huki-4 {
  transform: translateX(20px);
}

.huki-5 {
  transform: translateX(-10px);
}

/* ホバー時の動き */
.hukidashi:hover{
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.75;
}

.huki-1:hover {
  transform: translateX(0) translateY(-10px);
}

.huki-2:hover {
  transform: translateX(30px) translateY(-10px);
}

.huki-3:hover {
  transform: translateX(0) translateY(-10px);
}

.huki-4:hover {
  transform: translateX(20px) translateY(-10px);
}

.huki-5:hover {
  transform: translateX(-10px) translateY(-10px);
}

/* 中央ピヨ画像 */
.hukidashi-center img{
  width: 150px;
}

/* クリック案内 */
.hukidashi-info{
  position: absolute;
  top: 170px;
  right: 120px;
}

.hukidashi-info p{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
}

.hukidashi-info br{
  display: none;
}

.hukidashi-info span{
  color: #e1b0aa;
}

/****** 画面幅調整 ******/
@media screen and (max-width: 990px) {
  .hukidashi-area{
    gap: 0;
  }

  .hukidashi-left, .hukidashi-center, .hukidashi-right{
    gap: 10px;
  }

  .huki-1 {
    transform: translateX(10px);
  }

  .huki-4 {
    transform: translateX(-10px);
  }

  .huki-5 {
    transform: translateX(-35px);
  }
 
  .huki-1:hover {
    transform: translateX(10px) translateY(-10px);
  }

  .huki-4:hover {
    transform: translateX(-10px) translateY(-10px);
  }

  .huki-5:hover {
    transform: translateX(-35px) translateY(-10px);
  }

  .hukidashi-info br{
    display: block;
  }
}

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

  .hukidashi-left, .hukidashi-center, .hukidashi-right {
    gap: 10px;
  }

  /* 吹き出しの並び順 */
  .hukidashi-left{
    order: 1;
    margin-top: 50px;
  }

  .hukidashi-right{
    order: 2;
    margin-top: 0;
  }

  .hukidashi-center{
    order: 3;
  }

  /* 吹き出しの位置調整 */
  .huki-1 {
    transform: translateX(-30px);
  }
  
  .huki-2 {
    transform: translateX(30px);
  }
  
  .huki-3 {
    transform: translateX(-30px);
  }
  
  .huki-4 {
    transform: translateX(-30px);
  }
  
  .huki-5 {
    transform: translateX(30px);
  }
  
  /* ホバー時の動き */
  .huki-1:hover {
    transform: translateX(-30px) translateY(-10px);
  }
  
  .huki-2:hover {
    transform: translateX(30px) translateY(-10px);
  }
  
  .huki-3:hover {
    transform: translateX(-30px) translateY(-10px);
  }
  
  .huki-4:hover {
    transform: translateX(-30px) translateY(-10px);
  }
  
  .huki-5:hover {
    transform: translateX(30px) translateY(-10px);
  }

  /* クリック案内 */
  .hukidashi-info{
    top: 170px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
}


/*======= ワインレビューセクション =======*/
/* SP用レイアウト非表示 */
.sp-revew-card-carousel{
  display: none;
}

/* レイアウト */
#review .container-wide{
  position: relative;
}

/* 背景 */
.review-section-bg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
  height: 90%;
  border: 2px solid #F6D685;
  z-index: 0; 
}

/* カードのレイアウト */
.pc-revew-card-wrap{
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/****** 画面幅調整 ******/
@media screen and (max-width: 990px) {
  .pc-revew-card-wrap{
    gap: 8px;
  }
}

.review-link{
  display: block;
  position: relative;
  text-decoration: none;
}

.review-link:hover{
  transform: translateY(-5px) scale(1.02);
  opacity: 0.75;
}

.review-card{
  width: 240px;
  height: 590px;
  border-style: solid;
  border-color: #e1b0aa;
  background-color: #FCF4E3;
}

.review-card-thumbnail{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.review-title{
  color: #966363;
  text-align: center;
  margin: 20px auto;
}

/* ピヨのひとこと */
.piyo-comment-wrap{
  margin: 0 8px;
}

.comment-hedder{
  color: #E1B0AA;
  text-align: center;
  margin-bottom: 10px;
}

/* ふきだし部分 */
.piyo-comment{
  position: relative;
}

.piyo-comment::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-image: url('img/piyo-laugh-circle.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.piyo-comment-text{
  position: relative;
  background-color: #FFFFFF;
  border-radius: 5px;
  font-size: 15px;
  padding: 10px 15px;

  margin-left: 70px;
}

.piyo-comment-text::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-70%, -50%);
  width: 30px;
  height: 30px;
  background-image: url('img/hukidashi-parts.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* レビューの星 */
.review-stars{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: 15px auto;
}

.rating-star{
  color: #e1b0aa;
}

/* レビュー一覧へボタン */
.review-more{  
  max-width: 400px;
  height: 50px;
  padding: 0 20px;
  margin: 40px auto;
}

.review-more a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background-color: #e1b0aa;
  border-radius: 10px;
  border-style: solid;
  border-color: #966363;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.review-more a:hover{
  transform: translateY(-5px) scale(1.02);
  opacity: 0.75;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* PC用レイアウト非表示 */
  .pc-revew-card-wrap{
    display: none;
  }
  
  /* カードのレイアウト */
  .sp-revew-card-carousel{
    display: flex;
  }
  
  .review-link{
    display: flex;
    justify-content: center;
  }
  
  /* Swiper */
  .swiper{
    padding-top: 15px!important;
    padding-bottom: 50px !important;
  }
  
  /* 矢印の設定 */
  .swiper-button-next, .swiper-button-prev{
    font-size: 30px;
    font-weight: bold;
  }
  
  /* 矢印の色 */
  :root {
    --swiper-navigation-color: #E1B0AA;
  }
    
  /* デフォルトの画像矢印は非表示にする */
  .swiper-button-next::after, .swiper-button-prev::after {
    display: none; 
  }
  
  /* ページネーションの色 */
  :root {
    --swiper-pagination-color: #E1B0AA;
  }  
}


/*======= フッター =======*/
footer .container-wide{
  background-color: #F6D685;
}

.footer-top{
  display: flex;
  justify-content: center;
  gap: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ロゴエリア */
.footer-logo{
  max-width: 170px;
}

.footer-logo img{
  width: 100%;
}

.sns-icon{
  display: flex;
  margin: 10px;
  gap: 10px;
}

/* フッターナビゲーション */
.footer-nav nav{
  display: flex;
  gap: 50px;
}

footer .nav-links{
  flex-direction: column;
  text-align: left;
}

/* コピーライト */
.copy-right{
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.copy-right p{
  color: #595959;
}

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

  .footer-nav nav{
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  footer .nav-links{
    text-align: center;
  }
}


/*==============
ピヨについてページ
==============*/
/*=== メインビジュアルのレイアウト ===*/
/* テキストの設定 */
#about-piyo-mv .mv-text h1{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow:
    -1px -1px 0 #966363,
     1px -1px 0 #966363,
    -1px  1px 0 #966363,
     1px  1px 0 #966363;
  margin: 0 30px 0 110px;
  line-height: 200%;
  letter-spacing: 0.08em;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #about-piyo-mv .mv-text h1{
    margin: 0 50px 0 40px;
  }
}



/*=== ピヨ・ノワールの紹介文セクション ===*/
#about-piyo .container-wide{
  background-color: #FCF4E3;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* 見出し */
.about-header h2{
  color: #966363;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.about-header h2 br{
  display: none;
}

.about-header h2 span{
  color: #F6D685;
  font-size: 28px;
}

.about-header svg{
  width: 100%;
  margin-bottom: 30px;
}

/* 紹介文本文エリア */
.about-contents{
  display: flex;
  justify-content: center;
  margin: 0 10px;
}

.piyo-profile{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  border-style: solid;
  border-color: rgba( 89, 89, 89, 0.4);
  padding: 40px;
}

.piyo-profile p{
  text-align: center;
}

/* ピヨの画像 */
.piyo-profile-img{
  display: flex;
  align-items: center;
  max-width: 300px;
  margin-left: 20px;
}

.piyo-profile-img img{
  width: 100%;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  #about-piyo .container{
    padding-bottom: 130px;
  }
  /* 見出し */
  .about-header h2 br{
    display: block;
  }
  /* 紹介文本文エリア */
  .about-contents{
    position: relative;
    flex-direction: column;
  }
  
  /* ピヨの画像 */
  .piyo-profile-img{
    position: absolute;
    bottom: 0;
    transform: translateY(80%);
    right: 0;
    width: 160px;
  }
}


/*==============
ワインレビュー一覧ページ
==============*/
/* レビューのレイアウト */
#review-list .container-wide{
  background-color: #FCF4E3;
  padding: 50px 100px;
}

/* レビュー一覧 */
.review-contents{
  display: flex;
  gap: 10px;
}

/* 絞り込み */
.filter-bar{
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #FFFFFF;
  max-width: 210px;
  padding: 20px;
  margin-bottom: auto;
}

.filter-title{
  font-size: 18px;
  font-weight: bold;
  color: #966363;
  margin-bottom: 10px;
}

/*== 検索窓 ==*/
.search-section{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-input{
  border-color: #E1B0AA;
  max-width: 260px;
  height: 30px;
}

/*== カテゴリ ==*/
.category-filter{
  display: flex;
  flex-direction: column;
}

/* チェックボックス非表示 */
.custom-checkbox input {
  display: none;
}

/* 外枠（チェック前） */
.custom-checkbox .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1.5px solid #E1B0AA;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}

/* チェックされたら色が変わる */
.custom-checkbox input:checked + .checkmark {
  background-color: #E1B0AA;
}

/* チェックマークの✔︎を擬似要素で表示 */
.custom-checkbox input:checked + .checkmark::after {
  content: "✔︎";
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*== 味わい ==*/
.taste-buttons{
  display: flex;
  flex-wrap: wrap; 
  gap: 5px;
}

.taste-btn{
  text-align: center;
  white-space: nowrap; 
  background-color: #ffffff;
  color: #595959;
  border: solid #E1B0AA;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.taste-btn:hover {
  opacity: 0.8;
}

/*== リセット ==*/
.reset-btn-wrap{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.reset-btn{
  text-align: center;
  background-color: #E1B0AA;
  color: #ffffff;
  border-color: #E1B0AA;
  border-radius: 5px;
  padding: 3px 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

/* レビューカードエリア */
.review-card-area{
  flex: 1;
  background-color: rgba( 255, 255, 255, 0.7);
  padding: 20px;
}

.review-card-area-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ページネーション */
.pagination{
  margin-top: 80px;
}

.pagination ul{
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.pagination li{
  color: #E1B0AA;
  text-align: center;
}

.pagination li a{
  display: block;
  text-decoration: none;
  color: #E1B0AA;
  width: 24px;
  height: 24px;
}


/* アクティブ時の装飾 */
.pagination li .current {
  background-color: #E1B0AA;
  color: #ffffff;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
}


/*====== 
レビュー記事本文ページ
======*/
#review-article .container-wide{
  background-color: #FCF4E3;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* 記事タイトル */
.article-title{
  position: relative;
  margin: 0 50px 80px 50px;
}

.article-title p{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: #966363;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
  width: 100%;
  border: 1px solid #595959;
  z-index: 2;
  padding: 30px 15px;
}

.article-text h1{
  display: flex;
  align-items: center;
  color: #966363;
  background-color: #F6D685;
  margin-top: 70px;
  margin-bottom: 25px;
  padding: 25px;
}

.article-title-bg{
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: #E1B0AA;
  z-index: 1;
}

.article-title-bgimg{
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 80px;
  z-index: 2;
}

.article-title-bgimg img{
  width: 100%;
}

/* 記事サムネイル */
.article-thumbnail{
  margin: 0 50px 50px 50px;
}

.article-thumbnail img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 3px solid #E1B0AA;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
}

/* 記事本文全体 */
.article-text{
  margin: 0 50px;
}

/* 記事見出し設定 */
.article-text h1{
  display: flex;
  align-items: center;
  color: #966363;
  background-color: #F6D685;
  margin-top: 70px;
  margin-bottom: 25px;
  padding: 25px;
}

.article-text h2{
  display: flex;
  align-items: center;
  color: #966363;
  background-color: #FFFFFF;
  border: 3px solid #F6D685;
  border-left: 20px solid #F6D685;
  margin-top: 60px;
  margin-bottom: 25px;
  padding: 20px 15px;
}

.article-text h3{
  display: flex;
  align-items: center;
  color: #966363;
  border-top: 2px solid #F6D685;
  border-bottom: 2px solid #F6D685;
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 15px 30px;
}

.article-text h4{
  display: flex;
  align-items: center;
  color: #966363;
  border-bottom: 2px solid #F6D685;
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 15px 30px;
}

/* 本文 */
.article-text > p{
  line-height: 2.7em;
  padding: 0 20px;
  margin: 30px auto;
}

/* 挿入画像 */
.article-text img{
  max-width: 540px;
  width: 100%;
  border: 1px solid #E1B0AA;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  margin: 10px;
}

/* ピヨのひとこと */
#review-article .piyo-comment{
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

#review-article .piyo-comment::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url('img/piyo-laugh-circle.png');
  background-size: contain;
  background-repeat: no-repeat;
}

#review-article .piyo-comment-text{
  position: relative;
  background-color: #FFFFFF;
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  margin-left: 80px;
}

#review-article .piyo-comment-text::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-70%, -50%);
  width: 40px;
  height: 40px;
  background-image: url('img/hukidashi-parts.png');
  background-size: contain;
  background-repeat: no-repeat;
}


/* ピヨメモ */
.piyo-memo{
  position: relative;
  padding-top: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.memo-header{
  position: absolute;
  top: 10px;
  left: 40px;
  background-color: #AFD1A1;
  border-radius: 3px;
  font-family: 'Indie Flower', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 8px 30px;
}

.memo-header::before{
  content: "";
  display: block;
  position: absolute;
  left: -35px;
  top: 0px;
  width: 50px;
  height: 50px;
  background-image: url('img/piyo_memo.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.piyo-memo-content{
  background-color: #FFFFFF;
  border: 1px solid #AFD1A1;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 25px;
}

/* ピヨの疑問 */
.piyo-question{
  position: relative;
  padding-top: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.question-header{
  position: absolute;
  top: 10px;
  left: 40px;
  background-color: #AACDE1;
  border-radius: 3px;
  font-family: 'Indie Flower', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding: 8px 30px;
}

.question-header::before{
  content: "";
  display: block;
  position: absolute;
  left: -35px;
  top: 0px;
  width: 50px;
  height: 50px;
  background-image: url('img/piyo_hatena.PNG');
  background-size: contain;
  background-repeat: no-repeat;
}

.piyo-question-content{
  background-color: #FFFFFF;
  border: 1px solid #AACDE1;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 25px;
}

/****** スマートフォン用のスタイル ******/
@media screen and (max-width: 767px) {
  /* 記事タイトル */
  .article-title{
    margin: 0 14px 50px 4px;
  }

  .article-title p{
    padding: 0 7px;
  }

  .article-title-bg{
    top: 8px;
    left: 8px;
  }

  .article-title-bgimg{
    width: 60px;
  }

  /* 記事本文全体 */
  .article-text{
    margin: 0 5px;
  }

  /* 挿入画像 */
  .article-text img{
    margin: 3px;
  }
}