@charset "utf-8";

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #333;
  font-family: 'Noto Sans JP',sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #fff;
  margin: auto;
  display: grid;
  width: 100%;
  font-size: 18px;
}
a{
  text-decoration: none;
}
header{
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 600px){
  header{
    height: 100svh;
  }
}
.pc{
  display: block;
}
.sp{
  display: none;
}
@media screen and (max-width: 600px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
/* ------------------------ ヘッダー ------------------------ */
header {
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background-image: url(../img/background.webp);
  z-index: 9999;
}
@media only screen and (max-width: 768px){
  header {
    height: 55px;
  }
}
.cash_h{
  display: none;
}
@media only screen and (max-width: 1099px){
  .cash_h{
    display: block;
  }
}
header a {
  text-decoration: none;
  color: #333;
}
.logo img {
  width: 250px;
  padding-top: 10px;
}
@media only screen and (max-width: 768px){
  .logo img {
    width: 180px;
    padding-top: 10px;
  }
  .logo {
    order: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 1;
  }
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
  height: 80px;
}
@media only screen and (max-width: 768px){
  .header-inner {
    height: 55px;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
}
.menu-wrapper{
  display: flex;
}
@media only screen and (max-width: 768px){
  .menu-wrapper {
    order: 1; /* ハンバーガーを左に */
  }
}
.menu-lists ul{
  display: flex;
  align-items: center;
}
.menu-lists ul li{
  padding: 10px;
  font-size: 16px;
  letter-spacing: 2px;
  white-space: nowrap;
  margin-right: 20px;
}
@media only screen and (max-width: 768px){
  .menu-lists ul li{
    margin-right: 0;
    padding: 10px 0;
  }
}
.menu-lists li a{
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;
  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #B82132 50%, #333 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;
  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
.menu-lists li a:hover{
  background-position: 0 100%;
}
@media (max-width:1099px){
  .btn{
      width: 100%;
      display: block;
      width: 39px;
      height: 39px;
      position: absolute;
      z-index: 999;/*追記：いつも一番上*/
      top: 0;
      bottom: 0;
      left: 4%;
      margin: auto 0;
      border-radius: 10px;
      z-index: 9999;
  }
  .bar{
      width: 20px;
      height: 2px;
      display: block;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      background-color: #333;
      border-radius: 10px;
      z-index: 9999;
  }
  .bar-top{
    top: 11px;
  }
  .bar-middle{
      top: 50%;
      transform: translate(-50%,-50%);
  }
  .bar-bottom{
    bottom: 11px;
  }
  .btn.close .bar-top{
      transform: translate(-50%,10px) rotate(45deg);
      transition: transform .3s;
  }
  .btn.close .bar-middle{
      opacity: 0;
      transition: opacity .3s;
  }
  .btn.close .bar-bottom{
      transform: translate(-50%,-5px) rotate(-45deg);
      transition: transform .3s;
  }
  .menu-lists {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fdf2d4;
    color: #333;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ここをflex-startにして上寄せ */
    padding-top: 100px; /* ロゴやボタン分の余白 */
    align-items: center;
    text-align: center;
    z-index: 9998;
  }
  .menu-lists.open {
    animation: slideDown 0.4s ease forwards;
    pointer-events: auto;
  }
  .menu-lists.closing {
    animation: slideUp 0.4s ease forwards;
    pointer-events: none;
  }
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slideUp {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-100%);
      opacity: 0;
    }
  }
  .menu-lists ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .menu-lists ul li {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
    animation-name: fadeUp;
    animation-duration: 0.4s;
  }
  /* 各メニュー項目にアニメ遅延を付けて順に表示 */
  .menu-lists.open ul li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .menu-lists.open ul li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .menu-lists.open ul li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .menu-lists.open ul li:nth-child(4) {
    animation-delay: 0.4s;
  }
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .menu-lists img{
    width: 250px;
    margin-top: 20px;
  }
}
.fa{
  font-size: 20px;
  color: #333;
}
.mr30{
  margin-right: 30px;
}
.sp02{
  display: none;
}
@media only screen and (max-width: 768px){
  .sp02{
    display: inline;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Noto Sans JP';
  }
  .mr30{
    margin-right: 0;
  }
  .header-cart {
    display: block;
    order: 3; /* カートを右に */
    padding-top: 5px;
  }
  .header-cart a {
    display: block;
    padding-right: 10px;
  }
  .header-cart .fa-shopping-cart {
    font-size: 20px;
    color: #333;
  }
  .sp-menu-utility a {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* アイコンと文字の間 */
    font-size: 16px;
    color: #333;
    text-decoration: none;
    width: 100%;
  }
}
/*カテゴリーナビ*/
.ec-categoryNaviRole{
  width: 100%;
  background: #f4f4f4;
  padding: 9px 20px;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  color: #333;
}
@media only screen and (max-width: 768px){
  .ec-categoryNaviRole{
    scrollbar-width: thin;
    scrollbar-color: #D8D8D8 #fff;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 10px 10px;
  }
}
.ec-itemNav {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.ec-itemNav__nav {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  width: auto;
  height: auto;
  list-style-type: none;
  text-align: center;
  vertical-align: bottom;
  display: flex;
  max-width: 800px;
}
.ec-itemNav__nav li {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  position: relative;
  list-style-type: none;
}
.ec-itemNav__nav li a {
  font-weight: 400;
  padding: 5px 12px;
  color: #333;
  font-size: 14px;
  letter-spacing: 2px;
  background: none;
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;
  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #B82132 50%, #333 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;
  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
@media only screen and (max-width: 768px){
  .ec-itemNav__nav li a{
    padding: 8px 10px;
  }
}
.ec-itemNav__nav li a:hover{
  background-position: 0 100%;
}
@media only screen and (max-width: 768px){
  .with-line{
    position: relative;
    padding-right: 20px; /* 文字と線の距離 */
    color: #333;
    font-size: 12px;
    letter-spacing: 0;
  }
  .with-line::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%; /* 線の高さを文字に合わせる */
    width: 1px; /* 線の太さ */
    background-color: #ccc; /* 線の色 */
  }
}
/* ------------------------ ヘッダー ------------------------ */
header {
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background-image: url(../img/background.webp);
  z-index: 9999;
}
@media only screen and (max-width: 768px){
  header {
    height: 55px;
  }
}
.cash_h{
  display: none;
}
@media only screen and (max-width: 1099px){
  .cash_h{
    display: block;
  }
}
header a {
  text-decoration: none;
  color: #333;
}
.logo img {
  width: 250px;
  padding-top: 10px;
}
@media only screen and (max-width: 768px){
  .logo img {
    width: 180px;
    padding-top: 10px;
  }
  .logo {
    order: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 1;
  }
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
  height: 80px;
}
@media only screen and (max-width: 768px){
  .header-inner {
    height: 55px;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
}
.menu-wrapper{
  display: flex;
}
@media only screen and (max-width: 768px){
  .menu-wrapper {
    order: 1; /* ハンバーガーを左に */
  }
}
.menu-lists ul{
  display: flex;
  align-items: center;
}
.menu-lists ul li{
  padding: 10px;
  font-size: 16px;
  letter-spacing: 2px;
  white-space: nowrap;
  margin-right: 20px;
}
@media only screen and (max-width: 768px){
  .menu-lists ul li{
    margin-right: 0;
    padding: 10px 0;
  }
}
.menu-lists li a{
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;
  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #B82132 50%, #333 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;
  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
.menu-lists li a:hover{
  background-position: 0 100%;
}
@media (max-width:1099px){
  .btn{
      width: 100%;
      display: block;
      width: 39px;
      height: 39px;
      position: absolute;
      z-index: 999;/*追記：いつも一番上*/
      top: 0;
      bottom: 0;
      left: 4%;
      margin: auto 0;
      border-radius: 10px;
      z-index: 9999;
  }
  .bar{
      width: 20px;
      height: 2px;
      display: block;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      background-color: #333;
      border-radius: 10px;
      z-index: 9999;
  }
  .bar-top{
    top: 11px;
  }
  .bar-middle{
      top: 50%;
      transform: translate(-50%,-50%);
  }
  .bar-bottom{
    bottom: 11px;
  }
  .btn.close .bar-top{
      transform: translate(-50%,10px) rotate(45deg);
      transition: transform .3s;
  }
  .btn.close .bar-middle{
      opacity: 0;
      transition: opacity .3s;
  }
  .btn.close .bar-bottom{
      transform: translate(-50%,-5px) rotate(-45deg);
      transition: transform .3s;
  }
  .menu-lists {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fdf2d4;
    color: #333;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ここをflex-startにして上寄せ */
    padding-top: 100px; /* ロゴやボタン分の余白 */
    align-items: center;
    text-align: center;
    z-index: 9998;
  }
  .menu-lists.open {
    animation: slideDown 0.4s ease forwards;
    pointer-events: auto;
  }
  .menu-lists.closing {
    animation: slideUp 0.4s ease forwards;
    pointer-events: none;
  }
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slideUp {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-100%);
      opacity: 0;
    }
  }
  .menu-lists ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .menu-lists ul li {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
    animation-name: fadeUp;
    animation-duration: 0.4s;
  }
  /* 各メニュー項目にアニメ遅延を付けて順に表示 */
  .menu-lists.open ul li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .menu-lists.open ul li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .menu-lists.open ul li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .menu-lists.open ul li:nth-child(4) {
    animation-delay: 0.4s;
  }
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .menu-lists img{
    width: 250px;
    margin-top: 20px;
  }
}
.fa{
  font-size: 20px;
  color: #333;
}
.mr30{
  margin-right: 30px;
}
.sp02{
  display: none;
}
@media only screen and (max-width: 768px){
  .sp02{
    display: inline;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Noto Sans JP';
  }
  .mr30{
    margin-right: 0;
  }
  .header-cart {
    display: block;
    order: 3; /* カートを右に */
    padding-top: 5px;
  }
  .header-cart a {
    display: block;
    padding-right: 10px;
  }
  .header-cart .fa-shopping-cart {
    font-size: 20px;
    color: #333;
  }
  .sp-menu-utility a {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* アイコンと文字の間 */
    font-size: 16px;
    color: #333;
    text-decoration: none;
    width: 100%;
  }
}
/*カテゴリーナビ*/
.ec-categoryNaviRole{
  width: 100%;
  background: #f4f4f4;
  padding: 9px 20px;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  color: #333;
}
@media only screen and (max-width: 768px){
  .ec-categoryNaviRole{
    scrollbar-width: thin;
    scrollbar-color: #D8D8D8 #fff;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 10px 10px;
  }
}
.ec-itemNav {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.ec-itemNav__nav {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  width: auto;
  height: auto;
  list-style-type: none;
  text-align: center;
  vertical-align: bottom;
  display: flex;
  max-width: 800px;
}
.ec-itemNav__nav li {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  position: relative;
  list-style-type: none;
}
.ec-itemNav__nav li a {
  font-weight: 400;
  padding: 5px 12px;
  color: #333;
  font-size: 14px;
  letter-spacing: 2px;
  background: none;
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;
  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #B82132 50%, #333 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;
  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
@media only screen and (max-width: 768px){
  .ec-itemNav__nav li a{
    padding: 8px 10px;
  }
}
.ec-itemNav__nav li a:hover{
  background-position: 0 100%;
}
@media only screen and (max-width: 768px){
  .with-line{
    position: relative;
    padding-right: 20px; /* 文字と線の距離 */
    color: #333;
    font-size: 12px;
    letter-spacing: 0;
  }
  .with-line::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%; /* 線の高さを文字に合わせる */
    width: 1px; /* 線の太さ */
    background-color: #ccc; /* 線の色 */
  }
}
 /*================ フッター ====================*/
 footer{
  background: #760006;
  padding: 50px 0;
  width: 100%;
  color: #fff;
 }
 @media only screen and (max-width: 768px){
  footer{
    text-align: center;
  }
 }
 footer a{
  color: #fff;
 }
 footer a:hover{
  opacity: 0.8;
  transition: 0.5s;
 }
 footer h1{
  font-size: 20px;
 }
 @media only screen and (max-width: 768px){
  footer h1{
    margin-bottom: 10px;
    font-size: 15px;
  }
 }
 .cash_f{
  text-align: center;
  font-size: 16px;
 }
 @media only screen and (max-width: 768px){
  .cash_f{
    font-size: 14px;
   }
 }
 .cash_f img{
  display: block;
  margin: 10px auto 50px;
  width: 340px;
 }
 @media only screen and (max-width: 768px){
  .cash_f img{
    width: 300px;
  }
 }
 .flex02{
  max-width: 1200px;
  display: flex;
  margin: auto;
  justify-content: space-between;
  font-size: 16px;
 }
 @media only screen and (max-width: 768px){
  .flex02{
    display: block;
    text-align: center;
    width: 90%;
    font-size: 14px;
  }
 }
 .f_right{
  width: 70%;
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  flex-direction: row;
  flex-basis: 58%;
  gap: 10px 30px
 }
 @media only screen and (max-width: 768px){
  .f_right{
    width: 100%;
    display: block;
  }
  .f_right li{
    margin: 15px auto;
  }
}
.f_right img{
  width: 25px;
}
@media only screen and (max-width: 768px){
  .f_right img{
    margin-bottom: 30px;
  }
}
.f_left{
  width: 30%;
  text-align: left;
}
@media only screen and (max-width: 768px){
  .f_left{
    display: block;
    width: 100%;
    margin: 0 auto 30px;
  }
 }
 .f_left img{
  width: 222px;
 }
 @media only screen and (max-width: 768px){
  .f_left img{
    width: 200px;
    display: block;
    margin: auto;
   }
 }
.copy{
  text-align: center;
  font-size: 14px;
  margin: 50px auto 0;
}
@media only screen and (max-width: 768px){
  .copy{
    font-size: 12px;
  }
}
/*================ フッター ここまで ====================*/
  /*================ アニメーション　下からフェードイン ====================*/
  .fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1.3s;
    animation-fill-mode:forwards;
    opacity:0;
    animation-iteration-count: 1;
    }

    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }

      to {
        opacity: 1;
      transform: translateY(0);
      }
    }

    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/

    .fadeUpTrigger{
        opacity: 0;
    }

