@charset "UTF-8";

/* ==========================================================================
   スクロールバーを非表示
   ========================================================================== */
body,
.breadcrumb-list,
.luxbar-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::-webkit-scrollbar,
.breadcrumb-list::-webkit-scrollbar,
.luxbar-menu::-webkit-scrollbar {
  display: none;
}

/* ==========================================================================
   変数定義 & 基本設定
   ========================================================================== */
:root {
  --breadcrumb-bg: #ffffff;
  --footer-bg: #eeeeee;
  --footer-text: #666666;
  --accent-color: #1e5082;
  --content-width: 1170px;
  --caution-bg: #fdf2f2;
  --caution-border: #f8b4b4;
  --border-line-color: #dcdcdc;
  --link-color: #0033ff;
  --link-hover-color: #3366ff;
  --link-visited-color: #800080;
  --text-color: #333333;
  --link-decoration: underline;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
}
body {
  height: auto;
  min-height: 100vh;
  padding-top: 70px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  line-height: 1.6;
}
a,
img,
.swiper-slide img,
.common-modal-content,
.btn-white {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
a:visited {
  color: var(--link-visited-color);
}
a img {
  border: none;
  text-decoration: none;
  vertical-align: bottom;
}
.container,
.container_box2 {
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   luxbar (ハンバーガーメニュー)
   ========================================================================== */
.luxbar-menu {
  width: 100%;
  background-color: #333 !important;
  transition: max-height 1s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.luxbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 20px;
}
.luxbar-navigation {
  display: flex;
  flex-direction: column;
  list-style: none;
  background-color: #333;
  opacity: 1 !important;
  transform: none !important;
}
.luxbar-checkbox:checked ~ .luxbar-menu {
  max-height: 100vh;
}
.luxbar-checkbox:not(:checked) ~ .luxbar-menu {
  max-height: 70px;
}
.luxbar-checkbox {
  display: none;
}
.luxbar-item a {
  text-decoration: none !important;
  padding: 18px 24px;
  display: block;
  color: #ffffff !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}
.luxbar-item a:hover {
  background-color: #444444;
  color: #fff !important;
}
.luxbar-hamburger {
  padding: 10px;
  cursor: pointer;
  background-color: transparent !important;
}
.luxbar-hamburger span,
.luxbar-hamburger span::before,
.luxbar-hamburger span::after {
  display: block;
  height: 2px;
  width: 24px;
  background-color: #ffffff !important;
  transition: 0.3s ease;
}
.luxbar-hamburger span::before {
  content: '';
  position: absolute;
  margin-top: -8px;
}
.luxbar-hamburger span::after {
  content: '';
  position: absolute;
  margin-top: 8px;
}
.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger span {
  background-color: transparent !important;
}
.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger span::before {
  transform: rotate(45deg);
  margin-top: 0;
}
.luxbar-checkbox:checked + .luxbar-menu .luxbar-hamburger span::after {
  transform: rotate(-45deg);
  margin-top: 0;
}
.luxbar-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
body:has(#drawer-toggle:checked) .luxbar-fixed {
  z-index: 900;
}

/* ==========================================================================
   Swiper (メインスライダー Slider1 関連)
   ========================================================================== */
.zoom-btn-icon-only .material-symbols-outlined {
  font-size: 18px;
}
.slider1-total-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 1170px;
  max-width: 100%;
  margin: auto;
}
.slider1-unit {
  flex: 1;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  background: #fff;
  border: 1px solid var(--border-line-color);
  overflow: hidden;
  position: relative;
}
.slider1-swiper-outer {
  position: relative;
  width: 100%;
  padding: 0 30px;
}
.swiper-main {
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.swiper-main .swiper-slide {
  position: relative;
}
.swiper-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.slide-video {
  max-width: 100%;
  max-height: 100%;
}
.slider1-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 100%;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.slider1-nav-btn .material-symbols-outlined {
  font-size: 36px !important;
  font-weight: normal;
}
.slider1-unit .btn-prev {
  left: 0;
}
.slider1-unit .btn-next {
  right: 0;
}
.slider-controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 40px;
}
.fraction-pagination-only {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  color: #999;
}
.zoom-only-row {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.zoom-btn-icon-only {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
}
.swiper-thumbs {
  height: auto;
  margin: 0 25px 15px 25px;
  overflow: hidden;
}
.swiper-thumbs .swiper-slide {
  height: auto !important;
  padding: 2px;
  background-color: #fff;
  border: 2px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  overflow: hidden;
}
.swiper-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
.swiper-thumbs .swiper-slide-thumb-active {
  border-color: #e60012;
  opacity: 1;
}
.swiper-thumbs .video-thumb-slide {
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #ddd;
}
.swiper-thumbs .video-thumb-icon {
  font-size: 2rem;
  color: #555;
}
.slider1-info-area {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 25px 25px 25px;
}
.slider1-info-area .title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.slider1-info-area div.spec-text {
  font-size: 0.75rem !important;
  line-height: 1.6 !important;
  color: var(--text-color) !important;
}
.price-info {
  margin-top: auto;
}
.price-num {
  font-size: 1.8rem;
  font-weight: 600;
}
.price-info .price-note {
  font-size: 0.85rem !important;
  color: var(--text-color) !important;
  margin-left: 5px;
}
.slider1-detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background-color: #e60012;
  color: #ffffff !important;
  text-decoration: none !important;
  border: 1px solid #e60012;
  margin-top: 15px;
}
.slider1-detail-btn:hover {
  opacity: 0.8;
}
.slider1-sub-btns {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* ==========================================================================
   トリプルスライダー
   ========================================================================== */
.new-triple-slider-wrapper {
  margin: 30px 0;
  width: 100%;
}
.new-triple-slider-wrapper .slider1-swiper-outer {
  padding: 0 44px !important;
  overflow: visible;
}
.new-triple-slider-wrapper .slider1-nav-btn {
  top: 38%;
  width: 60px;
  height: 280px;
  z-index: 20;
}
.new-triple-slider-wrapper .slider1-nav-btn .material-symbols-outlined {
  font-size: 40px !important;
}
.new-triple-slider-wrapper .btn-prev {
  left: -20px;
  justify-content: center;
}
.new-triple-slider-wrapper .btn-next {
  right: -20px;
  justify-content: center;
}
.new-triple-slider-wrapper .swiper-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #eee;
}
.triple-title {
  font-size: 1rem !important;
  font-weight: 600;
  margin: 8px 0 !important;
}
.triple-desc {
  font-size: 1rem !important;
  line-height: 1.4;
  color: var(--text-color) !important;
}

/* ==========================================================================
   ボタン・コンポーネント
   ========================================================================== */
.product-btn {
  background-color: var(--accent-color);
  color: #fff !important;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s;
  white-space: nowrap;
  text-decoration: none !important;
  margin: 0;
  display: inline-block;
  width: 150px;
  text-align: center;
}
.product-btn:hover {
  background-color: #64748d;
}
.btn-white {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  background-color: #fff;
  color: var(--text-color) !important;
  border: 1px solid var(--border-line-color);
  font-size: 0.9rem;
  text-decoration: none !important;
}
.btn-white:hover {
  background-color: #f8f8f8;
}
.category-nav-btns {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.cat-btn {
  flex: 1;
  min-width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1rem;
  transition: 0.3s;
  text-align: center;
  text-decoration: none !important;
  background-color: #1e5082; 
  border: none;
}
.cat-btn:hover {
  background-color: #1a3a5f;
}
.cat-btn.orange {
  background-color: #f59e0b;
}
.cat-btn.orange:hover {
  background-color: #d97706;
}
.photo_box1_btn_area,
.otoi_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto;
  max-width: 270px;
}
.photo_box1_btn_area {
  margin-top: 20px;
}
.photo_box1_btn_area .cat-btn,
.otoi_btn_area .cat-btn {
  width: 100%;
}

/* =========================================
   ページトップ（トップへ戻る）ボタン
   ========================================= */
#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #666666;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
}
#page-top.show {
  opacity: 1; 
  visibility: visible; 
}
#page-top:hover {
  opacity: 0.8;
  background-color: #555555;
}


