@charset "utf-8";

h1, h2, h3, h4, h5, h6 {
	text-align: center;
}

.entry-meta {
  display: none;
}
.single-shop .next-prev {
  display: none;
}
.page .site-body {
    padding: 0;
}

.single-shop .page-header {
    min-height: 0rem;
    padding: 6px 0;
}


.wp-singular .site-header {
	box-shadow: none;
}
.site-body .container {
	max-width: inherit;
	padding-right: 0;
  padding-left: 0;
}

/*タイトルの下の文字*/
.page-header-title::after {
    content: "SHOP";
    text-align: center;
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
}

.page-header {
    color: #fff;
    background-color: #000;
  min-height: 5rem;
}

/*このページだけdefa使用*/
.container {
    width: 100%!important;
  max-width: 970px!important;
    padding-right: 16px!important;
    padding-left: 16px!important;
    margin-right: auto!important;
    margin-left: auto!important;
}

.site-body .entry-header {
    border-bottom: none;
}

.entry-title {
  background-color: #000;
  color: #fff;
  padding: 2px 0;
}

article {
  padding-bottom: 50px;
}
/* ===================================================
   【店舗表】元のhtmlが30ページあるためhtmlに追記なしで構成↓↓
   =================================================== */

/* テーブル全体の初期化（htmlインラインの枠線や背景色をリセット） */
table[bgcolor="#D1D1D1"] {
  background-color: transparent !important;
  border-spacing: 0 !important;
  display: block;
  width: 800px;
  border: none;
  margin: 40px auto 0;
}

/* tbodyをグリッドレイアウトに */
table[bgcolor="#D1D1D1"] tbody {
  display: grid;
  grid-template-columns: 26% 1fr; /* 右側は残りの幅 */
  row-gap: 16px;
  column-gap: 20px;
}

/* tr（行）の概念を無くして中身のtdを直接グリッドに配置する */
table[bgcolor="#D1D1D1"] tr {
  display: contents;
}

/* すべてのtd（セル）のスタイル初期化 */
table[bgcolor="#D1D1D1"] td {
  padding: 0 !important;
  background-color: transparent !important;
  border: none;
  text-align: left;
  font-size: 24px;
  width: 100%!important;
  line-height: 2;
}

table[bgcolor="#D1D1D1"] th {
  padding: 0 !important;
  background-color: transparent !important;
  border: none;
  text-align: left;
  font-size: 24px;
  width: 100%!important;
  line-height: 2;
  
}

/* 1行目のtd（店舗名、営業時間、所在地/電話番号）を左列（1列目）に強制配置 */
table[bgcolor="#D1D1D1"] tr:first-child td:nth-child(1) { grid-row: 1; grid-column: 1; }
table[bgcolor="#D1D1D1"] tr:first-child td:nth-child(2) { grid-row: 2; grid-column: 1; }
table[bgcolor="#D1D1D1"] tr:first-child td:nth-child(3) { grid-row: 3; grid-column: 1; }

/* 2行目のtd（実際のデータ）を右列（2列目）に強制配置 */
table[bgcolor="#D1D1D1"] tr:nth-child(2) td:nth-child(1) { grid-row: 1; grid-column: 2; }
table[bgcolor="#D1D1D1"] tr:nth-child(2) td:nth-child(2) { grid-row: 2; grid-column: 2; }
table[bgcolor="#D1D1D1"] tr:nth-child(2) td:nth-child(3) { grid-row: 3; grid-column: 2; }

table[bgcolor="#D1D1D1"] tr:first-child :is(td:nth-child(1),td:nth-child(2),td:nth-child(3)) {
  font-weight: 600;
}
table[bgcolor="#D1D1D1"] tr:nth-child(2) td:nth-child(2) {
  background-color: #fbb03b !important;
    padding-left: 10px !important;
  font-weight: 600;
}
/* ===================================================
   【店舗表】元のhtmlが30ページあるためhtmlに追記なしで構成↑↑
   =================================================== */
/* ===================================================
   【取り扱いサービス】元のhtmlが30ページあるためhtmlに追記なしで構成↓↓
   =================================================== */
#shop-icon, #shop-book-icon {
  margin: 60px 0 0;
  border: none!important;
}
#shop-icon :is(th,td){
  border: none;
}
#shop-book-icon :is(th,td){
  border: none;
}

#shop-book-geo-icon :is(th,td){
  border: none;
}

#shop-book-geo-icon {
  border: none;
}

table#shop-icon, table#shop-book-icon {
  display: flex !important;
  flex-direction: column; /* 疑似要素（上）と tbody（下）を縦に並べる */
}


table#shop-icon::before, table#shop-book-icon::before, table#shop-book-geo-icon::before {
  content: "取り扱いサービス";
  display: block;
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #eee;
}






/* 既存HTMLを触らずにCSS Gridで横7列に強制制御 */
#shop-icon, #shop-book-icon {
    width: 100% !important;
    border-collapse: collapse !important;
}
#shop-icon tbody, #shop-book-icon tbody {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}
#shop-icon tr, #shop-book-icon tr {
    display: contents; /* trの枠組みを無視してtdを一列に整列させる */
}
#shop-icon td, #shop-book-icon td {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}
#shop-icon td img, #shop-book-icon td img {
    width: 100%;
    height: auto;
    display: block;
    
}

