@charset "utf-8";


/* =========================PC=========================================== */
@media screen and (min-width: 768px) {

.lower_key {
  width: 100%;
  height: 300px;
  padding-top: 100px;
  box-sizing: border-box;
  background-color: #fff; /* ← これを追加 */
  position: relative; /* ← これが必要！ */
}

.lower_key::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
background: linear-gradient(
  90deg,
  rgba(19, 47, 116, 1) 0%,      /* 濃いネイビー */
  rgba(45, 91, 170, 1) 15%,     /* 落ち着いたブルー */
  rgba(108, 175, 240, 1) 40%,   /* 爽やか明るめ */
  rgba(19, 47, 116, 1) 100%     /* 濃いネイビーに戻る */
);

}





.lower_key_child {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; /* 左右に少し余白（お好みで） */
  box-sizing: border-box;
}




#main {
  position: relative;
  overflow: hidden;
  z-index: 0; /* 背景と前面要素の調整に備えて */
}


.lower_content01 {
  padding: 60px 0 50px; /* 上150px・左右0・下50px */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 1;
}




/* 左上からの図形（青み） */
#main_xxxx::after {
  content: "";
  position: absolute;
  top: -480px;
  left: -570px;
  width: 3200px;
  height: 800px;
  background: linear-gradient(
    to top,
    #0b1b45 0%,
    #1f2b74 20%,
    #6f7cb5 40%,
    #1f2b74 70%,
    #0b1b45 100%
  );
  transform: rotate(-30deg);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  overflow-x: hidden; /* ← これを追加 */
}



/* 右上からの図形（濃い青 → 白グラデ） */
#main_xxxx::before {
  content: "";
  position: absolute;
  top: -460px;
  right: -630px;
  width: 3200px;
  height: 800px;
background-color: #145ea8;
  transform: rotate(30deg);
  z-index: -1;
  /*opacity: 0.2;*/
  pointer-events: none;
}



/* 見出し（midashi01） */
.midashi01 {
  text-align: left;
   color: #14245B;
}

.midashi01 h3 {
  font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 40px;
}






/*****飲食事業****/

.store_detail {
  margin-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px dotted #ccc; /* グレーのドット線（1px） */
}

.noren_box {
  padding-top: 30px;
  margin-bottom:150px;
}

.noren_bt{
display: inline-block;
        padding: 12px 24px;
        background: #fff;
        color: #000;
        text-decoration: none;
        font-weight: bold;
        border-radius: 6px;
        transition: background 0.3s;
        border: 1px solid #000; /* ← 黒の1pxボーダー */
}        
        



.fs_img01 img {
  display: block;
  margin: 0 auto;
}

.fs_img02 img {
  display: block;
  margin: 0 auto;
}


/* 見出しっぽい大きな文字 */
.lower_fservice_01_01 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #132F74; /* ブランドカラーに近い濃紺 */
  margin-bottom: 40px;
  padding-top:80px;
}

/* 説明文部分も中央揃えで整える */
.lower_fservice_01_02 {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 80px;
}



.store_links {
  margin: 150px auto 80px; /* 上150px、下は既存の80px */
  text-align: center;
}

.store_links_title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 1px dotted #777777;
  padding: 20px 0;
  color: #000;
  display: flex;
  flex-direction: column; /* ← 縦に並べる */
  align-items: center;
  gap: 20px; /* アイコンと文字の間隔 */
}

.store_links_icon {
  width: 37px;  /* お好みで調整 */
  height: auto;
}


.store_links_wrap {
  display: flex;
  flex-wrap: wrap;         /* 折り返し対応 */
  justify-content: flex-start; /* ← 左詰めに変更 */
  gap: 20px;
  padding: 20px 0;
}

.store_btn {
  display: inline-block;
  padding: 12px 24px;
  background: #132F74;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.store_btn:hover {
  background: #BFCFFF;
  color: #2a4ea1;
}


.store_logo {
  text-align: center;

}

.store_logo img {
  display: inline-block;
  object-fit: contain;
}

.btn_icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
}


.store_detail_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

/* 左カラム：店舗名とボタン */
.store_info {
  width: 35%;
  min-width: 320px;
}

/* 右カラム：写真 */
.store_photos {
  width: 62%;
}

/* それ以外は前回のままでOK（再掲） */
.store_name {
  font-size: 1.0rem;
  font-weight: bold;
  color: #132F74;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left:10px;
  text-align: left;
}

.store_cap {
  padding-left:10px;

}

.store_buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
}

.store_buttons .btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.btn-yellow {
  background: #FFD700;
  color: #000;
}

.btn-white {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}

.btn-red {
  background: #D03030;
  color: #fff;
}





/* 店舗詳細写真 */
.store_photos {
 
}

.main_photo {
  width: 630px;
  height: 400px;
  margin: 0 auto 20px;
}