/* -----------------------------------------
   PCサイズ（1024px以上）での特殊配置
   ----------------------------------------- */
@media (min-width: 1024px) {
  #page-top {
    right: auto;
    left: 50%;
    margin-left: 600px;
    bottom: 120px;
  }
}

/* -----------------------------------------
   モバイルサイズ（1023px以下）での非表示設定
   ----------------------------------------- */
@media screen and (max-width: 1023px) {
  #page-top {
    display: none !important;
  }
}

/* ==========================================================================
   レイアウト・メイン
   ========================================================================== */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
}
.main-content {
  flex: 1;
  padding-bottom: 0px;
  width: 100%;
}
.container_box2 {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #F6EEDA;
}
.category_container_inner {
  max-width: var(--content-width);
  width: 100%;
  text-align: center;
  margin: 100px 0;
}
.category_title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  padding: 12px 0;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  letter-spacing: 0.15em;
  line-height: 1.5 !important;
  margin-bottom: 40px;
}
.category_sub_title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 40px;
}
.section-title {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--text-color);
  padding: 10px;
  margin: 60px 0 30px 0;
  border: 1px solid  var(--border-line-color);
  background-color: #f8f9fa;
}

/* ==========================================================================
   ヘッダー・フッター・パンくず
   ========================================================================== */
.breadcrumb-area {
  flex-shrink: 0;
  background: var(--breadcrumb-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-line-color);
  overflow: hidden;
}
.breadcrumb-list {
  display: flex;
  list-style: none;
  font-size: 0.75rem;
  color: #888;
  white-space: nowrap;
}
.breadcrumb-list li + li::before {
  content: "\e5cc";
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 4px;
  font-size: 1.5em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.breadcrumb-list a {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
}
.breadcrumb-list a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
.site-footer {
  margin-top: auto;
  flex-shrink: 0;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 25px 0;
  text-align: center;
  font-size: 0.75rem;
  border-top: 1px solid var(--border-line-color);
  width: 100%;
}

/* ==========================================================================
   テキスト装飾・見出し
   ========================================================================== */
.title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 40px;
  flex-wrap: wrap;
  gap: 15px;
}
.main-content h1 {
  font-size: 1.8rem;
  border-left: 5px solid var(--accent-color);
  padding-left: 15px;
  font-weight: bold;
}
.zoom-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  margin-left: auto;
  align-self: flex-end;
}
.zoom-note .material-symbols-outlined {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
}

/* ==========================================================================
   注意書き
   ========================================================================== */
.caution-box_yoko,
.caution-box_shita {
  background-color: var(--caution-bg);
  padding: 10px 15px;
  font-size: 1rem;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.caution-title {
  color: #c53030;
  font-weight: normal;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.caution-title::before {
  content: "⚠️";
  margin-right: 8px;
}
.caution-box_yoko {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.caution-box_yoko > div {
  flex: 1;
}
.caution-box_shita {
  display: block;
}

/* ==========================================================================
   タブ
   ========================================================================== */
.tab-container {
  margin-bottom: 0px;
  border: 1px solid var(--border-line-color);
}
.tab-container input[type="radio"] {
  display: none;
}
.tab-labels {
  display: flex;
  width: 100%;
}
.tab-labels label {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f2f2f2;
  border-right: 1px solid var(--border-line-color);
  border-bottom: 1px solid var(--border-line-color);
  position: relative;
}
.tab-labels label:last-child {
  border-right: none;
}
#t1:checked ~ .tab-labels label[for="t1"],
#t2:checked ~ .tab-labels label[for="t2"],
#t3:checked ~ .tab-labels label[for="t3"] {
  background: var(--accent-color);
  color: #fff;
  border-bottom-color: var(--accent-color);
}
#t1:checked ~ .tab-labels label[for="t1"]::after,
#t2:checked ~ .tab-labels label[for="t2"]::after,
#t3:checked ~ .tab-labels label[for="t3"]::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-top-color: var(--accent-color);
}
.tab-contents {
  padding: 30px;
  background: #fff;
}
.tab-contents .content {
  display: none;
}
#t1:checked ~ .tab-contents #c1,
#t2:checked ~ .tab-contents #c2,
#t3:checked ~ .tab-contents #c3 {
  display: block;
}

/* ==========================================================================
   ボックス
   ========================================================================== */
.photo_box1_wrapper {
  display: flex;
  gap: 40px !important;
  margin: 40px 0;
}
.photo_box1 {
  flex: 1;
  padding: 5px;
  background-color: #fff;
  border: 1px solid var(--border-line-color);
  text-align: left;
}
.photo_box1_textarea {
  font-size: 1rem;
  text-align: left;
  margin: 10px 10px 10px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
  margin-top: 40px;
  text-align: left;
}
.faq-item.faq-left-align {
  display: block;
  border: 1px solid var(--border-line-color);
  margin-bottom: 20px;
  background: #fff;
}
.faq-check {
  display: none !important;
}
.faq-question {
  display: flex;
  align-items: center;
  padding: 13px 50px 13px 20px;
  width: 100%;
  cursor: pointer;
  position: relative;
  background-color: #f5f5f5;
  transition: 0.3s;
}
.faq-question:hover {
  background-color: #E2E2E2;
}
.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 14px;
  height: 2px;
  background-color: #333;
  transition: 0.3s;
}
.faq-question::after {
  transform: rotate(90deg);
}
.faq-check:checked + .faq-question::after {
  transform: rotate(0deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-in-out;
  background-color: #ffffff;
  overflow: hidden;
}
.faq-check:checked ~ .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-content {
  min-height: 0;
}
.faq-inner {
  padding: 20px;
}
.faq-left-align .q-text {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1a3a5f;
}
.faq-left-align .a-text {
  display: block;
  line-height: 1.7;
}
.faq-left-align .qa-set:not(:first-child) {
  margin-top: 10px;
  border-top: 1px dashed var(--border-line-color);
  padding-top: 10px;
}

/* ==========================================================================
   いろいろな法定看板
   ========================================================================== */
.legal-sign-grid-simple {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  text-align: left;
}
.sign-column-simple {
  flex: 1;
}
.sign-column-simple ul {
  list-style: none;
}
.sign-column-simple ul li {
  border-bottom: 1px solid var(--border-line-color);
}
.sign-column-simple ul li a {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  font-size: 1rem;
  transition: 0.2s;
  text-decoration: none;
  color: var(--text-color);
}
.sign-column-simple ul li a span {
  margin-right: 10px;
  flex-shrink: 0;
}
.sign-column-simple ul li a:hover {
  background-color: #f5f5f5;
  text-decoration: none;
}


.step-minimal-slim {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-left: 2px;
  border-bottom: 1px solid var(--border-line-color);
  padding-bottom: 10px;
  margin: 60px 0 30px;
}
.step-minimal-slim .step-num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.step-minimal-slim .step-txt {
  font-size: 1.2rem;
}
.box_waku {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  align-items: flex-start;
  margin: 40px 0;
}
.box_option {
  flex: 0 0 calc((100% - 180px) / 4);
  max-width: calc((100% - 180px) / 4);
  text-align: center;
}
.box_option img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
  cursor: pointer !important;
}
.box_option p {
  font-size: 1.0rem;
  color: var(--text-color);
  pointer-events: none;
  text-align: left;
  margin: 10px 0 0 0;
  width: 100%;
}
.scroll-note {
  font-size: 0.8rem;
  margin-bottom: 5px;
  text-align: left;
  display: none;
}

/* ==========================================================================
   ドロワー内のボタン
   ========================================================================== */
.btn-drawer-blue {
  border-color: #1e5082 !important;
  color: #1e5082 !important;
  background-color: #edf4fa !important;
}
.btn-drawer-green {
  border-color: #2d8c3c !important;
  color: #2d8c3c !important;
  background-color: #eff7f0 !important;
}
.btn-drawer-beige {
  border-color: #a68966 !important;
  color: #a68966 !important;
  background-color: #f9f6f3 !important;
}
.btn-drawer-blue:hover,
.btn-drawer-green:hover,
.btn-drawer-beige:hover {
  background-color: #E2E2E2 !important;
}

/* ==========================================================================
   個人情報・PDF注意・その他
   ========================================================================== */
.privacy-text-area {
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-color);
}
.privacy-text-area h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
  color: var(--text-color);
}
.privacy-text-area p {
  margin-bottom: 1rem;
}
.privacy-text-area ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5em;
}
.privacy-text-area ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}
.privacy-text-area a {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
}
.privacy-text-area a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
.warning-box {
  background-color: #fff0f0;
  border: 2px solid #d9534f;
  padding: 15px;
  margin-bottom: 30px;
  color: var(--text-color);
}
.warning-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #cc0000;
  margin-bottom: 10px;
  border-bottom: 1px dashed #cc0000;
  padding-bottom: 5px;
}
.warning-title .material-symbols-outlined {
  margin-right: 8px;
  font-size: 1.5rem;
}
.warning-box p {
  line-height: 1.6;
}
.warning-box p:last-child {
  margin-bottom: 0;
}
.highlight-red {
  color: #cc0000;
  font-weight: bold;
}
.warning-box a {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
  font-weight: bold;
}
.warning-box a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
#sticker-list,
#change-list {
  scroll-margin-top: 100px;
}
.item-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
  border-top: 1px dashed #ccc;
  padding-top: 30px;
  margin-top: 0;
  font-weight: bold;
}
.item-title2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: bold;
}
.price {
  display: inline-block;
  margin: 10px 0px 20px 0px;
  padding: 3px 12px;
  background-color: #fff0f0;
  border: 1px solid #cc0000;
  border-radius: 4px;
  color: #cc0000;
  font-size: 1.0rem;
  font-weight: bold;
  vertical-align: middle;
}
.price-tax {
  font-size: 0.8em;
  font-weight: normal;
}
.modal-caption {
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: 1rem;
  z-index: 10000;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 60px;
}

/* ==========================================================================
   PDFの警告
   ========================================================================== */
#pdfWarningModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.pdf-modal-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.pdf-modal-title {
  font-size: 1.3rem;
  color: #cc0033;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
}
.pdf-modal-text {
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}
.pdf-modal-highlight {
  color: #cc0033;
  font-weight: bold;
}
.pdf-modal-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.pdf-btn-cancel {
  flex: 1;
  padding: 10px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
}
.pdf-btn-download,
.pdf-btn-download:visited {
  flex: 1;
  padding: 10px 10px;
  font-size: 1rem;
  background: #002e5d;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   メディアクエリ　PCサイズ (1024px以上) の設定
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .luxbar-menu {
    max-height: 70px !important;
    overflow: visible;
  }
  .luxbar-navigation {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto;
    height: 70px;
    background-color: transparent;
  }
  .luxbar-header {
    margin-right: auto;
  }
  .luxbar-hamburger {
    display: none;
  }
  .luxbar-item {
    height: 100%;
  }
  .luxbar-item a {
    padding: 0 20px;
    border-bottom: none;
    height: 100%;
    display: flex;
    align-items: center;
  }
  #page-top {
    right: auto;
    left: 50%;
    margin-left: 650px;
  }
  .box_option img:hover,
  a:hover,
  .swiper-slide img:hover {
    opacity: 0.7 !important;
    cursor: pointer !important;
  }
  .common-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
  }
  .modal-inner-wrapper {
    position: relative;
    width: auto;
    max-width: 800px;
    display: flex;
    z-index: 10002;
  }
  .common-modal-content {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
  }
  .modal-prev,
  .modal-next {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10005;
    color: transparent;
    cursor: pointer !important;
  }
  .modal-prev::after,
  .modal-next::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
  }
  .modal-prev {
    left: -104px;
  }
  .modal-prev::after {
    transform: rotate(-45deg);
  }
  .modal-next {
    right: -104px;
  }
  .modal-next::after {
    transform: rotate(135deg);
  }
  .modal-close {
    position: absolute;
    top: -80px;
    right: -20px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10006;
    cursor: pointer !important;
  }
  .modal-close::before,
  .modal-close::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 3px;
    background: #fff;
  }
  .modal-close::before {
    transform: rotate(45deg);
  }
  .modal-close::after {
    transform: rotate(-45deg);
  }
  .box_waku.grid-3-col .box_option {
    flex: 0 0 calc((100% - 120px) / 3);
    max-width: calc((100% - 120px) / 3);
  }
}

