@charset "UTF-8";
/* 1. TOPページ：お知らせがない時（基本の高さ） */
#restock,
#pickup,
#birthday,
#shop {
  /* お知らせがない時のヘッダー高さ（PC: 118px相当） */
  scroll-margin-top: 118px !important;
}

/* 2. TOPページ：お知らせがある時（headerの中に.header_newsがある場合） */
header:has(.header_news) ~ main #restock,
header:has(.header_news) ~ main #pickup,
header:has(.header_news) ~ main #birthday,
header:has(.header_news) ~ main #shop {
  /* お知らせがある時のヘッダー高さ（PC: 155px相当） */
  scroll-margin-top: 155px !important;
}

/* 3. スマホ時（767px以下） */
@media (max-width: 767px) {
  /* お知らせなしスマホ */
  #restock,
  #pickup,
  #birthday,
  #shop {
    scroll-margin-top: 72px !important;
  }
  /* お知らせありスマホ */
  header:has(.header_news) ~ main #restock,
  header:has(.header_news) ~ main #pickup,
  header:has(.header_news) ~ main #birthday,
  header:has(.header_news) ~ main #shop {
    scroll-margin-top: 104px !important;
  }
}
/* サブページ */
#anchor-itemlist, #anchor-search {
  scroll-margin-top: 118px;
}
@media (max-width: 767px) {
  #anchor-itemlist, #anchor-search {
    scroll-margin-top: 72px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #564F5C;
  background: #FAEEFB;
}
body.js-no_scroll {
  overflow: hidden;
}
body.js-no_scroll:before {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #B36DC4;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #B36DC4;
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

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

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

:root {
  scroll-behavior: auto !important;
}

ul, dl, li, dt, dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* main */
main {
  padding-top: 118px; /* お知らせがない時の高さ */
}
@media (max-width: 767px) {
  main {
    padding-top: 72px; /* お知らせなしスマホ */
  }
}
main::before {
  content: "";
  background: #FAEEFB url(../img/bg.jpg) no-repeat center;
  background-size: cover;
  position: fixed;
  inset: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  z-index: -2;
}

header:has(.header_news) + main {
  padding-top: 155px; /* お知らせがある時の高さ */
}
@media (max-width: 767px) {
  header:has(.header_news) + main {
    padding-top: 104px; /* お知らせありスマホ */
  }
}

h2 {
  text-align: center;
  font-size: 24px;
  color: #B36DC4;
  margin-bottom: 0;
  padding-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 767px) {
  h2 {
    font-size: 18px;
    padding-bottom: 20px;
  }
}
h2.h2_bold {
  font-weight: 700;
}

section {
  padding: 60px 0;
}
@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}

.topics_box {
  position: relative;
}
.topics_box .topics_new {
  z-index: 1;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  background-color: #F192A5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  padding-top: 3px;
  position: absolute;
}
@media (max-width: 575px) {
  .topics_box .topics_new {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }
}
.topics_box .img_wrap {
  width: 100%;
  aspect-ratio: 1200/630; /* 比率を固定 */
  overflow: hidden; /* はみ出し防止 */
  background: radial-gradient(circle, #ffffff 0%, #faeffb 100%);
  border-radius: 5px;
}
.topics_box .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center; /* 中央合わせ */
}

/* 大ボタン */
.btn_box, .btn_box_2, .btn_box_3 {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .btn_box, .btn_box_2, .btn_box_3 {
    width: 90%;
  }
}
.btn_box a, .btn_box_2 a, .btn_box_3 a {
  height: 44px;
  border-radius: 22px;
  display: block;
  font-size: 16px;
  padding-top: 9px;
  position: relative;
  -webkit-box-shadow: 2px 4px 0 0 rgba(241, 146, 165, 0.2);
          box-shadow: 2px 4px 0 0 rgba(241, 146, 165, 0.2);
  font-weight: 700;
}
.btn_box a::after, .btn_box_2 a::after, .btn_box_3 a::after {
  content: "";
  background: url(../img/icon_arrow.png) no-repeat;
  width: 8px;
  height: 8px;
  background-size: 8px 8px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn_box a {
  background: linear-gradient(135deg, #F192A5 0%, #B36DC4 100%);
  color: #fff;
}

.btn_box_2 a {
  background-color: #FFF2F7;
  color: #B36DC4;
  border: 1px solid #B36DC4;
  padding-top: 8px;
}
.btn_box_2 a::after {
  content: "";
  background: url(../img/icon_arrow_pp.png) no-repeat;
  width: 8px;
  height: 8px;
  background-size: 8px 8px;
}

.btn_box_3 a {
  background-color: #fff;
  color: #D77A90;
}
.btn_box_3 a::after {
  content: "";
  background: url(../img/icon_arrow_pk.png) no-repeat;
  width: 8px;
  height: 8px;
  background-size: 8px 8px;
}

/* item */
.item_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 3%;
  line-height: 1.4;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px rgba(212, 199, 219, 0.6);
          box-shadow: 0 0 10px rgba(212, 199, 219, 0.6);
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
}
.item_box:last-child {
  margin-right: 0;
}
.item_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.item_box img {
  margin: 0 auto;
}
.item_box .item_txt {
  padding-top: 10px;
}
.item_box .item_price {
  padding-top: 10px;
  text-align: right;
  color: #564F5C;
}
.item_box .item_title {
  font-size: 12px;
  color: rgba(86, 79, 92, 0.7);
  margin-bottom: 2px;
}
@media (max-width: 575px) {
  .item_box .item_title {
    font-size: 11px;
  }
}
@media (max-width: 575px) {
  .item_box .item_name {
    font-size: 14px;
  }
}
.item_box .btn_wrap {
  margin-top: auto;
}
.item_box .item_btn {
  width: 80%;
  max-width: 200px;
  height: 28px;
  margin: 0 auto;
  text-align: center;
  border-radius: 14px;
  font-size: 13px;
  display: block;
  background-color: #FFF2F7;
  color: #B36DC4;
  border: 1px solid #B36DC4;
  padding-top: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 15px;
  font-weight: 700;
}
.item_box .item_btn::after {
  content: "";
  background: url(../img/icon_arrow_pp.png) no-repeat;
  width: 8px;
  height: 8px;
  background-size: 8px 8px;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .item_box .item_btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .item_box {
    width: 150px;
    margin-right: 10px;
    padding: 10px;
    -webkit-box-shadow: 0 0 5px rgba(212, 199, 219, 0.6);
            box-shadow: 0 0 5px rgba(212, 199, 219, 0.6);
  }
  .item_box:first-child {
    margin-left: 5px;
  }
  .item_box img {
    width: 130px;
    max-width: none !important;
  }
  .item_box .item_txt {
    padding-top: 8px;
    font-size: 13px;
  }
  .item_box .item_price {
    padding-top: 8px;
    font-size: 13px;
  }
  .item_box .item_btn {
    margin-top: 10px;
  }
}

/* 商品一覧（自動出力） */
.StyleF_Frame_ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.StyleF_Item_ {
  margin: 8px;
  padding: 15px;
  width: calc(25% - 16px);
  font-size: 14px;
  -webkit-box-shadow: 0 0 10px rgba(212, 199, 219, 0.6);
          box-shadow: 0 0 10px rgba(212, 199, 219, 0.6);
  background-color: #fff;
  color: #333;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .StyleF_Item_ {
    width: calc(50% - 8px);
    margin: 8px 4px;
    padding: 10px;
    -webkit-box-shadow: 0 0 5px rgba(212, 199, 219, 0.6);
            box-shadow: 0 0 5px rgba(212, 199, 219, 0.6);
  }
}