/*================ アニメーション　下からフェードイン　ここまで ====================*/
/*================ アニメーション　下からウェーブ ====================*/
.js-text span {
  display: inline-block;
}
/*================ アニメーション　下からウェーブ　ここまで ====================*/
/*================ お知らせ ====================*/
.news{
  max-width: 800px;
  margin: 0 auto 300px;
}
@media only screen and (max-width: 600px){
  .news{
    width: 90%;
  }
  .news h2{
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.2;
  }
}
.news a{
  color: #1d1d1d;
}
.news a:hover{
  opacity: 0.8;
}
.news p{
  margin-bottom: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* ここからがニュース記事のCSS */
.news_list_item {
padding: 25px 0;
border-bottom: 0.5px solid #BCBCBC;
}
@media only screen and (max-width: 600px){
  .news_list_item {
    padding: 20px 0;
    }
}
/*.news_list_item:first-child {
border-top: 0.5px solid #BCBCBC;
}*/
.news_list_item a {
position: relative;
display: flex;
padding-right: 30px;
}
.news_list_date {
font-size: 15px;
display: flex;
margin-right: 15px;
align-items: center;
}
@media only screen and (max-width: 600px){
  .news_list_date {
    padding-bottom: 10px;
  }
}
.news_list_date time{
background: #bcbcbc;
border-radius: 60px;
width: 6em;
text-align: center;
padding: 5px 10px;
color: #fff;
letter-spacing: 1px;
}
@media only screen and (max-width: 600px){
  .news_list_date time{
    font-size: 12px;
  }
}
.news_list p{
  padding-left: 30px;
}
@media only screen and (max-width: 600px){
  .news_list p{
    padding-left: 0;
  }
}
/*.news_item {
background: #F6C6A2;
border-radius: 14px;
width: 6em;
text-align: center;
margin-left: 20px;
}*/
.arrow {
width: 25px;
height: 1px;
background: #707070;
position: absolute;
top: 50%;
right: 0;
}
.arrow::after {
content: "";
display: block;
width: 6px;
height: 1px;
background: #707070;
transform: rotate(45deg);
position: absolute;
right: 0px;
bottom: 2px;
}
.news_next{
  float: right;
  margin-top: 10px;
  font-size: 12px;
}
.news_next a.btnlinestretches4{
  padding: 10px 40px 10px 20px;
}
@media screen and (max-width: 1024px) {
  .news_list_item a {
      display: block;
  }
}
@media screen and (max-width: 769px) {
  .news_list_item a  {
      font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .arrow {
      display: none;
  }
  .news_list_item a {
      padding-right: 0;
  }
}
.single{
  max-width: 650px;
  width: 90%;
  margin: 50px auto;
}
.single_h2{
  margin: 10px 0 50px;
  font-size: 25px;
  letter-spacing: 2px;
  border-bottom: solid 1.5px #bcbcbc;
}
.single p{
  font-size: 16px;
  letter-spacing: 1px;
}
.single img{
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 30px auto;
}
@media screen and (max-width: 600px){
  .single_h2{
    font-size: 20px;
  }
}
.single_btn{
  margin: 150px auto;
  text-align: center;
}
.single_btn a{
  color: #1d1d1d;
}
.page-link.prev a{
  color: #fff;
}
.page-link.next a{
  color: #fff;
}
.page-links{
  display: flex;
  justify-content: center;
  font-size: 15px;
}
.page-link.prev,
.page-link.next{
  padding: 5px 20px;
  background-color: #707070;
  border-radius: 60px;
  margin: 0 10px;
}
.page-link.archive{
  padding: 5px 20px;
  border: solid 1px #707070;
  border-radius: 60px;
  margin: 0 10px;
}
.page-link.prev a:hover,
.page-link.next a:hover,
.page-link.archive a:hover{
  opacity: 0.8;
}
.blog__pagination{
  text-align: center;
}
.page-numbers{
  background-color: #bcbcbc;
  color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
}
@media screen and (max-width: 600px){
  .page-numbers{
    font-size: 14px;
  }
}
.pagination span{
  background-color: #707070;
}
.pagination a:hover{
  opacity: 0.8;
}
.mb0{
  margin-bottom: 0;
}
a.btn_03 {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 100px;
	margin: 50px auto;
	padding: 1rem 4rem;
	font-weight: 400;
	border: 1px solid #1d1d1d;
	color: #1d1d1d;
	transition: 0.5s;
	letter-spacing: 2px;
	font-size: 15px;
}
a.btn_03:hover {
	color: #fff;
	background: #1d1d1d;
}
a.btn_04 {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 100px;
	margin: 50px auto;
	padding: 0.6rem 2rem;
	font-weight: bold;
	border: 1px solid #1d1d1d;
	color: #1d1d1d;
	transition: 0.5s;
	letter-spacing: 2px;
	font-size: 14px;
  position: relative;
  font-weight: 300;
  cursor: pointer; /* ボタンを押せるようにする */
}
a.btn_04::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1.5px solid #1d1d1d;
  border-right: 1.5px solid #1d1d1d;
  transform: rotate(45deg);
  box-sizing: border-box;
}
a.btn_04:hover {
	color: #fff;
	background: #1d1d1d;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}
.extra-ranking {
  display: none;
  overflow: hidden;
  height: 0;
}
#toggleRankingButton.btn_04 {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 180px;
  height: 40px;
	margin: 50px auto;
	padding: 0.6rem 2rem;
	font-weight: bold;
	border: 1px solid #1d1d1d;
	color: #1d1d1d;
	transition: 0.5s;
	letter-spacing: 2px;
	font-size: 14px;
  position: relative;
  font-weight: 300;
  cursor: pointer; /* ボタンを押せるようにする */
  background: none;
}
#toggleRankingButton.btn_04::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1.5px solid #1d1d1d;
  border-right: 1.5px solid #1d1d1d;
  transform: rotate(45deg);
  box-sizing: border-box;
}
#toggleRankingButton.btn_04:hover {
	color: #fff;
	background: #1d1d1d;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}