/* --------------------------------------------------------------------------
   メディアクエリ　モバイルサイズ (1023px以下) の設定
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1023px) {
  .luxbar-hamburger {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .main-content h1 {
    font-size: 1.4rem;
  }
  .breadcrumb-list {
    overflow-x: auto;
    padding: 0px;
  }
  .product-drawer {
    width: 280px;
    right: -280px;
  }
  .slider1-unit {
    min-width: 100%;
  }
  .new-triple-slider-wrapper .slider1-swiper-outer {
    padding: 0 20px !important;
  }
  .new-triple-slider-wrapper .slider1-nav-btn {
    width: 25px;
    height: 290px;
    top: 38%;
  }
  .new-triple-slider-wrapper .btn-prev {
    left: -8px;
  }
  .new-triple-slider-wrapper .btn-next {
    right: -8px;
  }
  #page-top,
  .common-modal,
  .zoom-note,
  .zoom-only-row {
    display: none !important;
  }
  .box_option,
  .swiper-slide,
  .box_option img,
  .swiper-slide img,
  a img {
    cursor: default !important;
    transform: none !important;
  }
  .box_option:hover,
  .swiper-slide:hover,
  .box_option img:hover,
  .swiper-slide img:hover {
    background: none !important;
    opacity: 1 !important;
  }
  .luxbar-item a:hover,
  .drawer-list a:hover {
    background-color: transparent !important;
  }
  .faq-question:hover {
    background-color: #f5f5f5 !important;
  }
  .caution-box_yoko {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .photo_box1_wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .legal-sign-grid-simple {
    flex-direction: column;
    gap: 0;
  }
  .tab-contents {
    padding: 20px;
  }
  .step-minimal-slim {
    margin: 1.5rem 0 40px;
  }
  .step-minimal-slim .step-num {
    font-size: 1.8rem;
  }
  .box_waku {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important;
  }
  .box_option {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .scroll-note {
    display: block;
  }
  .cat-btn {
    flex: 1 1 calc(50% - 10px);
    font-size: 1rem;
    height: 50px;
  }
  .photo_box1_btn_area {
    width: 100%;
  }
}
/* ==========================================================================
   ドロップダウンメニュー用スタイル (追加分)
   ========================================================================== */
/* PC用 (1024px以上)：マウスオーバーで開く */
@media (min-width: 1024px) {
  .luxbar-item.dropdown {
    position: relative;
  }
  .luxbar-item.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    min-width: 260px;
    display: none;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    padding: 0;
  }
  .luxbar-item.dropdown:hover > ul {
    display: block;
  }
  .luxbar-item.dropdown > ul .luxbar-item a {
    padding: 15px 20px;
    border-bottom: 1px solid #444;
    font-size: 0.9rem;
  }
  .luxbar-item.dropdown > ul .luxbar-item a:hover {
    background-color: #555;
  }
}

/* スマホ用 (1023px以下)：インデントして常時表示（見やすさ重視） */
@media screen and (max-width: 1023px) {
  .luxbar-item.dropdown > ul {
    list-style: none;
    background-color: #222; /* 少し背景を暗くして階層を表現 */
    display: block; 
    padding: 0;
  }
  .luxbar-item.dropdown > a {
    color: #aaa !important; /* 親メニューはリンクではなく見出しっぽくする */
    pointer-events: none; 
  }
  .luxbar-item.dropdown > ul .luxbar-item a {
    padding-left: 40px; /* 左に余白をあけてサブメニュー感を出す */
    font-size: 0.85rem;
    border-top: 1px solid #444;
  }
}