.main_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* サムネイル */
.thumb_photos {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.thumb_photos img {
  width: 100px;
  height: 66px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumb_photos img.active {
  border: 2px solid #132F74;
}

/* 店舗ロゴ */
.store_logo img {
  object-fit: contain;
}



.store_data h3 {
  font-size: 1.6rem;
  text-align: center;
  margin: 30px 0;
  position: relative;
  color: #132F74;
  font-weight: bold;
}

/* 左右に線を引く */
.store_data h3::before,
.store_data h3::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: #ccc;
  vertical-align: middle;
  margin: 0 30px;
}


/* ラッパー */
.store_toggle_wrap {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

/* 見出し */
.store_toggle {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  display: inline-block;
  position: relative;
}

.store_toggle::before,
.store_toggle::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: #ccc;
  vertical-align: middle;
  margin: 0 30px;
}

/* アイコン（見出しの下） */
.toggle_icon {
  display: block;
  font-size: 1.0rem;
  color: #777;
  margin-top: 8px;
  cursor: pointer;
    font-weight: bold;
}


.store_data {
  background: #f5f5f5; /* 薄いグレー */
  padding: 30px;
  margin: 60px 0; /* ← 上下60pxのマージン */
}

.store_data_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: flex-start;
}

/* 各店舗ブロック */
.store_block {
  width: calc(50% - 10px); /* 2列表示（gap20pxに対応） */
  text-align: left;
  background: #fff;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

.store_block p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}



/************業態開発***********************/

.lower_gyoutai_01 {
  text-align: center;
  margin-bottom: 60px;
}

.gyoutai_visual img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.gyoutai_copy p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #132F74;
  line-height: 1.6;
  margin-bottom: 40px;
}

.gyoutai_box {
  max-width: 640px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gyoutai_icon img {
  width: 40px;
  margin-bottom: 15px;
}

.gyoutai_text h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #132F74;
}

.gyoutai_text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 20px;
}

.gyoutai_text li {
  text-align: left;
  margin-bottom: 10px;
  font-size: 0.95rem;
}



.lower_gyoutai_02 {
  max-width: 1100px;
  margin: 120px auto 120px;
  padding: 0 20px;
}

.gyoutai02_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gyoutai02_left {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.gyoutai02_icon {
  position: relative;
  display: inline-block;
}

.gyoutai02_icon img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #26c6da, #3f51b5);
}

.gyoutai02_tag {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fdf2d2;
  border: 1px solid #e0b44c;
  border-radius: 20px;
  font-size: 1rem; /* ← そのまま維持 */
  padding: 6px 20px; /* ← 横に余裕を持たせる */
  color: #333;
  white-space: nowrap; /* ← 折り返し防止 */
  letter-spacing: 0.3em;
}

.gyoutai02_voice {
  font-weight: bold;
  margin-top: 20px;
  font-size: 1.2rem;
}

.gyoutai02_arrow {
  width: 80px;
  text-align: center;
  margin: 0 20px;
}

.gyoutai02_arrow img {
  width: 100%;
  height: auto;
}

.gyoutai02_right {
  flex: 2;
  min-width: 300px;
}

.gyoutai02_box {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 6px;
}

.gyoutai02_box h4 {
  color: #132F74;
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  font-weight: bold;
}

.gyoutai02_head {
  font-weight: bold;
  color: #132F74;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gyoutai02_box ul {
  padding-left: 1em;
  list-style: disc;
  margin-bottom: 20px;
}

.gyoutai02_box li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.gyoutai02_chart {
  width: 100px;
  height: auto;
  margin-top: 10px;
  display: block;
  margin-left: auto;  /* ← 右寄せのポイント */
}


.lower_gyoutai_03 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.gyoutai03_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 50px;
}

.gyoutai03_flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gyoutai03_step {
  background: #f0f4ff;
  border: 2px solid #132F74;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #132F74;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.gyoutai03_step br {
  display: none; /* スマホ対応でも見た目を整えるなら調整可 */
}

.gyoutai03_desc {
  font-size: 1.1rem;
  color: #444;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: normal;
}

.gyoutai03_arrow {
  font-size: 1.5rem;
  color: #888;
}


.gyoutai03_highlight {
  color: #e67300; /* 明るめのオレンジ */
    font-weight: bold;
}



.lower_gyoutai_04 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.gyoutai04_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 50px;
  text-align: center;
}