/*================ お知らせ ここまで ====================*/
/*================ ブログ記事 アーカイブ ====================*/
.single_m{
  width: 100%;
  padding: 50px 0;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 600px){
  .single_m{
padding: 0;
margin: 30px auto;
  }
}
.single_m h2{
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 10px;
}
@media screen and (max-width: 600px){
  .single_m h2{
    margin-left: 20px;
    font-size: 20px;
    letter-spacing: 7px;
        text-align: center;

  }
}
.single_container{
  display: flex; /* フレックスボックスを使用 */
  max-width: 1200px;
  margin: 0 auto; /* 中央に配置 */
}
@media screen and (max-width: 600px){
  .single_container{
    display: block;
    max-width: 100%;
    width: 90%;
    padding: 0;
  }
}
.main-content {
  flex: 3; /* 3:1 の比率でカラムを広くする */
  background-color: #fff;
  margin-right: 20px; /* サイドバーとの間に余白を設ける */
}
@media screen and (max-width: 600px){
  .main-content{
    margin: 0;
    padding: 0;
  }
}
.main_flex{
  display: flex;
  flex-wrap: wrap; /* 投稿が増えたら折り返す */
  justify-content: center;
  gap: 20px 0; /* 記事間の余白 */
}
@media screen and (max-width: 600px){
  .main_flex{
    gap: 10px 0;
  }
}
.main_flex img{
  width: 280px;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 600px){
  .main_flex img{
    width: 150px;
    height: 112.8px;
  }
}
.main_flex a{
  color: #0d0d0d;
}
.main_flex a:hover{
  opacity: 0.8;
  transition: 0.3s;
}
.main_text{
  margin-left: 20px;
  letter-spacing: 1.2px;
  width: 50%;
}
@media screen and (max-width: 600px){
  .main_text{
    margin-left: 15px;
    letter-spacing: 1px;
  }
}
.main_text h3{
  margin: 10px 0;
  font-weight: 400;
}
@media screen and (max-width: 600px){
  .main_text h3{
    font-size: 14px;
    margin: 5px 0;
  }
}
.main_text p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}
@media screen and (max-width: 600px){
  .main_text p{
    font-size: 10px;
  }
}
.main_text time{
  font-size: 14px;
  color: #8f8f8f;
}
@media screen and (max-width: 600px){
  .main_text time{
    font-size: 10px;
  }
}
.main_text span{
  color: #fff;
  background: #1E3932;
  padding: 3px 8px;
  font-size: 12px;
  margin-left: 5px;
  border-radius: 1px;
  letter-spacing: 2px;
}
@media screen and (max-width: 600px){
  .main_text span{
    font-size: 10px;
    margin-left: 0;
    letter-spacing: 0;
    padding: 2px 5px;
  }
}
.sidebar {
  flex: 1; /* サイドバーを小さくする */
  padding: 20px;
  background-color: #fff;
}
@media screen and (max-width: 600px){
  .sidebar{
    padding: 50px 0;
  }
}
.sidebar img{
  width: 100px;
  height: 56.25px;
  aspect-ratio: 1.91 / 1;
  object-fit: cover;
  position: relative;
}
@media screen and (max-width: 600px){
  .sidebar img{
    width: 150px;
    height: 84.375px;
  }
}
.side_title{
  color: #fff;
  background: #1E3932;
  padding: 5px 10px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 600px){
  .side_title{
    padding: 5px 0;
  }
}
.sub_flex a{
  display: flex;
  margin: 10px 0;
  position: relative;
  color: #0d0d0d;
}
.sub_flex a:hover{
  opacity: 0.8;
  transition: 0.3s;
}
.sub_flex span{
  background: #D2A049;
  padding: 8px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  font-size: 12px;
}
.sub_text{
  margin-left: 10px;
  letter-spacing: 1px;
}
.sub_flex h3{
  font-size: 12px;
  margin: 0;
  font-weight: 400;
}
.mt50{
  margin-top: 50px;
}
.pagination{
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
}

