@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');

/* ============================================================================
   
   main.css 構成
   
   ============================================================================
   
   このファイルは以下の構成で管理されています。
   
   【通常スタイル】（ファイル前半）
     - CSS変数定義
     - ボタン・共通要素
     - ヘッダー・フッター
     - slick スライダー
     - トップページ
     - 一覧ページ
     - 詳細ページ
     - 4コマ漫画
     - カルーセル
     - 店舗一覧・日本地図
     - モバイルボトムナビ（初期非表示）
   
   【レスポンシブ対応】（ファイル末尾にまとめて配置）
     全てのメディアクエリはファイル末尾に集約されています。
     ブレークポイント大→小の順で配置：
   
     1. PC表示 (769px以上)        - ロゴサイズ
     2. タブレット以上 (600px以上)  - サムネイル
     3. 1400px以下               - セクションタイトル、モーダル
     4. 1200px以下               - コンテナ幅、YouTube・スライダー高さ
     5. 768px以下 ★メイン         - 主要なスマホ対応全般
        (5-1〜5-12のサブセクションで詳細分類)
     6. 540px以下                - ページボタン、カルーセル、メーカーナビ
     7. 400px以下                - 例示ブロック余白
     8. 380px以下                - タブボタン微調整
   
   ============================================================================ */

:root {
  --global--color-main: #17274D;
  --global--color-white: #fff;
  --leading-trim: calc((1em - 1lh) / 2);
  --font-family-latin: 'Oswald';
  --font-family-japanese: 'Noto Sans JP';
  --font-family-base: var(--font-family-latin), var(--font-family-japanese), sans-serif;
  --bright-color: rgba(255, 255, 255, 0.917);
  --dark-color: rgba(82, 82, 82, 0.464);
  --shadow-brightcolor: #fff;
  --shadow-darkcolor: #c6c9cc;
  --border-w-shadow: 5px 5px 5px rgba(255, 255, 255, 0.9),
    -5px 5px 5px rgba(255, 255, 255, 0.9), 5px -5px 5px rgba(255, 255, 255, 0.9),
    -5px -5px 5px rgba(255, 255, 255, 0.9);
}

body {
  font-family: var(--font-family-base);
}

.entry-footer {
  display: none;
}

.site-content {
  z-index: -1;
  margin-top: 107px;
  background: #fafafa;
}

a,
a:hover {
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2),
    -webkit-transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
}

a:hover {
  transition: all 0.3s ease;
  opacity: 0.8;
}

li {
  list-style: none;
}

select {
  line-height: 1;
  border: solid 2px var(--global--color-main);
}

#page {
  overflow: hidden;
}

#primary {
  background: url(assets/images/top_bg.png);
  background-size: 100%;
}

::selection {
  background: var(--global--color-main);
  color: var(--global--color-white);
}

.site-main {
  max-width: 1200px;
  padding-bottom: 100px;
}

.site-main>* {
  padding-top: 0px;
  padding-bottom: 20px;
}

*:focus {
  outline: none;
}

.sp {
  display: none;
}

/*■■■■■■■■■■■■■■■■■■■

  ボタン

■■■■■■■■■■■■■■■■■■■*/

.btn {
  justify-content: center;
  width: 300px;
  margin: auto;
  margin-top: 40px;
  cursor: pointer;
  background: var(--global--color-white);
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease,
    -webkit-transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
  text-align: center;
  border: solid 2px var(--global--color-main);
  border-radius: 35px;
  box-shadow: 0 3px 0 0 #62808a;
}

.btn:hover {
  background: linear-gradient(180deg, #0870F8 0%, #17274D 100%) !important;
}

.btn:hover,
.new_prize>a:not(.title):hover,
.new_prize>.tab_item:hover,
.new-prize-week>.a:not(title):hover,
.new-prize-week>.tab_week:hover {
  background: var(--global--color-main);
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease,
    -webkit-transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
  border: solid 2px var(--global--color-white);
}

.site-main .btn a {
  color: #000;
}

.site-main .btn:hover a {
  color: var(--global--color-white);
}

.link__btn {
  padding: 10px;
  font-weight: bold;
}

.btn a .link__btn {
  /* フォントカラーにグラデーションを適用 */
  background: linear-gradient(90deg, #17274D 0%, #0870F8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn:hover a .link__btn {
  /* グラデーションテキストを無効化して白色を適用 */
  -webkit-text-fill-color: var(--global--color-white);
  color: var(--global--color-white);
  background: none;
}

/*■■■■■■■■■■■■■■■■■■■

  ヘッダー・フッター

■■■■■■■■■■■■■■■■■■■*/

/* header */

.site-header {
  position: fixed;
  z-index: 100;
  width: 100%;
}

.site-header .top-header {
  position: relative;
  padding: 10px 2%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: linear-gradient(91deg, rgba(255, 255, 255, 0.60) 0.35%, rgba(255, 255, 255, 0.40) 100%);
  box-shadow: 0 0 10px 0 rgba(8, 112, 248, 0.25);
  backdrop-filter: blur(10px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  margin: 0;
}

.site-header .bottom-header {
  background: #000;
}

/* footer */

.site-footer {
  background: var(--global--color-main);
}

.footer__top,
.footer__bottom {
  color: var(--global--color-white);
}

.footer__top {
  position: relative;
  padding: 50px 0;
  background: url(assets/images/bg_line.png);
}

.footer__bottom {
  padding: 5px 0;
  background: var(--global--color-black);
  text-align: center;
}

.footer__wrap {
  max-width: 1200px;
  font-weight: bold;
  margin: 0 auto;
}

.footer__top .charactor {
  position: absolute;
  top: -130px;
  width: 150px;
  height: 100%;
  right: 15%;
  background: url(../twentytwentyone/assets/images/modoru_robo.webp);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.link__list {
  display: flex;
  justify-content: center;
}

.link__list a {
  margin: 5px 10px;
  padding-right: 15px;
  color: var(--global--color-white);
  border-right: solid 2px;
  font-weight: bold;
}

.link__list a:last-child {
  border-right: 0px;
}

/* 検索バー */

#wrap {
  display: flex;
  float: right;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* top: 10px;
  right: 10px; */
  /* width: 30%; */
  padding: 0;
}

.search-submit:focus {
  border-color: #4285f4;
}

.search-submit::placeholder {
  color: #aaa;
}

input#search_submit.pc {
  width: 350px;
  max-width: 100%;
  padding: 8px 40px;
  border-radius: 25px;
  /* border: 2px solid #ccc; */
  font-size: 0.9rem;
  border: none;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

#search_submit.search-submit {
  background-image: url(assets/images/search_icon.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 20px 20px;
}

#search-modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
}

#search-modal.show {
  display: block;
  opacity: 1;
}

#search-modal .search-form {
  display: flex;
}

#search-modal .modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  padding: 0;
  background: #000;
  border-radius: 50%;
}

#search-modal .modal-close:hover {
  opacity: 1;
}

#search-modal .modal-close::before,
#search-modal .modal-close::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(15% - 2px);
  left: 20%;
  width: 89%;
  height: 8px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: 0 50%;
}

#search-modal .modal-close::after {
  right: 15%;
  left: auto;
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
}

.modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  padding: 50px;
  background: #fff;
  border-radius: 0.5rem;
  transform: translate(-50%, -50%);
}

.modal-wrap .modal-body {
  overflow-y: scroll;
  max-height: 50vh;
}

.modal-wrap .modal-body input[type='search'] {
  display: inline-block;
  z-index: 3;
  width: 80%;
  height: 65px;
  padding: 10px;
  padding-right: 0;
  background: none;
  transition: width 0.4s cubic-bezier(0, 0.795, 0, 1);
  font-size: 26px;
  font-weight: 100;
  color: #555;
  border: solid 2px;
  outline: none;
}

.modal-wrap .modal-body input#search_submit {
  width: 20%;
  background: #000;
  font-size: 1.25rem;
  color: #fff;
  border: none;
  cursor: pointer;
}

.modal-wrap .modal-body .select__area {
  margin: 20px 0;
}

.modal-wrap .modal-body .select__content {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}

.modal-wrap .modal-body .select__content.week_buttons {
  justify-content: space-around;
}

.week_buttons>button {
  background: #000;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.week_buttons_genre>button {
  background: #2E4E99;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.modal-wrap .modal-body .select__content>a {
  width: auto;
  margin-right: 2%;
  margin-bottom: 15px;
  padding: 10px 30px;
  background: #000;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease,
    -webkit-transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
  text-align: center;
  color: #fff;
  border-radius: 10px;
}

.modal-wrap .modal-body .select__content>a,
.modal-wrap .modal-body .select__content.search__tag>a {
  background: #fff;
  color: var(--global--color-main);
  border: solid 3px var(--global--color-main);
}

.modal-wrap .modal-body .select__content>a:hover {
  background: var(--global--color-main);
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease,
    -webkit-transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
  color: #fff;
}

/*■■■■■■■■■■■■■■■■■■■

  slick

■■■■■■■■■■■■■■■■■■■*/