.StyleF_Item_ .img_ {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.StyleF_Item_ .img_ img {
  width: 100%;
  height: auto;
  position: absolute;
}

.StyleF_Item_ .name_, .StyleF_Item_ .name_ .goods_name_ {
  margin-top: 5px;
  padding-bottom: 0;
  min-height: 46px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: 16px;
}
@media (max-width: 767px) {
  .StyleF_Item_ .name_, .StyleF_Item_ .name_ .goods_name_ {
    font-size: 13px;
  }
}

.StyleF_Item_ .price_ {
  width: 100%;
  text-align: right;
  font-weight: bold;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #564F5C;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .StyleF_Item_ .price_ {
    font-size: 13px;
  }
}

.StyleF_Frame_ .cart_ {
  margin-top: auto;
}

.StyleF_Frame_ .btn_cart_ {
  display: block;
  width: 174px;
  height: auto;
  margin: 10px auto 0;
}

.kv_area {
  padding-bottom: 46px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .kv_area {
    padding-bottom: 36px;
  }
}
.kv_area p {
  color: #B36DC4;
  margin: 0;
  padding: 10px;
}
@media (max-width: 767px) {
  .kv_area p {
    font-size: 12px;
  }
}

/* スライダー */
.slider_wrapper {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 6px 0;
}
.slider_wrapper::before {
  content: "";
  background: url(../img/kv_line.png) repeat-x;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 1;
}
.slider_wrapper::after {
  content: "";
  background: url(../img/kv_line.png) repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slider_wrapper .main_slider {
  width: 100%;
  height: auto;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.slider_wrapper .main_slider.slick-initialized {
  opacity: 1;
  display: block; /* slickの本来の挙動に戻す */
  overflow: visible;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.slider_wrapper .main_slider {
  /* slickになる前の aタグ（スライド要素）の暴走を抑える */
}
.slider_wrapper .main_slider:not(.slick-initialized) > a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 900px; /* imgのmax-widthと合わせておく */
}
@media (max-width: 991px) {
  .slider_wrapper .main_slider:not(.slick-initialized) > a {
    width: 90%; /* 100% - (5% * 2) */
  }
}
@media (max-width: 767px) {
  .slider_wrapper .main_slider:not(.slick-initialized) > a {
    width: 92%; /* 100% - (4% * 2) */
  }
}
.slider_wrapper .main_slider {
  /* 2枚目以降は初期化されるまで隠しておく */
}
.slider_wrapper .main_slider:not(.slick-initialized) > a ~ a {
  display: none;
}
.slider_wrapper .main_slider img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-left: 1px solid #fff;
  aspect-ratio: 1200/630;
}
.slider_wrapper .main_slider .slick-slide {
  opacity: 0.4;
}
.slider_wrapper .main_slider .slick-slide.slick-active {
  opacity: 1;
}
.slider_wrapper .slider-arrow {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  z-index: 1;
}
.slider_wrapper .slider-arrow .slick-prev, .slider_wrapper .slider-arrow .slick-next {
  position: absolute;
  top: calc(50% - 1rem);
  padding: 0;
  border: none;
  font-size: 0;
  line-height: 0;
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 3;
  margin-top: 0;
}
.slider_wrapper .slider-arrow .slick-prev {
  left: 2%;
  background: url(../img/icon-slider-left.png) no-repeat;
  background-size: contain;
}
.slider_wrapper .slider-arrow .slick-next {
  right: 2%;
  background: url(../img/icon-slider-right.png) no-repeat;
  background-size: contain;
}
.slider_wrapper .slick-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
}
@media (max-width: 767px) {
  .slider_wrapper .slick-dots {
    height: 42px;
  }
}
.slider_wrapper .slick-dots > li {
  position: relative;
  margin: 0 10px;
  width: 10px;
  height: 10px;
}
@media (max-width: 767px) {
  .slider_wrapper .slick-dots > li {
    margin: 0 8px;
    width: 8px;
    height: 8px;
  }
}
.slider_wrapper .slick-dots > li:before {
  content: "";
  background-color: #fff;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.slider_wrapper .slick-dots > li.slick-active:before {
  background-color: #F192A5;
}
.slider_wrapper .slick-dots button {
  opacity: 0;
}
.slider_wrapper .slick-dots button:hover {
  cursor: pointer;
}

