/*
 Theme Name: Lightning Child
 Template: lightning
 Author: yuki
 Description: Lightning の子テーマです。装飾をカスタマイズしています。
 Version: 1.0

/*共通部分、TOPページ、その他のページ、ヘッダーフッターの順に記述しています




/*共通部分*/

/* サイト全体の基本フォントサイズ */
body {
  font-size: 20px;/*18から変更_2025.09.25yuki*/
  line-height: 1.8; /* 読みやすさのために行間も少し広げるのがおすすめ */
}

/* 段落・リストの文字サイズを明示的に */
p,
ul li,
ol li {
  font-size: 20px;/*18から変更_2025.09.25yuki*/
}

/* 電話・LINEボタン */
.phone-button,
.line-button {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-family: sans-serif;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
  color: inherit;
  margin: 0 auto;
}

/* 電話ボタン部分 */
.phone-button {
  background-color: #0054A7;
  color: white;
}
.phone-button:hover {
  background-color: #003c7a;
}
.phone-button .top-text {
  font-size: 18px;/*16から変更_2025.09.25yuki*/
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.phone-button .bottom-text {
  font-size: 24px;/*22から変更_2025.09.25yuki*/
  font-weight: bold;
  color: #FFF000;
  margin-top: 5px;
}

/* LINEボタン部分 */
.line-button {
  background-color: #06c755;
}
.line-button:hover {
  background-color: #04a944;
}

/* LINEボタンのヘッダー部分 */
.line-button .line-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.line-button .line-header img.icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  flex-shrink: 0;
}

.line-button .line-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.line-button .text-top {
  color: #ffffff;
  font-size: 18px;/*15から変更_2025.09.25yuki*/
  font-weight: bold;
  line-height: 1.5;/*1.3から変更_2025.09.25yuki*/
}

.line-button .text-bottom {
  color: #FFF000;
  font-size: 20px;/*18から変更_2025.09.25yuki*/
  font-weight: bold;
  margin-top: 4px;
  line-height: 1.5;
}

/* LINE QRコード */
.line-button .qr-area {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}
.line-button .qr-area img {
  width: 120px;
  height: 120px;
}


/*営業カレンダー*/
.weekly-schedule {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #bbb; /* 全体を囲む薄めの枠線 */
  box-sizing: border-box;
}
.schedule-row {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #bbb; /* セル間の枠も薄めに */
}
.schedule-row:last-child {
  border-bottom: none;
}
.schedule-row div {
  flex: 1;
  padding: 8px 5px;
  border-right: 1px solid #bbb; /* セルの仕切り線も薄めに */
  box-sizing: border-box;
}
.schedule-row div:last-child {
  border-right: none;
}
.day-label {
  background-color: #FF7400;
  color: #fff;
  font-weight: bold;
}
.status-open {
  background-color: #FFF;
  color: #000;
}
.status-closed {
  background-color: #eee;
  color: #999;
}
.schedule-notes {
  color: #333;
  line-height: 1.5;
  padding: 8px;
  border-top: 1px solid #bbb;
}
.schedule-header {
  background-color: #FDD876;
  font-weight: bold;
  padding: 8px;
}



/*TOPページ*/

/* メニュー・店内の雰囲気の6カラム全体 */
.responsive-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* アイテム間の余白。調整OK */
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

