@charset "utf-8";

/* =========================================
   京都紫 - 寺社一覧表
   ========================================= */

:root {
  --kyoto-purple: #5b3a6e;
  --kyoto-purple-dark: #432b52;
  --kyoto-purple-pale: #f3f0f4;
  --kyoto-purple-th: #ebe7ee;
  --kyoto-purple-border: #d9d2dc;

  --text: #39343a;
  --text-light: #756e78;
  --white: #ffffff;

  --gold: #b89b5e;

  --shadow: 0 6px 20px rgba(63, 40, 77, 0.07);
}


/* =========================================
   セクション見出し
   ========================================= */

.basic-h2 {
  position: relative;
  margin: 0 0 22px;
  padding: 12px 16px 12px 20px;

  color: var(--kyoto-purple-dark);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;

  background: linear-gradient(
    to right,
    var(--kyoto-purple-pale),
    #ffffff
  );

  border-left: 5px solid var(--kyoto-purple);
  border-bottom: 1px solid var(--kyoto-purple-border);
}


/* =========================================
   一覧表
   ========================================= */

.t-ichiran {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;

  background: var(--white);
  border: 1px solid var(--kyoto-purple-border);
  border-radius: 6px;
  overflow: hidden;

  box-shadow: var(--shadow);

  color: var(--text);
  font-size: 0.95rem;
}


/* =========================================
   TH
   「薄いグレーがかった紫」
   ========================================= */

.t-ichiran th {
  padding: 13px 14px;

  background: var(--kyoto-purple-th);
  color: var(--kyoto-purple-dark);

  border-right: 1px solid var(--kyoto-purple-border);
  border-bottom: 1px solid var(--kyoto-purple-border);

  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}


/* 最後のTHだけ右線なし */

.t-ichiran th:last-child {
  border-right: none;
}


/* =========================================
   TD
   ========================================= */

.t-ichiran td {
  padding: 12px 14px;

  background: #ffffff;

  border-right: 1px solid #e4dfe6;
  border-bottom: 1px solid #e4dfe6;

  line-height: 1.7;
  vertical-align: middle;
}


/* 最後のTD */

.t-ichiran td:last-child {
  border-right: none;
}


/* 最終行 */

.t-ichiran tr:last-child td {
  border-bottom: none;
}


/* =========================================
   行ホバー
   ========================================= */

.t-ichiran tbody tr {
  transition: background-color 0.2s ease;
}

.t-ichiran tbody tr:hover td {
  background: #faf8fb;
}


/* =========================================
   画像
   ========================================= */

.t-ichiran .ti-img {
  width: 105px;
  text-align: center;
}

.t-ichiran td:first-child {
  width: 105px;
  padding: 10px;
  text-align: center;
}

.t-ichiran td img {
  display: block;
  width: 80px;
  height: 60px;
  object-fit: cover;

  margin: 0 auto;

  border: 1px solid #ddd6df;
  border-radius: 3px;
}


/* =========================================
   寺社名
   ========================================= */

.t-ichiran .ti-name {
  width: 180px;
}

.t-ichiran td:nth-child(2) {
  font-weight: 600;
}

.t-ichiran td:nth-child(2) a {
  color: var(--kyoto-purple);
  text-decoration: none;
}

.t-ichiran td:nth-child(2) a:hover {
  color: var(--kyoto-purple-dark);
  text-decoration: underline;
}


/* =========================================
   エリア
   ========================================= */

.t-ichiran .ti-area {
  width: 170px;
}

.t-ichiran td:nth-child(3) a {
  color: #665b69;
  text-decoration: none;
}

.t-ichiran td:nth-child(3) a:hover {
  color: var(--kyoto-purple);
  text-decoration: underline;
}


/* =========================================
   ポイント
   ========================================= */

.t-ichiran td:nth-child(4) {
  color: #514b53;
}


/* =========================================
   「NO IMAGE」
   ========================================= */

.t-ichiran td img[alt="NO IMAGE"] {
  opacity: 0.55;
  filter: grayscale(15%);
}


/* =========================================
   スマホ
   ========================================= */

@media screen and (max-width: 768px) {

  .basic-h2 {
    margin-bottom: 16px;
    padding: 10px 13px 10px 16px;

    font-size: 1.2rem;
  }

  .t-ichiran {
    font-size: 0.85rem;
  }

  .t-ichiran th,
  .t-ichiran td {
    padding: 9px 8px;
  }

  .t-ichiran .ti-img,
  .t-ichiran td:first-child {
    width: 75px;
  }

  .t-ichiran td img {
    width: 65px;
    height: 49px;
  }

  .t-ichiran .ti-name {
    width: auto;
  }

  .t-ichiran .ti-area {
    width: auto;
  }
}