.topics_sec {
  background-color: #fff;
}
.topics_sec .topics_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .topics_sec .topics_container {
    padding: 0;
  }
}
.topics_sec .topics_container .topics_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .topics_sec .topics_container .topics_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    margin-left: 4%;
    padding-bottom: 10px;
    padding-top: 5px;
    padding-left: 5px;
  }
  .topics_sec .topics_container .topics_area::after {
    content: "";
    display: block;
    min-width: 4%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.topics_sec .topics_container .topics_area .topics_box {
  max-width: 300px;
  margin-right: 3%;
  line-height: 1.4;
}
.topics_sec .topics_container .topics_area .topics_box:last-child {
  margin-right: 0;
}
.topics_sec .topics_container .topics_area .topics_box img {
  border-radius: 5px;
  aspect-ratio: 1200/630;
}
.topics_sec .topics_container .topics_area .topics_box .topics_date {
  color: #807788;
  font-size: 14px;
  padding: 10px 0 4px;
}
.topics_sec .topics_container .topics_area .topics_box .topics_txt {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topics_sec .topics_container .topics_area .topics_box .topics_new {
  width: 40px;
  height: 40px;
  font-size: 11px;
  top: -12px;
  left: -12px;
}
@media (max-width: 767px) {
  .topics_sec .topics_container .topics_area .topics_box .topics_new {
    top: -5px;
    left: -5px;
    width: 36px;
    height: 36px;
    padding-top: 4px;
  }
}
@media (max-width: 767px) {
  .topics_sec .topics_container .topics_area .topics_box {
    margin-right: 20px;
  }
  .topics_sec .topics_container .topics_area .topics_box img {
    width: 240px;
    max-width: none !important;
  }
  .topics_sec .topics_container .topics_area .topics_box .topics_date {
    font-size: 12px;
  }
  .topics_sec .topics_container .topics_area .topics_box .topics_txt {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .topics_sec .btn_box {
    margin-top: 15px;
  }
}

/* 共通 */
.newitem_sec .btn_box, .restock_sec .btn_box {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .newitem_sec .btn_box, .restock_sec .btn_box {
    margin-top: 15px;
  }
}
.newitem_sec .goods_area, .restock_sec .goods_area {
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
}
.newitem_sec .goods_area .StyleF_Item_, .restock_sec .goods_area .StyleF_Item_ {
  margin-top: 0;
  margin-bottom: 0;
}
.newitem_sec .goods_area .StyleF_Item_ .img_ a.goods_img_, .restock_sec .goods_area .StyleF_Item_ .img_ a.goods_img_ {
  display: block;
  width: 100%;
  /* max-width: 200px;
  max-height: 200px; */
  aspect-ratio: 1/1; /* ★ここで縦横比を固定 */
  overflow: hidden;
  margin: 0 auto;
}
.newitem_sec .goods_area .StyleF_Item_ .img_ img.lazy, .restock_sec .goods_area .StyleF_Item_ .img_ img.lazy {
  width: 100%;
  height: 100%;
  /* max-width: 200px;
  max-height: 200px;*/
  -o-object-fit: cover;
     object-fit: cover;
  /* display: block; */
}
@media (max-width: 1399px) {
  .newitem_sec .goods_area, .restock_sec .goods_area {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .newitem_sec .goods_area, .restock_sec .goods_area {
    padding: 0;
  }
  .newitem_sec .goods_area .StyleF_Frame_, .restock_sec .goods_area .StyleF_Frame_ {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    margin-left: 4%;
    padding-bottom: 12px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .newitem_sec .goods_area .StyleF_Frame_ .StyleF_Item_, .restock_sec .goods_area .StyleF_Frame_ .StyleF_Item_ {
    min-width: 40%;
  }
  .newitem_sec .goods_area .StyleF_Frame_::after, .restock_sec .goods_area .StyleF_Frame_::after {
    content: "";
    display: block;
    min-width: 4%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.newitem_sec .goods_area .StyleF_Item_:nth-child(n+5), .restock_sec .goods_area .StyleF_Item_:nth-child(n+5) {
  display: none;
}
@media (max-width: 767px) {
  .newitem_sec .goods_area .StyleF_Item_:nth-child(n+5), .restock_sec .goods_area .StyleF_Item_:nth-child(n+5) {
    display: block;
  }
}
.newitem_sec .goods_area .name_, .restock_sec .goods_area .name_ {
  margin-top: 10px;
}
.newitem_sec .goods_area .rdt_, .newitem_sec .goods_area .comment_, .restock_sec .goods_area .rdt_, .restock_sec .goods_area .comment_ {
  display: none;
}
.newitem_sec .goods_area, .restock_sec .goods_area {
  /* SPボタン */
}
.newitem_sec .goods_area .cart_btn_, .restock_sec .goods_area .cart_btn_ {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 70%;
  border-radius: 20px;
  height: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto 0;
  font-size: 14px;
  font-weight: 700;
}
.newitem_sec .goods_area .cart_btn_.order_, .restock_sec .goods_area .cart_btn_.order_ {
  background: #FFF2F7 url(../img/icon_arrow_pp.png) no-repeat 93% center;
  background-size: 8px;
  border: 1px solid #B36DC4;
  color: #B36DC4;
}
.newitem_sec .goods_area .cart_btn_.closed_, .restock_sec .goods_area .cart_btn_.closed_ {
  background-color: #E6E6E6;
  color: #aaa;
}
.newitem_sec .goods_area .cart_btn_.reservation_, .restock_sec .goods_area .cart_btn_.reservation_ {
  background: #B36DC4 url(../img/icon_arrow.png) no-repeat 93% center;
  background-size: 8px;
  border: none;
  color: #fff;
}
@media (max-width: 991px) {
  .newitem_sec .goods_area .cart_btn_, .restock_sec .goods_area .cart_btn_ {
    width: 100%;
    height: 28px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .newitem_sec .goods_area .cart_btn_, .restock_sec .goods_area .cart_btn_ {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .newitem_sec .goods_area .cart_btn_, .restock_sec .goods_area .cart_btn_ {
    width: 100%;
  }
}

/* 再入荷商品 */
.restock_sec {
  background-color: #FAEEFB;
}

.chara_sec {
  background-color: #fff;
}
.chara_sec ul {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.chara_sec ul img {
  width: 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 991px) {
  .chara_sec ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .chara_sec ul {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .chara_sec ul {
    margin-bottom: 22px;
    padding: 0 8px;
    gap: 16px;
  }
}
.chara_sec .chara_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .chara_sec .chara_btn {
    display: block;
    width: 100%;
  }
  .chara_sec .chara_btn .btn_box_2 {
    margin-bottom: 20px;
  }
}

.pickup_sec {
  background-color: rgba(255, 219, 226, 0.3);
}
.pickup_sec h2 {
  color: #D77A90;
  font-size: 16px;
}
@media (max-width: 767px) {
  .pickup_sec h2 {
    font-size: 14px;
  }
}
.pickup_sec .sec_ti {
  text-align: center;
  font-size: 70px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  color: #D77A90;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .pickup_sec .sec_ti {
    font-size: 45px;
  }
}
.pickup_sec .pickup_area .item_box {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-radius: 15px;
  padding: 25px 15px;
  position: relative;
  background: rgb(255, 255, 255);
}
.pickup_sec .pickup_area .item_box::before {
  content: "";
  background: url(../img/kirakira_pk_l.png) no-repeat;
  position: absolute;
  background-size: 90px 198px;
  width: 90px;
  height: 198px;
  top: 32%;
  left: 6%;
}
.pickup_sec .pickup_area .item_box::after {
  content: "";
  background: url(../img/kirakira_pk_r.png) no-repeat;
  position: absolute;
  background-size: 90px 198px;
  width: 90px;
  height: 198px;
  top: 8%;
  right: 6%;
}
@media (max-width: 575px) {
  .pickup_sec .pickup_area .item_box {
    padding-top: 20px;
  }
  .pickup_sec .pickup_area .item_box::before {
    background-size: 14.5vw 32vw;
    width: 14.5vw;
    height: 32vw;
    top: 32%;
    left: 6%;
  }
  .pickup_sec .pickup_area .item_box::after {
    background-size: 14.5vw 32vw;
    width: 14.5vw;
    height: 32vw;
    top: 8%;
    right: 6%;
  }
}
.pickup_sec .pickup_area .item_box img {
  max-width: 240px;
  height: auto;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .pickup_sec .pickup_area .item_box img {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .pickup_sec .pickup_area .item_box img {
    margin-bottom: 10px;
  }
}
.pickup_sec .pickup_area .item_box .item_name {
  color: #D77A90;
}
.pickup_sec .pickup_area .item_box .item_btn {
  color: #D77A90;
  border-color: #D77A90;
}
.pickup_sec .pickup_area .item_box .item_btn::after {
  background: url(../img/icon_arrow_pk.png) no-repeat;
  background-size: 8px 8px;
}
.pickup_sec .pickup_area {
  /* ランダムボックス 最初は全部消しておく */
}
.pickup_sec .pickup_area .random_box {
  display: none;
}

.birthday_sec {
  background: #FAEEFB url(../img/pattern.png) top left;
}
.birthday_sec h2 {
  font-size: 16px;
}
@media (max-width: 767px) {
  .birthday_sec h2 {
    font-size: 14px;
  }
}
.birthday_sec .sec_ti {
  text-align: center;
  font-size: 70px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  color: #B36DC4;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .birthday_sec .sec_ti {
    font-size: 40px;
  }
}
.birthday_sec .birthday_area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 20px;
}
@media (max-width: 991px) {
  .birthday_sec .birthday_area {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .birthday_sec .birthday_area {
    gap: 12px;
  }
}
.birthday_sec .birthday_area .item_box {
  position: relative;
  width: 100%;
  margin: 25px auto 0;
  text-align: center;
  padding-top: 40px;
  background: rgb(255, 255, 255);
}
.birthday_sec .birthday_area .item_box::before {
  content: "";
  background: url(../img/kirakira_pp_l.png) no-repeat;
  position: absolute;
  background-size: 40px 52px;
  width: 40px;
  height: 52px;
  top: 145px;
  left: 8%;
}
.birthday_sec .birthday_area .item_box::after {
  content: "";
  background: url(../img/kirakira_pp_r.png) no-repeat;
  position: absolute;
  background-size: 35px 48px;
  width: 35px;
  height: 48px;
  top: 45px;
  right: 8%;
}
@media (max-width: 1199px) {
  .birthday_sec .birthday_area .item_box::before {
    background-size: 32px 41.6px;
    width: 32px;
    height: 41.6px;
    top: 150px;
    left: 5%;
  }
  .birthday_sec .birthday_area .item_box::after {
    background-size: 28px 38.4px;
    width: 28px;
    height: 38.4px;
    top: 40px;
    right: 5%;
  }
}
@media (max-width: 991px) {
  .birthday_sec .birthday_area .item_box::before {
    background-size: 40px 52px;
    width: 40px;
    height: 52px;
    top: 145px;
    left: 8%;
  }
  .birthday_sec .birthday_area .item_box::after {
    background-size: 35px 48px;
    width: 35px;
    height: 48px;
    top: 45px;
    right: 8%;
  }
}
@media (max-width: 767px) {
  .birthday_sec .birthday_area .item_box::before {
    top: 118px;
    left: 8%;
  }
  .birthday_sec .birthday_area .item_box::after {
    top: 42px;
    right: 8%;
  }
}
@media (max-width: 575px) {
  .birthday_sec .birthday_area .item_box {
    padding-top: 35px;
  }
  .birthday_sec .birthday_area .item_box::before {
    background-size: 6vw 7.8vw;
    width: 6vw;
    height: 7.8vw;
    top: 130px;
    left: 5%;
  }
  .birthday_sec .birthday_area .item_box::after {
    background-size: 5.25vw 7.2vw;
    width: 5.25vw;
    height: 7.2vw;
    top: 38px;
    right: 5%;
  }
}
@media (max-width: 375px) {
  .birthday_sec .birthday_area .item_box {
    padding-top: 28px;
  }
  .birthday_sec .birthday_area .item_box .item_btn {
    font-size: 12px;
    padding-top: 4px;
  }
}
.birthday_sec .birthday_area .item_box img {
  max-width: 160px;
  height: auto;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
}
@media (max-width: 575px) {
  .birthday_sec .birthday_area .item_box img {
    margin-bottom: 10px;
  }
}
@media (max-width: 375px) {
  .birthday_sec .birthday_area .item_box img {
    width: 80%;
  }
}
.birthday_sec .birthday_area .item_box .date {
  background: url(../img/ribbon_pc.png) no-repeat center top;
  background-size: 200px 50px;
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 200px;
  height: 50px;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 32px;
  padding-top: 3px;
}
@media (max-width: 575px) {
  .birthday_sec .birthday_area .item_box .date {
    background: url(../img/ribbon_sp.png) no-repeat center top;
    background-size: 138px 45px;
    width: 138px;
    height: 45px;
    top: -20px;
    font-size: 28px;
  }
}
@media (max-width: 375px) {
  .birthday_sec .birthday_area .item_box .date {
    background-size: 120px auto;
    width: 120px;
    height: auto;
    padding-top: 1px;
  }
}

.shop_sec {
  text-align: center;
  background-color: #fff;
}
.shop_sec .shop_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FAEEFB;
  padding: 20px 20px 40px;
}
.shop_sec .shop_inner img {
  max-width: 500px;
  width: 80%;
}
.shop_sec .shop_inner p {
  margin: 20px 0 30px;
}
@media (max-width: 767px) {
  .shop_sec .shop_inner {
    padding: 4% 4% 8%;
    font-size: 14px;
  }
  .shop_sec .shop_inner p {
    margin: 4% 0 6%;
  }
}

/* 共通 */
.subpage main {
  padding-top: 118px;
}
@media (max-width: 767px) {
  .subpage main {
    padding-top: 72px;
  }
}
.subpage main::before {
  background-image: none;
  background-color: #fff;
}

.sub_h2 {
  text-align: center;
  color: #B36DC4;
}
.sub_h2 p {
  font-size: 70px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sub_h2 p {
    font-size: 45px;
  }
}
.sub_h2 h2 {
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sub_h2 h2 {
    font-size: 14px;
  }
}

.pankuzu {
  border-top: 1px solid #F3E8F8;
  border-bottom: 1px solid #F3E8F8;
  padding: 15px 0;
}
.pankuzu ul {
  font-size: 14px;
}
.pankuzu ul li {
  display: inline;
}
.pankuzu ul li:not(:last-of-type)::after {
  content: " > ";
  margin: 0 0.5em;
  vertical-align: top;
}
@media (max-width: 767px) {
  .pankuzu {
    padding: 12px 0;
  }
  .pankuzu ul {
    font-size: 12px;
  }
}

.search_box {
  position: relative;
  color: #B36DC4;
  background-color: #FAEEFB;
  padding: 30px 40px 70px;
}
@media (max-width: 575px) {
  .search_box {
    font-size: 14px;
    padding: 15px 15px 40px;
  }
}
.search_box .search_filter_wrap {
  height: 40px;
}
.search_box {
  /* キーワードサーチ */
}
.search_box #azs-keyword {
  position: relative;
  width: 48%;
}
@media (max-width: 991px) {
  .search_box #azs-keyword {
    width: 100%;
  }
}
.search_box #azs-keyword input#filter-keyword {
  border: 1px solid #ccc;
  width: 100%;
  height: 40px;
  border-radius: 6px;
  padding: 8px 40px 8px 8px;
  font-size: 16px;
  font-weight: normal;
}
.search_box #azs-keyword input.block-global-search--submit.btn.btn-default {
  position: absolute;
  top: 0;
  right: -1px;
  width: 40px;
  height: 40px;
  background: #B36DC4;
  border-radius: 0 6px 6px 0;
  border: none;
  border-left: 1px solid #bfbfbf;
  padding: 9px 9px 9px 8px;
}
.search_box {
  /* 絞り込みキーワード */
}
.search_box .keywords_area {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2カラム構成にする */
  width: 100%;
  padding: 20px 0 30px;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .search_box .keywords_area {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .search_box .keywords_area {
    padding-bottom: 15px;
    margin-bottom: 32px;
  }
}
.search_box .keywords_area .keywords_inner {
  grid-column: 2; /* 2列目（右側）に配置 */
  justify-self: end; /* 右寄せ */
  width: 96%; /* 親の48%相当にするなら、2カラム(50%)中の96%程度 */
  margin-top: -25px;
}
.search_box .keywords_area .keywords_inner.is-loaded {
  margin-top: -25px;
}
@media (max-width: 991px) {
  .search_box .keywords_area .keywords_inner {
    grid-column: 1;
    width: 100%;
    margin-top: 40px;
  }
  .search_box .keywords_area .keywords_inner.is-loaded {
    margin-top: 40px !important;
  }
}
@media (max-width: 575px) {
  .search_box .keywords_area {
    padding: 15px 0;
  }
}
.search_box .keywords_area p.keywords_ti {
  font-weight: 600;
  margin-bottom: 8px;
}
.search_box .keywords_area .keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.search_box .keywords_area .keywords li a {
  border: 1px solid #B36DC4;
  background-color: #fff;
  padding: 0.25em 0.8em 0.3em;
  display: inline-block;
  border-radius: 100vh;
}
.search_box {
  /* 在庫あり */
}
.search_box .box-stock {
  position: absolute;
  bottom: 35px;
  left: 40px;
}
@media (max-width: 575px) {
  .search_box .box-stock {
    left: 15px;
    bottom: 25px;
  }
}
.search_box {
  /* リセットbtn位置 */
}
.search_box #left-menu-contents-selected-filter {
  margin-bottom: 0px;
}
.search_box .box-button {
  position: absolute;
  bottom: 20px;
  right: 180px;
}
@media (max-width: 575px) {
  .search_box .box-button {
    right: 140px;
    bottom: 15px;
  }
}
.search_box {
  /* 絞り込み検索btn位置 */
}
.search_box .filter-price {
  position: absolute;
  bottom: 20px;
  right: 40px;
}
@media (max-width: 575px) {
  .search_box .filter-price {
    right: 15px;
    bottom: 15px;
  }
}
.search_box {
  /* btn見た目 */
}
.search_box .filter-C input[type=checkbox] {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  margin-right: 10px;
}
.search_box .button-reset, .search_box .button-search {
  font-weight: 700;
  border: none;
  border-radius: 100vh;
  line-height: 1;
  padding: 1em;
  margin-left: 10px;
}
.search_box .button-reset {
  color: #B36DC4;
  background-color: #fff;
}
.search_box .button-search {
  color: #fff;
  background-color: #B36DC4;
}

/* 再入荷商品はこちら */
.restock_link {
  text-align: center;
  margin-top: 20px;
}
.restock_link a {
  text-decoration: underline;
  position: relative;
  padding-right: 20px;
}
.restock_link a:hover {
  text-decoration: none;
}
.restock_link a::after {
  content: "";
  background: url(../img/icon_arrow_pp.png) no-repeat;
  width: 8px;
  height: 8px;
  background-size: 8px 8px;
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 575px) {
  .restock_link a {
    font-size: 14px;
  }
}

/* 左メニュー絞り込み */
.left-menu-contents-filter div {
  padding: 0;
}

#left-menu-contents-selected-filter {
  background-color: transparent !important;
}

/* 作品タイトル・キャラクターから探すボタン */
#anchor-search .chara_btn {
  margin: 20px auto;
  width: 640px;
  max-width: 100%; /* 親要素からはみ出さないように */
  /* PC用のアスペクト比を固定 */
  aspect-ratio: 640/140;
}
#anchor-search .chara_btn a, #anchor-search .chara_btn img {
  display: block;
  width: 100%;
  height: 100%; /* 親のaspect-ratioに従わせるために100%にするのがコツ */
  -o-object-fit: contain;
     object-fit: contain; /* 画像が歪まないように保護 */
}
@media (max-width: 767px) {
  #anchor-search .chara_btn {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  #anchor-search .chara_btn {
    /* スマホ用のアスペクト比を固定 */
    aspect-ratio: 680/195;
  }
}