.slider {
  opacity: 0;
  transition: opacity 0.1s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

.slider.slick-slider {
  padding: 0;
}

.slide-arrow.prev-arrow,
.slide-arrow.next-arrow {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 180px;
  width: 60px;
  height: 60px;
  margin: auto;
  background: #000;
  border-radius: 5px;
}

.slide-arrow.prev-arrow:hover,
.slide-arrow.next-arrow:hover {
  cursor: pointer;
  opacity: 0.8;
}

.slide-arrow.prev-arrow {
  left: -30px;
}

.slide-arrow.next-arrow {
  right: -30px;
}

.slide-arrow span {
  display: block;
  position: absolute;
  top: 30%;
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
}

.slide-arrow.prev-arrow span {
  left: 40%;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
}

.slide-arrow.next-arrow span {
  right: 40%;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.slider__navigation {
  margin-top: 10px;
}

.slider__navigation .slick-slide {
  height: auto;
  padding: 0 5px;
}

.slider__navigation .slick-current figure {
  border-bottom: solid 5px var(--global--color-main);
}

.slider__single .slick-slide {
  padding: 0 5px;
}

.slider__single .slide-arrow.prev-arrow {
  left: 20px;
}

.slider__single .slide-arrow.next-arrow {
  right: 20px;
}

.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
.slider__navigation .slick-track {
  transform: unset!important;
}
*/

ul.slick-dots {
  display: flex;
  position: absolute;
  top: -40px;
  right: 10%;
  list-style: none;
  margin: auto;
}

ul.slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  margin: 10px;
  content: '';
  font-size: 0;
}

ul.slick-dots .slick-active button {
  background: #f69ea3;
}

.item__slideNav .slick-slide.slick-active {
  margin-right: 4px;
}

.item__slideNav .slick-slide.slick-active:last-of-type {
  margin-right: 0;
}

.item__slideNav .slick-slide.slick-current.slick-active img {
  border: solid 2px #8066ff;
}

.item__slideNav .slick-track {
  margin-right: auto;
  margin-left: 0;
}

.slick-track {
  display: flex;
  justify-content: space-between;
}

.slick-track {
  margin-right: auto !important;
  margin-left: 0 !important;
}

/* ================================
   Product Gallery (Amazon-like)
   バニラJSギャラリー用スタイル
   ================================ */
.content__images {
  position: relative;
}

.item__slide {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}

.item__slideItem {
  display: none;
}

.item__slideItem.is-active {
  display: block;
  animation: fadeIn .25s ease;
}

.item__slideItem figure {
  position: relative;
}

.item__slideItem img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
}

.item__slideNav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.item__slideThumb {
  width: 64px;
  height: 64px;
  border: 1px solid #ddd;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, box-shadow .2s;
}

.item__slideThumb:focus {
  outline: 2px solid #8066ff;
  outline-offset: 2px;
}

.item__slideThumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.item__slideThumb:hover {
  border-color: #8066ff;
}

.item__slideThumb.is-active {
  border-color: #8066ff;
  box-shadow: 0 0 0 2px rgba(128, 102, 255, .2);
}

.comment__details {
  margin-top: var(--global--spacing-vertical);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*■■■■■■■■■■■■■■■■■■■

  トップページ

■■■■■■■■■■■■■■■■■■■*/

/* news */

.news__section {
  /* display: flex;
  align-items: center;
  height: 50px;
  width: 50%;
  margin: auto;
  padding: 20px;
  background: var(--global--color-white);
  border: solid 2px var(--global--color-main);
  border-radius: 10px; */
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px;
  background: var(--global--color-main);
  color: var(--global--color-white);
}

.news__section .news__contents {
  max-height: 80px;
  margin: 0 auto 0 20px;
  overflow: hidden;
  position: relative;
}

.news__section .section__title {
  padding-right: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--global--color-white);
  border-right: solid 2px;
  text-align: center;
  margin: 0 0 0 auto;
  display: block;
}

.news__track {
  display: inline-flex;
  align-items: center;
  animation: news-marquee 10s linear infinite;
  will-change: transform;
}

.news__item {
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  padding-right: 60px;
  flex: 0 0 auto;
}

@keyframes news-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.content__saleWeek {
  border: solid 1px;
  position: relative;
  margin: 5px 0;
  width: -webkit-fill-available;
  text-align: center;
  background: var(--shadow-brightcolor);
  color: var(--global--color-main);
}

.ph-new-label {
  display: inline-block;
  padding: 0px 15px;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #ff5f5f 0%, #c92c2c 50%, #a01e1e 100%);
  border-radius: 5px;
  vertical-align: middle;
}

.ph-new-label--overlay {
  position: absolute;
  top: -6px;
  right: -12px;
  z-index: 3;
  transform: translate(-10%, -10%);
  box-shadow: 0 0 0 2px var(--shadow-brightcolor), 3px 3px 5px var(--shadow-darkcolor);
}

.content__saleWeek::before {
  content: '';
  text-align: center;
  position: absolute;
  top: 2px;
  left: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(assets/images/sale_week_ico_r.png);
  background-repeat: no-repeat;
}


.detail_area {
  font-weight: bold;
  width: 100%;
  border: solid 1px;
  border-color: #3a76ff;
  color: #3a76ff;
  padding: 10px;
  margin-bottom: 1rem;
}

.detail_area .kind_text,
.detail_area .size_text {
  font-weight: 400;
  color: #000;

}

.item_comments {
  margin-bottom: 1rem;

  .item_comment {
    background: linear-gradient(transparent 70%, #71c6ff 70%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline;
  }
}

/* Youtube area */

.youtube__area iframe {
  width: 100%;
  height: 100%;
}

.youtube__area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.youtube__item {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.youtube__item:hover,
.youtube__item.active {
  color: #fff;
  border: solid 2px #fff;
  border-radius: 0;
}

.youtube__title {
  font-weight: bold;
}

.youtube__title:hover,
.youtube__title.active {
  color: #888;
}

.thumbnail {
  width: 100%;
  object-fit: cover;
}

.thumbnail-width {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.yonkoma__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prize_house_original .content__item img {
  max-height: 45vh;
  height: 100%;
}

.new_prize .select {
  margin-bottom: 20px;
  text-align: right;
}

/*■■■■■■■■■■■■■■■■■■■

  記事一覧

■■■■■■■■■■■■■■■■■■■*/

.page-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 30px;
}

.page-header .select select,
.page-header .select select::picker(select) {
  appearance: base-select;
}

.page-header .select select {
  border-radius: 8px;
  padding: 8px 40px 8px 16px;
  cursor: pointer;
  background-color: #fff;
  color: var(--global--color-main);
  letter-spacing: 0.02em;
  box-shadow: 0 6px 0 #d0d6e4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
}

.page-header .select select:hover {
  border-color: var(--global--color-main);
  background-color: #f7f9ff;
  transform: translateY(1px);
  box-shadow: 0 4px 0 #d0d6e4;
}

.page-header .select select:focus-visible {
  outline: 3px solid rgba(23, 39, 77, 0.2);
  outline-offset: 3px;
}

.page-header .select select::picker(select) {
  border: 2px solid var(--global--color-main);
  border-radius: 12px;
  margin: 8px 0;
  box-shadow: 0 12px 24px rgba(23, 39, 77, 0.2);
  background-color: #fff;
}

.page-header .select select::picker-icon {
  display: none;
}

.page-header .select select option {
  padding: 0.6rem 1rem;
}

@supports (appearance: base-select) {
  .page-header .select select {
    background-image: linear-gradient(45deg, transparent 50%, var(--global--color-main) 50%),
      linear-gradient(135deg, var(--global--color-main) 50%, transparent 50%);
    background-position: right 18px center, right 12px center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
  }
}

.page-header .select {
  width: fit-content;
  height: fit-content;
}

#archive.page-header,
#search.page-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category__pageTitle {
  position: relative;
  padding-left: 50px;
  font-weight: bold;
}

.category__pageTitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 40px solid transparent;
  border-left: 40px solid var(--global--color-main);
}

.article__number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #8066ff;
}

.article__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article__contents img {
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  border-top: none;
}

.pagination>li {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
}

.pagination .first,
.pagination .previous,
.pagination .next,
.pagination .last {
  background: #fff;
  font-weight: bold;
  border: solid 2px #888;
}

.pagination>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pagination>li>a:hover {
  background: #000;
  color: #fff;
  border: solid 2px #fff;
  transition: all 0.3s ease;
}

.pagination .current {
  background: #000;
  font-weight: bold;
}

.pagination .current>a {
  color: #fff;
}

.category-group {
  display: flex;
}

.select-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/*■■■■■■■■■■■■■■■■■■■

  詳細ページ

■■■■■■■■■■■■■■■■■■■*/

.singular .entry-header {
  margin-bottom: auto;
  margin-left: 0;
}

.site-main>article.post {
  margin-bottom: 100px;
  padding-top: 30px;
}

.main__visual,
.news__area,
.new_prize,
.new-prize-week,
.new_prize_title,
.prize_makers_title,
.popular_prize,
.youtube__area {
  position: relative;
  z-index: 1;
}

.main__visual::before,
.news__area::before,
.new_prize::before,
.new-prize-week::before,
.popular_prize::before,
.youtube__area::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
}


.prize_makers_title,
.new_prize_title {
  position: relative;
  z-index: 1;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  padding: 20px 10% 0;
  color: var(--global--color-white);
  text-align: center;
}

.prize_house_original .section__title {
  align-items: baseline;
  padding: 10px 0 !important;
}