/*書店のGEOのアイコンを移動に伴うstyle*/
.add_icon_geo {
    width: 80px;
    margin-left: 10px;
  
}

.add_geo-shop {
  display: flex;
  align-items: flex-start;
}
/* ===================================================
   【取り扱いサービス】元のhtmlが30ページあるためhtmlに追記なしで構成↑↑
   =================================================== */
/* ===================================================
   【地図】↓↓
   =================================================== */
iframe {
  height: 300px;
  margin-top: 50px;
}
/* ===================================================
   【地図】↑↑
   =================================================== */



/****************************************************/
/****************** media queries *******************/
/****************************************************/


/********************************************/
/************ max-width: 1024px *************/
/********************************************/
/*タブレット横*/
@media screen and (max-width: 1024px) {
/* ===================================================
   【店舗表】↓↓
   =================================================== */
/* ===================================================
   【店舗表】↑↑
   =================================================== */
/* ===================================================
   【取り扱いサービス】↓↓
   =================================================== */
/* ===================================================
   【取り扱いサービス】↑↑
   =================================================== */
/* ===================================================
   【地図】↓↓
   =================================================== */
/* ===================================================
   【地図】↑↑
   =================================================== */
}



/********************************************/
/* max-width: 991px ハンバーガー切替サイズ*******/
/********************************************/
@media screen and (max-width: 991px) {
/* ===================================================
   【店舗表】↓↓
   =================================================== */
/* ===================================================
   【店舗表】↑↑
   =================================================== */
/* ===================================================
   【取り扱いサービス】↓↓
   =================================================== */

/* ===================================================
   【取り扱いサービス】↑↑
   =================================================== */
/* ===================================================
   【地図】↓↓
   =================================================== */
/* ===================================================
   【地図】↑↑
   =================================================== */

}

/********************************************/
/************ max-width: 834px *************/
/********************************************/
/*タブレット縦*/
@media screen and (max-width: 834px) {

/* ===================================================
   【店舗表】↓↓
   =================================================== */
  table[bgcolor="#D1D1D1"] {
 width: 100%;
  margin: 20px auto 0;
}
  table[bgcolor="#D1D1D1"] tbody {
  row-gap: 10px;
  column-gap: 10px;
}
  table[bgcolor="#D1D1D1"] td {
  
  font-size: 23px;
  line-height: 1.6;
}

table[bgcolor="#D1D1D1"] th {
  
  font-size: 23px;
 line-height: 1.6;
}
/* ===================================================
   【店舗表】↑↑
   =================================================== */
/* ===================================================
   【取り扱いサービス】↓↓
   =================================================== */
  #shop-icon, #shop-book-icon {
  margin: 50px 0 0;
}
          /* アイコンテーブル：画面幅に合わせて可変 */
    #shop-icon tbody, #shop-book-icon tbody {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }
/* ===================================================
   【取り扱いサービス】↑↑
   =================================================== */
/* ===================================================
   【地図】↓↓
   =================================================== */
/* ===================================================
   【地図】↑↑
   =================================================== */

}

/********************************************/
/************ max-width: 768px *************/
/********************************************/
/*タブレット縦*/
@media screen and (max-width: 768px) {
  
/* ===================================================
   【店舗表】↓↓
   =================================================== */    
  table[bgcolor="#D1D1D1"] td {
  
  font-size: 20px;
  line-height: 1.6;
}

table[bgcolor="#D1D1D1"] th {
  
  font-size: 20px;
 line-height: 1.6;
}

/* ===================================================
   【店舗表】↑↑
   =================================================== */
/* ===================================================
   【取り扱いサービス】↓↓
   =================================================== */
  table#shop-icon::before, table#shop-book-icon::before, table#shop-book-geo-icon::before {
  font-size: 20px;
  margin-bottom: 10px;
}
       /* アイコンテーブル：画面幅に合わせて可変 */
    #shop-icon tbody {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
/* ===================================================
   【取り扱いサービス】↑↑
   =================================================== */
/* ===================================================
   【地図】↓↓
   =================================================== */
/* ===================================================
   【地図】↑↑
   =================================================== */
  }
  
/********************************************/
/************ max-width: 480px *************/
/********************************************/
/*スマホ縦*/
@media screen and (max-width: 480px) {

/* ===================================================
   【店舗表】↓↓
   =================================================== */
    table[bgcolor="#D1D1D1"] td {
  
  font-size: 18px;
  line-height: 1.6;
}

table[bgcolor="#D1D1D1"] th {
  
  font-size: 18px;
 line-height: 1.6;
}
/* ===================================================
   【店舗表】↑↑
   =================================================== */
/* ===================================================
   【取り扱いサービス】↓↓
   =================================================== */
    #shop-icon, #shop-book-icon {
  margin: 30px 0 0;
}
        /* アイコンテーブル：画面幅に合わせて可変 */
    #shop-icon tbody, #shop-book-icon tbody {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
/* ===================================================
   【取り扱いサービス】↑↑
   =================================================== */
/* ===================================================
   【地図】↓↓
   =================================================== */
  iframe {
  height: 250px;
  margin-top: 20px;
}
/* ===================================================
   【地図】↑↑
   =================================================== */
  }