/* 各アイテム */
.responsive-grid .grid-item {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* タブレット（2カラム） */
@media (min-width: 768px) {
  .responsive-grid .grid-item {
    width: calc(50% - 10px); /* gapが20pxの場合、10px引く */
  }
}

/* PC（3カラム） */
@media (min-width: 1024px) {
  .responsive-grid .grid-item {
    width: calc(33.333% - 13.333px);
  }
}

/*TOPページの上下余白をなくす*/
.site-body{
	padding:0px;
}

/* TOPページの全幅画像用クラス */
.full-width-img {
  display: block;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: 100vw;
}

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

/* 画面はみ出し防止 */
body {
  overflow-x: hidden;
}
/*ご挨拶の部分*/
@media screen and (max-width: 768px) {
  /* カラム全体を縦並びに */
  .wp-block-columns.is-layout-flex {
    flex-direction: column !important;
  }

  /* 右カラムの画像サイズ調整 */
  .wp-block-column:nth-child(2) img {
    width: 60% !important;    /* 好みで調整 */
    max-width: 500px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.aisatsu-width{
	max-width:700px;/*最大幅を決めて間延びしすぎないようにした2025.09.25yuki*/
}
/*TOPページ住所部分*/
.highlight {
  background-color: #FF7400;
  border-radius: 5px;     /* 角丸 */
  padding: 2px 6px;       /* 背景と文字の間に余白 */
  color: #fff;            /* 文字色を白に */
  display: inline-block;  /* 角丸をしっかり効かせるため */
}







/*メニューページ*/
.check-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.check-list li::before {
  content: "☑︎";
  color: #06c755; /* 好きな色に */
  margin-right: 8px;
}


/*料金表ページ*/
.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center; /* ← これで縦中央揃え */
  background: #f9f9f9;
  padding: 14px 16px;
  border-radius: 8px;
  box-sizing: border-box;
  flex-wrap: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.menu {
  flex: 1;
  font-weight: bold;
  font-size: 18px;
  padding-right: 10px;
}
.price {
  flex: 1;
  text-align: right;
  font-size: 17px;/*16から変更_2025.09.25yuki*/
  line-height: 1.6;
}
.price .normal {
  display: block;
  text-decoration: line-through;
  color: #888;
  font-size: 16px;/*15から変更_2025.09.25yuki*/
}
.price .discount {
  display: block;
  color: #d43c00;
  font-weight: bold;
  font-size: 24px;/*18から変更_2025.10.20yuki*/
}
/* モバイル（600px以下）では縦積みに */
@media (max-width: 600px) {
  .price-item {
    flex-direction: column;
    align-items: center; /* 中央揃え */
    text-align: center;
  }
  .menu,
  .price {
    flex: unset;
    width: 100%;
    padding: 0;
  }
  .price {
    margin-top: 6px;
		text-align: center; /* 追加：中央揃えにする */
  }
}


/* お客様の声（ギャラリー） */
.voice-gallery {
  padding: 40px 20px;
}
.voice-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.voice-item {
  width: calc(50% - 10px); /* 2カラム時に隙間あり */
  max-width: 400px;
  text-align: left;
}

.voice-item img {
  width: 100%;
  height: 250px;         /* 高さを固定 */
  object-fit: cover;     /* 枠いっぱいに収める（トリミングあり） */
  object-position: center;
  display: block;
}




.voice-item .note {
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}

/* モバイル対応（1カラム） */
@media screen and (max-width: 767px) {
  .voice-item {
    width: 100%;
  }
}

/*投稿ページのアイキャッチ下に余白*/
.post-featured-image {
  margin-bottom: 50px;
}
/*投稿ページの本文下に余白*/
.entry-body {
  margin-bottom: 50px;
}













/*ヘッダー・フッター*/

/* PC表示のグローバルナビの文字サイズ */
.global-nav-list > li .global-nav-name {
  font-size: 18px;   /* 16から変更_2025.09.25yuki */
}

/*固定ページのタイトル帯非表示*/
.page-header{
	display:none;
}

/*ヘッダーの色*/
#site-header {
  background-color: #FF7400;
}

/*ヘッダーナビゲーションの色*/
.global-nav-name{
	color:#ffffff;
}

/*ヘッダーフッター以外のコンテンツ幅を900に*/
@media (min-width: 992px) {
  .site-body-container.container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* フッターウィジェット全体を2カラムに変更 */
.site-footer .site-footer-content .row > .col-lg-4 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* ウィジェット3を非表示にする（空白を完全に削除） */
.site-footer .site-footer-content .row > .col-lg-4:nth-child(3) {
  display: none;
}
@media (max-width: 767px) {
  .site-footer .site-footer-content .row > .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*フッター上部の線を非表示に*/
.site-footer{
border-top:0px;
}
/*フッターコピーライトの部分*/
.site-footer-copyright {
    max-width: none;     /* containerの幅制限解除 */
    width: 100%;         /* 全幅表示 */
    padding-left: 15px;  /* 適度な左右余白 */
    padding-right: 15px;
    background-color: #FF7400;
    color: #fff;         /* 文字色は見やすく白に */
    text-align: center;  /* テキスト中央揃え */
}

/* リンク色を白にしてホバーで薄く */
.site-footer-copyright a {
    color: #fff;
    text-decoration: underline;
}

.site-footer-copyright a:hover {
    color: #ffd199;
}

.site-footer ul li a{
	font-size:18px;
	line-height:9px;
	font-weight: normal; /* 標準の太さ */
}

/* フッターウィジェットのナビメニューのリンクの下線を消す */
.widget_nav_menu > div > ul li a {
    border-bottom: none !important;
}
/* 背景色を消す*/ 
.current_page_item > a {
    background-color: transparent !important;
}
.discount {
  font-family: Arial, "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}