@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/* ============================================
   Figmaのpx値をそのまま使えるレスポンシブ関数
   ============================================ */
/* 
【r()関数 - レスポンシブサイズ指定】
Figmaで確認したpx値をそのまま指定するだけで、自動的にレスポンシブ対応になります。

■ 基本的な使い方
  padding: r(40px);
  → calc(40px + 0.5vw) に変換されます

■ vwの倍率を調整する場合（第2引数）
  小さい要素: r(10px, 0.125)   → calc(10px + 0.125vw)
  中くらい:  r(40px, 0.5)     → calc(40px + 0.5vw) [デフォルト]
  大きい要素: r(436px, 1)      → calc(436px + 1vw)

■ 使用例
  padding: r(40px) 0 r(22px, 0.25);
  width: r(436px, 1);
  margin: r(20px, 0.25) r(30px);
  border-radius: r(10px, 0.125);

  // position: absolute/fixed の位置指定でも使用可能
  position: absolute;
  top: r(8px, 0.125);
  right: r(30px);
  bottom: r(20px, 0.25);
  left: r(10px, 0.125);

  // パーセンテージや0の場合はそのままでOK
  top: 50%;        // r()は不要
  left: 50%;       // r()は不要
  right: 0;        // r()は不要

■ vw倍率の目安
  - 0.05〜0.125: 非常に小さい要素（ボーダー、小さなマージンなど）
  - 0.25〜0.5:   通常の要素（パディング、マージンなど）[デフォルト: 0.5]
  - 0.75〜1:     大きい要素（幅、高さなど）
  - 1以上:       特大要素（セクション幅など）
*/
/* 
【fs()関数 - フォントサイズ指定】
フォントサイズをレスポンシブ対応で指定します。
画面幅に応じて自動的に調整され、最小・最大値も設定できます。

■ 基本的な使い方
  font-size: fs(18px);
  → clamp(16.2px, calc(18px + 0.25vw), 18px) に変換されます
  （最小値は自動的に90%に設定されます）

■ 最小・最大値を指定する場合
  font-size: fs(24px, 20px, 24px);
  → clamp(20px, calc(24px + 0.25vw), 24px)

  font-size: fs(36px, 28px, 36px);
  → clamp(28px, calc(36px + 0.25vw), 36px)

■ 使用例
  h1 { font-size: fs(36px, 28px, 36px); }
  p  { font-size: fs(16px); }
  a  { font-size: fs(18px); }

■ パラメータ説明
  - 第1引数: 推奨サイズ（Figmaのpx値）
  - 第2引数: 最小サイズ（省略時は推奨サイズの90%）
  - 第3引数: 最大サイズ（省略時は推奨サイズと同じ）

■ 使い分けのガイドライン

【基本的な使い方 fs(18px) を使う場合】
→ 一般的なテキスト（本文、リンク、ナビゲーションなど）
→ 自動的に90%〜100%の範囲で調整されるので、ほとんどの場合これでOK

使用例:
  p { font-size: fs(16px); }        // 本文
  a { font-size: fs(18px); }        // リンク
  .nav li a { font-size: fs(18px); } // ナビゲーション
  .btn { font-size: fs(16px); }     // ボタン

【最小・最大値を指定する場合 fs(24px, 20px, 24px) を使う場合】
→ 見出しや重要なテキストで、読みやすさを保ちたい場合
→ デザインの意図を明確にしたい場合
→ スマホで小さくなりすぎないようにしたい場合

使用例:
  h1 { font-size: fs(36px, 28px, 36px); }  // 大見出し（最小28px）
  h2 { font-size: fs(24px, 20px, 24px); }  // 中見出し（最小20px）
  .hero-title { font-size: fs(48px, 32px, 48px); } // ヒーロー見出し（最小32px）

【具体的な使い分けの判断基準】

✓ 基本的な使い方 fs(18px) を選ぶべき場合:
  - 一般的なテキスト要素
  - デザインに特別な制約がない
  - 自動調整で問題ない
  - 開発スピードを優先したい

✓ 最小・最大値を指定する場合 fs(24px, 20px, 24px) を選ぶべき場合:
  - 見出し（h1, h2, h3など）
  - スマホで小さくなりすぎると読みにくい要素
  - デザインで「このサイズ以下にはしたくない」という意図がある
  - ブランドの一貫性を保ちたい要素

【実践的な例】

// 一般的なテキスト → 基本的な使い方
body {
  font-size: fs(16px);  // 自動的に14.4px〜16pxで調整
}

// 見出し → 最小値を指定
h1 {
  font-size: fs(36px, 28px, 36px);  // 最小28pxを保証
}
h2 {
  font-size: fs(24px, 20px, 24px);  // 最小20pxを保証
}

// ナビゲーション → 基本的な使い方
.nav a {
  font-size: fs(18px);  // 自動調整でOK
}

// ボタン → 基本的な使い方
.btn {
  font-size: fs(16px);  // 自動調整でOK
}

// ヒーローエリアのタイトル → 最小値を指定
.hero-title {
  font-size: fs(48px, 32px, 48px);  // スマホでも32px以上を保証
}
*/
/* 
【使い方のまとめ】

1. Figmaでpx値を確認
   ↓
2. サイズ指定（padding, margin, width, heightなど）→ r()関数を使用
   例: padding: r(40px);
   ↓
3. フォントサイズ指定 → fs()関数を使用
   例: font-size: fs(18px);
   ↓
4. 必要に応じてvw倍率を調整（大きい要素は倍率を上げる）
   例: width: r(436px, 1);

【よくある使用パターン】

.header {
  padding: r(40px) 0 r(22px, 0.25);
  .logo {
    width: r(436px, 1);
  }
  .nav {
    li {
      padding: r(10px, 0.125) r(20px, 0.25);
      a {
        font-size: fs(18px);
      }
    }
  }
}

.button {
  padding: r(15px, 0.25) r(30px, 0.5);
  font-size: fs(16px);
  border-radius: r(10px, 0.125);
}
*/
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  font-weight: 400;
  background-color: #F8F7F7;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