.pagination > li.page-item.active > a {
  font-weight: bold;
  color: #B36DC4;
}

#hitCount {
  color: #B36DC4;
  font-size: 22px;
}

.navipage_.top_ {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 8px 0;
}
@media (max-width: 575px) {
  .navipage_.top_ {
    display: block;
  }
}

.pagination > * {
  margin-left: 2px;
  border: 1px solid #D887DE;
  line-height: 1.4;
  padding: 2px 7px;
  background-color: #fff;
}

@media (max-width: 441px) {
  .navipage_sum_ {
    font-size: 11px !important;
  }
  .pagination {
    padding-right: 1px;
  }
}
@media (max-width: 575px) {
  .navipage_text {
    display: block;
  }
}
.message_ {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .message_ {
    font-size: 14px;
  }
}
.message_ strong {
  color: #564F5C;
}

/* ローディングの位置 */
.nowloading {
  display: block !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  width: 100%;
  min-height: 300px !important;
  padding-top: 50px;
}

/* 商品検索（右下固定） */
.search_btn {
  display: block;
  position: fixed;
  right: 40px;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  font-weight: 700;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search_btn.is-show {
  opacity: 1;
  visibility: visible;
}
.search_btn.is-stopped {
  position: absolute;
  bottom: auto;
}
@media (max-width: 767px) {
  .search_btn {
    right: 20px;
  }
}
@media (max-width: 575px) {
  .search_btn {
    right: 10px;
    bottom: 25px;
  }
}
.search_btn a {
  width: 160px;
  height: 64px;
  border-radius: 32px;
  display: block;
  font-size: 20px;
  padding-top: 16px;
  padding-left: 24px;
  position: relative;
  background: linear-gradient(135deg, #F192A5 0%, #B36DC4 100%);
  color: #fff;
  -webkit-box-shadow: 2px 4px 0 0 rgba(241, 146, 165, 0.2);
          box-shadow: 2px 4px 0 0 rgba(241, 146, 165, 0.2);
}
.search_btn a::after {
  content: "";
  background: url(../img/icon-search_white.png) no-repeat;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .search_btn a {
    font-size: 16px;
    width: 115px;
    height: 44px;
    border-radius: 22px;
    padding-top: 9px;
    padding-left: 16px;
  }
  .search_btn a::after {
    right: 0px;
  }
}

.subpage h3 {
  color: #B36DC4;
  font-size: 20px;
  background: url(../img/h3_line.png) repeat-x left bottom;
  padding-bottom: 12px;
  margin: 10px 0 30px;
  width: 100%;
}
@media (max-width: 575px) {
  .subpage h3 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

.chara_list {
  text-align: center;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .chara_list {
    margin-bottom: 30px !important;
  }
}
.chara_list div {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .chara_list div {
    font-size: 12px;
  }
}

/* タブ */
.tab_wrap {
  background: url(../img/tab_arrow.png) no-repeat center bottom;
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .tab_wrap {
    margin-bottom: 15px;
  }
}
.tab_wrap .tab_inner {
  background-color: #FAEEFB;
  padding: 2%;
}
.tab_wrap .tab_inner ul {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  margin: 0;
  padding: 0;
  gap: 10px;
}
.tab_wrap .tab_inner ul li {
  cursor: pointer;
  border: 1px solid #B36DC4;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#FFF2F7));
  background: linear-gradient(to bottom, #ffffff 0%, #FFF2F7 100%);
  border-radius: 10px;
  padding: 0.5em;
  color: #B36DC4;
}
.tab_wrap .tab_inner ul li.active {
  background: #B36DC4;
  color: #FAEEFB;
}
.tab_wrap .tab_inner ul li.none {
  cursor: default;
  border: none;
  background: #E6E6E6;
  padding: 0.5em;
  color: #aaa;
}
@media (max-width: 767px) {
  .tab_wrap .tab_inner {
    padding: 4%;
  }
  .tab_wrap .tab_inner ul {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 375px) {
  .tab_wrap .tab_inner {
    font-size: 14px;
  }
}

.tab_select, .tab_select h3 {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .tab_select, .tab_select h3 {
    margin-bottom: 10px;
  }
}

/* アコーディオン */
.accordion_wrap .accordion {
  border-bottom: 1px solid #B36DC4;
  line-height: 1.4;
}
.accordion_wrap .accordion .accordion_header {
  cursor: pointer;
  position: relative;
  color: #B36DC4;
  padding: 20px 40px 20px 10px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion_wrap .accordion .accordion_header img {
  width: 75px;
  height: auto;
  margin-right: 10px;
}
.accordion_wrap .accordion .accordion_header::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 20px;
  height: 1px;
  background-color: #B36DC4;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion_wrap .accordion .accordion_header::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 20px;
  height: 1px;
  background-color: #B36DC4;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion_wrap .accordion .accordion_header.open {
  background-color: #FFF2F7;
}
.accordion_wrap .accordion .accordion_header.open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion_wrap .accordion .accordion_header.open::after {
  opacity: 0;
}
.accordion_wrap .accordion_content {
  display: none;
}
.accordion_wrap .accordion_content .select_all {
  font-size: 14px;
  padding: 20px 30px 20px 10px;
  border-bottom: 1px dashed #B36DC4;
  position: relative;
  margin-bottom: 20px;
}
.accordion_wrap .accordion_content .select_all::after {
  content: "";
  position: absolute;
  background: url(../img/icon_arrow_pp.png) no-repeat;
  background-size: 8px;
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion_wrap .accordion_content .select_all a {
  display: block;
}

.subpage .topics_sec {
  line-height: 1.4;
}
.subpage .topics_sec .topics_box .topics_new {
  top: -12px;
  left: 12px;
}
@media (max-width: 575px) {
  .subpage .topics_sec .topics_box .topics_new {
    left: 0;
  }
}
.subpage .topics_sec img {
  border-radius: 5px;
}
.subpage .topics_sec .topics_date {
  color: #807788;
  font-size: 14px;
  padding: 10px 0 4px;
}
.subpage .topics_sec .topics_txt {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .subpage .topics_sec .topics_date {
    font-size: 12px;
  }
  .subpage .topics_sec .topics_txt {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .subpage .topics_sec {
    width: 96%;
    margin: 0 auto;
  }
}

/* 記事 */
.topics_article {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FAEEFB;
  padding: 60px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .topics_article {
    padding: 6%;
    font-size: 14px;
  }
}
.topics_article .article_ti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .topics_article .article_ti {
    padding-bottom: 6%;
    margin-bottom: 6%;
  }
}
.topics_article .article_ti h3 {
  color: #564F5C;
  font-size: 18px;
  background: none;
  padding-bottom: 0;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .topics_article .article_ti h3 {
    font-size: 16px;
  }
}
.topics_article .article_ti .date_area {
  background-color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #F192A5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  margin-right: 20px;
}
.topics_article .article_ti .date_area .date_area_y {
  font-size: 12px;
}
.topics_article .article_ti .date_area .date_area_d {
  font-size: 18px;
  margin-top: 3px;
}
@media (max-width: 767px) {
  .topics_article .article_ti .date_area {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
  .topics_article .article_ti .date_area .date_area_y {
    font-size: 11px;
  }
  .topics_article .article_ti .date_area .date_area_d {
    font-size: 15px;
    margin-top: 2px;
  }
}
.topics_article .article_cont p, .topics_article .article_cont ul, .topics_article .article_cont hr {
  margin-bottom: 2em;
}
.topics_article .article_cont img {
  border-radius: 0;
  margin-bottom: 2em;
  width: auto;
  max-width: 100%;
  display: block;
}
.topics_article .article_cont img.img-center {
  margin: 0 auto 2em;
}
.topics_article .article_cont .red {
  color: #D77A90;
}
.topics_article .article_cont li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 8px;
}
.topics_article .article_cont li::before {
  content: "・";
  position: absolute;
  top: 0px;
  left: 0px;
}
.topics_article .article_cont ul.list_att li {
  list-style: none;
}
.topics_article .article_cont ul.list_att li::before {
  content: "※";
  color: #D77A90;
  position: absolute;
  top: 0px;
  left: 0px;
}

footer {
  background: #FAEEFB url(../img/bg.jpg) no-repeat center/cover;
  position: relative;
  padding: 40px 0;
  z-index: 1;
}
footer .footer_bnr {
  max-width: 1040px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
footer .footer_bnr li {
  width: 25%;
  padding: 0 10px 20px;
}
@media (max-width: 767px) {
  footer .footer_bnr {
    margin-bottom: 24px;
  }
  footer .footer_bnr li {
    width: 50%;
    padding: 0 8px 16px;
  }
}
footer .footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90px;
  margin: 0 auto 40px;
}
footer .footer_sns img {
  width: 30px;
  height: auto;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #807788;
}
@media (max-width: 767px) {
  footer .copyright {
    margin-bottom: 40px;
  }
}
footer .footer_pagetop {
  position: absolute;
  right: 40px;
  bottom: 25px;
}
@media (max-width: 767px) {
  footer .footer_pagetop {
    position: static;
    width: 90px;
    margin: 0 auto;
  }
}
footer .footer_pagetop .link-pageup {
  position: relative;
  width: 116px;
  height: 116px;
  display: block;
}
footer .footer_pagetop .link-pageup::after {
  content: "";
  background: url(../img/pagetop_circle.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 116px;
  height: 116px;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}
footer .footer_pagetop .link-pageup img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  footer .footer_pagetop .link-pageup {
    width: 90px;
    height: 90px;
  }
  footer .footer_pagetop .link-pageup::after {
    width: 90px;
    height: 90px;
    background-size: 90px 90px;
  }
  footer .footer_pagetop .link-pageup img {
    width: 18px;
    height: 26px;
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
header {
  position: relative;
}
header .header_news {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 6px;
  font-weight: 500;
  white-space: nowrap; /* 改行させない */
  overflow: hidden; /* はみ出た分を隠す */
  text-overflow: ellipsis; /* 三点リーダーにする */
  display: block;
}
header .header_news::before {
  content: "";
  background-color: #D887DE;
  opacity: 0.8;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
header .header_news a {
  color: #fff;
  display: inline;
  text-decoration: underline;
}
@media (max-width: 767px) {
  header .header_news {
    font-size: 13px;
  }
}
header .header_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header_icon img {
  width: 30px;
  height: auto;
}
header .img-logo {
  display: block;
  width: 280px;
}
@media (max-width: 767px) {
  header .img-logo {
    width: 160px;
  }
}
@media (max-width: 375px) {
  header .img-logo {
    width: clamp(128px, 40%, 160px);
  }
}

.header {
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.header.hide {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

nav.navbar {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100vw;
  padding: 5px 0;
  background: #FAEEFB url(../img/bg.jpg) no-repeat top/cover;
  /* おしらせあり */
}
nav.navbar:has(.header_news) {
  padding: 42px 0 5px;
}
@media (max-width: 767px) {
  nav.navbar:has(.header_news) {
    padding: 38px 0 5px;
  }
}
nav.navbar .container-fluid {
  padding: 0 40px;
  height: 108px;
}
@media (max-width: 767px) {
  nav.navbar .container-fluid {
    padding: 0 4%;
    height: 62px;
  }
}
nav.navbar .container-fluid a.btn.btn-link {
  padding: 0;
  border: 0 !important;
}
nav.navbar {
  /* スマホのみメニューの青い枠を消す */
}
@media (hover: none) {
  nav.navbar .btn-link:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
nav.navbar {
  /* ハンバーガーメニュー中 */
}
nav.navbar .offcanvas {
  background-color: #D887DE;
  max-width: 96%;
}
nav.navbar .offcanvas .offcanvas-header {
  padding: 20px;
  position: relative;
}
nav.navbar .offcanvas .offcanvas-header .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M1.5 1.5l13 13M1.5 14.5l13-13' stroke='%23ffffff' stroke-width='1' stroke-linecap='round'/%3e%3c/svg%3e");
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 !important;
  padding: 0 !important;
}
nav.navbar .offcanvas .offcanvas-header .btn-close:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
nav.navbar .offcanvas .offcanvas-body {
  padding: 20px 40px;
}
nav.navbar .offcanvas .offcanvas-body .header_menu {
  padding: 0;
  margin: 0;
}
nav.navbar .offcanvas .offcanvas-body .header_menu li {
  border-bottom: 1px solid #fff;
  padding: 20px 0 10px;
}
nav.navbar .offcanvas .offcanvas-body .header_menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
nav.navbar .offcanvas .offcanvas-body .header_menu li a img.icon_arrow {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 10px;
}
nav.navbar .offcanvas .offcanvas-body .header_menu li span img {
  width: 20px;
  margin-right: 10px;
  margin-top: -0.3em;
}
nav.navbar .offcanvas .offcanvas-body .header_menu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
nav.navbar .offcanvas .offcanvas-body .header_menu2 .header_logo_toei {
  width: 120px;
}
nav.navbar .offcanvas .offcanvas-body .header_menu2 .header_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav.navbar .offcanvas .offcanvas-body .header_menu2 .header_sns li {
  width: 30px;
  margin-left: 20px;
}