.prize_house_original .section__title,
.new_prize_title .section__title,
.prize_makers_title .section__title {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  background: linear-gradient(92.78deg, #1B6BEA 0%, #17274D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  border-radius: 20px;
  padding: 10px 3rem;
  font-weight: 500;
  gap: 8px;
}

.prize_house_original .section__title span,
.new_prize_title .section__title span,
.prize_makers_title .section__title span {
  font-size: 22px;
  font-weight: 400;
}

.prize_house_original .section__title span,
.new_prize_title .section__title span,
.prize_makers_title .section__title span .new_prize,
.new-prize-week {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  padding: 0px 10%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.new_prize .content__list {
  width: 100%;
}

.youtube,
.yonkomamanga {
  padding-bottom: 60px;
  text-align: center;
  box-sizing: border-box;
}

section .section__title {
  align-items: center;
  position: relative;
  margin: 10px 0;
  font-size: 2.5rem;
  font-family: var(--font-family-base);
  color: #333;
}

section.new_prize_title .section__title::before,
section.new_prize .section__title::before,
section.popular_prize .section__title::before,
section.prize_house_original .section__title::before,
section.prize_list .section__title::before,
section.youtube .section__title::before,
section.yonkomamanga .section__title::before {
  position: absolute;
  top: -1rem;
  font-size: 1.1rem;
  color: var(--global--color-main);
}

/* section.new_prize_title .section__title::before {
  content: '新着プライズ';
} */

section.new_prize .section__title::before {
  content: '新着プライズ';
}

section.popular_prize .section__title::before {
  content: '人気プライズ';
}

section.prize_house_original .section__title::before {
  content: 'オリジナル商品（プライズハウス）';
}

section.prize_list .section__title::before {
  content: 'プライズ一覧';
}

section.yonkomamanga .section__title::before {
  content: 'PRIZE HOUSEエンタメ';
}

section.youtube .section__title::before {
  content: 'PRIZE HOUSEエンタメ';
}

/*TOP各タイトル横の青い矢印*/

_:lang(x)::-moz-placeholder,
section .section__title::after {
  top: 0;
}

section .section__title:hover::after {
  animation: move-arrow 0.5s ease-in-out forwards;
}

.new_prize .section__title::after,
.new-prize-week .section__title::after,
.popular_prize .section__title::after,
.prize_list .section__title::after {
  color: var(--global--color-main);
  animation: remove-arrow 0.5s ease-in-out forwards;
}

.new_prize .section__title:hover::after,
.new-prize-week .section__title:hover::after,
.popular_prize .section__title:hover::after,
.prize_list .section__title:hover::after {
  animation: move-arrow 0.5s ease-in-out forwards;
}

@keyframes move-arrow {
  0% {
    left: 10px;
  }

  100% {
    left: 40px;
  }
}

@keyframes remove-arrow {
  0% {
    left: 40px;
  }

  100% {
    left: 10px;
  }
}

main section>a {
  display: inline-block;
}

.content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content__list::after {
  content: '';
  display: block;
  width: calc(100% / 2 - 15px);
}

.content__list.single__list {
  display: block;
}

.article__contents,
.content__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.705);
  border-radius: 18px;
  width: calc(100% / 4 - 15px);
  margin-bottom: 20px;
  padding: 10px;
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  a {
    .item_comment {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: end;
      gap: 6px;
      text-align: left;
      font-size: clamp(11px, 1.2vw, 13px);
      line-height: 1.3;
      margin-top: 10px;

      .content__arrow {
        border: 1px solid var(--global--color-main);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        box-sizing: border-box;
        background: #FFFFFF;
        box-shadow: 0px 0px 20px #ACD0FF;
        transition: all 0.5s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        &::after {
          content: '';
          width: 10px;
          height: 10px;
          background: url('data:image/svg+xml;utf8,<svg width="40" height="70" viewBox="0 0 40 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.3013 38.8512L7.65917 69.4933L0 61.8341L26.8125 35.0216L0 8.20909L7.65917 0.549927L38.3013 31.192C39.3167 32.2078 39.8872 33.5853 39.8872 35.0216C39.8872 36.4579 39.3167 37.8354 38.3013 38.8512Z" fill="url(%23paint0_linear_78_28)"/><defs><linearGradient id="paint0_linear_78_28" x1="19.9436" y1="0.549927" x2="19.9436" y2="69.4933" gradientUnits="userSpaceOnUse"><stop stop-color="%230870F8"/><stop offset="1" stop-color="%2317274D"/></linearGradient></defs></svg>') no-repeat center;
          background-size: contain;
        }
      }
    }

    &:hover,
    &:focus-visible {
      .content__arrow {
        background: linear-gradient(180deg, #0870F8 0%, #17274D 100%);
        border-color: #FFFFFF;

        /* ホバー時の矢印アイコン（白色に変更） */
        &::after {
          background: url('data:image/svg+xml;utf8,<svg width="40" height="70" viewBox="0 0 40 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.3013 38.8512L7.65917 69.4933L0 61.8341L26.8125 35.0216L0 8.20909L7.65917 0.549927L38.3013 31.192C39.3167 32.2078 39.8872 33.5853 39.8872 35.0216C39.8872 36.4579 39.3167 37.8354 38.3013 38.8512Z" fill="%23FFFFFF"/></svg>') no-repeat center;
          background-size: contain;
        }
      }
    }

    .content__title {
      display: -webkit-box !important;
      overflow: hidden;
      -webkit-box-orient: vertical;
      line-height: 1.3;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      min-height: 60px;
      max-height: 60px;
    }
  }

  .card-dot {
    display: none;
    position: absolute;
    background-color: #2e4444;
    border-radius: 50%;
    height: 8px;
    width: 8px;

    &:first-of-type {
      top: 10px;
      left: 10px;
    }

    &:nth-of-type(2) {
      top: 10px;
      right: 10px;
    }

    &:nth-of-type(3) {
      bottom: 10px;
      left: 10px;
    }

    &:last-of-type {
      bottom: 10px;
      right: 10px;
    }
  }
}

.content__item .entry__content .content__img:hover img {
  transform: scale(1.1);
}

.entry__content .content__img {
  position: relative;
}

.content__item img,
.entry__content img {
  height: 282px;
  background: #fff;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.content__item img {
  height: 36vh;
}

.slider__single .content__item {
  margin-bottom: 0;
}

.slider__single .content__item img {
  /* height: 400px; */
  background: #fff;
}

/* トップページ タブ */

/*ラジオボタンを全て消す*/
input[name='tab_item'] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
}

/*現在は最新のデータのみ表示*/
#week_content {
  display: flex;
  animation: show 0.3s linear 0s;
  margin-bottom: 2.5rem;
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.new_prize>a:not(.title),
.new_prize>.tab_item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  margin: 0.5rem 5px;
  padding: 20px 20px;
  cursor: pointer;
  background-color: #c92c2c;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease,
    -webkit-transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 1rem;
}

.new-prize-week>a:not(.title),
.new-prize-week>.tab_week {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.8rem;
  width: 9rem;
  margin: 0.5rem 20px;
  padding: 20px 20px;
  cursor: pointer;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2), color 0.3s ease,
    boder-color 0.3s ease, background-color 0.3s ease,
    -webkit-transform 0.3s cubic-bezier(0.48, 1.5, 0.56, 1.2);
  font-size: 16px;
  font-weight: 800;
  color: #c92c2c;
  border: solid 2px #c92c2c;
  border-radius: 1rem;
}

.new_prize>a:not(.title):hover,
.new_prize>.tab_item:hover,
.new_prize>a:not(.title).active,
.new_prize>.tab_item.active,
.new-prize-week>a:not(.title):hover,
.new-prize-week>.tab_week:hover,
.new-prize-week>a:not(.title).active,
.new-prize-week>.tab_week.active {
  color: #fff;
  border: solid 2px #fff;
  background: #222;
}

.new_prize>a:not(.title):last-of-type+#week_content {
  margin-top: 1rem;
}

.ml-100 {
  margin-left: 100px;
}

/* アコーディオン */

.acd-check {
  display: none;
}

.acd-label {
  display: block;
  position: relative;
  margin-bottom: 1px;
  padding: 10px;
  padding-left: 30px;
  cursor: pointer;
  font-size: 1.5rem;
  border-top: dotted 2px #888;
}

.acd-label:first-of-type {
  border-top: none;
}

.acd-label::after,
.acd-label::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 10px;
  width: 4px;
  height: 0.75em;
  background-color: var(--global--color-main);
  transition: all 0.3s;
}

.acd-label::after {
  transform: rotate(90deg);
}

.acd-check:checked+.acd-label::before {
  transform: rotate(90deg) !important;
}

.acd-content {
  display: block;
  visibility: hidden;
  height: 0;
  padding: 0 20px;
  background: var(--global--color-white);
  transition: 0.5s;
  opacity: 0;
  color: #666;
}

.acd-check:checked+.acd-label::after {
  content: '';
}

.acd-check:checked+.acd-label+.acd-content {
  visibility: visible;
  height: auto;
  margin-bottom: 20px;
  padding: 20px;
  transition: 0.5s;
  opacity: 1;
}

.acd-content .store__name {
  display: inline-block;
  font-size: 1.25rem;
  color: #8066ff;
}

.acd-content .link__btn {
  margin: 10px 0;
  padding: 0;
}

.acd-content .link__btn a {
  padding: 5px 50px;
  background: #505050;
  color: var(--global--color-white);
  border-radius: 20px;
}

.acd-content li {
  margin-bottom: 50px;
}

.acd-content li:last-child {
  margin-bottom: 0;
}

.entry-content,
.entry-summary {
  font-family: var(--entry-content--font-family);
}

.entry-content {
  display: flex;
  justify-content: space-between;
  max-width: auto;
}

.right__contentHead {
  padding: 10px;
  background: var(--global--color-main);
  font-weight: bold;
  color: var(--global--color-white);
}

.sub__contentHead {
  margin-bottom: 20px;
  padding: 10px;
  background: var(--global--color-black);
  font-weight: bold;
  color: var(--global--color-white);
}

.content__area {
  margin-bottom: 10px;
}

.content__area>a {
  display: block;
  padding: 20px;
  background: #fff;
  font-size: 1.25rem;
  color: #8066ff;
}

.entry-content .left__content,
.entry-content .right__content {
  height: fit-content;
  margin: 0;
}

.entry-content .left__content {
  width: 50%;
}

.entry-content .right__content {
  width: 30%;
  margin: 25, 0, 25, 5px;
  /* 上 右 下 左 */
}

.entry-content .sub__content {
  width: 20%;
  margin: 25px;
}

.left__content .top__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left__content .content__category {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
}

.maker_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  font-weight: bold;
  color: #fff;
  background-color: #c92c2c;
  border: solid 0.2px #c92c2c;
  transition: all 0.3s;
}

/*202407shimamoto*/
.maker_button:hover {
  color: #c92c2c;
  transition: all 0.3s;
}

.maker_button:hover {
  background-color: #fff;
}

.maker_limit_width {
  display: flex;
}

.prize_limit_button {
  color: #fff;
  background: var(--global--color-main);
  border: solid 0.2px var(--global--color-main);
}

.prize_limit_button:hover {
  background: #fff;
}

.prize_limit_button:hover {
  color: var(--global--color-main);
}

.cross {
  margin: 0 10px;
  font-weight: bold;
}

.left__content .content__category.prize {
  background: #00bbf9;
}

.left__content .content__category.prize__original {
  background: #03e390;
}

.left__content .content__title {
  display: block;
  font-size: 2rem;
}

.left__content .content__title p {
  line-height: 1.4;
}

.content__images {
  margin-top: 10px;
}

.content__images img {
  width: 100%;
}

.sub__content .content__list {
  display: block;
}

.sub__content .content__item {
  width: 100%;
  margin-bottom: 30px;
}

.sub__content .content__item img {
  height: auto;
}


#yonkomagekijyou {
  display: flex;
  justify-content: center;
}


.yonkoma-list>div {
  margin-bottom: 3rem;
}

.yonkoma-list>div>div {
  border: solid 1px #888;
  padding: 3px;
}


/* PCの商品詳細ページ */
.total__contentarea {
  display: flex;

  .content_a {
    width: 75%;
    height: 100%;
    margin-right: 30px;

    .top__area {
      .content__saleWeek {
        margin-top: var(--global--spacing-vertical);
        width: 50%;

        .bottom__area {
          .content__title {
            margin: 10px 0;
            font-size: 1.2rem;
            line-height: 1.5;
          }
        }
      }
    }
  }

  .content_b {
    width: 25%;
    height: 100%;
  }
}

/* PCの商品詳細ページここまで */


/* 202406yonkoma */
.yonkomamanga iframe {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.yonkoma__item {
  display: block;
  width: 49%;
  height: 400px;
  margin-bottom: 100px;
}

.yonkoma_grid {
  display: grid;
  width: 100%;
  max-width: 100%;
}

.contents_three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.example_left,
.example_center,
.example_right {
  background-color: #223a70;
  padding: 3px;
  transition: opacity 0.3s ease;
}

.example_left img,
.example_center img,
.example_right img {
  max-width: 100%;
  height: auto;
}

.example_left:hover {
  opacity: 0.7;
}

.yonkoma-contents img:hover {
  opacity: 0.8;
}

/*202406shimamoto*/
/*4コママンガ*/
#yonkoma .post-thumbnail img {
  width: auto;
  height: 70px;
}

.yonkoma-top-image img {
  height: 50px;
  width: auto;
}

.yonkoma-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.manga-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.yonkoma-columns .manga-number img {
  width: 70px;
  height: auto;
}

.manga-section {
  /* background-color: #ffc0cb; */
  /* padding: 20px; */
  text-align: center;
  margin: 20px auto;
  width: 100%;
  border-radius: 10px;
}

.manga-title {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--font-family-base);
  /* color: #fff; */
  /* border-bottom: 1px solid #333; */
  margin-bottom: 10px;
  text-align: left;
  /* letter-spacing: 1rem; */
  /* background-color: #fff; */
}

.manga-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.post-navigator {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  align-items: center;
}

.nav-previous,
.nav-next {
  margin: 0 10px;
  width: 100px;
  height: 100px;
}

.nav-button {
  background: none;
  border: none;
  cursor: pointer;
}

.checkbox {
  margin-top: 20px;
}

.page-buttons {
  text-align: center;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-buttons .button {
  background-color: #fff;
  border: 1px solid #000;
  margin: 0 5px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-family: var(--font-family-base);
  transition: background-color 0.3s ease;
}

.page-buttons .button:hover {
  background-color: #ddd;
}

.new-yonkoma .category__pageTitle {
  border-bottom: 2.5px solid var(--global--color-main);
}

.yonkoma-main {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 20px auto;
}

article.yonkoma {
  width: 100%;
}

.past-yontoma {
  display: flex;
  align-items: center;
  justify-content: center;
}

.yonkoma-contents {
  padding-bottom: 5rem;
  margin: 0 10%;
}

.yonkoma-contents img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.yonkoma-content .new-label {
  color: #c92c2c;
}

.yonkoma-title {
  font-weight: bold;
  font-size: 1.4rem;
}

.yonkoma-info {
  width: 50%;
  margin: 50px 10% 0 10%;
  border-collapse: collapse;
}

.yonkoma-info td {
  padding: 5px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: center;
}

.yonkoma-info td a {
  color: #0073aa;
  text-decoration: none;
}

.yonkoma-info td a:hover {
  text-decoration: underline;
}

/* END 202407yonkoma */

/*202407shimamoto*/
/*作品タイトル一覧*/

.product-content {
  font-family: var(--font-family-base);
  display: flex;
  align-items: center;
}

.nav-previous, .nav-next {
  width: 5%;
  vertical-align: top;
}

.nav-button img {
  width: 60%;
  height: auto;
}

.nav-button img:hover {
  opacity: 0.5;
}

.title_list {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.row-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.row-links a {
  background: #fff;
  box-shadow: 0 3px 3px rgba(102, 102, 102, 0.704);
  border-radius: 10px;
  display: inline-block;
  padding: 0 10px;
  font-size: 2rem;
  text-decoration: none;
  color: #333;
  text-shadow: 1px 1px 2px rgba(112, 112, 112, 0.705);
  font-weight: bold;
  border-bottom: 2px solid #0693e3;
  transition: text-decoration 0.3s ease, opacity 0.3s ease;
}

.row-links a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

.line_box {
  margin-top: 20px;
  background: rgb(250, 250, 250);
  border-top: 2px #066aab;
  padding: 10px;
}

.line_box h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 5px;
  border-top: 3px groove #0693e3;
  font-weight: bold;
}

.look {
  list-style: none;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.look li {
  width: 45%;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(219, 219, 219);
}

.look a {
  text-decoration: none;
  font-size: 1rem;
  color: #066aab;
  border-bottom: 1px solid #066aab;
  transition: border-bottom 0.3s ease, opacity 0.3s ease;
}

.look a:hover {
  border-bottom: 0px;
  opacity: 0.6;
}

.footer_height {
  margin-top: 3rem;
}

/* カルーセル20240806 */

.prize_house_original {
  .carousel-margin {
    background: linear-gradient(135deg, #ff5f5f 0%, #c92c2c 50%, #a01e1e 100%);
    padding: 2rem;
    margin-right: calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
    width: 100vw;
  }
}


/* タブナビゲーション */
.swiper-pagination-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.swiper-tab {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--global--color-main);
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  box-shadow: 0px 0px 10px #B8D7FF;
  border-radius: 15px;
  min-width: 100px;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.swiper-tab span {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-family: var(--font-family-base);
}

.swiper-tab.active {
  box-sizing: border-box;
  background: linear-gradient(180deg, #0870F8 0%, #17274D 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0px 0px 10px #0870F8;
  color: #fff;
  min-width: 100px;
  text-align: center;
}

.swiper-tab:hover {
  background: linear-gradient(180deg, #0870F8 0%, #17274D 100%);
  color: #fff;
}

/* メインカルーセル */
.swiper-container {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}

/* メインスライドのスタイル */
.swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

/* 非アクティブなスライドにグレーフィルターを適用 */
/* .swiper-slide:not(.swiper-slide-active)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  background-color: rgba(128, 128, 128, 0.6);
  z-index: 1;
  transition: all 0.3s ease;
} */

.prize_house_original-hero__carousel .carousel-link {}

/* アクティブなスライドは通常表示 */
.swiper-slide-active {
  transform: scale(1.05);
}

/* フィルターがかかった状態でも画像やコンテンツが見えるように調整 */
.swiper-slide .image-container {
  position: relative;
  z-index: 0;
}

.prize_house_original-hero__carousel {
  position: relative;
}

.prize_house_original-hero__arm {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -65%);
  width: 35%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
  animation: arm-move 2s ease-in-out infinite alternate;
}

@keyframes arm-move {
  0% {
    transform: translate(-50%, -65%);
  }

  100% {
    transform: translate(-50%, -60%);
  }
}

.prize_house_original-hero__arm img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgba(1, 6, 29, 0.25);
}

/* プライズハウス限定カルーセル：非正方形画像に上下余白を付けて揃える */
.prize_house_original-swiper .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--global--color-main);
}

.prize_house_original-swiper .image-container img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

/* aspect-ratio未対応ブラウザ向けフォールバック */
@supports not (aspect-ratio: 1 / 1) {
  .prize_house_original-swiper .image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
  }

  .prize_house_original-swiper .image-container img {
    position: absolute;
    inset: 4% 4% auto 4%;
    width: 95%;
    height: 95%;
  }
}

.prize_house_original .entry__content img,
.prize_house_original .content__item img,
.prize_house_original .article__contents img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
  opacity: 1;
}

/* ナビゲーションボタン */
.swiper-button-next,
.swiper-button-prev {
  border: 1px solid var(--global--color-main);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px #ACD0FF;
  transition: all 0.5s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(180deg, #0870F8 0%, #17274D 100%);
  border-color: #FFFFFF;
}

.swiper-button-next:after {
  content: '';
  width: 10px;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="70" viewBox="0 0 40 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.3013 38.8512L7.65917 69.4933L0 61.8341L26.8125 35.0216L0 8.20909L7.65917 0.549927L38.3013 31.192C39.3167 32.2078 39.8872 33.5853 39.8872 35.0216C39.8872 36.4579 39.3167 37.8354 38.3013 38.8512Z" fill="url(%23paint0_linear_78_28)"/><defs><linearGradient id="paint0_linear_78_28" x1="19.9436" y1="0.549927" x2="19.9436" y2="69.4933" gradientUnits="userSpaceOnUse"><stop stop-color="%230870F8"/><stop offset="1" stop-color="%2317274D"/></linearGradient></defs></svg>') no-repeat center;
  background-size: contain;
  font-size: 0;
}

.swiper-button-next:hover:after {
  background: url('data:image/svg+xml;utf8,<svg width="40" height="70" viewBox="0 0 40 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M38.3013 38.8512L7.65917 69.4933L0 61.8341L26.8125 35.0216L0 8.20909L7.65917 0.549927L38.3013 31.192C39.3167 32.2078 39.8872 33.5853 39.8872 35.0216C39.8872 36.4579 39.3167 37.8354 38.3013 38.8512Z" fill="%23FFFFFF"/></svg>') no-repeat center;
  background-size: contain;
}

.swiper-button-prev:after {
  content: '';
  width: 10px;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="70" viewBox="0 0 40 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.69872 31.192L32.3409 0.549927L40 8.20909L13.1875 35.0216L40 61.8341L32.3409 69.4933L1.69872 38.8512C0.683281 37.8354 0.112793 36.4579 0.112793 35.0216C0.112793 33.5853 0.683281 32.2078 1.69872 31.192Z" fill="url(%23paint0_linear_78_28)"/><defs><linearGradient id="paint0_linear_78_28" x1="20.0564" y1="0.549927" x2="20.0564" y2="69.4933" gradientUnits="userSpaceOnUse"><stop stop-color="%230870F8"/><stop offset="1" stop-color="%2317274D"/></linearGradient></defs></svg>') no-repeat center;
  background-size: contain;
  font-size: 0;
}

.swiper-button-prev:hover:after {
  background: url('data:image/svg+xml;utf8,<svg width="40" height="70" viewBox="0 0 40 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.69872 31.192L32.3409 0.549927L40 8.20909L13.1875 35.0216L40 61.8341L32.3409 69.4933L1.69872 38.8512C0.683281 37.8354 0.112793 36.4579 0.112793 35.0216C0.112793 33.5853 0.683281 32.2078 1.69872 31.192Z" fill="%23FFFFFF"/></svg>') no-repeat center;
  background-size: contain;
}

.manufacturer-nav {
  text-align: center;
  margin: 2rem 0;
}

.nav-button-caption {
  color: var(--global--color-main);
  box-shadow: 0 3px 0 0 #62808a;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  background: none;
  height: 40px;
  padding: 10px 20px;
  border-radius: 1rem;
  font-weight: bold;
  border: solid 4px var(--global--color-main);
}

.nav-button-caption.active {
  background-color: var(--global--color-main);
  color: #fff;
  font-size: 14px;
  height: 40px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.nav-button-caption:hover {
  background-color: #005177;
  color: #fff;
  padding: 10px 20px;
  border-radius: 1rem;
}

/* Breadcrumb NavXT */
.breadcrumb {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #666;
  font-size: 20px;
  margin: 0 auto;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 14px;
  color: var(--global--color-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.7;
}


/* 店舗一覧ページ ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#resetFilters {
  display: inline-block;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  padding: 5px 40px 5px 16px;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 0 #d0d6e4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-3-6.7'/%3E%3Cpolyline points='22 4 21 10 15 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  background-color: #FF4136;
  border: none;
  cursor: pointer;
}

#resetFilters:hover {
  opacity: 1;
}

#real-time-search-form {
  display: flex;
  align-items: center;
  max-width: 800px;
}

/* 全体の検索フォーム */
#real-time-search-input {
  border-radius: 20px;
  width: 450px;
  padding: 5px 20px;
  margin: 0;
  border: 1px solid var(--global--color-main);
}

#real-time-search-input::placeholder {
  font-size: 0.85rem;
}

#real-time-search-input.inputting {
  border-radius: 20px 20px 0 0;
}

#search_icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0px;
  margin-left: -35px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
}

#product-search-icon {
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  width: 35px;
  height: 35px;
  background: #333;
  color: #fff;
}

#product-search-icon .fas,
#search_icon .fas {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#search-results {
  position: absolute;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 10px;
  background: #fff;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 検索結果が表示されている時のボーダー */
#search-results.has-results {
  border: 1px solid var(--global--color-main);
  border-top: none;
}

.search-result-item {
  max-width: 600px;
  display: block;
  margin: 0 auto;
  text-align: left;
  color: #585858;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
}

.search-result-item:first-child {
  margin-top: 10px;
}

.search-result-item:last-child {
  margin-bottom: 10px;
}

.search-result-item:hover {
  background-color: #cecece;
}

.search-result-item a {
  text-decoration: none;
  color: #333;
}

/* 店舗一覧ページ */
.store-modal {
  display: none;
  /* 初期は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.store-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 1000px;
  width: 100%;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  z-index: 1001;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.close-btn svg {
  width: 35px;
  height: 35px;
  background: var(--global--color-main);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px #ACD0FF;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.close-btn svg line {
  stroke: #fff;
}

.close-btn:hover line {
  stroke: var(--global--color-main);
}

.close-btn:hover svg {
  border: 1px solid var(--global--color-main);
  background: #fff;
  box-shadow: 0px 0px 20px #ACD0FF;
}

/* 作品タイトル用の検索フォーム */
.product-search {
  display: grid;
  justify-content: center;
}

#product-search-input {
  width: 600px;
  border: 1.5px solid #ccc;
  padding: 5px 20px;
  border-radius: 20px;
  margin: 0;
}

#product-search-input.inputting {
  border-radius: 20px 20px 0 0;
  border-bottom: none;
}

#product-search-results {
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  max-width: 600px;
  border-radius: 0 0 20px 20px;
  padding: 0 20px;
  border-top: none;
}

.product-search-result-item {
  max-width: 600px;
  display: block;
  margin: 0 auto;
  text-align: left;
  color: #585858;
  border-bottom: 1px solid #eee;
}

.product-search-result-item:first-child {
  margin-top: 10px;
}

.product-search-result-item:last-child {
  margin-bottom: 10px;
}

.product-search-result-item:hover {
  background-color: #cecece;
}

.product-search-result-item a {
  text-decoration: none;
  color: #333;
}

.product-search-result-item.selected,
.search-result-item.selected {
  background-color: #cecece;
}

/* 北海道・東北 */
.prefecture-item.hokkaido .prefecture-name {
  background-color: #7478c2;
  color: #fff;
}

/* 東北 */
.prefecture-item.touhoku .prefecture-name {
  background-color: rgb(77, 83, 204);
  color: #fff;
}

/* 関東 */
.prefecture-item.kantou .prefecture-name {
  background-color: #31beca;
  color: #fff;
}

/* 東海 */
.prefecture-item.toukai .prefecture-name {
  background-color: #4ab969;
  color: #fff;
}

/* 北陸 */
.prefecture-item.hokuriku .prefecture-name {
  background-color: rgb(255, 197, 82);
  color: #fff;
}

/* 近畿 */
.prefecture-item.kinki .prefecture-name {
  background-color: #b0b72f;
  color: #fff;
}

/* 中国 */
.prefecture-item.tyugoku .prefecture-name {
  background-color: #ef9f27;
  color: #fff;
}