main {
  margin-top: 124px;
}
@media (max-width: 768px) {
  main {
    margin-top: 93px;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}
.bread ul li {
  padding: calc(5px + 0.0625vw);
  min-width: 0;
}
.bread ul li:not(:last-child) {
  flex-shrink: 0;
  white-space: nowrap;
}
.bread ul li:last-child {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.6;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: clamp(13px, 14px + 0.25vw, 14px);
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: calc(10px + 0.125vw);
  margin-right: calc(10px + 0.125vw);
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .inner {
    width: 85%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

.common_ttl_wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 64px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .common_ttl_wrap {
    gap: 0;
    margin-bottom: 48px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 599px) {
  .common_ttl_wrap {
    margin-bottom: 32px;
  }
}
.common_ttl_wrap .common_ttl {
  font-size: 50px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .common_ttl_wrap .common_ttl {
    font-size: 40px;
  }
}
@media (max-width: 599px) {
  .common_ttl_wrap .common_ttl {
    font-size: 32px;
  }
}
@media (max-width: 599px) {
  .common_ttl_wrap .common_text {
    font-size: 14px;
  }
}

.text_red {
  color: #E60113;
}

.common_btn {
  background-color: #858585;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 0;
  padding-left: 32px;
  font-size: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 280px;
  display: block;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .common_btn {
    width: 100%;
    max-width: 280px;
    font-size: 18px;
    padding: 12px 0;
    padding-left: 24px;
  }
}
@media (max-width: 599px) {
  .common_btn {
    width: 100%;
    font-size: 16px;
    padding: 10px 0;
    padding-left: 20px;
  }
}
.common_btn:hover {
  background-color: #E60113;
  box-shadow: none;
  transform: translateY(2px);
  opacity: 1;
}
.common_btn.common_btn_right {
  margin-left: auto;
}
@media (max-width: 768px) {
  .common_btn.common_btn_right {
    margin-left: 0;
    margin-right: auto;
  }
}
.common_btn.common_btn_center {
  margin: 0 auto;
  text-align: center;
  padding-left: 0;
}

.top_btn {
  position: fixed;
  bottom: calc(30px + 0.5vw);
  right: calc(30px + 0.5vw);
  z-index: 100;
  width: calc(65px + 0.5vw);
  height: calc(65px + 0.5vw);
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: calc(90px + 1vw);
    right: calc(23px + 0.25vw);
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto calc(3px + 0.05vw);
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

.common_sns {
  background-image: radial-gradient(circle, #fbd7ce 2px, transparent 2px);
  background-size: 20px 20px;
  background-repeat: repeat;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .common_sns {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .common_sns {
    padding: 32px 0;
  }
}
@media (max-width: 768px) {
  .common_sns .common_sns_row {
    flex-direction: column;
  }
}
.common_sns .common_sns_row .common_sns_ttl_wrap {
  width: 18%;
}
@media (max-width: 768px) {
  .common_sns .common_sns_row .common_sns_ttl_wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_ttl_wrap {
    margin-bottom: 24px;
  }
}
.common_sns .common_sns_row .common_sns_ttl_wrap .common_sns_ttl {
  font-size: 50px;
  color: #E60113;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .common_sns .common_sns_row .common_sns_ttl_wrap .common_sns_ttl {
    font-size: 40px;
  }
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_ttl_wrap .common_sns_ttl {
    font-size: 32px;
  }
}
.common_sns .common_sns_row .common_sns_ttl_wrap .common_sns_text {
  font-size: 24px;
  color: #E60113;
  font-weight: 500;
}
@media (max-width: 768px) {
  .common_sns .common_sns_row .common_sns_ttl_wrap .common_sns_text {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_ttl_wrap .common_sns_text {
    font-size: 18px;
  }
}
.common_sns .common_sns_row .common_sns_cont {
  width: 80%;
}
@media (max-width: 768px) {
  .common_sns .common_sns_row .common_sns_cont {
    width: 100%;
    flex-direction: column;
  }
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item {
  width: 32%;
}
@media (max-width: 768px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item {
    width: 100%;
    margin-bottom: 24px;
  }
  .common_sns .common_sns_row .common_sns_cont .common_sns_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item {
    margin-bottom: 20px;
  }
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_img {
  width: 80px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_img {
    width: 80px;
    margin-right: 12px;
  }
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_img {
    width: 60px;
    margin-right: 10px;
  }
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea {
  flex: 1;
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_text {
  margin-bottom: 8px;
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_text {
    margin-bottom: 6px;
  }
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_text img {
  width: 32px;
  margin-right: 8px;
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_text img {
    width: 24px;
    margin-right: 8px;
  }
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_text p {
  flex: 1;
  font-size: 14px;
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_text p {
    font-size: 14px;
  }
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_link {
  font-size: 20px;
  display: block;
  align-items: center;
  gap: 8px;
  width: 100%;
  position: relative;
  line-height: 1;
}
@media (max-width: 768px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_link {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_link {
    font-size: 16px;
  }
}
.common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_link i {
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background-color: #1e1e1e;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .common_sns .common_sns_row .common_sns_cont .common_sns_item .common_sns_item_textarea .common_sns_item_link i {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

.common_items_inner {
  padding: 40px 0;
}

/* header */
header {
  padding: calc(40px + 0.5vw) 0 calc(22px + 0.25vw);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
@media (max-width: 768px) {
  header {
    padding: calc(8px + 0.25vw) 0;
  }
}
header .header_row {
  gap: calc(20px + 0.5vw);
}
header .header_row .header_logo {
  flex-shrink: 0;
  flex-basis: auto;
  width: 360px;
  max-width: 360px;
  z-index: 1000;
}
@media (max-width: 1200px) {
  header .header_row .header_logo {
    width: 280px;
  }
}
@media (max-width: 768px) {
  header .header_row .header_logo {
    width: 180px;
    max-width: 100%;
  }
}
header .header_row .header_logo h1 img {
  max-width: 100%;
  height: auto;
  display: block;
}
header .header_row .header_nav_pc {
  flex-shrink: 1;
  flex-grow: 0;
  min-width: 0;
  overflow: visible;
}
@media (max-width: 1200px) {
  header .header_row .header_nav_pc li {
    padding-right: 8px;
    margin-right: 8px;
  }
  header .header_row .header_nav_pc li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  header .header_row .header_nav_pc {
    display: none;
  }
}
header .header_row .header_nav_pc ul {
  flex-wrap: nowrap;
}
header .header_row .header_nav_pc li {
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #000;
  position: relative;
}
header .header_row .header_nav_pc li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
@media (max-width: 1200px) {
  header .header_row .header_nav_pc li {
    padding-right: 16px;
    margin-right: 16px;
  }
}
header .header_row .header_nav_pc li a {
  font-size: 14px;
}
header .header_row .header_nav_pc li a:hover {
  color: #E60113;
  opacity: 1;
}
header .header_row .header_nav_pc li.shop_menu_item .shop_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}
header .header_row .header_nav_pc li.shop_menu_item .shop_dropdown li {
  padding: 0;
  margin: 0;
  border-right: none;
  border-bottom: 1px solid #eee;
}
header .header_row .header_nav_pc li.shop_menu_item .shop_dropdown li:last-child {
  border-bottom: none;
}
header .header_row .header_nav_pc li.shop_menu_item .shop_dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: clamp(14.4px, 16px + 0.25vw, 16px);
  color: #000;
  white-space: nowrap;
}
header .header_row .header_nav_pc li.shop_menu_item .shop_dropdown li a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}
header .header_row .header_nav_pc li.shop_menu_item:hover .shop_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header_row .header_nav_pc li.shop_menu_item:hover .shop_dropdown li a:hover {
  background-color: #E60113;
  color: #fff;
}
header .header_row .header_nav_pc li.flyer_menu_item .flyer_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}
header .header_row .header_nav_pc li.flyer_menu_item .flyer_dropdown li {
  padding: 0;
  margin: 0;
  border-right: none;
  border-bottom: 1px solid #eee;
}
header .header_row .header_nav_pc li.flyer_menu_item .flyer_dropdown li:last-child {
  border-bottom: none;
}
header .header_row .header_nav_pc li.flyer_menu_item .flyer_dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: clamp(14.4px, 16px + 0.25vw, 16px);
  color: #000;
  white-space: nowrap;
}
header .header_row .header_nav_pc li.flyer_menu_item .flyer_dropdown li a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}
header .header_row .header_nav_pc li.flyer_menu_item:hover .flyer_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header_row .header_nav_pc li.flyer_menu_item:hover .flyer_dropdown li a:hover {
  background-color: #E60113;
  color: #fff;
}
header .header_row .header_nav_pc li.furniture_menu_item .furniture_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}
header .header_row .header_nav_pc li.furniture_menu_item .furniture_dropdown li {
  padding: 0;
  margin: 0;
  border-right: none;
  border-bottom: 1px solid #eee;
}
header .header_row .header_nav_pc li.furniture_menu_item .furniture_dropdown li:last-child {
  border-bottom: none;
}
header .header_row .header_nav_pc li.furniture_menu_item .furniture_dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: clamp(14.4px, 16px + 0.25vw, 16px);
  color: #000;
  white-space: nowrap;
}
header .header_row .header_nav_pc li.furniture_menu_item .furniture_dropdown li a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}
header .header_row .header_nav_pc li.furniture_menu_item:hover .furniture_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header_row .header_nav_pc li.furniture_menu_item:hover .furniture_dropdown li a:hover {
  background-color: #E60113;
  color: #fff;
}

.menu_btn {
  display: none;
}
@media (max-width: 768px) {
  .menu_btn {
    display: block;
    width: calc(50px + 0.5vw);
    height: calc(50px + 0.5vw);
    position: relative;
    z-index: 4000;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 0;
  }
  .menu_btn span {
    display: block;
    height: calc(3px + 0.0375vw);
    width: calc(30px + 0.375vw);
    background-color: #000;
    border-radius: calc(2px + 0.025vw);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }
  .menu_btn span:nth-child(1) {
    top: calc(12px + 0.15vw);
  }
  .menu_btn span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .menu_btn span:nth-child(3) {
    bottom: calc(12px + 0.15vw);
  }
}

.header_nav_sp {
  display: none;
}
@media (max-width: 768px) {
  .header_nav_sp {
    display: block;
    left: 100%;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 500;
    transition: 500ms ease-out;
    padding: calc(80px + 1vw) calc(20px + 0.25vw) calc(40px + 0.5vw);
    text-align: left;
    overflow-y: auto;
  }
  .header_nav_sp ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .header_nav_sp > ul > li {
    margin-bottom: calc(8px + 0.1vw);
    border-bottom: 1px solid #eee;
  }
  .header_nav_sp > ul > li:last-child {
    border-bottom: none;
  }
  .header_nav_sp > ul > li > a {
    color: #000;
    font-size: clamp(16.2px, 18px + 0.25vw, 18px);
    font-weight: 600;
    display: block;
    padding: calc(10px + 0.2vw) 0;
    transition: all 0.3s ease;
  }
  .header_nav_sp > ul > li > a:hover {
    opacity: 1;
  }
  .header_nav_sp .sp_menu_item_has_child > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .header_nav_sp .sp_menu_item_has_child > a i {
    font-size: clamp(12.6px, 14px + 0.25vw, 14px);
    transition: transform 0.3s ease;
  }
  .header_nav_sp .sp_menu_item_has_child.active > a {
    color: #E60113;
  }
  .header_nav_sp .sp_menu_item_has_child.active > a i {
    transform: rotate(180deg);
  }
  .header_nav_sp .sp_menu_item_has_child.active .sp_submenu {
    max-height: 500px;
    opacity: 1;
    padding: calc(8px + 0.1vw) 0;
  }
  .header_nav_sp .sp_menu_item_has_child .sp_submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 0;
    background-color: #f8f8f8;
    margin: calc(8px + 0.1vw) 0;
    border-radius: calc(4px + 0.05vw);
  }
  .header_nav_sp .sp_menu_item_has_child .sp_submenu li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  .header_nav_sp .sp_menu_item_has_child .sp_submenu li:last-child {
    border-bottom: none;
  }
  .header_nav_sp .sp_menu_item_has_child .sp_submenu li a {
    display: block;
    padding: calc(12px + 0.15vw) calc(24px + 0.3vw);
    font-weight: 400;
  }
  .header_nav_sp .sp_menu_item_has_child .sp_submenu li a:hover {
    opacity: 1;
  }
}

body.open {
  overflow: hidden;
}
body.open .menu_btn {
  z-index: 1000;
}
body.open .menu_btn span {
  background-color: #000;
}
body.open .menu_btn span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.open .menu_btn span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%);
}
body.open .menu_btn span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
body.open .header_nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

/* footer */
footer {
  padding-top: 76px;
  background-color: #E60113;
}
@media (max-width: 768px) {
  footer {
    padding-top: 48px;
  }
}
@media (max-width: 599px) {
  footer {
    padding-top: 32px;
  }
}
footer .inner {
  width: 1000px;
}
@media (max-width: 1200px) {
  footer .inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  footer .inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 599px) {
  footer .inner {
    padding: 0 16px;
  }
}
footer .footer_logo {
  width: 430px;
  display: block;
}
@media (max-width: 768px) {
  footer .footer_logo {
    width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  footer .footer_logo {
    width: 240px;
  }
}
footer .footer_logo img {
  width: 100%;
  height: auto;
}
footer .footer_row {
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  footer .footer_row {
    flex-direction: column;
    padding-bottom: 48px;
  }
}
@media (max-width: 599px) {
  footer .footer_row {
    padding-bottom: 0;
    flex-direction: column-reverse;
  }
}
footer .footer_row .footer_nav_wrap {
  width: 57%;
  padding-top: 20px;
}
@media (max-width: 768px) {
  footer .footer_row .footer_nav_wrap {
    width: 100%;
    padding-top: 32px;
  }
}
@media (max-width: 599px) {
  footer .footer_row .footer_nav_wrap {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
footer .footer_row .footer_nav_wrap .footer_nav {
  width: 32%;
}
@media (max-width: 768px) {
  footer .footer_row .footer_nav_wrap .footer_nav {
    width: 100%;
    margin-bottom: 32px;
  }
  footer .footer_row .footer_nav_wrap .footer_nav:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  footer .footer_row .footer_nav_wrap .footer_nav {
    margin-bottom: 0;
  }
}
footer .footer_row .footer_nav_wrap .footer_nav.footer_nav_01 {
  padding-top: 40px;
}
@media (max-width: 768px) {
  footer .footer_row .footer_nav_wrap .footer_nav.footer_nav_01 {
    padding-top: 0;
  }
}
@media (max-width: 599px) {
  footer .footer_row .footer_nav_wrap .footer_nav.footer_nav_01 {
    width: 100%;
    flex-basis: 100%;
  }
  footer .footer_row .footer_nav_wrap .footer_nav.footer_nav_01 ul {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 2px;
  }
  footer .footer_row .footer_nav_wrap .footer_nav.footer_nav_01 ul li {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    box-sizing: border-box;
  }
}
@media (max-width: 599px) {
  footer .footer_row .footer_nav_wrap .footer_nav.footer_nav_02 {
    width: 48%;
    flex-basis: 48%;
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  footer .footer_row .footer_nav_wrap .footer_nav.footer_nav_03 {
    width: 48%;
    flex-basis: 48%;
    margin-bottom: 24px;
  }
}
footer .footer_row .footer_nav_wrap .footer_nav h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}
@media (max-width: 599px) {
  footer .footer_row .footer_nav_wrap .footer_nav h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
footer .footer_row .footer_nav_wrap .footer_nav ul li a {
  color: #fff;
  line-height: 2.2;
}
@media (max-width: 599px) {
  footer .footer_row .footer_nav_wrap .footer_nav ul li a {
    font-size: 14px;
    line-height: 2;
  }
}
footer .footer_row .footer_chirashi {
  width: 38%;
}
@media (max-width: 768px) {
  footer .footer_row .footer_chirashi {
    width: 100%;
    margin-top: 32px;
  }
}
@media (max-width: 599px) {
  footer .footer_row .footer_chirashi {
    margin: 0 auto;
    margin-top: 24px;
    max-width: 250px;
  }
}
footer .footer_row .footer_chirashi img {
  width: 100%;
  height: auto;
}
footer .copyright {
  background-color: #fff;
  text-align: center;
  padding: 6px 0;
}
@media (max-width: 599px) {
  footer .copyright {
    padding: 8px 0;
  }
}
footer .copyright p {
  font-size: 14px;
}
@media (max-width: 599px) {
  footer .copyright p {
    font-size: 12px;
  }
}

.page-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #E60113;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.page-top-btn:hover {
  background-color: rgb(179.2207792208, 0.7792207792, 14.8051948052);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.page-top-btn.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 599px) {
  .page-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}
.page-top-btn i {
  line-height: 1;
}

/* top */
.top_mv {
  position: relative;
  margin-top: 124px;
}
@media (max-width: 768px) {
  .top_mv {
    margin-top: 93px;
  }
}
.top_mv .mv_slide {
  position: relative;
}
.top_mv .mv_slide .slick-slide {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.top_mv .mv_slide .slick-slide.slick-center {
  opacity: 1;
}
@media (max-width: 599px) {
  .top_mv .mv_slide .slick-slide {
    opacity: 1;
  }
}
.top_mv .mv_slide .slick-prev,
.top_mv .mv_slide .slick-next {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 80px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  transform: translateY(-50%);
  padding: 0;
  line-height: 1;
  margin: 0;
}
.top_mv .mv_slide .slick-prev i,
.top_mv .mv_slide .slick-next i {
  font-size: 20px;
  color: #fff;
  display: block;
}
.top_mv .mv_slide .slick-prev::before,
.top_mv .mv_slide .slick-next::before {
  display: none !important;
  content: none !important;
}
.top_mv .mv_slide .slick-prev {
  left: 104px;
  transform: translateY(-50%) rotate(180deg);
}
.top_mv .mv_slide .slick-next {
  right: 104px;
  transform: translateY(-50%);
}
.top_mv .mv_slide .mv_slide_item {
  margin: 0 8px;
}
.top_mv .mv_slide .mv_slide_item img {
  width: 100%;
  height: auto;
  display: block;
}
.top_mv .mv_text_img {
  width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (max-width: 768px) {
  .top_mv .mv_text_img {
    width: 70%;
    max-width: 450px;
  }
}
@media (max-width: 599px) {
  .top_mv .mv_text_img {
    width: 85%;
    max-width: 320px;
    padding: 0 16px;
  }
}
.top_mv .mv_text_img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .top_mv .mv_slide .slick-prev {
    left: 16px;
  }
}
@media (max-width: 599px) {
  .top_mv .mv_slide .slick-prev {
    left: 8px;
    width: 24px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .top_mv .mv_slide .slick-next {
    right: 16px;
  }
}
@media (max-width: 599px) {
  .top_mv .mv_slide .slick-next {
    right: 8px;
    width: 24px;
    height: 60px;
  }
}

.top_topics {
  padding: 48px 0;
  background-color: #ececec;
}
@media (max-width: 768px) {
  .top_topics {
    padding: 32px 0;
  }
}
@media (max-width: 599px) {
  .top_topics {
    padding: 24px 0;
  }
}
.top_topics .topics_ttl {
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .top_topics .topics_ttl {
    font-size: 64px;
  }
}
@media (max-width: 599px) {
  .top_topics .topics_ttl {
    font-size: 48px;
    line-height: 1.2;
  }
}
.top_topics .topics_text {
  margin-bottom: 40px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .top_topics .topics_text {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .top_topics .topics_text {
    font-size: 16px;
  }
}
.top_topics .topics_slide {
  position: relative;
  margin-bottom: 50px;
}
.top_topics .topics_slide .slick-prev,
.top_topics .topics_slide .slick-next {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 80px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  transform: translateY(-50%);
  padding: 0;
  line-height: 1;
  margin: 0;
}
.top_topics .topics_slide .slick-prev i,
.top_topics .topics_slide .slick-next i {
  font-size: 20px;
  color: #fff;
  display: block;
}
.top_topics .topics_slide .slick-prev::before,
.top_topics .topics_slide .slick-next::before {
  display: none !important;
  content: none !important;
}
.top_topics .topics_slide .slick-prev {
  left: -16px;
  transform: translateY(-50%) rotate(180deg);
}
.top_topics .topics_slide .slick-next {
  right: -16px;
  transform: translateY(-50%);
}
.top_topics .topics_slide .topics_slide_item {
  margin: 0 16px;
}
@media (max-width: 768px) {
  .top_topics .topics_slide .topics_slide_item {
    margin: 0 4px;
  }
}
.top_topics .topics_slide .topics_slide_item img {
  margin-bottom: 12px;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top_topics .topics_slide .topics_slide_item img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .top_topics .topics_cont {
    flex-direction: column;
  }
}
.top_topics .topics_cont .topics_cont_item {
  width: 32%;
}
@media (max-width: 768px) {
  .top_topics .topics_cont .topics_cont_item {
    width: 100%;
    margin-bottom: 24px;
  }
  .top_topics .topics_cont .topics_cont_item:last-child {
    margin-bottom: 0;
  }
}
.top_topics .topics_cont .topics_cont_item img {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .top_topics .topics_slide {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .top_topics .topics_slide .slick-prev {
    left: -8px;
  }
}
@media (max-width: 599px) {
  .top_topics .topics_slide .slick-prev {
    left: -8px;
    width: 24px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .top_topics .topics_slide .slick-next {
    right: -8px;
  }
}
@media (max-width: 599px) {
  .top_topics .topics_slide .slick-next {
    right: -8px;
    width: 24px;
    height: 60px;
  }
}

.top_info {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .top_info {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .top_info {
    padding: 32px 0;
  }
}
.top_info .info_cont {
  width: 920px;
  margin: 0 auto 68px;
}
@media (max-width: 768px) {
  .top_info .info_cont {
    width: 100%;
    margin-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .top_info .info_cont {
    margin-bottom: 32px;
  }
}
.top_info .info_cont .info_cont_item {
  padding-bottom: 50px;
  margin-bottom: 50px;
  padding-left: 38px;
  border-bottom: 1px dashed #858585;
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .top_info .info_cont .info_cont_item {
    padding-bottom: 32px;
    margin-bottom: 32px;
    padding-left: 24px;
  }
}
@media (max-width: 599px) {
  .top_info .info_cont .info_cont_item {
    padding-bottom: 24px;
    margin-bottom: 24px;
    padding-left: 16px;
  }
}
.top_info .info_cont .info_cont_item:last-child {
  margin-bottom: 0;
}
.top_info .info_cont .info_cont_item:hover {
  color: #E60113;
  opacity: 1;
}
.top_info .info_cont .info_cont_item .info_cont_date {
  margin-right: 17px;
}
@media (max-width: 599px) {
  .top_info .info_cont .info_cont_item .info_cont_date {
    margin-right: 8px;
    display: block;
    margin-bottom: 4px;
  }
}
.top_info .info_cont .info_cont_item .info_cont_ttl {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 599px) {
  .top_info .info_cont .info_cont_item .info_cont_ttl {
    font-size: 14px;
  }
}

.top_furniture {
  padding: 88px 0;
  background: url(../images/top/furniture_bg.jpg) center/cover no-repeat;
}
@media (max-width: 768px) {
  .top_furniture {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .top_furniture {
    padding: 32px 0;
  }
}
.top_furniture .furniture_cont {
  gap: 5%;
}
@media (max-width: 768px) {
  .top_furniture .furniture_cont {
    justify-content: space-between;
  }
}
.top_furniture .furniture_cont .furniture_item {
  width: 30%;
  margin-bottom: 48px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .top_furniture .furniture_cont .furniture_item {
    width: 47%;
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .top_furniture .furniture_cont .furniture_item {
    width: 47%;
    margin-bottom: 24px;
  }
}
.top_furniture .furniture_cont .furniture_item:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.top_furniture .furniture_cont .furniture_item:hover .furniture_item_img {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.top_furniture .furniture_cont .furniture_item:hover .furniture_item_title {
  color: #E60113;
}
.top_furniture .furniture_cont .furniture_item:hover .common_btn {
  background-color: #E60113;
  box-shadow: none;
  transform: translateY(2px);
  opacity: 1;
}
.top_furniture .furniture_cont .furniture_item .furniture_item_img {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .top_furniture .furniture_cont .furniture_item .furniture_item_img {
    margin-bottom: 12px;
  }
}
@media (max-width: 599px) {
  .top_furniture .furniture_cont .furniture_item .furniture_item_img {
    margin-bottom: 10px;
  }
}
.top_furniture .furniture_cont .furniture_item .furniture_item_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.top_furniture .furniture_cont .furniture_item:hover .furniture_item_img img {
  transform: scale(1.05);
}
.top_furniture .furniture_cont .furniture_item .furniture_item_title {
  font-size: clamp(16.2px, 18px + 0.25vw, 18px);
  font-weight: 600;
  color: #1e1e1e;
  text-align: center;
  margin: 0;
  padding: 12px 0;
  transition: color 0.3s ease;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .top_furniture .furniture_cont .furniture_item .furniture_item_title {
    font-size: clamp(14.4px, 16px + 0.25vw, 16px);
    padding: 10px 0;
  }
}
@media (max-width: 599px) {
  .top_furniture .furniture_cont .furniture_item .furniture_item_title {
    font-size: clamp(12.6px, 14px + 0.25vw, 14px);
    padding: 8px 0;
  }
}
.top_furniture .furniture_cont .furniture_item .furniture_item_info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
  .top_furniture .furniture_cont .furniture_item .furniture_item_info {
    margin-top: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 599px) {
  .top_furniture .furniture_cont .furniture_item .furniture_item_info {
    margin-top: 8px;
    padding-top: 8px;
  }
}

.top_blog {
  padding: 77px 0;
}
@media (max-width: 768px) {
  .top_blog {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .top_blog {
    padding: 32px 0;
  }
}
.top_blog .blog_cont {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .top_blog .blog_cont {
    margin-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .top_blog .blog_cont {
    margin-bottom: 32px;
    position: relative;
    display: block;
  }
  .top_blog .blog_cont .slick-prev,
  .top_blog .blog_cont .slick-next {
    position: absolute;
    top: 50%;
    width: 32px;
    height: 80px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    transform: translateY(-50%);
    padding: 0;
    line-height: 1;
    margin: 0;
  }
  .top_blog .blog_cont .slick-prev i,
  .top_blog .blog_cont .slick-next i {
    font-size: 20px;
    color: #fff;
    display: block;
  }
  .top_blog .blog_cont .slick-prev::before,
  .top_blog .blog_cont .slick-next::before {
    display: none !important;
    content: none !important;
  }
  .top_blog .blog_cont .slick-prev {
    left: -16px;
    transform: translateY(-50%) rotate(180deg);
  }
  .top_blog .blog_cont .slick-next {
    right: -16px;
    transform: translateY(-50%);
  }
}
.top_blog .blog_cont .blog_item {
  width: 32%;
}
@media (max-width: 768px) {
  .top_blog .blog_cont .blog_item {
    width: 48%;
    margin-bottom: 32px;
  }
  .top_blog .blog_cont .blog_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .top_blog .blog_cont .blog_item {
    margin-bottom: 0;
    padding: 0 8px;
  }
}
.top_blog .blog_cont .blog_item:hover {
  opacity: 1;
}
.top_blog .blog_cont .blog_item:hover .blog_item_date,
.top_blog .blog_cont .blog_item:hover .blog_item_ttl {
  color: #E60113;
}
.top_blog .blog_cont .blog_item img {
  margin-bottom: 20px;
  height: auto;
}
@media (max-width: 599px) {
  .top_blog .blog_cont .blog_item img {
    margin-bottom: 12px;
    height: 190px;
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
  }
}
.top_blog .blog_cont .blog_item .blog_item_date {
  margin-bottom: 6px;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .top_blog .blog_cont .blog_item .blog_item_date {
    font-size: 14px;
  }
}
.top_blog .blog_cont .blog_item .blog_item_ttl {
  transition: 0.3s;
}
@media (max-width: 599px) {
  .top_blog .blog_cont .blog_item .blog_item_ttl {
    font-size: 16px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(calc(3% + 0.5vw));
}
.fadein.active {
  animation: 0.8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(calc(3% + 0.5vw));
}
.fadein2.active {
  animation: 0.8s forwards 0.1s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(calc(3% + 0.5vw));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ============================================
   Information（お知らせ）ページ
   ============================================ */
.archive_info .bread {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .archive_info .bread {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .archive_info .bread {
    margin-bottom: 20px;
  }
}
.archive_info .archive_date_title {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .archive_info .archive_date_title {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .archive_info .archive_date_title {
    margin-bottom: 20px;
  }
}
.archive_info .archive_date_title .archive_date_text {
  font-size: 20px;
  font-weight: 600;
  color: #E60113;
  padding-bottom: 12px;
  border-bottom: 2px solid #E60113;
  display: inline-block;
}
@media (max-width: 768px) {
  .archive_info .archive_date_title .archive_date_text {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .archive_info .archive_date_title .archive_date_text {
    font-size: 16px;
    padding-bottom: 8px;
  }
}
.archive_info .archive_info_wrap {
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .archive_info .archive_info_wrap {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 599px) {
  .archive_info .archive_info_wrap {
    gap: 24px;
  }
}
.archive_info .archive_info_main {
  flex: 1;
  min-width: 0;
}
.archive_info .archive_info_main .info_cont {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .archive_info .archive_info_main .info_cont {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .archive_info .archive_info_main .info_cont {
    margin-bottom: 24px;
  }
}
.archive_info .archive_info_sidebar {
  width: 300px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .archive_info .archive_info_sidebar {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .archive_info .archive_info_sidebar {
    width: 100%;
  }
}
.archive_info .archive_sidebar_widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .archive_info .archive_sidebar_widget {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .archive_info .archive_sidebar_widget {
    padding: 16px;
    margin-bottom: 16px;
  }
}
.archive_info .archive_sidebar_widget:last-child {
  margin-bottom: 0;
}
.archive_info .archive_sidebar_widget .archive_sidebar_ttl {
  font-size: 18px;
  font-weight: 600;
  color: #E60113;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E60113;
}
@media (max-width: 599px) {
  .archive_info .archive_sidebar_widget .archive_sidebar_ttl {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 6px;
  }
}
.archive_info .archive_sidebar_widget .archive_no_posts {
  color: #858585;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 599px) {
  .archive_info .archive_sidebar_widget .archive_no_posts {
    font-size: 13px;
    padding: 16px 0;
  }
}
.archive_info .archive_monthly_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive_info .archive_monthly_list li {
  margin-bottom: 12px;
}
@media (max-width: 599px) {
  .archive_info .archive_monthly_list li {
    margin-bottom: 10px;
  }
}
.archive_info .archive_monthly_list li:last-child {
  margin-bottom: 0;
}
.archive_info .archive_monthly_list li a {
  display: block;
  padding: 10px 12px;
  color: #1e1e1e;
  text-decoration: none;
  border-left: 3px solid #ececec;
  transition: all 0.3s;
}
@media (max-width: 599px) {
  .archive_info .archive_monthly_list li a {
    padding: 8px 10px;
    font-size: 14px;
  }
}
.archive_info .archive_monthly_list li a:hover {
  border-left-color: #E60113;
  background-color: #F8F7F7;
  color: #E60113;
  padding-left: 16px;
  opacity: 1;
}
.archive_info .archive_monthly_list li a.current {
  border-left-color: #E60113;
  background-color: #F8F7F7;
  color: #E60113;
  font-weight: 600;
}
.archive_info .archive_recent_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive_info .archive_recent_list .archive_recent_item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #ececec;
}
@media (max-width: 599px) {
  .archive_info .archive_recent_list .archive_recent_item {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}
.archive_info .archive_recent_list .archive_recent_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.archive_info .archive_recent_list .archive_recent_item a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.archive_info .archive_recent_list .archive_recent_item a:hover {
  opacity: 1;
}
.archive_info .archive_recent_list .archive_recent_item a:hover .archive_recent_title {
  color: #E60113;
}
.archive_info .archive_recent_list .archive_recent_item .archive_recent_date {
  display: block;
  font-size: 12px;
  color: #858585;
  margin-bottom: 4px;
}
@media (max-width: 599px) {
  .archive_info .archive_recent_list .archive_recent_item .archive_recent_date {
    font-size: 11px;
  }
}
.archive_info .archive_recent_list .archive_recent_item .archive_recent_title {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #1e1e1e;
  transition: color 0.3s;
}
@media (max-width: 599px) {
  .archive_info .archive_recent_list .archive_recent_item .archive_recent_title {
    font-size: 13px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 48px;
  }
}
@media (max-width: 599px) {
  .pagination {
    margin-top: 32px;
  }
}
.pagination .page-numbers {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
@media (max-width: 599px) {
  .pagination .page-numbers {
    gap: 4px;
  }
}
.pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.pagination .page-numbers a,
.pagination .page-numbers span {
  display: block;
  padding: 8px 16px;
  border: 1px solid #858585;
  border-radius: 4px;
  color: #858585;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 599px) {
  .pagination .page-numbers a,
  .pagination .page-numbers span {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.pagination .page-numbers a:hover,
.pagination .page-numbers span:hover {
  background-color: #E60113;
  border-color: #E60113;
  color: #fff;
  opacity: 1;
}
.pagination .page-numbers .current {
  background-color: #E60113;
  border-color: #E60113;
  color: #fff;
  opacity: 1;
}
.pagination .page-numbers .prev,
.pagination .page-numbers .next {
  font-weight: 500;
}
.pagination .page-numbers .dots {
  border: none;
  cursor: default;
}
.pagination .page-numbers .dots:hover {
  background-color: transparent;
  border-color: transparent;
  color: #858585;
}

.information-single {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .information-single {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .information-single {
    padding: 32px 0;
  }
}
.information-single .common_ttl_wrap {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .information-single .common_ttl_wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .information-single .common_ttl_wrap {
    margin-bottom: 24px;
  }
}
.information-single .bread {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .information-single .bread {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .information-single .bread {
    margin-bottom: 20px;
  }
}
.information-single .information-header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .information-single .information-header {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .information-single .information-header {
    margin-bottom: 24px;
  }
}
.information-single .information-header .information-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .information-single .information-header .information-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 599px) {
  .information-single .information-header .information-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.information-single .information-header .info_cont_date {
  color: #858585;
  font-size: 16px;
}
@media (max-width: 599px) {
  .information-single .information-header .info_cont_date {
    font-size: 14px;
  }
}
.information-single .information-thumbnail {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .information-single .information-thumbnail {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .information-single .information-thumbnail {
    margin-bottom: 24px;
  }
}
.information-single .information-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.information-single .information-content {
  margin-bottom: 60px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .information-single .information-content {
    margin-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .information-single .information-content {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.information-single .information-content p {
  margin-bottom: 1.5em;
}
@media (max-width: 599px) {
  .information-single .information-content p {
    margin-bottom: 1.2em;
  }
}
.information-single .information-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 1em;
  padding-bottom: 8px;
  border-bottom: 2px solid #E60113;
}
@media (max-width: 768px) {
  .information-single .information-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 599px) {
  .information-single .information-content h2 {
    font-size: 20px;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
  }
}
.information-single .information-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}
@media (max-width: 768px) {
  .information-single .information-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .information-single .information-content h3 {
    font-size: 16px;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
  }
}
.information-single .information-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}
@media (max-width: 768px) {
  .information-single .information-content h4 {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .information-single .information-content h4 {
    font-size: 14px;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
}
.information-single .information-content ul,
.information-single .information-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
@media (max-width: 599px) {
  .information-single .information-content ul,
  .information-single .information-content ol {
    margin: 1.2em 0;
    padding-left: 1.5em;
  }
}
.information-single .information-content ul li,
.information-single .information-content ol li {
  margin-bottom: 0.8em;
  line-height: 1.8;
}
.information-single .information-content ul {
  list-style-type: disc;
}
.information-single .information-content ol {
  list-style-type: decimal;
}
.information-single .information-content blockquote {
  border-left: 4px solid #E60113;
  padding-left: 1.5em;
  margin: 1.5em 0;
  color: #858585;
  font-style: italic;
}
@media (max-width: 599px) {
  .information-single .information-content blockquote {
    padding-left: 1em;
    margin: 1.2em 0;
  }
}
.information-single .information-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 4px;
}
@media (max-width: 599px) {
  .information-single .information-content img {
    margin: 1.2em 0;
  }
}
.information-single .information-content a {
  color: #E60113;
  text-decoration: underline;
}
.information-single .information-content a:hover {
  opacity: 0.8;
}
.information-single .information-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
@media (max-width: 599px) {
  .information-single .information-content table {
    margin: 1.2em 0;
    font-size: 14px;
  }
}
.information-single .information-content table th,
.information-single .information-content table td {
  padding: 12px;
  border: 1px solid #ececec;
  text-align: left;
}
@media (max-width: 599px) {
  .information-single .information-content table th,
  .information-single .information-content table td {
    padding: 8px;
  }
}
.information-single .information-content table th {
  background-color: #ececec;
  font-weight: 600;
}
.information-single .information-content code {
  background-color: #ececec;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}
.information-single .information-content pre {
  background-color: #ececec;
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5em 0;
}
@media (max-width: 599px) {
  .information-single .information-content pre {
    padding: 0.8em;
    margin: 1.2em 0;
  }
}
.information-single .information-content pre code {
  background-color: transparent;
  padding: 0;
}
.information-single .topics-single-external {
  margin: 40px 0 0;
  text-align: center;
}
@media (max-width: 599px) {
  .information-single .topics-single-external {
    margin-top: 32px;
  }
}
.information-single .topics-single-external .common_btn {
  text-decoration: none;
}
.information-single .post-navigation {
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
@media (max-width: 768px) {
  .information-single .post-navigation {
    margin-bottom: 32px;
    padding: 24px 0;
  }
}
@media (max-width: 599px) {
  .information-single .post-navigation {
    margin-bottom: 24px;
    padding: 20px 0;
  }
}
.information-single .post-navigation .post-navigation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 599px) {
  .information-single .post-navigation .post-navigation-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.information-single .post-navigation .post-nav-item {
  display: flex;
  min-width: 0;
}
@media (max-width: 599px) {
  .information-single .post-navigation .post-nav-item {
    width: 100%;
  }
}
.information-single .post-navigation .post-nav-item.post-nav-prev {
  text-align: left;
}
.information-single .post-navigation .post-nav-item.post-nav-next {
  text-align: right;
}
@media (max-width: 599px) {
  .information-single .post-navigation .post-nav-item.post-nav-next {
    text-align: left;
  }
}
.information-single .post-navigation .post-nav-item .post-nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: 16px 20px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .information-single .post-navigation .post-nav-item .post-nav-link {
    padding: 14px 18px;
  }
}
@media (max-width: 599px) {
  .information-single .post-navigation .post-nav-item .post-nav-link {
    width: 100%;
    min-height: 0;
    flex: 0 1 auto;
    padding: 12px 16px;
  }
}
.information-single .post-navigation .post-nav-item .post-nav-link:hover {
  background-color: #E60113;
  border-color: #E60113;
  opacity: 1;
}
.information-single .post-navigation .post-nav-item .post-nav-link:hover .post-nav-label,
.information-single .post-navigation .post-nav-item .post-nav-link:hover .post-nav-title {
  color: #fff;
}
.information-single .post-navigation .post-nav-item .post-nav-link .post-nav-label {
  display: block;
  font-size: 12px;
  color: #858585;
  margin-bottom: 4px;
  font-weight: 500;
  transition: color 0.3s;
}
@media (max-width: 599px) {
  .information-single .post-navigation .post-nav-item .post-nav-link .post-nav-label {
    font-size: 11px;
    margin-bottom: 3px;
  }
}
.information-single .post-navigation .post-nav-item .post-nav-link .post-nav-title {
  display: block;
  font-size: 16px;
  color: #1e1e1e;
  line-height: 1.5;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .information-single .post-navigation .post-nav-item .post-nav-link .post-nav-title {
    font-size: 15px;
  }
}
@media (max-width: 599px) {
  .information-single .post-navigation .post-nav-item .post-nav-link .post-nav-title {
    font-size: 14px;
  }
}
.information-single .post-navigation .post-nav-item.post-nav-prev .post-nav-link {
  align-items: flex-start;
  text-align: left;
}
.information-single .post-navigation .post-nav-item.post-nav-next .post-nav-link {
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 599px) {
  .information-single .post-navigation .post-nav-item.post-nav-next .post-nav-link {
    align-items: flex-start;
    text-align: left;
  }
}
.information-single .information-footer {
  text-align: center;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .information-single .information-footer {
    padding-top: 32px;
  }
}
@media (max-width: 599px) {
  .information-single .information-footer {
    padding-top: 24px;
  }
}
.information-single .information-footer .common_btn {
  margin: 0 auto;
}

.furniture_item_field {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: clamp(12.6px, 14px + 0.25vw, 14px);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .furniture_item_field {
    font-size: clamp(11.7px, 13px + 0.25vw, 13px);
    margin-bottom: 6px;
  }
}
@media (max-width: 599px) {
  .furniture_item_field {
    font-size: clamp(10.8px, 12px + 0.25vw, 12px);
    margin-bottom: 5px;
  }
}
.furniture_item_field:last-child {
  margin-bottom: 0;
}
.furniture_item_field .furniture_item_label {
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .furniture_item_field .furniture_item_label {
    min-width: 70px;
  }
}
@media (max-width: 599px) {
  .furniture_item_field .furniture_item_label {
    min-width: 60px;
  }
}
.furniture_item_field .furniture_item_value {
  color: #1e1e1e;
  flex: 1;
}

.furniture_item_price {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ddd;
  align-items: center;
}
@media (max-width: 768px) {
  .furniture_item_price {
    margin-top: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 599px) {
  .furniture_item_price {
    margin-top: 8px;
    padding-top: 8px;
  }
}
.furniture_item_price .furniture_item_label {
  color: #E60113;
}
.furniture_item_price .furniture_item_value {
  font-size: clamp(16.2px, 18px + 0.25vw, 18px);
  font-weight: 700;
  color: #E60113;
}
@media (max-width: 768px) {
  .furniture_item_price .furniture_item_value {
    font-size: clamp(14.4px, 16px + 0.25vw, 16px);
  }
}
@media (max-width: 599px) {
  .furniture_item_price .furniture_item_value {
    font-size: clamp(12.6px, 14px + 0.25vw, 14px);
  }
}

.livingroom-single {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .livingroom-single {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .livingroom-single {
    padding: 32px 0;
  }
}
.livingroom-single .common_ttl_wrap {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .livingroom-single .common_ttl_wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .common_ttl_wrap {
    margin-bottom: 24px;
  }
}
.livingroom-single .bread {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .livingroom-single .bread {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .bread {
    margin-bottom: 20px;
  }
}
.livingroom-single .livingroom-single_wrap {
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-single_wrap {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-single_wrap {
    gap: 24px;
  }
}
.livingroom-single .livingroom-single_main {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-single_main {
    width: 100%;
  }
}
.livingroom-single .livingroom-header {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-header {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-header {
    margin-bottom: 20px;
  }
}
.livingroom-single .livingroom-header .livingroom-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  color: #1e1e1e;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-header .livingroom-title {
    font-size: 28px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-header .livingroom-title {
    font-size: 24px;
  }
}
.livingroom-single .livingroom-thumbnail {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-thumbnail {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-thumbnail {
    margin-bottom: 24px;
  }
}
.livingroom-single .livingroom-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.livingroom-single .livingroom-content {
  margin-bottom: 40px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-content {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-content {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.livingroom-single .livingroom-content p {
  margin-bottom: 1.5em;
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-content p {
    margin-bottom: 1.2em;
  }
}
.livingroom-single .livingroom-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 1em;
  padding-bottom: 8px;
  border-bottom: 2px solid #E60113;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-content h2 {
    font-size: 20px;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
  }
}
.livingroom-single .livingroom-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-content h3 {
    font-size: 16px;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
  }
}
.livingroom-single .livingroom-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 4px;
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-content img {
    margin: 1.2em 0;
  }
}
.livingroom-single .livingroom-single_sidebar {
  width: 320px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-single_sidebar {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-single_sidebar {
    width: 100%;
  }
}
.livingroom-single .livingroom-info_widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-info_widget {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-info_widget {
    padding: 16px;
    margin-bottom: 16px;
  }
}
.livingroom-single .livingroom-info_widget:last-child {
  margin-bottom: 0;
}
.livingroom-single .livingroom-info_widget .livingroom-info_ttl {
  font-size: 20px;
  font-weight: 600;
  color: #E60113;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E60113;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-info_widget .livingroom-info_ttl {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 6px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-info_widget .livingroom-info_ttl {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}
.livingroom-single .livingroom-info_list .furniture_item_field {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-info_list .furniture_item_field {
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-info_list .furniture_item_field {
    margin-bottom: 8px;
  }
}
.livingroom-single .livingroom-info_list .furniture_item_field .items_detail_label {
  min-width: 100px;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-info_list .furniture_item_field .items_detail_label {
    min-width: 90px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-info_list .furniture_item_field .items_detail_label {
    min-width: 80px;
  }
}
.livingroom-single .livingroom-info_list .furniture_item_field .furniture_item_label {
  min-width: 100px;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-info_list .furniture_item_field .furniture_item_label {
    min-width: 90px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-info_list .furniture_item_field .furniture_item_label {
    min-width: 80px;
  }
}
.livingroom-single .livingroom-point_content p {
  line-height: 1.8;
  color: #1e1e1e;
  margin: 0;
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-point_content p {
    font-size: 14px;
  }
}
.livingroom-single .livingroom-info_footer {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .livingroom-single .livingroom-info_footer {
    margin-top: 20px;
  }
}
@media (max-width: 599px) {
  .livingroom-single .livingroom-info_footer {
    margin-top: 16px;
  }
}
.livingroom-single .livingroom-info_footer .common_btn {
  width: 100%;
  max-width: 100%;
}

/* ============================================
   Shop（店舗）ページ
   ============================================ */
.top_shop {
  padding: 48px 0;
  background-color: #ececec;
}
@media (max-width: 768px) {
  .top_shop {
    padding: 32px 0;
  }
}
@media (max-width: 599px) {
  .top_shop {
    padding: 24px 0;
  }
}
.top_shop .shop_cont {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .top_shop .shop_cont {
    flex-direction: column;
    margin-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .top_shop .shop_cont {
    margin-bottom: 32px;
  }
}
.top_shop .shop_cont .shop_item {
  width: 48%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .top_shop .shop_cont .shop_item {
    width: 100%;
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .top_shop .shop_cont .shop_item {
    margin-bottom: 24px;
  }
}
.top_shop .shop_cont .shop_item img {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .top_shop .shop_cont .shop_item img {
    margin-bottom: 12px;
  }
}
.top_shop .shop_cont .shop_item .shop_item_company {
  margin-bottom: 6px;
}
@media (max-width: 599px) {
  .top_shop .shop_cont .shop_item .shop_item_company {
    font-size: 14px;
  }
}
.top_shop .shop_cont .shop_item .shop_item_ttl_wrap .shop_item_ttl {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .top_shop .shop_cont .shop_item .shop_item_ttl_wrap .shop_item_ttl {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
@media (max-width: 599px) {
  .top_shop .shop_cont .shop_item .shop_item_ttl_wrap .shop_item_ttl {
    font-size: 24px;
    margin-bottom: 8px;
    gap: 8px;
  }
}
.top_shop .shop_cont .shop_item .shop_item_ttl_wrap .shop_item_ttl i {
  font-size: 20px;
  color: #fff;
  background-color: #E60113;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
@media (max-width: 599px) {
  .top_shop .shop_cont .shop_item .shop_item_ttl_wrap .shop_item_ttl i {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}
.top_shop .shop_cont .shop_item .shop_item_row {
  flex-wrap: nowrap;
}
@media (max-width: 599px) {
  .top_shop .shop_cont .shop_item .shop_item_row .shop_item_name {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
@media (max-width: 599px) {
  .top_shop .shop_cont .shop_item .shop_item_row .shop_item_text {
    font-size: 14px;
  }
}

.shop_page {
  padding: 80px 0 0;
  background-color: #ececec;
}
@media (max-width: 768px) {
  .shop_page {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .shop_page {
    padding: 32px 0;
  }
}
.shop_page .shop_tabs {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .shop_page .shop_tabs {
    margin-bottom: 40px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_tabs {
    margin-bottom: 32px;
  }
}
.shop_page .shop_tabs .shop_tab_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
@media (max-width: 599px) {
  .shop_page .shop_tabs .shop_tab_list {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .shop_page .shop_tabs .shop_tab_list::-webkit-scrollbar {
    height: 4px;
  }
  .shop_page .shop_tabs .shop_tab_list::-webkit-scrollbar-track {
    background: transparent;
  }
  .shop_page .shop_tabs .shop_tab_list::-webkit-scrollbar-thumb {
    background: #858585;
    border-radius: 2px;
  }
}
.shop_page .shop_tabs .shop_tab_list .shop_tab_item {
  cursor: pointer;
  padding: 16px 32px;
  background-color: #fff;
  border: 2px solid #858585;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .shop_page .shop_tabs .shop_tab_list .shop_tab_item {
    padding: 14px 24px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_tabs .shop_tab_list .shop_tab_item {
    padding: 12px 20px;
    flex-shrink: 0;
    font-size: 14px;
  }
}
.shop_page .shop_tabs .shop_tab_list .shop_tab_item span {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .shop_page .shop_tabs .shop_tab_list .shop_tab_item span {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_tabs .shop_tab_list .shop_tab_item span {
    font-size: 14px;
  }
}
.shop_page .shop_tabs .shop_tab_list .shop_tab_item:hover {
  border-color: #E60113;
  background-color: rgb(254.8961038961, 231.1038961039, 232.974025974);
}
.shop_page .shop_tabs .shop_tab_list .shop_tab_item:hover span {
  color: #E60113;
}
.shop_page .shop_tabs .shop_tab_list .shop_tab_item.active {
  background-color: #E60113;
  border-color: #E60113;
}
.shop_page .shop_tabs .shop_tab_list .shop_tab_item.active span {
  color: #fff;
}
.shop_page .shop_tabs .shop_tab_list .shop_tab_item.active:hover {
  background-color: rgb(204.6103896104, 0.8896103896, 16.9025974026);
  border-color: rgb(204.6103896104, 0.8896103896, 16.9025974026);
}
.shop_page .shop_tab_contents {
  position: relative;
  min-height: 400px;
}
@media (max-width: 599px) {
  .shop_page .shop_tab_contents {
    min-height: 300px;
  }
}
.shop_page .shop_tab_contents .common_sns {
  background-color: #fff;
}
.shop_page .shop_tab_contents .common_sns .common_sns_cont {
  gap: 2%;
  justify-content: flex-start;
}
.shop_page .shop_tab_content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.shop_page .shop_tab_content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.shop_page .shop_detail_wrap {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .shop_page .shop_detail_wrap {
    flex-direction: column;
    gap: 32px;
    padding: 32px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap {
    gap: 24px;
    padding: 24px;
  }
}
.shop_page .shop_detail_wrap .shop_detail_image {
  flex: 0 0 400px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_wrap .shop_detail_image {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap .shop_detail_image {
    width: 100%;
  }
}
.shop_page .shop_detail_wrap .shop_detail_image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.shop_page .shop_detail_wrap .shop_detail_image:hover img {
  transform: scale(1.05);
}
.shop_page .shop_detail_wrap .shop_detail_info {
  flex: 1;
  min-width: 0;
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_company {
  font-size: 16px;
  color: #858585;
  margin-bottom: 12px;
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_company {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #E60113;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_title {
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row {
    margin-bottom: 16px;
  }
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row:last-child {
  margin-bottom: 0;
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_label {
  flex: 0 0 120px;
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_label {
    flex: 0 0 auto;
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_label {
    font-size: 15px;
  }
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_text {
    font-size: 14px;
    line-height: 1.6;
  }
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_text a {
  color: #E60113;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_text a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_content .shop_detail_row .shop_detail_text .text_red {
  color: #E60113;
  font-weight: 600;
}
.shop_page .shop_detail_wrap .shop_detail_info .shop_detail_flyer_jump {
  margin-top: 28px;
}
@media (max-width: 599px) {
  .shop_page .shop_detail_wrap .shop_detail_info .shop_detail_flyer_jump {
    margin-top: 24px;
  }
}
.shop_page .shop_detail_map {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_map {
    margin-top: 60px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_map {
    margin-top: 40px;
  }
}
.shop_page .shop_detail_map .shop_detail_section_title {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_map .shop_detail_section_title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_map .shop_detail_section_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .shop_page .shop_detail_map .shop_map_wrap {
    padding: 0;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_map .shop_map_wrap {
    padding: 0;
  }
}
.shop_page .shop_detail_map .shop_map_wrap iframe {
  width: 100%;
  height: 500px;
  border: none;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_map .shop_map_wrap iframe {
    height: 450px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_map .shop_map_wrap iframe {
    height: 350px;
  }
}
.shop_page .shop_detail_flyer {
  margin-top: 80px;
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_flyer {
    margin-top: 60px;
    scroll-margin-top: 88px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_flyer {
    margin-top: 40px;
    scroll-margin-top: 72px;
  }
}
.shop_page .shop_detail_flyer .shop_detail_section_title {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_flyer .shop_detail_section_title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_flyer .shop_detail_section_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.shop_page .shop_detail_flyer .shop_flyer_lead {
  font-size: 17px;
  line-height: 2;
  color: #333;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_flyer .shop_flyer_lead {
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.8;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_flyer .shop_flyer_lead {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
  }
}
.shop_page .shop_detail_flyer .shop_flyer_wrap {
  display: flex;
  gap: 32px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .shop_page .shop_detail_flyer .shop_flyer_wrap {
    gap: 24px;
    padding-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .shop_page .shop_detail_flyer .shop_flyer_wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.shop_page .shop_detail_flyer .shop_flyer_wrap .shop_flyer_item {
  flex: 1;
  transition: transform 0.4s ease;
  position: relative;
}
.shop_page .shop_detail_flyer .shop_flyer_wrap .shop_flyer_item a {
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.shop_page .shop_detail_flyer .shop_flyer_wrap .shop_flyer_item a:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.shop_page .shop_detail_flyer .shop_flyer_wrap .shop_flyer_item:hover {
  transform: translateY(-4px);
  opacity: 1;
}
.shop_page .shop_detail_flyer .shop_flyer_wrap .shop_flyer_item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.shop_page .shop_detail_flyer .shop_flyer_wrap .shop_flyer_item a:hover img {
  opacity: 1;
}

.flyer_page {
  padding: 80px 0;
  background-color: #ececec;
}
@media (max-width: 768px) {
  .flyer_page {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .flyer_page {
    padding: 32px 0;
  }
}
.flyer_page .flyer_intro {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .flyer_page .flyer_intro {
    margin-bottom: 40px;
  }
}
@media (max-width: 599px) {
  .flyer_page .flyer_intro {
    margin-bottom: 32px;
  }
}
.flyer_page .flyer_intro .flyer_intro_text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 768px) {
  .flyer_page .flyer_intro .flyer_intro_text {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .flyer_page .flyer_intro .flyer_intro_text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.flyer_page .flyer_shop_section {
  scroll-margin-top: 100px;
  background-color: #fff;
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .flyer_page .flyer_shop_section {
    padding: 40px;
    margin-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .flyer_page .flyer_shop_section {
    padding: 32px 24px;
    margin-bottom: 40px;
  }
}
.flyer_page .flyer_shop_section:last-child {
  margin-bottom: 0;
}
.flyer_page .flyer_shop_section .flyer_shop_title {
  font-size: 32px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #E60113;
  text-align: center;
}
@media (max-width: 768px) {
  .flyer_page .flyer_shop_section .flyer_shop_title {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}
@media (max-width: 599px) {
  .flyer_page .flyer_shop_section .flyer_shop_title {
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
}
.flyer_page .flyer_shop_section .flyer_shop_lead {
  font-size: 17px;
  line-height: 2;
  color: #333;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .flyer_page .flyer_shop_section .flyer_shop_lead {
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.8;
  }
}
@media (max-width: 599px) {
  .flyer_page .flyer_shop_section .flyer_shop_lead {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
  }
}
.flyer_page .flyer_shop_section .flyer_shop_wrap {
  display: flex;
  gap: 32px;
  justify-content: center;
}
@media (max-width: 768px) {
  .flyer_page .flyer_shop_section .flyer_shop_wrap {
    gap: 24px;
  }
}
@media (max-width: 599px) {
  .flyer_page .flyer_shop_section .flyer_shop_wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.flyer_page .flyer_shop_section .flyer_shop_wrap .flyer_shop_item {
  flex: 1;
  max-width: 600px;
  transition: transform 0.4s ease;
  position: relative;
}
.flyer_page .flyer_shop_section .flyer_shop_wrap .flyer_shop_item a {
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.flyer_page .flyer_shop_section .flyer_shop_wrap .flyer_shop_item a:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.flyer_page .flyer_shop_section .flyer_shop_wrap .flyer_shop_item:hover {
  transform: translateY(-4px);
  opacity: 1;
}
.flyer_page .flyer_shop_section .flyer_shop_wrap .flyer_shop_item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease, filter 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.flyer_page .flyer_shop_section .flyer_shop_wrap .flyer_shop_item a:hover img {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ============================================
   会社概要ページ（page-company.php）
   ============================================ */
.company_page {
  padding: 80px 0;
  background-color: #ececec;
}
@media (max-width: 768px) {
  .company_page {
    padding: 48px 0;
  }
}
@media (max-width: 599px) {
  .company_page {
    padding: 32px 0;
  }
}
.company_page .inner {
  max-width: 920px;
}
.company_page .company_section {
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .company_page .company_section {
    margin-bottom: 40px;
  }
}
@media (max-width: 599px) {
  .company_page .company_section {
    margin-bottom: 32px;
  }
}
.company_page .company_section:last-child {
  margin-bottom: 0;
}
.company_page .company_section_ttl {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E60113;
}
@media (max-width: 768px) {
  .company_page .company_section_ttl {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .company_page .company_section_ttl {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.company_page .company_card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 48px;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .company_page .company_card {
    padding: 32px 36px;
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .company_page .company_card {
    padding: 24px 20px;
    margin-bottom: 20px;
  }
}
.company_page .company_card:last-child {
  margin-bottom: 0;
}
.company_page .company_card_ttl {
  font-size: 22px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .company_page .company_card_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .company_page .company_card_ttl {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.company_page .company_office_ttl {
  font-size: 20px;
  font-weight: 700;
  color: #E60113;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ececec;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .company_page .company_office_ttl {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
@media (max-width: 599px) {
  .company_page .company_office_ttl {
    font-size: 17px;
    margin-bottom: 14px;
  }
}
.company_page .company_office_ttl--sub {
  font-size: 18px;
  color: #1e1e1e;
}
@media (max-width: 599px) {
  .company_page .company_office_ttl--sub {
    font-size: 16px;
  }
}
.company_page .company_subsection {
  margin-top: 40px;
}
@media (max-width: 599px) {
  .company_page .company_subsection {
    margin-top: 32px;
  }
}
.company_page .company_subsection .company_subsection_ttl {
  font-size: 22px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .company_page .company_subsection .company_subsection_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .company_page .company_subsection .company_subsection_ttl {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.company_page .company_dl {
  margin: 0;
}
.company_page .company_dl_row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px 24px;
  padding: 16px 0;
  border-bottom: 1px solid #ececec;
  align-items: start;
}
@media (max-width: 599px) {
  .company_page .company_dl_row {
    grid-template-columns: 1fr;
    gap: 6px 0;
    padding: 14px 0;
  }
}
.company_page .company_dl_row:first-child {
  padding-top: 0;
}
.company_page .company_dl_row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.company_page .company_dl_row dt {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1e1e1e;
}
@media (max-width: 599px) {
  .company_page .company_dl_row dt {
    font-size: 14px;
  }
}
.company_page .company_dl_row dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 599px) {
  .company_page .company_dl_row dd {
    font-size: 15px;
    line-height: 1.7;
  }
}
.company_page .company_dl_row dd a {
  color: #E60113;
  text-decoration: none;
  word-break: break-all;
  transition: opacity 0.2s ease;
}
.company_page .company_dl_row dd a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.company_page .company_dl--compact .company_dl_row {
  padding: 12px 0;
}
@media (max-width: 599px) {
  .company_page .company_dl--compact .company_dl_row {
    padding: 10px 0;
  }
}
.company_page .company_card .company_dl,
.company_page .company_subsection .company_dl {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
@media (max-width: 599px) {
  .company_page .company_card .company_dl,
  .company_page .company_subsection .company_dl {
    border-radius: 8px;
  }
}
.company_page .company_card .company_dl_row,
.company_page .company_subsection .company_dl .company_dl_row {
  padding: 16px 22px;
  border-bottom: 1px solid #ededed;
  background-color: #fff;
}
@media (max-width: 768px) {
  .company_page .company_card .company_dl_row,
  .company_page .company_subsection .company_dl .company_dl_row {
    padding: 14px 18px;
  }
}
@media (max-width: 599px) {
  .company_page .company_card .company_dl_row,
  .company_page .company_subsection .company_dl .company_dl_row {
    padding: 14px 16px;
  }
}
.company_page .company_card .company_dl_row:first-child,
.company_page .company_subsection .company_dl .company_dl_row:first-child {
  padding-top: 16px;
}
@media (max-width: 599px) {
  .company_page .company_card .company_dl_row:first-child,
  .company_page .company_subsection .company_dl .company_dl_row:first-child {
    padding-top: 14px;
  }
}
.company_page .company_card .company_dl_row:last-child,
.company_page .company_subsection .company_dl .company_dl_row:last-child {
  padding-bottom: 16px;
  border-bottom: none;
}
@media (max-width: 599px) {
  .company_page .company_card .company_dl_row:last-child,
  .company_page .company_subsection .company_dl .company_dl_row:last-child {
    padding-bottom: 14px;
  }
}
.company_page .company_card .company_dl_row dt,
.company_page .company_subsection .company_dl .company_dl_row dt {
  color: #1e1e1e;
}
.company_page .company_card .company_dl_row dd,
.company_page .company_subsection .company_dl .company_dl_row dd {
  color: #333;
}
.company_page .company_section--profile .company_profile_table_wrap {
  background-color: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 599px) {
  .company_page .company_section--profile .company_profile_table_wrap {
    border-radius: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.company_page .company_section--profile .company_profile_table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 599px) {
  .company_page .company_section--profile .company_profile_table {
    font-size: 15px;
    min-width: 100%;
  }
}
.company_page .company_section--profile .company_profile_table tbody tr {
  border-bottom: 1px solid #ececec;
}
.company_page .company_section--profile .company_profile_table tbody tr:last-child {
  border-bottom: none;
}
.company_page .company_section--profile .company_profile_table th {
  width: 200px;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  color: #1e1e1e;
  vertical-align: top;
  border-right: 1px solid #ececec;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .company_page .company_section--profile .company_profile_table th {
    width: 180px;
    padding: 16px 20px;
  }
}
@media (max-width: 599px) {
  .company_page .company_section--profile .company_profile_table th {
    width: 36%;
    min-width: 104px;
    padding: 14px 12px;
    font-size: 14px;
    white-space: normal;
  }
}
.company_page .company_section--profile .company_profile_table td {
  padding: 18px 28px;
  color: #333;
  vertical-align: top;
  background-color: #fff;
}
@media (max-width: 768px) {
  .company_page .company_section--profile .company_profile_table td {
    padding: 16px 22px;
  }
}
@media (max-width: 599px) {
  .company_page .company_section--profile .company_profile_table td {
    padding: 14px 14px;
  }
}
.company_page .company_section--profile .company_profile_table td a {
  color: #E60113;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.company_page .company_section--profile .company_profile_table td a:hover {
  opacity: 0.8;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */