/******************************/
/* SLIDER */
/******************************/
.p-main-slider .bx-wrapper .bx-viewport {
  border: 0;
  box-shadow: none;
  left: 0;
}
.p-main-slider .bx-wrapper img {
  margin: 0 auto;
  width: 100%;
}
.p-main-slider .bx-wrapper .bx-pager {
  padding-top: 0;
  bottom: -40px;
}
@media screen and (max-width: 767px) {
  .p-main-slider .bx-wrapper .bx-pager {
    bottom: -25px;
  }
}
.p-main-slider .bx-wrapper .bx-pager.bx-default-pager a {
  margin-left: 10px;
  margin-right: 10px;
  background: #dddddd;
}



/******************************/
/* 5つボタン */
/******************************/
/* アニメーションの定義(1度だけイエローハイライトさせる・対応させるJAVA scriptはhead内末尾に設置) */
@keyframes highlight {
    0% {
        background-color: white;
    }
    50% {
        background-color: yellow; /* ハイライト色 */
    }
    100% {
        background-color: white;
    }
}

.button-container-top {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-sizing: border-box;
}

@media (min-width: 601px) and (max-width: 768px) and (orientation: portrait) {
    .button-container-top {
        top: 70px; /* 調整 */
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .button-container-top {
        top: 100px; /* 調整 */
    }
}

@media (min-width: 1025px) {
    .button-container-top {
        top: 100px; /* 既存のデスクトップ用設定 */
    }
}

/* ボタンとドロップダウンボタンのスタイル */
.button, .dropdown > .button {
    flex: 1;
    padding: 1px 0;
    background-color: transparent;
    color: black;
    text-align: center;
    text-decoration: none;
    border: 1.5px solid black;
    border-right: none;
    font-weight: bold;
    font-size: 12px;
}

.button:last-child, .dropdown:last-child > .button {
    border-right: 2px solid black;
}

.button:hover, .dropdown > .button:hover {
    background-color: #f0f0f0;
    text-decoration: none;
}

/* 初回ハイライト用のクラス */
.highlight-once {
    animation: highlight 1s ease-in-out;
}


/******************************/
/* ドロップダウンメニュー(5つボタン用) */
/******************************/
.dropdown {
    position: relative;
    display: flex;
    flex: 1;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1px solid black;
    box-sizing: border-box;
    width: 100%;
    top: 100%; /* プルダウンメニューをボタンの下に配置 */
    
    /* 追加: 右端に近い場合のメニュー表示調整 */
    left: auto;
    right: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* スマートフォン向けのスタイル調整 */
@media (max-width: 600px) {
    .dropdown-content {
        left: 0; /* プルダウンメニューを画面の左端に合わせる */
        right: auto; /* 右側の位置指定を無効化 */
        min-width: 120px; /* 必要に応じて幅を調整 */
    }
}



/******************************/
/* ケア用品一覧ボタン用のスタイルを追加 */
/******************************/
.button-container {
    display: flex; /* フレックスボックスを有効にする */
}

.button {
    border: 2px solid black; /* 枠線を少し太くする */
    border-right: none; /* 右側の枠線を一旦削除 */
}

.button:last-child {
    border-right: 2px solid black; /* 最後のボタンの右側の枠線を追加 */
}

.button a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    padding: 10px; /* ボタン内の余白を追加 */
}





/******************************/
/* NEWS */
/******************************/
.p-line-informaiton {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-line-informaiton {
    margin-top: 90px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-line-informaiton {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

.p-line-informaiton-list__item {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton-list__item {
    display: block;
    margin-bottom: 15px;
  }
}

.p-line-informaiton-list__date {
  width: 120px;
}

.p-line-informaiton-list__ttl {
  flex: 1;
}

.p-line-informaiton-title {
  display: flex;
  align-items: center;
}

.p-line-informaiton-title__img {
  width: 30px; /* 画像のサイズを半分に設定 */
  height: auto;
  margin-right: 10px;
}

.p-line-informaiton-images {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.p-line-informaiton-images a {
  display: flex; /* 追加 */
  align-items: center; /* 追加 */
}

.p-line-informaiton-images img {
  width: 60px; /* 画像のサイズを固定 */
  height: auto;
}

/* PC表示時の調整 */
@media screen and (min-width: 1024px) {
  .p-line-informaiton-images {
    justify-content: left; /* 中央揃えに変更 */
  }
  
  .p-line-informaiton-images a:not(:first-child) {
    margin-left: 10px; /* 2番目以降の画像に左マージンを追加 */
  }
}



/******************************/
/* グループバナー */
/******************************/
.p-group-bnr {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-group-bnr {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .p-group-bnr .c-slider-thema .slick-next {
    right: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-group-bnr .c-slider-thema .slick-next {
    right: -3px;
  }
}
@media screen and (max-width: 1023px) {
  .p-group-bnr .c-slider-thema .slick-prev {
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-group-bnr .c-slider-thema .slick-prev {
    left: -3px;
  }
}

.p-group-bnr-list {
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 1070px) {
  .p-group-bnr-list {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.p-group-bnr-list__item {
  margin-left: 25px;
  margin-right: 25px;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-group-bnr-list__item {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.p-group-bnr-list__item img {
  width: 100%;
}

.p-group-bnr-list__ttl {
  margin-top: 15px;
}



/******************************/
/* イチオシ商品 */
/******************************/
.p-line-informaiton-title2 {
  text-align: center;
}

.product {
  list-style-type: none;
  padding: 0;
}

.product-link {
  text-decoration: none;
  display: block;
  text-align: center;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  max-width: 80%;
  height: auto;
}

.product-details {
  margin-top: 10px;
}

.product-name {
  font-weight: bold;
  font-size: 1.2em;
}

.exp {
  display: block;
  margin-top: 5px;
}

.price-section {
  margin-top: 10px;
}

.price {
  font-size: 0.8em;
  color: #000000; /* 黒色 */
}

.regular {
  text-decoration: line-through;
  color: #777; /* 灰色 */
}

.soldout {
  font-size: 1.5em;
  color: #000000; /* 黒色 */
}





/******************************/
/* INFORMATION */
/******************************/
.p-information {
  margin-top: 90px;
  margin-bottom: 90px;
  padding: 60px 90px;
  background: url(https://img.shop-pro.jp/tmpl_img/87/bg-grid.png) repeat;
  color: #2d2d2d;
}
@media screen and (max-width: 1023px) {
  .p-information {
    margin-top: 60px;
    margin-bottom: 45px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 45px 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-information {
    margin-left: 0;
    margin-right: 0;
    padding: 35px 25px;
  }
}

/******************************/
/* CONCEPT */
/******************************/
.p-concept-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  margin-bottom: 105px;
}
@media screen and (max-width: 1023px) {
  .p-concept-box {
    margin-top: 45px;
    margin-bottom: 75px;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box {
    display: block;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-concept-box__logo {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  width: 330px;
  min-height: 300px;
  background: #fafafa;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__logo {
    padding: 45px;
    width: 220px;
    min-height: 195px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__logo {
    padding: 30px 15px;
    width: auto;
    min-height: 80px;
  }
}
.p-concept-box__logo img {
  max-width: 210px;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__logo img {
    max-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__logo img {
    max-width: 120px;
  }
}

.p-concept-box__txt {
  box-sizing: border-box;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 120px;
  background: url(https://img07.shop-pro.jp/PA01416/784/etc/wht.jpg?cmsp_timestamp=20220916121916) no-repeat center center #aaaaaa;
  background-size: cover;
  color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__txt {
    padding: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__txt {
    padding: 20px 25px;
  }
}
.p-concept-box__txt:before {
  <{* content: ""; *}>
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.p-concept-box__body {
  position: relative;
  z-index: 10;
}

/******************************/
/* RECOMMEND ITEMS */
/******************************/
.c-ttl-bg.is-recommend:before {
  background: url(https://livedoor.blogimg.jp/natoriya/imgs/d/c/dce78bd0.jpg) center center no-repeat;
  background-size: cover;
}
.p-recommend {
  overflow: hidden;
  padding-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-recommend {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .p-recommend-list {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend-list {
    margin-left: 0;
    margin-right: 0;
  }
}

/******************************/
/* TOP PICK UP ITEMS */
/******************************/
.p-pickup {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fafafa;
}
@media screen and (max-width: 1023px) {
  .p-pickup {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}

.p-pickup-list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-pickup-list {
    margin-top: 0;
    margin-left: -25px;
    margin-right: -25px;
  }
}

.p-pickup-list__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 75px;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__item {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-list__item {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    max-width: 600px;
  }
}
.p-pickup-list__item:last-child {
  margin-bottom: 0;
}
.p-pickup-list__item:nth-child(even) .p-pickup-list__txt {
  order: -1;
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__item:nth-child(even) .p-pickup-list__txt {
    padding-left: 25px;
    padding-right: 60px;
  }
}

.p-pickup-list__img {
  overflow: hidden;
  position: relative;
  width: 50%;
  height: 28vw;
  opacity: 1;
  transform: translate(0, 0);
  border-radius: 20px; /* 角丸率 */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* 影を追加 */
}
@media screen and (min-width: 1270px) {
  .p-pickup-list__img {
    max-height: 365px;
  }
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__img {
    width: 53%;
    height: 28vw;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-list__img {
    width: auto;
    height: 55vw;
  }
}
.p-pickup-list__img:before, .p-pickup-list__img:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-pickup-list__img .p-pickup-list__img-bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.4s 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background: #FFFFFF;
}
.p-pickup-list__img:after {
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background: #fff;
}
.p-pickup-list__img:before {
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background: #fff;
}
.p-pickup-list__img.faded .p-pickup-list__img-bg, .p-pickup-list__img.faded:after {
  width: 0;
}
.p-pickup-list__img img {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
}

.p-pickup-list__txt {
  box-sizing: border-box;
  flex: 1;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 1023px) {
  .p-pickup-list__txt {
    padding-left: 60px;
    padding-right: 25px;
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .p-pickup-list__txt {
    margin-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    width: auto;
  }
}

.p-pickup-list__ttl {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-pickup-list__ttl {
    margin-bottom: 10px;
    font-size: 17px;
  }
}
.p-pickup-list__ttl img {
  display: none !important;
}

.p-pickup-list__btn1 {
  margin-top: 30px;
  padding: 10px 20px; /* パディングを追加してボタンの大きさを調整 */
  border: 2px solid #3498db; /* ボーダーの太さと色を調整 */
  border-radius: 10px; /* ボーダーの角を丸くする */
  background-color: #3498db; /* ボタンの背景色を設定 */
  color: #ffffff; /* ボタンのテキスト色を設定 */
  font-size: 16px; /* ボタンのテキストのフォントサイズを調整 */
}
@media screen and (max-width: 767px) {
  .p-pickup-list__btn {
    margin-top: 20px;
  }
}

/******************************/
/* TOP RANKING */
/******************************/
@media screen and (max-width: 1023px) {
  .c-ttl-bg.is-ranking {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl-bg.is-ranking {
    margin-bottom: 35px;
  }
}
.c-ttl-bg.is-ranking:before {
  background: url(https://livedoor.blogimg.jp/natoriya/imgs/1/a/1ad00aa6.jpg) center center no-repeat;
  background-size: cover;
}

.p-ranking {
  padding-top: 30px;
}
@media screen and (max-width: 1023px) {
  .p-ranking {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking {
    padding-top: 60px;
  }
}

.p-ranking-list {
  margin-bottom: 30px;
}
@media screen and (max-width: 1050px) {
  .p-ranking-list {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-ranking-list {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.p-ranking-list .slick-prev {
  left: -5px;
  margin-top: -43px;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list .slick-prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-prev {
    margin-top: -30px;
  }
}
.p-ranking-list .slick-next {
  right: -5px;
  margin-top: -43px;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list .slick-next {
    margin-top: -30px;
  }
}
.p-ranking-list .slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.p-ranking-list .slick-dots {
  bottom: -45px;
}
.p-ranking-list .slick-dots li {
  margin: 0 2px;
}

.p-ranking-list__item {
  position: relative;
  box-sizing: border-box;
  margin-right: 10px;
  margin-left: 10px;
  padding-bottom: 25px;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-ranking-list__item {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-ranking-list__item {
    margin-right: 12px;
    margin-left: 12px;
  }
}
.p-ranking-list__item.slick-active .p-ranking-list__num {
  opacity: 1;
  animation: rankingfadein 0.2s 0s;
}

.p-ranking-list__img {
  margin-bottom: 20px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__img {
    margin-bottom: 10px;
    text-align: center;
  }
}

.p-ranking-list__num {
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  right: 0px;
  padding-top: 3px;
  min-width: 30px;
  line-height: 27px;
  font-size: 16px;
  font-weight: bold;
  background: #ffffff;
  color: #2d2d2d;
  text-align: center;
  opacity: 0;
  transition: all ease 0.1s;
}
.p-ranking-list__num.is-1 {
  background: #c5b597;
  color: #ffffff;
}
.p-ranking-list__num.is-2 {
  background: #b1b9bb;
  color: #ffffff;
}
.p-ranking-list__num.is-3 {
  background: #714d3b;
  color: #ffffff;
}

@keyframes rankingfadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-ranking-list__ttl {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__ttl {
    font-size: 13px;
  }
}
.p-ranking-list__ttl img {
  vertical-align: middle;
}

.p-ranking-list__price {
  margin-top: 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-ranking-list__price {
    margin-top: 5px;
    font-size: 13px;
  }
}
.p-ranking-list__price.is-default {
  margin-top: 0;
}

.p-ranking-list__btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

/******************************/
/* TOP SHOP */
/******************************/
.p-shop {
  padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  .p-shop {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop {
    padding-top: 30px;
  }
}

.p-shop-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .p-shop-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-shop-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-shop-wrap:before {
    content: none;
  }
}

.p-shop__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop__bg {
    position: static;
    width: auto;
    height: auto;
  }
}
.p-shop__bg img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-shop__bg img {
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .p-shop__bg .simpleParallax {
    overflow: visible !important;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__bg .simpleParallax {
    overflow: hidden !important;
  }
}

.p-shop-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop-contents {
    min-height: inherit;
  }
}

.p-shop-box {
  position: relative;
  z-index: 100;
  width: 660px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-shop-box {
    margin-top: 15px;
    width: auto;
    color: #2d2d2d;
  }
}

.p-shop-box__ttl {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__ttl {
    font-size: 17px;
  }
}

.p-shop-box__body {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__body {
    margin-top: 0;
  }
}

.p-shop-box__url {
  margin-top: 15px;
}
.p-shop-box__url a {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-shop-box__url a {
    color: #2d2d2d;
  }
}

.p-shop-box__btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__btn {
    margin-top: 20px;
  }
}


/******************************/
/* ボタンのロールオーバー */
/******************************/
a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
/******************************/
/* ボタンのロールオーバー */
/******************************/


/******************************/
/* --リンク先へゆっくりスクロール-- */
/******************************/
html { scroll-behavior: smooth;}
/******************************/
/* --リンク先へゆっくりスクロール-- */
/******************************/


/******************************/
/* --トップへ戻るボタンのスタイル-- */
/******************************/
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 65px; /* トップへ戻るボタンの bottom 位置を調整 */
    right: 15px;
    background-color: #333; /* ダークグレー */
    color: #fff;
    border: none;
    border-radius: 50%; /* 正円にする */
    width: 30px; /* 直径を設定 */
    height: 30px; /* 直径を設定 */
    padding: 0; /* 余白を削除 */
    cursor: pointer;
    text-align: center; /* テキストを中央に配置 */
    line-height: 30px; /* テキストを垂直方向に中央に配置 */
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333; /* 二重線の影を追加 */
    transition: transform 0.2s; /* 変化のスムーズ化のためのトランジション */
    z-index: 9999; /* ボタンを最前面に配置 */
}
#scrollToTop:hover {
    transform: scale(1.1); /* ホバー時にボタンをわずかに大きくする */
}

/******************************/
/* --「?」ボタンのスタイル-- */
/******************************/
#scrollToquestion {
    display: none;
    position: fixed;
    bottom: 115px; /* 新しいボタンの bottom 位置を調整 */
    right: 15px;
    background-color: #333; /* ダークグレー */
    color: #fff;
    border: none;
    border-radius: 50%; /* 正円にする */
    width: 30px; /* 直径を設定 */
    height: 30px; /* 直径を設定 */
    padding: 0; /* 余白を削除 */
    cursor: pointer;
    text-align: center; /* テキストを中央に配置 */
    line-height: 30px; /* テキストを垂直方向に中央に配置 */
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333; /* 二重線の影を追加 */
    font-size: 18px; /* 文字サイズを設定 */
    transition: transform 0.2s; /* 変化のスムーズ化のためのトランジション */
    z-index: 9999; /* ボタンを最前面に配置 */
}
#scrollToquestion:hover {
    transform: scale(1.1); /* ホバー時にボタンをわずかに大きくする */
}

/******************************/
/* --再へ移動するボタンのスタイル（画像ボタンに更新）--*/
/******************************/
#scrollToAgain {
    display: none;
    position: fixed;
    bottom: 165px; /* 再へ移動するボタンの bottom 位置を調整 */
    right: 15px;
    border: none;
    border-radius: 50%; /* 画像が円形でない場合はこの値を調整する必要があるかもしれません */
    width: 30px; /* 画像のサイズに合わせて調整 */
    height: 30px; /* 画像のサイズに合わせて調整 */
    padding: 0; /* 余白を削除 */
    cursor: pointer;
    background-image: url('https://livedoor.blogimg.jp/natoriya/imgs/f/e/fe1cc462.gif?v=20240404004116'); /* 画像のURLを指定 */
    background-size: cover; /* 画像がボタンサイズにぴったり収まるようにする */
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333; /* 二重線の影を追加 */
    transition: transform 0.2s; /* 変化のスムーズ化のためのトランジション */
    z-index: 9999; /* ボタンを最前面に配置 */
}
#scrollToAgain:hover {
    transform: scale(1.1); /* ホバー時にボタンをわずかに大きくする */
}



/******************************/
/* --最後の逸品ボタンのスタイル-- */
/******************************/
#scrollToLastItem {
    display: none;
    position: fixed;
    bottom: 215px; /* 最後の逸品ボタンの bottom 位置を調整 */
    right: 15px;
    background-color: #333; /* ダークグレー */
    color: #fff;
    border: none;
    border-radius: 50%; /* 正円にする */
    width: 30px; /* 直径を設定 */
    height: 30px; /* 直径を設定 */
    padding: 0; /* 余白を削除 */
    cursor: pointer;
    text-align: center; /* テキストを中央に配置 */
    line-height: 30px; /* テキストを垂直方向に中央に配置 */
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333; /* 二重線の影を追加 */
    font-size: 18px; /* 文字サイズを設定 */
    transition: transform 0.2s; /* 変化のスムーズ化のためのトランジション */
    z-index: 9999; /* ボタンを最前面に配置 */
}
#scrollToLastItem:hover {
    transform: scale(1.1); /* ホバー時にボタンをわずかに大きくする */
}

/******************************/
/* --ブログへ移動するボタンのスタイル-- */
/******************************/
#scrollToBlog {
    display: none;
    position: fixed;
    bottom: 265px; /* ブログへ移動するボタンの bottom 位置を調整 */
    right: 15px;
    background-color: #333; /* 背景色は画像が読み込まれない時のために設定 */
    border: none;
    border-radius: 50%; /* 正円にする（画像が円形でない場合は調整が必要かもしれません） */
    width: 30px; /* 画像サイズに合わせて調整 */
    height: 30px; /* 画像サイズに合わせて調整 */
    padding: 0; /* 余白を削除 */
    cursor: pointer;
    background-image: url('https://livedoor.blogimg.jp/natoriya/imgs/c/c/ccc89db2.png?v=20240329113302'); /* ここに画像ファイルのパスを指定 */
    background-size: cover; /* 画像がボタンのサイズに合うように調整 */
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333; /* 二重線の影を追加 */
    transition: transform 0.2s; /* 変化のスムーズ化のためのトランジション */
    z-index: 9999; /* ボタンを最前面に配置 */
}
#scrollToBlog:hover {
    transform: scale(1.1); /* ホバー時にボタンをわずかに大きくする */
}


/******************************/
/* --お知らせ項目-- */
/******************************/
<style>
  .announcement-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .announcement-item {
    text-align: center;
    flex: 1 1 calc(33% - 20px);
    box-sizing: border-box;
  }
  .announcement-item img {
    width: 100%;
    height: auto;
  }
  @media (max-width: 768px) {
    .announcement-item {
      flex: 1 1 calc(50% - 20px);
    }
  }
  @media (max-width: 480px) {
    .announcement-item {
      flex: 1 1 100%;
    }
  }
</style>