/* 四国 */
.prefecture-item.shikoku .prefecture-name {
  background-color: #d08f68;
  color: #fff;
}

/* 九州*/
.prefecture-item.kyusyu .prefecture-name {
  background-color: #ff7575;
  color: #fff;
}

/* 沖縄 */
.prefecture-item.okinawa .prefecture-name {
  background-color: rgb(255, 87, 87);
  color: #fff;
}

.store {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 6rem;
}

.region-tabs {
  display: grid;
  gap: 1rem;
  z-index: 10;
  top: 15%;
  left: 20%;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.region-tab {
  color: var(--global--color-main);
  box-shadow: 0 3px 0 0 #62808a;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  height: 40px;
  padding: 5px 20px;
  border-radius: 1rem;
  font-weight: bold;
  border: solid 1px var(--global--color-main);
  white-space: nowrap;
}

.region-tab.active {
  background-color: var(--global--color-main);
  color: #fff;
  height: 40px;
  padding: 10px 20px;
  font-weight: bold;
  white-space: nowrap;
}

.region-tab:hover {
  background-color: #005177;
  color: #fff;
  padding: 10px 20px;
  border-radius: 1rem;
}


/* 日本地図 */
.map-container {
  position: relative;
  width: 100%;
  height: 55vh;
}

/* 都道府県名リスト */
.prefecture-list {
  position: absolute;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* 都道府県のアイテム */
.prefecture-item {
  position: absolute;
  /* left, top は get_prefecture_position() から取得する位置 */
  cursor: pointer;
}

/* 都道府県名のスタイル */
.prefecture-name {
  background: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prefecture-name a {
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
  font-weight: normal;
}

.prefecture-name:hover {
  background: rgba(0, 123, 255, 0.7);
}

.store-list {
  width: 250px;
  margin-top: 10px;
  list-style-type: none;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
  padding: 1rem;
  border-radius: 5px;
}

.store-list.show {
  display: block;
  opacity: 1;
}

/* 店舗一覧モーダルのリストをグリッドで表示（PC用） */
.store-list-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.store-list-modal-grid li a,
.store-list li a {
  position: relative;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-list,
.store-list-modal-grid {
  padding: 0;
  margin: 0;
  list-style: none;
}

.store-list li a:hover,
.store-list-modal-grid li a:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.store-item a:hover {
  opacity: 0.8;
}

.new-open-label {
  position: absolute;
  top: -20px;
  left: -15px;
  background: #f13535;
  padding: 0 10px;
  color: #fff;
  margin: 0 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/******* 地図成形 *******/
#japan-map div div.area div {
  border: 1px #ffffff solid;
  text-align: center;
  font-size: 14px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  /* 縦方向中央揃え */
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  justify-content: center;
  /* 横方向中央揃え */
  -webkit-justify-content: center;
  /* 横方向中央揃え（Safari用） */
  border-radius: 6px;
  -webkit-border-radius: 6px;
  position: absolute;
  box-sizing: border-box;
  transition: 0.2s;
}

#japan-map div div.area div:hover {
  opacity: 0.5;
  transition: 0.2s;
}



#japan-map {
  display: block;
  width: 777px;
  background-color: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#japan-map p.area-title {
  display: none;
}

/* 北海道・東北 */

#hokkaido-touhoku {
  width: 136px;
  display: block;
  height: 265px;
  position: absolute;
  left: 638px;
}

#hokkaido-touhoku div.area div {
  background-color: rgb(196, 196, 196);
  color: #ffffff;
}

#hokkaido {
  width: 133px;
  height: 70px;
}

#aomori {
  width: 93px;
  height: 43px;
  left: 21px;
  top: 96px;
}

#akita {
  width: 67px;
  height: 42px;
  left: 3px;
  top: 139px;
}

#iwate {
  width: 67px;
  height: 42px;
  left: 70px;
  top: 139px;
}

#yamagata {
  width: 67px;
  height: 42px;
  top: 181px;
  left: 3px;
}

#miyagi {
  width: 67px;
  height: 42px;
  top: 181px;
  left: 70px;
}

#fukushima {
  width: 67px;
  height: 42px;
  top: 223px;
  left: 70px;
}

/* 関東 */

#kantou {
  width: 158px;
  display: block;
  height: 174px;
  position: absolute;
  top: 265px;
  left: 623px;
}

#kantou div.area div {
  background-color: rgb(196, 196, 196);
  color: #ffffff;
}

#ibaraki {
  width: 52px;
  height: 85px;
  top: 0px;
  left: 100px;
}

#tochigi {
  width: 50px;
  height: 42px;
  top: 0px;
  left: 50px;
}

#gunma {
  width: 50px;
  height: 42px;
  top: 0px;
  left: 0px;
}

#saitama {
  width: 100px;
  height: 43px;
  top: 42px;
  left: 0px;
}

#chiba {
  width: 52px;
  height: 84px;
  top: 85px;
  left: 100px;
}

#tokyo {
  width: 100px;
  height: 42px;
  top: 85px;
  left: 0px;
}

#kanagawa {
  width: 67px;
  height: 42px;
  top: 127px;
  left: 0px;
}

/* 中部 */

#tyubu {
  width: 270px;
  height: 211px;
  position: absolute;
  left: 438px;
  top: 223px;
}

#tyubu div.area div {
  background-color: rgb(196, 196, 196);
  color: #ffffff;
}

#nigata {
  width: 85px;
  height: 42px;
  left: 185px;
}

#toyama {
  width: 67px;
  height: 42px;
  left: 118px;
}

#ishikawa {
  width: 50px;
  height: 57px;
  left: 68px;
}

#fukui {
  width: 68px;
  height: 42px;
  left: 0px;
  z-index: 2;
}

#nagano {
  width: 67px;
  height: 85px;
  left: 118px;
  top: 42px
}

#yamanashi {
  width: 67px;
  height: 42px;
  left: 118px;
  top: 127px;
}

#gifu {
  width: 50px;
  height: 55px;
  left: 68px;
  top: 57px
}

#shizuoka {
  width: 67px;
  height: 42px;
  left: 118px;
  top: 169px;
}

#aichi {
  width: 50px;
  height: 57px;
  top: 112px;
  left: 68px;
}

/* 近畿 */
#kinki {
  width: 186px;
  height: 211px;
  position: absolute;
  left: 320px;
  top: 223px;
}

#kinki div.area div {
  background-color: rgb(196, 196, 196);
  color: #ffffff;
}

#kyoto {
  width: 67px;
  height: 84px;
  left: 51px;
}

#shiga {
  width: 68px;
  height: 42px;
  top: 42px;
  left: 118px;
}

#osaka {
  width: 67px;
  height: 85px;
  top: 84px;
  left: 51px;
}

#nara {
  width: 34px;
  height: 85px;
  top: 84px;
  left: 118px;
}

#mie {
  width: 34px;
  height: 85px;
  top: 84px;
  left: 152px;
}

#wakayama {
  width: 113px;
  height: 42px;
  top: 169px;
  left: 61px;
}

#hyougo {
  width: 51px;
  height: 98px;
  left: 0px;
}

/* 中国 */
#tyugoku {
  width: 151px;
  height: 98px;
  position: absolute;
  left: 169px;
  top: 223px;
}

#tyugoku div.area div {
  background-color: rgb(196, 196, 196);
  color: #ffffff;
}

#tottori {
  width: 50px;
  height: 49px;
  left: 101px;
}

#okayama {
  width: 50px;
  height: 49px;
  top: 49px;
  left: 101px;
}

#shimane {
  width: 51px;
  height: 49px;
  left: 50px;
}

#hiroshima {
  width: 51px;
  height: 49px;
  top: 49px;
  left: 50px;
}

#yamaguchi {
  width: 50px;
  height: 98px;
  left: 0px;
}

/* 四国 */
#shikoku {
  width: 184px;
  height: 84px;
  position: absolute;
  left: 169px;
  top: 350px;
}

#shikoku div.area div {
  background-color: rgb(196, 196, 196);
  color: #ffffff;
}

#kagawa {
  width: 92px;
  height: 42px;
  right: 0px;
}

#ehime {
  width: 92px;
  height: 42px;
  left: 0px;
}

#tokushima {
  width: 92px;
  height: 42px;
  right: 0px;
  top: 42px;
}

#kouchi {
  width: 92px;
  height: 42px;
  left: 0px;
  top: 42px;
}

/* 九州・沖縄 */
#kyusyu {
  width: 152px;
  height: 247px;
  position: absolute;
  left: 0px;
  top: 235px;
}

#kyusyu div.area div {
  background-color: rgb(196, 196, 196);
  color: #ffffff;
}

#fukuoka {
  width: 50px;
  height: 50px;
  left: 101px;
  top: 0px;
}

#saga {
  width: 50px;
  height: 50px;
  left: 51px;
  top: 0px;
}

#nagasaki {
  width: 50px;
  height: 50px;
  left: 1px;
  top: 0px;
}

#oita {
  width: 50px;
  height: 50px;
  left: 101px;
  top: 50px;
}

#kumamoto {
  width: 50px;
  height: 100px;
  left: 51px;
  top: 50px;
}

#miyazaki {
  width: 50px;
  height: 50px;
  left: 101px;
  top: 100px;
}

#kagoshima {
  width: 68px;
  height: 49px;
  left: 83px;
  top: 150px;
}

#okinawa {
  width: 50px;
  height: 50px;
  left: 1px;
  top: 197px;
}

.mobile-bottom-nav {
  display: none;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

   レスポンシブ対応（メディアクエリ）
   
   以下、ブレークポイント順にまとめています。
   上から下に向かって画面幅が小さくなります。

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */


/* ============================================================================
   1. PC表示 (769px以上) - min-width
   ============================================================================ */
@media only screen and (min-width: 769px) {

  /* ロゴサイズ調整 */
  .site-logo .custom-logo {
    max-width: 150px;
    max-height: inherit;
  }
}


/* ============================================================================
   2. タブレット以上表示 (600px以上) - min-width
   ============================================================================ */
@media (min-width: 600px) {

  /* サムネイルサイズ調整 */
  .item__slideThumb {
    width: 70px;
    height: 70px;
  }
}


/* ============================================================================
   3. ラージタブレット・小型PC (1400px以下)
   ============================================================================ */
@media screen and (max-width: 1400px) {

  /* セクションタイトル位置、モーダル余白調整 */
  section .section__title {
    left: 0;
  }

  .modal-wrap {
    padding: 55px;
  }
}


/* ============================================================================
   4. タブレット (1200px以下)
   ============================================================================ */
@media screen and (max-width: 1200px) {

  /* コンテナ幅調整 */
  .site-main {
    max-width: 980px;
  }

  .footer__wrap {
    max-width: 980px;
  }

  /* YouTube・スライダー高さ調整 */
  .youtube__item {
    height: 300px;
  }

  .slider__single .content__item img {
    height: 300px;
  }

  /* モーダル余白調整 */
  .modal-wrap {
    padding: 25px;
  }
}


/* ============================================================================
   5. スマホ・タブレット (768px以下) ★メイン
   ============================================================================
   このセクションには768px以下で適用されるスタイルがまとめられています。
   ============================================================================ */
@media screen and (max-width: 768px) {

  /* -----------------------------------
     5-1. PC/SP表示切り替え
     ----------------------------------- */
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  #products {
    padding: 10px;
  }

  /* -----------------------------------
     5-2. ヘッダー・フッター
     ----------------------------------- */
  #footer-button {
    position: absolute;
    background-color: var(--global--color-main);
    color: #fff;
    border: none;
    padding: 7px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    right: 0;
    top: 400%;
    z-index: 10000;
  }

  #back-button:hover,
  #footer-button:hover {
    background-color: #005a87;
  }

  #back-button svg,
  #footer-button svg {
    vertical-align: middle;
    margin-right: 8px;
  }

  .site-header .top-header {
    display: block;
  }

  .footer__top {
    display: none;
  }

  .footer__top .charactor {
    top: -73px;
    right: -10%;
    background-size: 50%;
    -webkit-backface-visibility: hidden;
  }

  .footer__wrap>p {
    margin-left: 7.5px;
  }

  .link__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .link__list a {
    font-size: 0.9rem;
    border-right: none;
  }

  #product-search-icon {
    width: 40px;
  }

  /* -----------------------------------
     5-3. 検索モーダル
     ----------------------------------- */
  .modal-wrap {
    position: absolute;
    width: 90%;
    padding: 40px 20px;
  }

  .modal-wrap .select__area {
    margin: 10px 0;
  }

  #search-modal input[type='search'] {
    height: 30px;
    font-size: 1rem;
  }

  #search-modal input#search_submit {
    width: 30%;
    height: 30px;
  }

  #search-modal>button {
    top: 10vh;
    right: 0;
    width: 40px;
    height: 40px;
  }

  #search-modal>button::before,
  #search-modal>button::after {
    width: 90%;
    height: 4px;
  }

  .modal-wrap .select__content>a {
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  .modal-wrap .select__content {
    margin: 5px 0;
  }

  #search-modal .modal-close {
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
  }

  #search-modal .modal-close::before,
  #search-modal .modal-close::after {
    height: 5px;
  }

  .modal-wrap .select__content.search__tag>a {
    border: solid 2px var(--global--color-main);
  }

  #wrap {
    top: 50%;
    right: 5%;
    left: initial;
    width: auto;
    height: 40px;
  }

  .maker_button {
    white-space: nowrap;
    width: auto;
    padding: 0 20px;
  }

  .top-header input[type='submit'] {
    display: inline-block;
    float: right;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 40px;
    height: 42px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNQTFRFU1NT9fX1lJSUXl5e1dXVfn5+c3Nz6urqv7+/tLS0iYmJqampn5+fysrK39/faWlp////Vi4ZywAAABF0Uk5T/////////////////////wAlrZliAAABLklEQVR42rSWWRbDIAhFHeOUtN3/ags1zaA4cHrKZ8JFRHwoXkwTvwGP1Qo0bYObAPwiLmbNAHBWFBZlD9j0JxflDViIObNHG/Do8PRHTJk0TezAhv7qloK0JJEBh+F8+U/hopIELOWfiZUCDOZD1RADOQKA75oq4cvVkcT+OdHnqqpQCITWAjnWVgGQUWz12lJuGwGoaWgBKzRVBcCypgUkOAoWgBX/L0CmxN40u6xwcIJ1cOzWYDffp3axsQOyvdkXiH9FKRFwPRHYZUaXMgPLeiW7QhbDRciyLXJaKheCuLbiVoqx1DVRyH26yb0hsuoOFEPsoz+BVE0MRlZNjGZcRQyHYkmMp2hBTIzdkzCTc/pLqOnBrk7/yZdAOq/q5NPBH1f7x7fGP4C3AAMAQrhzX9zhcGsAAAAASUVORK5CYII=) center center no-repeat;
    background-color: #fff;
    background-size: 80%;
    transition: opacity 0.4s ease;
    text-indent: -10000px;
    border: none;
    border-radius: 10px;
  }

  input[type='submit']:hover {
    opacity: 0.8;
  }

  input[type='submit'] {
    width: 50px;
    height: 40px;
  }

  input[type='search'] {
    height: 40px;
    padding-right: 50px;
  }

  .new_prize form.search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }

  .new_prize input[type='search'] {
    height: 40px;
    font-size: 1rem;
  }

  .new_prize #search_submit {
    margin-left: 10px;
    padding: 0;
  }

  /* -----------------------------------
     5-4. slick スライダー
     ----------------------------------- */
  .slide-arrow.prev-arrow,
  .slide-arrow.next-arrow {
    width: 30px;
    height: 30px;
  }

  .slide-arrow.prev-arrow {
    left: 0;
  }

  .slide-arrow.next-arrow {
    right: 0;
  }

  .slide-arrow span {
    top: 25%;
    width: 15px;
    height: 15px;
  }

  .slider__navigation .slick-slide,
  .slider__single .slick-slide {
    padding: 5px 2.5px;
  }

  .slider__single .content__item img {
    height: 310px;
  }

  ul.slick-dots {
    top: -30px;
    right: 0;
  }

  ul.slick-dots button {
    width: 7px;
    height: 7px;
    margin: 5px;
  }

  /* -----------------------------------
     5-5. トップページ
     ----------------------------------- */
  section,
  .news__area {
    margin: 0 10px;
  }

  section .section__title {
    left: 0;
    font-size: 1.75rem;
    line-height: 1;
    padding: 10px 0 !important;
  }

  section.new_prize .section__title::before,
  section.popular_prize .section__title::before,
  section.prize_house_original .section__title::before,
  section.prize_list .section__title::before,
  section.yonkomamanga .section__title::before,
  section.youtube .section__title::before,
  section.new_prize_title .section__title::before {
    top: -15px;
    font-size: 0.8rem;
  }

  .prize_house_original .section__title {
    align-items: center;
  }

  .prize_house_original,
  .new_prize,
  .new-prize-week {
    padding: 0;
    flex: auto;
  }

  section .section__title::after {
    top: 30%;
    width: 15px;
    height: 15px;
    border-top: 3px solid;
    border-right: 3px solid;
  }

  _:lang(x)::-moz-placeholder,
  section .section__title::after {
    top: 0;
  }

  main section>a {
    display: inline-block;
    width: 100%;
  }

  .site-content {
    margin-top: 54px;
  }

  .main__visual {
    padding: 0;
  }

  .slider__navigation {
    margin: 0;
  }

  /* ニュース */
  header .news__area {
    margin: 0;
  }

  .news__section {
    display: none;
    width: 100%;
  }

  .news__section .section__title {
    position: relative;
    padding: 0;
    font-size: 1.15rem;
    text-align: center;
    border: none;
  }

  .news__section .section__title::before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: var(--global--color-main);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .news__section .news__contents {
    margin: 0;
  }

  .news__item {
    text-align: center;
  }

  /* YouTube */
  .youtube__item {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .youtube__area iframe {
    height: 200px;
  }

  .youtube__area {
    grid-template-columns: 1fr;
    margin: 0;
  }

  /* プライズハウス オリジナル */
  .content__list.single__list {
    margin-top: 15px;
  }

  /* リスト */
  .content__item {
    width: calc(100% / 2 - 5px);
    margin-bottom: 10px;
  }

  .content__saleWeek {
    padding-left: 0;
    font-size: .9rem;
    white-space: nowrap;
    width: 100% !important;
  }

  .content__saleWeek::before {
    display: none;
  }

  .content__title {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .btn {
    margin-top: 30px;
    margin-bottom: 1rem;
  }

  .new_prize label[for='week'] {
    margin-left: 0;
  }

  .new_prize>a:not(.title),
  .new_prize>.tab_item,
  .new-prize-week>a:not(.title),
  .new-prize-week>.tab_week {
    width: calc(100% / 2 - 10px);
    height: 40px;
    margin: auto auto 15px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
  }

  /* -----------------------------------
     5-6. 一覧ページ
     ----------------------------------- */
  .page-header {
    display: block;
    align-items: normal;
    padding: 10px;
  }

  .page-header .select select {
    width: 100%;
  }

  .page-header .select {
    width: 100%;
  }

  .select-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .category-group {
    flex-direction: column;
  }

  .category__pageTitle {
    padding-left: 25px;
  }

  .category__pageTitle::before {
    border-bottom: 20px solid transparent;
    border-left: 20px solid var(--global--color-main);
  }

  .article__number {
    padding-left: 0;
    font-size: 1rem;
    text-align: center;
  }

  .article__list {
    padding: 0 10px;
  }

  .article__contents {
    width: calc(100% / 2 - 5px);
    margin-bottom: 10px;
  }

  .page-numbers,
  .pagination .nav-short,
  .pagination .page-number,
  .comments-pagination .nav-short {
    display: block;
  }

  /* -----------------------------------
     5-7. 詳細ページ
     ----------------------------------- */
  .singular .entry-header {
    margin-bottom: 20px;
  }

  .entry-content {
    display: block;
  }

  .entry-content .left__content {
    width: 100%;
    margin: auto;
  }

  .entry-content .right__content,
  .entry-content .sub__content {
    width: 100%;
    margin: auto;
  }

  .left__content .top__area {
    display: block;
  }

  .left__content .content__saleWeek {
    margin: 0;
    text-align: left;
  }

  .left__content .content__category {
    display: block;
    width: fit-content;
    margin: 10px 0;
    margin-left: auto;
  }

  .entry-content .right__content {
    margin: 40px auto;
  }

  .site-main {
    padding-bottom: 0;
  }

  .site-main>article.post {
    margin-bottom: 0;
  }

  .content__item img,
  .entry__content img {
    height: 175px;
  }

  .sub__content .content__list {
    display: flex;
    flex-wrap: nowrap;
  }

  .sub__content .content__list::after {
    display: none;
  }

  .sub__content .content__item {
    width: calc(100% / 3 - 5px);
    margin-bottom: 20px;
  }

  /* 商品詳細ページ */
  .total__contentarea {
    display: block;
    padding: 0 10px;
  }

  .total__contentarea .content_a {
    width: 100%;
    height: 100%;
  }

  .total__contentarea .content_b {
    width: 100%;
    height: 100%;
  }

  /* -----------------------------------
     5-8. 4コマ漫画
     ----------------------------------- */
  .contents_three {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
  }

  .example_left,
  .example_center,
  .example_right {
    margin: 0;
  }

  .yonkoma-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .yonkoma-title {
    font-size: 0.9rem;
  }

  .manga-number {
    display: none;
  }

  .yonkomamanga,
  .youtube {
    margin-right: calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
    padding: 0;
  }

  .yonkoma-content {
    width: 100vw;
    padding-bottom: 0;
  }

  .manga-title {
    top: -15px;
    font-size: 1.5rem;
    letter-spacing: 0rem;
  }

  .page-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin: 20px 10%;
  }

  .entry-header {
    margin-left: 5px;
  }

  /* -----------------------------------
     5-9. カルーセル
     ----------------------------------- */
  .swiper-tab span {
    font-size: 1rem;
  }

  .swiper-pagination-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem;
  }

  .swiper-tab {
    font-size: 10px;
    padding: 8px 12px;
    white-space: nowrap;
    text-align: center;
  }

  .swiper-slide {
    width: 100%;
  }

  .image-container {
    max-width: 100%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .prize_house_original-list .article__list {
    padding: 30px 0 0 0;
  }

  .carousel-item {
    width: 100%;
    margin-right: 0;
  }

  /* -----------------------------------
     5-10. 検索フォーム
     ----------------------------------- */
  #real-time-search-input.sp {
    display: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
  }

  #real-time-search-form {
    position: relative;
    display: flex;
    align-items: center;
  }

  #search_icon {
    position: absolute;
    right: 10px;
    top: -30px;
  }

  #search-results {
    position: absolute;
    top: 55px;
    width: 100%;
  }

  #close_icon {
    position: absolute;
    top: -40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #333;
  }

  #close_icon .fas {
    font-size: 1.2em;
  }

  /* スマホでのメニュー内にある検索フォーム */
  #mg-wprm-wrap div.wpr_search,
  .wpr_search .wpr-search-field,
  div#mg-wprm-wrap form.wpr-search-form button.wpr_submit {
    display: none;
  }

  /* 作品タイトル検索 */
  .product-search {
    position: relative;
  }

  #product-search-input {
    width: 100%;
  }

  #product-search-form {
    position: relative;
    display: flex;
    align-items: center;
  }

  #product-search-results {
    width: 88%;
  }

  #product-close-icon {
    position: relative;
    top: -80px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
  }

  #product-close-icon .fas {
    font-size: 1.2em;
  }

  /* -----------------------------------
     5-11. 店舗一覧ページ
     ----------------------------------- */
  #japan-map.clearfix {
    display: none;
  }

  #japan-map {
    width: 100% !important;
  }

  #japan-map p.area-title {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: 1em;
    color: #000000;
  }

  .prefecture-item {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0.5rem;
  }

  .prefecture-name {
    height: auto;
  }

  .prefecture-list {
    position: static !important;
  }

  .region-tabs {
    position: static !important;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 10px;
    padding: 10px 0;
    justify-content: normal;
    gap: 0;
  }

  .region-tab {
    flex: none;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 14px;
    white-space: nowrap;
  }

  .store {
    display: grid;
    gap: 0;
  }

  .prefecture-item .store-list {
    width: 100%;
    max-height: 70vh;
    padding: 10px;
    overflow: auto;
  }

  .store-item {
    margin-bottom: 15px;
  }

  .new-open-label {
    top: -10px !important;
    font-size: 14px;
  }

  .store-list.active {
    display: block;
    opacity: 1;
  }

  .store-modal-content {
    width: 90%;
  }

  /* -----------------------------------
     5-12. モバイルボトムナビゲーション
     ----------------------------------- */
  body {
    padding-bottom: 60px;
  }

  .primary-navigation>div>.menu-wrapper {
    display: none;
  }

  .mobile-bottom-nav {
    height: 60px;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2px;
    background: repeating-linear-gradient(-45deg,
        #0f1c3a,
        #0f1c3a 40px,
        #1a2b50 40px,
        #1a2b50 80px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
    border-top: 1px solid rgba(0, 0, 0, .08);
    font-size: 11px;
  }

  .mobile-bottom-nav .charactor {
    position: absolute;
    width: 120px;
    height: 120%;
    background: url(../twentytwentyone/assets/images/modoru_robo.webp);
    background-repeat: no-repeat;
    bottom: 100%;
    right: -10%;
    background-size: 50%;
    -webkit-backface-visibility: hidden;
  }

  .mobile-bottom-nav__item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 10px;
    transition: background-color .25s ease, color .25s ease;
  }

  .mobile-bottom-nav__item:focus-visible {
    outline: 2px solid #0870F8;
    outline-offset: 2px;
  }

  .mobile-bottom-nav__item:active,
  .mobile-bottom-nav__item:hover {
    opacity: 0.8;
  }

  .mobile-bottom-nav__icon svg {
    transition: all 0.3s ease;
  }

  .mobile-bottom-nav__icon {
    width: 30px;
    height: 30px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .15));
  }

  .mobile-bottom-nav__label {
    line-height: 1.1;
    letter-spacing: .03em;
    font-size: 10px;
  }

  .prize_house_original-hero__arm {
    display: none;
  }
}


/* ============================================================================
   6. スマホ (540px以下)
   ============================================================================ */
@media (max-width: 540px) {

  /* ページボタン */
  .page-buttons .button {
    white-space: nowrap;
  }

  /* 作品タイトル一覧 */
  .row-links {
    text-align: center;
    font-weight: bold;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .row-links a {
    font-size: 1.2rem;
    margin: 0 auto;
  }

  .line_box {
    padding: 0;
  }

  .look li {
    width: 100%;
  }

  .nav-button img {
    width: 100%;
    height: auto;
  }

  /* カルーセル */
  .swiper-pagination-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  /* メーカーナビ */
  .owl-carousel .owl-item {
    padding: 0;
  }

  .manufacturer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}


/* ============================================================================
   7. 小型スマホ (400px以下)
   ============================================================================ */
@media (max-width: 400px) {

  /* 例示ブロックの余白調整 */
  .example_left {
    padding: 3px;
  }
}


/* ============================================================================
   8. 小型スマホ (380px以下)
   ============================================================================ */
@media (max-width: 380px) {

  /* タブボタンのサイズ微調整 */
  .new_prize>a:not(.title),
  .new_prize>.tab_item,
  .new-prize-week>a:not(.title),
  .new-prize-week>.tab_week {
    width: calc(100% / 2 - 10px);
    height: 40px;
    margin: auto auto 15px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
  }
}