.gyoutai04_faq {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq_item {
  background: #f9f9f9;
  border-left: 5px solid #132F74;
  padding: 20px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq_q {
  font-weight: bold;
  font-size: 1.1rem;
  color: #132F74;
  margin-bottom: 10px;
}

.faq_a {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.faq_a_label {
  color: #d03030; /* 落ち着いた赤 */
  font-weight: bold;
  margin-right: 0.3em;
}


.lower_gyoutai_05 {
  position: relative;
  width: 100%;
  background: url('../img/bg_gyoutai05_processed.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 0px 0px;
}

.gyoutai05_overlay {
  width: 100%;              /* ← 幅を画面いっぱいに */
  height: 100%;             /* ← 親と同じ高さに */
  margin: 0;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明オーバーレイ */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gyoutai05_inner {
  max-width: 800px;
  margin: 0 auto;
}

.gyoutai05_title {
  font-size: 2rem; /* 元: 1.8rem → 大きめに */
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

.gyoutai05_text {
  font-size: 1.25rem; /* 元: 1.1rem → 読みやすく */
  line-height: 2;
  margin-bottom: 50px;
  color: #fff;
}

.gyoutai05_btn .btn_contact {
  display: inline-block;
  padding: 18px 40px; /* ボタンの上下左右を拡大 */
  background: #132F74;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem; /* 元: 1rem → 強調 */
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.gyoutai05_btn .btn_contact:hover {
  background: #fff;
  color: #132F74;
}


/****************FC事業********************/

.lower_fcbiz_01 {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
  text-align: center;
}

.fcbiz01_visual {
  max-width: 550px;
  margin: 0 auto 40px;
}

.fcbiz01_visual img {
  width: 100%;
  height: auto;
  display: block;
}


.fcbiz01_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fcbiz01_desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}


.lower_fcbiz_02 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.fcbiz02_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 30px;
}

.fcbiz02_text {
  font-size: 1.05rem;
  color: #333;
  line-height: 2;
}

.lower_fcbiz_03 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.fcbiz03_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  text-align: center;
  margin-bottom: 40px;
}

.fcbiz03_tablewrap {
  overflow-x: auto;
}

.fcbiz03_table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #ccc;
}

.fcbiz03_table th,
.fcbiz03_table td {
  border: 1px solid #ccc;
  padding: 14px 10px;
}

.fcbiz03_table th {
  background: #f0f4ff;
  color: #132F74;
  font-weight: bold;
}

.fcbiz03_table .highlight {
  background: #fff3f0;
  font-weight: bold;
  color: #c0392b;
}

.fcbiz03_note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  text-align: right;
}

/**************会社概要***********/
.comp_history_day {
  display: block;              /* 改行 */
  color: #132F74;              /* ブランドカラーで強調 */
  font-weight: bold;
  margin-bottom: 4px;          /* 下に少し余白 */
}
.lower_comp_01 {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.lower_comp_01 .comp_subtitle {
  font-size: 1.5em;
  border-left: 5px solid #132F74;
  padding-left: 10px;
  margin: 70px 0 20px;
}
.comp_greeting p {
  line-height: 1.8;
}
.comp_sign {
  text-align: right;
  margin-top: 20px;
}
.comp_info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.comp_info th,
.comp_info td {
  border: 1px solid #ccc;
  padding: 12px;
  vertical-align: top;
}
.comp_info th {
  background: #f5f5f5;
  width: 150px;
}
.comp_history ul {
  list-style: none;
  padding-left: 0;
}
.comp_history li {
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
}
/*yfsブランド*/
.top_brand {
  max-width: 1100px;
  margin: 150px auto 100px;
  padding: 30px 0px;
 
}

/*yfsブランド*/
.top_brand {
  max-width: 1100px;
  margin: 150px auto 100px;
  padding: 30px 0px;
 
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
 padding: 20px 0 40px 0;

}

.brand-logos2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* ← 左詰めに変更 */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 0px 0;

}

.midashi01b {
  font-size: 1.3em;
  border-left: 5px solid #132F74;
  padding-left: 10px;
  
}




.yfsb_child {
  width: calc((100% - 100px) / 6); /* gap20px × 5 = 100px */
  text-align: center;
}

.yfsb_child img {
  width: 180px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;

  border: 1px solid #ccc;      /* 薄いグレーの枠線 */
  padding: 1px;                /* 枠と画像の間にスペース */
  box-sizing: border-box;      /* パディング込みでサイズ維持 */
  background-color: #fff;      /* 背景白（任意） */
}

.comp_history2{
padding-bottom:60px;
}


.comp_info_box {
  display: flex;
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.comp_info_box_left {
  flex: 1;
  padding-right: 20px;
  box-sizing: border-box;
}

.comp_info_box_right {
  width: 470px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.comp_info_box_right img {
  width: 100%;
  height: auto;
  display: block;
}



/********************問い合わせ*********************/
/* お問い合わせフォーム 全体設定 */
.lower_contact_01 {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  font-size: 1.1rem;
}

/* 導入文 */
.contact_lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
}

/* 各フォームブロック */
.contact_form .form_block {
  margin-bottom: 30px;
}

/* ラベル共通 */
.contact_form label,
.contact_form .form_label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #132F74;
  font-size: 1.1rem;
  margin-left: 0;
  padding-left: 0;
}

/* 必須マーク */
.required {
  color: #d03030;
  font-size: 0.95rem;
  margin-left: 6px;
}

/* 入力フィールド共通 */
.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form input[type="tel"],
.contact_form textarea {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* テキストエリアのみ調整 */
.contact_form textarea {
  resize: vertical;
}

/* ご用件エリア（白背景・ボーダー・横並び） */
.form_whitebg {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.form_radio_group.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form_radio_group.horizontal label {
  white-space: nowrap;
  font-weight: normal;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* プライバシー案内（中央寄せ） */
.privacy_center {
  text-align: center;
}

.privacy_note {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.checkbox_label {
  font-size: 1.05rem;
  display: inline-block;
  margin-top: 10px;
}

/* テキスト中央寄せ用 */
.text_center {
  text-align: center;
}

/* 送信ボタン（アイコン付き、大きめ） */
.btn_submit_icon {
  display: inline-block;
  background: #132F74;
  color: #fff;
  padding: 16px 60px 16px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #132F74;
  background-image: url("../img/icon01_b.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
  letter-spacing: 0.05em;
}

.btn_submit_icon:hover {
  background-color: #fff;
  color: #132F74;
  background-image: url("../img/icon01.png");
}

/******************個人情報保護方針****************/


.lower_priv_01 {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}

.privacy_wrap h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #132F74;
  margin-top: 40px;
  margin-bottom: 15px;
}





/*********************** カテゴリアーカイブ全体 ************************/
.category_archive {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.category_archive .lower_content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.category_archive .lower_content_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 見出し */
.category_title {
  font-size: 32px;
  font-weight: bold;
  color: #132F74;
  border-bottom: 2px solid #132F74;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* 記事リスト */
.category_post_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.category_post_item {
  background-color: #fff;
  padding: 25px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.category_post_item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category_post_item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category_post_item .category,
.category_post_item .category_2 {
  display: inline-block;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
  background-color: #132F74;
  color: #fff;
  margin-bottom: 10px;
}

.category_post_item .category_2 {
  background-color: #FFD24D;; /* 赤系 */
   color: #000;
}

.category_post_item .post_date {
  font-size: 14px;
  color: #999;
  margin-bottom: 5px;
  display: block;
}

.category_post_item .post_title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.category_post_item .post_excerpt {
  font-size: 16px;
  color: #555;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-top: 60px;
}

.wp-pagenavi {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  border: 1px solid #132F74;
  color: #132F74;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.wp-pagenavi a:hover {
  background-color: #132F74;
  color: #fff;
}

.wp-pagenavi .current {
  background-color: #132F74;
  color: #fff;
  border: 1px solid #132F74;
  font-weight: bold;
}


/******************* 投稿詳細ページ *********************/
.single_post {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.single_post .lower_content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.single_post .lower_content_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post_article {
  background: #fff;
  padding: 40px 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.post_title {
  font-size: 28px;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 10px;
}

.post_date {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}

.post_content {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

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

.pre_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
}

.pre_box_left,
.pre_box_center,
.pre_box_right {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.pre_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #ccc;
  max-width: 650px;
  width: 100%;
}

.pre_box_left,
.pre_box_center,
.pre_box_right {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.pre_box_left {
  text-align: left;
}

.pre_box_right {
  text-align: right;
}

.pre_box a {
  color: #132F74;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.pre_box a:hover {
  opacity: 0.7;
}

/* 一覧へ（中央）だけボタン風 */
.pre_box_center a {
  display: inline-block;
  background-color: #132F74;
  color: #fff !important;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 14px;
}



.pre_box i.fa {
  vertical-align: middle;
  font-size: 16px;

}

/* 左矢印（前の記事へ） */
.pre_box_left i.fa {
  margin-right: 15px;
  vertical-align: middle;
}

/* 右矢印（次の記事へ） */
.pre_box_right i.fa {
  margin-left: 15px;
  vertical-align: middle;
}








}


@media screen and (max-width: 820px) {
  .store_detail_inner {
    flex-direction: column;
    gap: 20px;
  }

  .store_info,
  .store_photos {
    width: 100%;
  }

  .main_photo img {
    width: 100%;
    height: auto;
  }

  .thumb_photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .thumb_photos img {
    width: calc(25% - 10px); /* サムネを4列まで */
    height: auto;
  }
}





/* =========================スマホ=========================================== */
@media screen and (max-width: 767px) {

.pankuzu {
display:none;
}

.lower_key {
  width: 100%;
  height: 200px;
  padding-top: 100px;
  box-sizing: border-box;
  background-color: #fff; /* ← これを追加 */
  position: relative; /* ← これが必要！ */
}

.lower_key::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
background: linear-gradient(
  90deg,
  rgba(19, 47, 116, 1) 0%,      /* 濃いネイビー */
  rgba(45, 91, 170, 1) 15%,     /* 落ち着いたブルー */
  rgba(108, 175, 240, 1) 40%,   /* 爽やか明るめ */
  rgba(19, 47, 116, 1) 100%     /* 濃いネイビーに戻る */
);

}





.lower_key_child {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; /* 左右に少し余白（お好みで） */
  box-sizing: border-box;
}




#main {
  position: relative;
  overflow: hidden;
  z-index: 0; /* 背景と前面要素の調整に備えて */
}


.lower_content01 {
  padding: 150px 0 50px; /* 上150px・左右0・下50px */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 1;
}




/* 左上からの図形（青み） */
#main::after {
  content: "";
  position: absolute;
  top: -480px;
  left: -570px;
  width: 3200px;
  height: 800px;
  background: linear-gradient(
    to top,
    #0b1b45 0%,
    #1f2b74 20%,
    #6f7cb5 40%,
    #1f2b74 70%,
    #0b1b45 100%
  );
  transform: rotate(-30deg);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  overflow-x: hidden; /* ← これを追加 */
}


/* 右上からの図形（濃い青 → 白グラデ） */
#main::before {
  content: "";
  position: absolute;
  top: -460px;
  right: -630px;
  width: 3200px;
  height: 800px;
  background: linear-gradient(
    to right,
    #0b1b45 0%,
    #1f2b74 20%,
    #7f90c0 40%,  /* ← 少し明るく光る部分 */
    #1f2b74 70%,
    #0b1b45 100%
  );
  transform: rotate(30deg);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
}



/* 見出し（midashi01） */
.midashi01 {
  text-align: center;
  margin-bottom: 200px;
   color: #14245B;
}

.midashi01 h3 {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.midashi01 h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #132F74;
  margin: 10px auto 0;
}


/*****飲食事業****/

.store_detail {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #ccc; /* グレーのドット線（1px） */
}





.fs_img01 img {
  display: block;
  margin: 0 auto;
}

.fs_img02 img {
  display: block;
  margin: 0 auto;
}


/* 見出しっぽい大きな文字 */
.lower_fservice_01_01 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #132F74; /* ブランドカラーに近い濃紺 */
  margin-bottom: 40px;
  padding-top:80px;
}

/* 説明文部分も中央揃えで整える */
.lower_fservice_01_02 {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 80px;
}



.store_links {
  margin: 150px auto 80px; /* 上150px、下は既存の80px */
  text-align: center;
}

.store_links_title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 1px dotted #777777;
  padding: 20px 0;
  color: #000;
  display: flex;
  flex-direction: column; /* ← 縦に並べる */
  align-items: center;
  gap: 20px; /* アイコンと文字の間隔 */
}

.store_links_icon {
  width: 37px;  /* お好みで調整 */
  height: auto;
}

.store_links_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 20px; /* 縦横の余白調整 */
  padding: 20px 0;
  }


.store_btn {
  display: inline-block;
  padding: 12px 24px;
  background: #132F74;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}



  .store_btn {
    width: calc(50% - 10px); /* 2列表示用幅 */
    box-sizing: border-box;
    text-align: center;
  }

.store_btn:hover {
  background: #BFCFFF;
  color: #2a4ea1;
}


.store_logo {
  text-align: center;

}


.noren_box {
  padding-top: 30px;
  margin-bottom:60px;
}



.noren_bt{
display: inline-block;
padding: 12px 24px;
background: #fff;
color: #000;
text-decoration: none;
font-weight: bold;
border-radius: 6px;
transition: background 0.3s;
border: 1px solid #000; /* ← 黒の1pxボーダー */
width: calc(50% - 10px);
box-sizing: border-box;
text-align: center;

}        


.store_logo img {
  display: inline-block;
  object-fit: contain;
}

.btn_icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
}


.store_detail_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

/* 左カラム：店舗名とボタン */
.store_info {
  width: 35%;
  min-width: 320px;
}

/* 右カラム：写真 */
.store_photos {
  width: 62%;
}

/* それ以外は前回のままでOK（再掲） */
.store_name {
  font-size: 1.0rem;
  font-weight: bold;
  color: #132F74;
  margin-top: 0px;
  margin-bottom: 40px;
  text-align: center;
  margin-top:40px;
  margin-bottom:20px;
}

.store_buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top:40px;
}

.store_buttons .btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.btn-yellow {
  background: #FFD700;
  color: #000;
}

.btn-white {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}

.btn-red {
  background: #D03030;
  color: #fff;
}





/* 店舗詳細写真 */
.store_photos {
 
}

.main_photo {
  width: 630px;
  height: 400px;
  margin: 0 auto 20px;
}

.main_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* サムネイル */
.thumb_photos {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.thumb_photos img {
  width: 100px;
  height: 66px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumb_photos img.active {
  border: 2px solid #132F74;
}

/* 店舗ロゴ */
.store_logo img {
  object-fit: contain;
}



.store_data h3 {
  font-size: 1.6rem;
  text-align: center;
  margin: 30px 0;
  position: relative;
  color: #132F74;
  font-weight: bold;
}

/* 左右に線を引く */
.store_data h3::before,
.store_data h3::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #ccc;
  vertical-align: middle;
  margin: 0 30px;
}


/* ラッパー */
.store_toggle_wrap {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

/* 見出し */
.store_toggle {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  display: inline-block;
  position: relative;
}

.store_toggle::before,
.store_toggle::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #ccc;
  vertical-align: middle;
  margin: 0 30px;
}

/* アイコン（見出しの下） */
.toggle_icon {
  display: block;
  font-size: 1.0rem;
  color: #777;
  margin-top: 8px;
  cursor: pointer;
    font-weight: bold;
}


.store_data {
  background: #f5f5f5; /* 薄いグレー */
  padding: 10px;
  margin: 40px 0; /* ← 上下60pxのマージン */
}

.store_data_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: flex-start;
}

/* 各店舗ブロック */
.store_block {
  width: calc(50% - 10px); /* 2列表示（gap20pxに対応） */
  text-align: left;
  background: #fff;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

.store_block p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}


  .store_map {
    display: none;
  }


/************業態開発***********************/

.lower_gyoutai_01 {
  text-align: center;
  margin-bottom: 60px;
}

.gyoutai_visual img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.gyoutai_copy p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #132F74;
  line-height: 1.6;
  margin-bottom: 40px;
}

.gyoutai_box {
  max-width: 640px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gyoutai_icon img {
  width: 40px;
  margin-bottom: 15px;
}

.gyoutai_text h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #132F74;
}

.gyoutai_text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 20px;
}

.gyoutai_text li {
  text-align: left;
  margin-bottom: 10px;
  font-size: 0.95rem;
}



.lower_gyoutai_02 {
  max-width: 1100px;
  margin: 120px auto 120px;
  padding: 0 20px;
}

.gyoutai02_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gyoutai02_left {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.gyoutai02_icon {
  position: relative;
  display: inline-block;
}

.gyoutai02_icon img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #26c6da, #3f51b5);
}

.gyoutai02_tag {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fdf2d2;
  border: 1px solid #e0b44c;
  border-radius: 20px;
  font-size: 1rem; /* ← そのまま維持 */
  padding: 6px 20px; /* ← 横に余裕を持たせる */
  color: #333;
  white-space: nowrap; /* ← 折り返し防止 */
  letter-spacing: 0.3em;
}

.gyoutai02_voice {
  font-weight: bold;
  margin-top: 20px;
  font-size: 1.2rem;
}

.gyoutai02_arrow {
  width: 80px;
  text-align: center;
  margin: 0 20px;
}

.gyoutai02_arrow img {
  width: 100%;
  height: auto;
}

.gyoutai02_right {
  flex: 2;
  min-width: 300px;
}

.gyoutai02_box {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 6px;
}

.gyoutai02_box h4 {
  color: #132F74;
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  font-weight: bold;
}

.gyoutai02_head {
  font-weight: bold;
  color: #132F74;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gyoutai02_box ul {
  padding-left: 1em;
  list-style: disc;
  margin-bottom: 20px;
}

.gyoutai02_box li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.gyoutai02_chart {
  width: 100px;
  height: auto;
  margin-top: 10px;
  display: block;
  margin-left: auto;  /* ← 右寄せのポイント */
}


.lower_gyoutai_03 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.gyoutai03_title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 50px;
}

.gyoutai03_flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gyoutai03_step {
  background: #f0f4ff;
  border: 2px solid #132F74;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #132F74;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.gyoutai03_step br {
  display: none; /* スマホ対応でも見た目を整えるなら調整可 */
}

.gyoutai03_desc {
  font-size: 1.1rem;
  color: #444;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: normal;
}

.gyoutai03_arrow {
  font-size: 1.5rem;
  color: #888;
}


.gyoutai03_highlight {
  color: #e67300; /* 明るめのオレンジ */
    font-weight: bold;
}



.lower_gyoutai_04 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.gyoutai04_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 50px;
  text-align: center;
}

.gyoutai04_faq {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq_item {
  background: #f9f9f9;
  border-left: 5px solid #132F74;
  padding: 20px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq_q {
  font-weight: bold;
  font-size: 1.1rem;
  color: #132F74;
  margin-bottom: 10px;
}

.faq_a {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.faq_a_label {
  color: #d03030; /* 落ち着いた赤 */
  font-weight: bold;
  margin-right: 0.3em;
}


.lower_gyoutai_05 {
  position: relative;
  width: 100%;
  background: url('../img/bg_gyoutai05_processed.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 0px 0px;
}

.gyoutai05_overlay {
  width: 100%;              /* ← 幅を画面いっぱいに */
  height: 100%;             /* ← 親と同じ高さに */
  margin: 0;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明オーバーレイ */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gyoutai05_inner {
  max-width: 800px;
  margin: 0 auto;
}

.gyoutai05_title {
  font-size: 2rem; /* 元: 1.8rem → 大きめに */
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

.gyoutai05_text {
  font-size: 1.25rem; /* 元: 1.1rem → 読みやすく */
  line-height: 2;
  margin-bottom: 50px;
  color: #fff;
}

.gyoutai05_btn .btn_contact {
  display: inline-block;
  padding: 18px 40px; /* ボタンの上下左右を拡大 */
  background: #132F74;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem; /* 元: 1rem → 強調 */
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.gyoutai05_btn .btn_contact:hover {
  background: #fff;
  color: #132F74;
}


/****************FC事業********************/

.lower_fcbiz_01 {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
  text-align: center;
}

.fcbiz01_visual {
  max-width: 550px;
  margin: 0 auto 40px;
}

.fcbiz01_visual img {
  width: 100%;
  height: auto;
  display: block;
}


.fcbiz01_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fcbiz01_desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}


.lower_fcbiz_02 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.fcbiz02_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 30px;
}

.fcbiz02_text {
  font-size: 1.05rem;
  color: #333;
  line-height: 2;
}

.lower_fcbiz_03 {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.fcbiz03_title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #132F74;
  text-align: center;
  margin-bottom: 40px;
}

.fcbiz03_tablewrap {
  overflow-x: auto;
}

.fcbiz03_table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #ccc;
}

.fcbiz03_table th,
.fcbiz03_table td {
  border: 1px solid #ccc;
  padding: 14px 10px;
}

.fcbiz03_table th {
  background: #f0f4ff;
  color: #132F74;
  font-weight: bold;
}

.fcbiz03_table .highlight {
  background: #fff3f0;
  font-weight: bold;
  color: #c0392b;
}

.fcbiz03_note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  text-align: right;
}

/**************会社概要***********/
.comp_history_day {
  display: block;              /* 改行 */
  color: #132F74;              /* ブランドカラーで強調 */
  font-weight: bold;
  margin-bottom: 4px;          /* 下に少し余白 */
}
.lower_comp_01 {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.lower_comp_01 .comp_subtitle {
  font-size: 1.5em;
  border-left: 5px solid #132F74;
  padding-left: 10px;
  margin: 40px 0 20px;
}
.comp_greeting p {
  line-height: 1.8;
}
.comp_sign {
  text-align: right;
  margin-top: 20px;
}
.comp_info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.comp_info th,
.comp_info td {
  border: 1px solid #ccc;
  padding: 12px;
  vertical-align: top;
}
.comp_info th {
  background: #f5f5f5;
  width: 150px;
}

 .comp_info table,
  .comp_info tbody,
  .comp_info tr,
  .comp_info th,
  .comp_info td {
    display: block;
    width: 100%;
  }

  .comp_info tr {
    padding: 10px 0;
    margin: 20px 0;
    border-bottom: 1px dotted #ccc;
  }

  .comp_info th {
    background: none;
    font-weight: bold;
    padding: 0 0 4px;
    border: none;
    text-align: left;
    color: #132F74;
  }

  .comp_info td {
    padding: 0 0 6px;
    border: none;
    text-align: left;
    color: #333;
  }
  
  
.comp_history ul {
  list-style: none;
  padding-left: 0;
}
.comp_history li {
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
}

.comp_history2{
padding-bottom:40px;
}
/*yfsブランド*/
.top_brand {
  max-width: 1100px;
  margin: 150px auto 100px;
  padding: 30px 0px;
 
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}



.brand-logos2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.midashi01b {
  font-size: 1.3em;
  border-left: 5px solid #132F74;
  padding-left: 10px;
  
}

.yfsb_child {
  width: calc((100% - 100px) / 6); /* gap20px × 5 = 100px */
  text-align: center;
}


.yfsb_child img {
  width: 180px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;

  border: 1px solid #ccc;      /* 薄いグレーの枠線 */
  padding: 1px;                /* 枠と画像の間にスペース */
  box-sizing: border-box;      /* パディング込みでサイズ維持 */
  background-color: #fff;      /* 背景白（任意） */
}

.yfsb_child_name {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

/********************問い合わせ*********************/
/* お問い合わせフォーム 全体設定 */
.lower_contact_01 {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  font-size: 1.1rem;
}

/* 導入文 */
.contact_lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
}

/* 各フォームブロック */
.contact_form .form_block {
  margin-bottom: 30px;
}

/* ラベル共通 */
.contact_form label,
.contact_form .form_label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #132F74;
  font-size: 1.1rem;
  margin-left: 0;
  padding-left: 0;
}

/* 必須マーク */
.required {
  color: #d03030;
  font-size: 0.95rem;
  margin-left: 6px;
}

/* 入力フィールド共通 */
.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form input[type="tel"],
.contact_form textarea {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* テキストエリアのみ調整 */
.contact_form textarea {
  resize: vertical;
}

/* ご用件エリア（白背景・ボーダー・横並び） */
.form_whitebg {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.form_radio_group.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form_radio_group.horizontal label {
  white-space: nowrap;
  font-weight: normal;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* プライバシー案内（中央寄せ） */
.privacy_center {
  text-align: center;
}

.privacy_note {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.checkbox_label {
  font-size: 1.05rem;
  display: inline-block;
  margin-top: 10px;
}

/* テキスト中央寄せ用 */
.text_center {
  text-align: center;
}

/* 送信ボタン（アイコン付き、大きめ） */
.btn_submit_icon {
  display: inline-block;
  background: #132F74;
  color: #fff;
  padding: 16px 60px 16px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #132F74;
  background-image: url("../img/icon01_b.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
  letter-spacing: 0.05em;
}

.btn_submit_icon:hover {
  background-color: #fff;
  color: #132F74;
  background-image: url("../img/icon01.png");
}

/******************個人情報保護方針****************/


.lower_priv_01 {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}

.privacy_wrap h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #132F74;
  margin-top: 40px;
  margin-bottom: 15px;
}

 #main::before,
  #main::after {
    display: none; /* 背景図形を非表示 */
  }

  .lower_content01 {
    padding: 80px 15px 40px;
  }

  .midashi01 {
    margin-bottom: 80px;
  }

  .midashi01 h3 {
    font-size: 1.5rem;
  }

  .store_detail_inner {
    flex-direction: column;
  }

  .store_info,
  .store_photos {
    width: 100%;
  }

  .main_photo {
    width: 100%;
    height: auto;
  }

  .thumb_photos img {
    width: 22%;
    height: auto;
  }

  .store_buttons {
    flex-direction: column;
    gap: 10px;
  }

  .store_data_list {
    flex-direction: column;
    gap: 15px;
  }

  .store_block {
    width: 100%;
  }

  .top_brand .brand-logos {
    justify-content: center;
  }

  .yfsb_child {
    width: calc((100% - 40px) / 2);
  }

  .gyoutai_text ul {
    columns: 1;
  }

  .gyoutai02_inner {
    flex-direction: column;
    gap: 30px;
  }

  .gyoutai02_arrow {
    display: none;
  }

  .gyoutai03_flow {
    gap: 12px;
  }

  .gyoutai03_step {
    font-size: 1.1rem;
    padding: 14px 20px;
  }

  .gyoutai05_title {
    font-size: 1.5rem;
  }

  .gyoutai05_text {
    font-size: 1.05rem;
  }

  .gyoutai05_btn .btn_contact {
    font-size: 1rem;
    padding: 14px 30px;
  }

  .fcbiz03_table th,
  .fcbiz03_table td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  .lower_contact_01 {
    padding: 0 15px;
  }

  .form_radio_group.horizontal {
    flex-direction: column;
  }

  .btn_submit_icon {
    padding: 14px 50px 14px 30px;
    font-size: 1rem;
  }

  .lower_priv_01 {
    padding: 0 15px;
    font-size: 1rem;
    line-height: 1.7;
  }





/*********************** カテゴリアーカイブ全体 ************************/
.category_archive {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.category_archive .lower_content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.category_archive .lower_content_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 見出し */
.category_title {
  font-size: 32px;
  font-weight: bold;
  color: #132F74;
  border-bottom: 2px solid #132F74;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* 記事リスト */
.category_post_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.category_post_item {
  background-color: #fff;
  padding: 25px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.category_post_item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category_post_item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category_post_item .category,
.category_post_item .category_2 {
  display: inline-block;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
  background-color: #132F74;
  color: #fff;
  margin-bottom: 10px;
}

.category_post_item .category_2 {
  background-color: #FFD24D;; /* 赤系 */
   color: #000;
}

.category_post_item .post_date {
  font-size: 14px;
  color: #999;
  margin-bottom: 5px;
  display: block;
}

.category_post_item .post_title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.category_post_item .post_excerpt {
  font-size: 16px;
  color: #555;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-top: 60px;
}

.wp-pagenavi {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  border: 1px solid #132F74;
  color: #132F74;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.wp-pagenavi a:hover {
  background-color: #132F74;
  color: #fff;
}

.wp-pagenavi .current {
  background-color: #132F74;
  color: #fff;
  border: 1px solid #132F74;
  font-weight: bold;
}


 .category_archive {
    padding: 40px 0;
  }

  .category_title {
    font-size: 22px;
    padding-bottom: 6px;
    margin-bottom: 16px;
  }

  .category_post_item {
    padding: 20px 16px;
  }

  .category_post_item .category,
  .category_post_item .category_2 {
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 16px;
    margin-bottom: 6px;
  }

  .category_post_item .post_date {
    font-size: 13px;
  }

  .category_post_item .post_title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .category_post_item .post_excerpt {
    font-size: 15px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
    height: 36px;
    font-size: 14px;
    padding: 0;
  }

  .pagination {
    margin-top: 40px;
  }
  
  /******************* 投稿詳細ページ *********************/
.single_post {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.single_post .lower_content {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 0px !important;
}

.single_post .lower_content_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post_article {
  background: #fff;
  padding: 40px 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.post_title {
  font-size: 28px;
  font-weight: bold;
  color: #132F74;
  margin-bottom: 10px;
}

.post_date {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}

.post_content {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

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

.pre_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
}

.pre_box_left,
.pre_box_center,
.pre_box_right {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.pre_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #ccc;
  max-width: 650px;
  width: 100%;
}

.pre_box_left,
.pre_box_center,
.pre_box_right {
  flex: 1;
  text-align: center;
  font-size: 16px;
}

.pre_box_left {
  text-align: left;
}

.pre_box_right {
  text-align: right;
}

.pre_box a {
  color: #132F74;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.pre_box a:hover {
  opacity: 0.7;
}

/* 一覧へ（中央）だけボタン風 */
.pre_box_center a {
  display: inline-block;
  background-color: #132F74;
  color: #fff !important;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 14px;
}



.pre_box i.fa {
  vertical-align: middle;
  font-size: 16px;

}

/* 左矢印（前の記事へ） */
.pre_box_left i.fa {
  margin-right: 15px;
  vertical-align: middle;
}

/* 右矢印（次の記事へ） */
.pre_box_right i.fa {
  margin-left: 15px;
  vertical-align: middle;
}

.single_post {
    padding: 0px!important;
  }

  .post_article {
    padding: 20px 16px;
  }

  .post_title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .post_date {
    font-size: 13px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }

  .post_content {
    font-size: 15px;
    line-height: 1.7;
  }

  .pre_box {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    max-width: 100%;
  }

  .pre_box_left,
  .pre_box_center,
  .pre_box_right {
    text-align: center;
    font-size: 15px;
  }

  .pre_box_center a {
    padding: 10px 24px;
    font-size: 13px;
  }

  .pre_box i.fa {
    font-size: 14px;
  }

  .pre_box_left i.fa {
    margin-right: 8px;
  }

  .pre_box_right i.fa {
    margin-left: 8px;
  }

  
  
  
  

}