</style>

<style>
.nw { padding:0 0 40px; }
.nw p {
    color: #514a53;
    font-size: 15px;
    line-height: 2.15;
}
.nw p:not(:last-of-type) { padding:0 0 15px; }

.basic-h3 {
    margin: 50px 0 20px;
    padding-bottom: 10px;
    color: var(--kyoto-purple-dark);
    font-size: 1.3rem;
    border-bottom: 2px solid var(--kyoto-purple);
}

/* =========================================
   スポット一覧
   ========================================= */

.ichiran_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ichiran_ul > li {
  margin: 0 0 24px;
  padding: 0;
}

/* -----------------------------------------
   1件分のカード
   ----------------------------------------- */

.ichiran_dl {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #d9d2dc;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(63, 40, 77, 0.06);
  transition: 0.2s ease;
}

.ichiran_dl:hover {
  border-color: #b9a9c1;
  box-shadow: 0 6px 20px rgba(63, 40, 77, 0.10);
}

/* -----------------------------------------
   画像
   ----------------------------------------- */

.ichiran_dl dt {
  flex: 0 0 140px;
  margin: 0;
}

.ichiran_dl dt img {
  display: block;
  width: 140px;
  height: 105px;
  object-fit: cover;
  border-radius: 4px;
}

/* -----------------------------------------
   右側
   ----------------------------------------- */

.ichiran_dl dd {
  flex: 1;
  min-width: 0;
  margin: 0;
}

/* -----------------------------------------
   スポット名
   ----------------------------------------- */

.ichiran_dl h5 {
  margin: 0 0 10px;
  padding: 0 0 8px;
  border-bottom: 1px solid #e3dfe5;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.ichiran_dl h5 a {
  color: #432b52;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ichiran_dl h5 a:hover {
  color: #80618f;
  text-decoration: underline;
}

/* -----------------------------------------
   カテゴリー・タグ
   ----------------------------------------- */

.ichiran_dl_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
  line-height: 1.4;
}

.ichiran_dl_btn span {
  display: inline-block;
  margin: 0;
}

.ichiran_dl_btn span a {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid #d9d2dc;
  border-radius: 3px;
  background: #f3f0f4;
  color: #5b3a6e;
  font-size: 12px;
  text-decoration: none;
  transition: 0.2s ease;
}

.ichiran_dl_btn span a:hover {
  background: #ebe7ee;
  border-color: #b9a9c1;
  color: #432b52;
}

/* -----------------------------------------
   説明文
   ----------------------------------------- */

.ichiran_dl_disc {
  margin: 8px 0 0;
  color: #5f5962;
  font-size: 14px;
  line-height: 1.9;
}

/* -----------------------------------------
   タグの種類ごとの微調整
   ※全体の色味は京紫で統一
   ----------------------------------------- */

.ichiran_dl_btn .station a,
.ichiran_dl_btn .jr a,
.ichiran_dl_btn .subway_karasuma a,
.ichiran_dl_btn .kintetsu a,
.ichiran_dl_btn .gourmet a,
.ichiran_dl_btn .event a {
  background: #f3f0f4;
  color: #5b3a6e;
}

/* -----------------------------------------
   スマホ
   ----------------------------------------- */

@media screen and (max-width: 768px) {

  .ichiran_ul > li {
    margin-bottom: 18px;
  }

  .ichiran_dl {
    gap: 14px;
    padding: 14px;
  }

  .ichiran_dl dt {
    flex: 0 0 110px;
  }

  .ichiran_dl dt img {
    width: 110px;
    height: 83px;
  }

  .ichiran_dl h5 {
    margin-bottom: 7px;
    padding-bottom: 6px;
    font-size: 17px;
  }

  .ichiran_dl_btn {
    gap: 4px;
    margin-bottom: 7px;
  }

  .ichiran_dl_btn span a {
    padding: 3px 7px;
    font-size: 11px;
  }

  .ichiran_dl_disc {
    font-size: 13px;
    line-height: 1.75;
  }
}

@media screen and (max-width: 480px) {

  .ichiran_dl {
    display: block;
    padding: 14px;
  }

  .ichiran_dl dt {
    margin-bottom: 12px;
  }

  .ichiran_dl dt img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .ichiran_dl h5 {
    font-size: 18px;
  }

  .ichiran_dl_disc {
    font-size: 13px;
  }
}


</style>
<style>



/* =========================================
   area  京都紫 - 一覧ページ
   ========================================= */

:root {
  --kyoto-purple: #5b3a6e;
  --kyoto-purple-dark: #432b52;
  --kyoto-purple-light: #80618f;

  /* 少しグレーを混ぜた淡い紫 */
  --kyoto-purple-pale: #f3f0f4;
  --kyoto-purple-th: #ebe7ee;
  --kyoto-purple-border: #d9d2dc;

  --text: #39343a;
  --text-light: #756e78;

  --white: #ffffff;
  --bg: #f8f6f3;

  --gold: #b89b5e;

  --shadow: 0 6px 22px rgba(63, 40, 77, 0.07);
}


/* =========================================
   全体
   ========================================= */

body {
  color: var(--text);
  background: var(--bg);
}


/* =========================================
   セクション見出し
   ========================================= */

.basic-h2 {
  position: relative;

  margin: 0 0 22px;
  padding: 12px 16px 12px 20px;

  color: var(--kyoto-purple-dark);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;

  background: linear-gradient(
    to right,
    var(--kyoto-purple-pale),
    #ffffff
  );

  border-left: 5px solid var(--kyoto-purple);
  border-bottom: 1px solid var(--kyoto-purple-border);
}


/* =========================================
   一覧表
   ========================================= */

.t-ichiran {
  width: 100%;

  border-collapse: separate;
  border-spacing: 0;

  background: var(--white);

  border: 1px solid var(--kyoto-purple-border);
  border-radius: 6px;

  overflow: hidden;

  box-shadow: var(--shadow);

  color: var(--text);
}


/* =========================================
   TH
   薄いグレーがかった京紫
   ========================================= */

.t-ichiran th {
  padding: 13px 14px;

  background: var(--kyoto-purple-th);
  color: var(--kyoto-purple-dark);

  border-right: 1px solid var(--kyoto-purple-border);
  border-bottom: 1px solid var(--kyoto-purple-border);

  font-weight: 600;
  letter-spacing: 0.05em;

  text-align: left;
  vertical-align: middle;

  white-space: nowrap;
}

.t-ichiran th:last-child {
  border-right: none;
}


/* =========================================
   TD
   ========================================= */

.t-ichiran td {
  padding: 12px 14px;

  background: #ffffff;

  border-right: 1px solid #e4dfe6;
  border-bottom: 1px solid #e4dfe6;

  line-height: 1.7;
  vertical-align: middle;
}

.t-ichiran td:last-child {
  border-right: none;
}

.t-ichiran tr:last-child td {
  border-bottom: none;
}


/* =========================================
   行ホバー
   ========================================= */

.t-ichiran tbody tr {
  transition: background-color 0.2s ease;
}

.t-ichiran tbody tr:hover td {
  background: #faf8fb;
}


/* =========================================
   画像
   ========================================= */

.t-ichiran td:first-child {
  width: 105px;
  padding: 10px;

  text-align: center;
}

.t-ichiran td img {
  display: block;

  width: 80px;
  height: 60px;

  margin: 0 auto;

  object-fit: cover;

  border: 1px solid #ddd6df;
  border-radius: 3px;
}


/* =========================================
   寺社名
   ========================================= */

.t-ichiran .ti-name {
  width: 180px;
}

.t-ichiran td:nth-child(2) {
  font-weight: 600;
}

.t-ichiran td:nth-child(2) a {
  color: var(--kyoto-purple);
  text-decoration: none;

  transition: color 0.2s ease;
}

.t-ichiran td:nth-child(2) a:hover {
  color: var(--kyoto-purple-dark);
  text-decoration: underline;
}


/* =========================================
   エリア
   ========================================= */

.t-ichiran .ti-area {
  width: 170px;
}

.t-ichiran td:nth-child(3) a {
  color: #665d68;
  text-decoration: none;

  transition: color 0.2s ease;
}

.t-ichiran td:nth-child(3) a:hover {
  color: var(--kyoto-purple);
  text-decoration: underline;
}


/* =========================================
   ポイント
   ========================================= */

.t-ichiran td:nth-child(4) {
  color: #514b53;
}


/* =========================================
   NO IMAGE
   ========================================= */

.t-ichiran td img[alt="NO IMAGE"] {
  opacity: 0.55;
  filter: grayscale(15%);
}


/* =========================================
   リンク共通
   ========================================= */

a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}


/* =========================================
   スマホ
   ========================================= */

@media screen and (max-width: 768px) {

  .basic-h2 {
    margin-bottom: 16px;
    padding: 10px 13px 10px 16px;

    font-size: 1.2rem;
  }


  .t-ichiran {
    font-size: 0.85rem;
  }


  .t-ichiran th,
  .t-ichiran td {
    padding: 9px 8px;
  }


  .t-ichiran td:first-child {
    width: 75px;
  }


  .t-ichiran td img {
    width: 65px;
    height: 49px;
  }


  .t-ichiran .ti-name,
  .t-ichiran .ti-area {
    width: auto;
  }
}