/*================ ブログ記事 個別記事 ====================*/
.s_b_n time{
  font-size: 14px;
  letter-spacing: 2px;
}
.s_b_n span{
  color: #fff;
  background: #1E3932;
  padding: 3px 8px;
  font-size: 13px;
  margin-left: 5px;
  border-radius: 1px;
  letter-spacing: 2px;
}
@media screen and (max-width: 600px){
  .s_b_n span{
    font-size: 12px;
  }
}
.s_b_n span a{
  color: #fff;
}
.s_b_n span a:hover{
  opacity: 0.7;
}
.s_b_n img{
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}
.s_b_n h1{
  line-height: 1.8;
  font-size: 25px;
  margin: 20px 0;
  letter-spacing: 2px;
  font-weight: 500;
}
@media screen and (max-width: 600px){
  .s_b_n h1{
    font-size: 20px;
  }
}
.s_b_n h2{
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 400;
  margin: 20px 0;
}
@media screen and (max-width: 600px){
  .s_b_n h2{
    font-size: 18px;
  }
}
.s_b_n h3{
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 20px 0;
}
@media screen and (max-width: 600px){
  .s_b_n h3{
    font-size: 16px;
  }
}
.s_b_n p{
  line-height: 2;
  letter-spacing: 1px;
  font-size: 16px;
}
@media screen and (max-width: 600px){
  .s_b_n p{
    font-size: 14px;
  }
}
.single-index{
  background: #F6F6F6;
  padding: 20px;
  text-align: left;
  line-height: 2;
  margin: 30px 0;
  letter-spacing: 2px;
  font-size: 16px;
}
@media screen and (max-width: 600px){
  .single-index{
    font-size: 14px;
  }
}
.connection{
  background:#F6F6F6;
  width: 100%;
}
.con_title{
  background: #1E3932;
  color: #fff;
  padding: 5px 0;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 100px;
  text-align: center;
}
.con_flex{
  display: flex;
  justify-content: center;
  margin: 10px;
}
.con_box{
  width: 30%;
  margin: 0 10px 30px;
}
.con_box img{
  width: 100%;
  height: auto;
  max-width: 205.5px;
  max-height: 107.58px;
  object-fit: cover;
  margin-bottom: 5px;
  aspect-ratio: 1.91 / 1;
}
.con_box p{
  font-size: 16px;
  margin-top: 4px;
}
.con_box a{
  color: #0d0d0d;
  text-decoration: none;
}
.con_box a:hover{
  opacity: 0.7;
}
.no-articles-message{
  margin-bottom: 50px;
}
.b-flex{
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 600px){
  .b-flex{
    width: 100%;
    display: block;
  }
}
.b-box{
  background: #fff;
  border-radius: 15px;
  text-align: left;
  width: 23%;
  margin: 0 5px 20px;
}
@media only screen and (max-width: 600px){
  .b-box{
    width: 90%;
    margin: 0 auto 20px;
  }
}
.b-box a{
  text-decoration: none;
  color: #1d1d1d;
}
.b-box a:hover{
  opacity: 0.7;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.b-box img{
  width: 100%;
  border-radius: 15px 15px 0 0;
}
.b-box time{
  padding-left: 10px;
  color: #ff2846;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
}
.b-box h3{
  font-size: 16px;
  font-weight: 700;
  padding: 5px 10px 5px;
}
.b-box p{
  padding: 0 10px 20px 10px;
  font-size: 13px;
}
.b-cate{
  padding: 0px 10px 20px;
}
.b-cate a:hover{
  opacity: 0.7;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.b-cate span{
  padding: 5px 10px;
  background: #b2b2b2;
  color: #fff;
  font-size: 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin: 0 2px;
}
/*ブログ記事アーカイブ　FVスライダー*/
.sample-slider{
  width:100%;
  margin: 123px auto 0;
  position: relative;
}
@media screen and (max-width: 600px){
  .sample-slider{
    margin: 100px auto 0;
  }
}
.sample-slider .swiper-slide {
  width: 400px; /* 各スライドの幅を固定 */
  height: auto; /* 高さを固定 */
}
@media screen and (max-width: 600px){
  .sample-slider .swiper-slide {
    width: 100%; /* 各スライドの幅を固定 */
    height: 70vw; /* 高さを固定 */
  }
}
.sample-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  object-fit: cover;
  aspect-ratio: 1.91 / 1;
}

@media screen and (max-width: 600px){
.sample-slider .swiper-slide img {
 height: auto;
  }
}
.swiper-slide{
  min-width: 640px;
  height: 360px;
  position: relative;
}
@media screen and (max-width: 600px){
  .swiper-slide{
    min-width: 100%;
  }
}
.swiper-slide a{
  color: #0d0d0d;
  text-decoration: none;
}
.swiper-pagination {
  position: absolute!important;
  bottom: 50px!important; /* 画像より下に配置 */
  left: 50%!important;
  transform: translateX(-50%)!important;
  z-index: 10;
}
@media screen and (max-width: 600px){
  .swiper-pagination {
    bottom: 27%!important;
  }
}
.s_title{
  margin-top: 15px;
  left: 0;
  background: rgba(255, 255, 255, .9);
  line-height: 1.5;
  display: table;
  font-size: 20px;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 600px){
  .s_title{
    line-height: 1.3;
    font-size: 16px;
  }
}
.s_title span{
  display: table-cell;
  vertical-align: middle;
  padding: 0 1em;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px!important;
}
.swiper-pagination-bullet-active {
  background: #fff!important;
}
/*================ パンくず ====================*/
.breadcrumb {
  display: flex;
  gap: 0 22px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 170px auto 0;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 600px){
  .breadcrumb {
    font-size: 12px;
    margin: 130px auto 0;
    gap:0 10px;
    width: 90%;
  }
}
.breadcrumb li {
  display: flex;
  align-items: center;
  justify-content: left;
}
.breadcrumb li:first-child::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%238f8f8f'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  margin-left: 10px;
  border-top: 1px solid #8f8f8f;
  border-right: 1px solid #8f8f8f;
  content: '';
}
.breadcrumb a {
  color: #8f8f8f;
  text-decoration: none;
  transition: 0.5s;
  white-space: nowrap;
}
.breadcrumb a:hover{
  opacity: 0.7;
  transition: 0.5s;
}
strong{
  font-weight: 700;
}