/* ここからヘッダーバナー画像 */
.zoom-in-img {
  max-width: px;
  height:px;
  margin: 0em 0em 1em 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
.zoom-in-img img {
  width: 100%;
  height: 100%;
}
/*ホバーエフェクト*/
.zoom-in-img img {
  transform: scale(1);
  transition: .3s ease-in-out;
}
.zoom-in-img:hover img {
  transform: scale(0.99);  /* 拡大率 */
  	opacity: 0.7;  /* 透明率 */
}
/* ここまでヘッダーバナー画像 */

/* ↓ここからバナー画像（ウインドウ幅に合わせて画像を使い分ける）↓ */
img.miniimage { display: none; }

/* ▼表示領域が768px以上の768場合 */
@media (min-width: 768px) {
   img.miniimage { display: none; }  /* miniを非表示 */
   img.bigimage  { display: block; } /* bigを表示 */
}
/* ▼表示領域が768px未満の場合 */
@media (max-width: 767px) {
   img.miniimage { display: block; } /* miniを表示 */
   img.bigimage  { display: none; }  /* bigを非表示 */
}
/* ↑ここまでバナー画像（ウインドウ幅に合わせて画像を使い分ける）↑ */

/* ここからトップページ・インフォメーション */
h2.oshirase_area {
  position: relative;
  color: #EA208F;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
}

h2.oshirase_area:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #EA208F;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.list_information {
  text-align: center;
  font-weight: bold;
}
.list_information:before, .list_information:after {
  font-family: "Font Awesome 5 Free";
  content: '\f56b';
  font-weight: 900;
  color: #EA208F;
}

.list_information_black {
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
}
.list_information_black:before {
  font-family: "Font Awesome 5 Free";
  content: '\f141';
  font-weight: 900;
  font-size: 1.2em;
  padding-left: 0em;
  color: ;
}

.list_information_black:after {
  font-family: "Font Awesome 5 Free";
  content: '\f141';
  font-weight: 900;
  font-size: 1.2em;
  padding-right: 0em;
  color: ;
}

.list_information_icon_rose:before, .list_information_icon_rose:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -0.2em 0 0.2em 0;/*上 右 下 左の余白*/
  color: #EA208F;
  background: url(https://img07.shop-pro.jp/PA01436/425/etc/29468_rose_w25.png?cmsp_timestamp=20211116135235) ;
 background-size: contain;
 vertical-align: middle;
}

.list_information_icon_rose {
  text-align: center;
  font-weight: bold;
}

.font_part_color a {
   font-size: 1.2em;   /* 文字サイズ指定 */
   color: #EA208F;    /* 文字色指定 */
    	-webkit-animation: blink 1s ease infinite;
	animation: blink 2s ease infinite;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.font_part_color01 {
   font-size: ;   /* 文字サイズ指定 */
   color: #EA208F;    /* 文字色指定 */
}
.font_part_color02 a {
   font-size: 1.2em;   /* 文字サイズ指定 */
   color: #EA208F;    /* 文字色指定 */
}

/* ↑トップページ・インフォメーション↑ */

/* ここからフローティングバナー */
.banner {
    position: fixed;
    margin: 15px 20px;
    z-index: 99998;
    bottom: 0;
    right: 0;
}

.banner-close {
    font-weight: bold;
    position: absolute;
    top: -2px;
    right: -4px;
    z-index: 99999;
    padding: 4px 8px;
    border: none;
    background-color: #f8f8f8;
    border-radius: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

.floating-banner {
  position: fixed; /* バナーを追従させる */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */
  right: 0; /* バナーの左右の位置 */
  width: 300px; /* バナーの横幅 */
}

.floating-banner__image {
  max-width: 100%; /* 画像の最大幅 */
}

@media screen and (max-width: 560px) { /* スマホ用のブレイクポイントを指定 */
  .floating-banner {
    display: block;/* 消していたバナーを表示させる */
    width: 100vw; /* スマホの画面幅いっぱいにバナーを表示 */
  }
}