@charset "UTF-8";
/* -------------------
　変数定義（共通）
------------------- */
:root {
  /* カラー */
  --primary-color: #cf46ba;
  --secondary-color: #d6b982;
  --bg-color: #ffffff;
  --text-color: #333333;
  --a-hover-color: #eb6dd8;

  /* フォント */
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;

  /* 見出しフォント */
  --heading-font: 'Noto Serif JP', serif;
  --top-h2-font: 'Klee One', var(--font-serif);
  --top-h2-sub: 'Zen Maru Gothic', sans-serif;

  /* トップページh2のサブテキスト色 */
  --top-h2-sub-color: var(--primary-color);

  /* h1-h6 サイズ */
  --h1-size: clamp(1.75rem, 5vw, 2.5rem);
  --h1sub-size: clamp(1.2rem, 2vw, 1.3rem);
  
  --h2-size: clamp(1.6rem, 4vw, 2rem);
  --h2sub-size: clamp(1rem, 2vw, 1.3rem);

  --h3-size: clamp(1.15rem, 2.5vw, 1.5rem);
  --h4-size: clamp(1.1rem, 2vw, 1.2rem);
  --h5-size: clamp(1.1rem, 2vw, 1.2rem);
  --h6-size: 1rem;
}

/* -------------------
　リセット
------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, img, table, th, td, input, select, textarea, button {
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------
　共通CSS
------------------- */
html { scroll-behavior: smooth; }

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

a {
  color: var(--primary-color);
  transition: color 0.15s ease, filter 0.15 ease;
}
a:hover {
  color: var(--a-hover-color);
}

.cmn-btn { 
  display: inline-block;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  padding: 0.5em 4em;
  font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.cmn-btn:hover {
  filter: none;
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 700;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }

.bold { font-weight: 700; }
.strong {
  font-weight: bold;
  text-decoration: underline;
  -webkit-text-decoration-skip: none;
  /* Safari用下線の途切れ防止↑ */
}
.sml {
  font-size: 0.85em;
  line-height: 1.2;
}

.yellow { color: #ffd54a; }
.red { color: #eb3251; }
.blue { color: #2b8ec7; }


/* -------------------
　レイアウト
------------------- */

.section {
  padding: 60px 0;
}
.inner {
  width: 1150px;
  max-width: 90%;
  margin: 0 auto;
}

.page-section {
  padding-bottom: 60px;
}

.btn-center {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-content {
  width: 1150px;
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
}

section {
  scroll-margin-top: 120px; /* ナビの高さ分 */
}

/*   改行など   */

/* スマホで改行 */
.sp-br { 
  display: none;
}
/* タブレット以下で改行 */
.tb-br {
  display: none;
}
.pdl-6 {
  padding-left: 6rem;
}

@media (max-width: 1199px) {
  /* タブレット向けの調整 */
  .tb-br {
    display: inline;
  } 
  .pc-br {
    display: none;
  }
  .pdl-6 {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  /*　スマホ向けの調整　*/
  .sp-br {
    display: inline;
  }
  /* 共通ボタン　*/
  .cmn-btn { 
    display: block;
    width: 100%;
  }
}

/* ==================================================
　ヘッダー
================================================== */

/* -------------------------------
　グローバルナビゲーション
-------------------------------- */
/*　PC表示　*/
.l-header {
  height: 94px;
}
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  transition: height 0.15s ease, padding 0.15s ease, background-color 0.15s ease;
}
.header-logo {
  width: 190px;
}
.header-logo img {
  max-width: 100%;
  display: block;
  transition: height 0.15s ease;
}

.header .l-header-nav {
  display: flex;
  font-size: 12px;
}
.header .l-header-nav a {
  color: var(--text-color);
}
.header .l-header-nav a:hover {
  color: var(--primary-color);
}
.header .l-header-nav .header-nav .items {
  display: flex;
}
.header .l-header-nav .header-nav .items .item {
  height: inherit;
  position: relative;
}
.header .l-header-nav .header-nav .items .item:last-child .header-link {
  padding-right: 30px;
}
.header .l-header-nav .header-nav .items .item .header-link {
  display: block;
  padding: 40px 20px;
}
.header .l-header-nav .header-nav .items .item .header-link p {
  transition: color 0.4s ease;
}
.header .l-header-nav .header-nav .items .item .items-Lv2 {
  position: absolute;
  left: 0;
  white-space: nowrap;  
  width: max-content;
  min-width: 100%;
}
.header .l-header-nav .header-nav .items .item .items-Lv2 .item-Lv2 {
  text-align: center;
}
.header .l-header-nav .header-nav .items .item .items-Lv2 .item-Lv2 p {
  padding: 20px 0;
  background: #f8f8f8;
}
.header .l-header-nav .header-nav .items .item .items-Lv2 .item-Lv2 p:hover {
  background: #fdfdfd;
}
.header .header-btns {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.header .header-btns .ico-x img {
  width: 24px;
}
.header .header-btns .ico-fb img {
  width: 28px;
}

/* PCナビゲーション ページ未公開用 */
.header-nav .no-link {
  display: block;
  text-align: center;
  padding: 40px 30px 0 20px;
  color: #999;
}
.header-nav .no-link .no-link-sub {
  display: block;
}

@media (max-width: 1199px) {
  .l-header {
    height: 66px;
  }
  .header {
    padding: 20px;
  }
  .header .l-header-nav {
    display: none;
  }
  .header-logo {
    width: 160px;
  }
}
/* ハンバーガーメニューアイコン */
.header .menu {
  z-index: 9999 !important;
  display: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}
.l-header .header .menu-global {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  left: 0;
  border-top: 3px solid #555;
  width: 100%;
  transition: 0.55s;
}

.l-header .header .menu-global.menu-top {
  top: 0;
}
.l-header .header .menu-global.menu-top.menu-top-click {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 10px;
  transform: rotate(50deg);
  transition: 0.55s 0.5s;
}
.header .menu-global.menu-middle {
  top: 13px;
}
.header .menu-global.menu-middle.menu-middle-click {
  opacity: 0;
}

.header .menu-global.menu-bottom {
  top: 26px;
}
.l-header .header .menu-global.menu-bottom.menu-bottom-click {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 10px;
  transform: rotate(-410deg);
  transition: 0.55s 0.5s;
}

@media (max-width: 1199px) {
  .header .menu {
    display: block;
  }
}
@media (max-width: 767px) {
  .header .menu {
    width: 25px;
    height: 25px;
  }
  .header .menu-global {
    border-top: 3px solid #555;
  }
  .header .menu-global.menu-top.menu-top-click {
    top: 10px;
  }
  .header .menu-global.menu-middle {
    top: 10px;
  }
  .l-header .header .menu-global.menu-bottom {
    top: 21px;
  }

  .header .menu-global.menu-bottom.menu-bottom-click {
    top: 5px;
  }
  .header .menu-global.menu-bottom.menu-bottom-click {
    top: 10px;
  }
}
/* スマホ表示　縦メニュー */
.l-header .header .hamburger-nav {
  position: fixed;
  inset: 0;
  background: rgba(247, 247, 247, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding-bottom: 100px;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item p {
  display: block;
  padding: 20px 0 20px 30px;
  font-size: 18px;
  transition: 0.2s;
  text-align: left;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item  p:hover {
  background-color: rgba(219, 219, 219, 0.9);
}

.l-header .header .hamburger-nav a{
  color: var(--text-color);
}
.l-header .header .hamburger-nav a:hover {
  color: var(--primary-color);
}
.l-header .header .hamburger-nav.active {
  visibility: visible;
  opacity: 1;
}
.l-header .header .hamburger-nav-items {
  padding-top: 60px;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item {
  border-top: 1px solid #dadada;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item:last-child {
  border-bottom: 1px solid #dadada;
  padding: 20px 0 20px 30px;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item .sns-btns {
  display: flex;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item .sns-btns .sns-btn {
  width: 30px;
  transition: 0.15s;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item .sns-btns .sns-btn:hover {
  opacity: 0.8;
}
.l-header .header .hamburger-nav-items .hamburger-nav-item .sns-btns .sns-btn:first-child {
  margin-right: 25px;
}


/* スマホナビゲーション ページ未公開用 */
.hamburger-nav-item .sp-no-link {
 color: #999;
}

@media (max-width: 767px) {
  .l-header .header .hamburger-nav-items {
    padding-top: 50px;
  }
  .l-header .header .hamburger-nav-items .hamburger-nav-item p {
    font-size: 14px;
  }
}
/* ==================================================
　フッター
================================================== */
/*　本市イベント情報　*/
.event-info {
  width: 100%;
  background-color: #ededed;
  padding: 60px 40px;
}
.event-info .bnr-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.event-info .bnr-wrap .bnr img {
  flex: 1; 
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* -------------------------------
　フッター
-------------------------------- */
footer {
  transition: font-size 0.4s ease,
              width 0.4s ease,
              height 0.43s ease;
}
.footer-wrapper {
  padding: 60px 40px 10px;
}
.footer-wrapper .logo-kyoto {
  width: 280px;
  margin: 0 auto;
}
.footer-wrapper .logo-kyoto img {
  width: 100%;
}
.address {
  text-align: center;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 50px;
}
.footer-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.footer-menu li {
  padding: 0 2.7%;
}
.footer-menu li:not(:last-child) {
  border-right: 1px solid var(--text-color);
}
.footer-menu li a {
  color: var(--text-color);
  white-space: nowrap;
  display: block;
  line-height: 1;
  transition: font-size 0.4s ease,
              filter 0.15s ease,
              color 0.15s ease;
}
.footer-menu li a:hover {
  color: var(--primary-color);
}

.copy {
  font-size: 12px;
  text-align: center;
}
@media (max-width: 1199px) {
  .footer-wrapper .logo-kyoto {
    width: 220px;
  }
  .address {
    font-size: 14px;
  }
  .footer-menu {
    font-size: 14px;
  }
  .footer-menu {
    flex-direction: column;
  }
  .footer-menu li {
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #bbbbbb;
  }
  .footer-menu li:first-child {
    border-top: 1px solid #bbbbbb;
  }
  .footer-menu li:not(:last-child) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .copy {
    font-size: 10px;
  }
}
/* ==================================================
　ページトップボタン
================================================== */
/* ボタン本体 */
.l-page-top {
  position: fixed; /* 画面右下に追従 */
  right: 40px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  background-color: #c8c8c8;
  border-radius: 4px;
  opacity: 0;                /* 初期非表示 */
  pointer-events: none;      /* 非表示時はクリック不可 */
  z-index: 1000;
  transition: background-color 0.4s ease-in-out, opacity 0.65s ease;
  transform: translateZ(0);
}
/* 表示状態 */
.l-page-top.show {
  opacity: 1;
  pointer-events: auto;
}
/* ホバーで背景色だけ変化 */
.l-page-top:hover {
  background-color: #888;
}
/* 内部要素 */
.l-page-top .page-top {
  height: 100%;
  position: relative;
}
/* SVG矢印 */
.l-page-top .page-top::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/footer-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden; /* 描画安定化 */
}

@media (max-width: 767px) {
  .l-page-top {
    right: 20px;
  }
}
/* ==================================================
　LINE式典申し込みボタン
================================================== */
.line-btn {
  position: fixed;
  bottom: 120px; /* フッター付近 */
  right: 40px;
  width: 100%;
  max-width: 250px;
  height: 60px;
  line-height: 1;
  background-color: #4cc864;
  border-radius: 50px;
  opacity: 0;             /* 初期非表示 */
  pointer-events: none;   /* 非表示時はクリック不可 */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  z-index: 1000;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.line-btn a {
  color: #fff;
}
.line-btn.js-on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ==================================================
　トップページ
================================================== */
.top-h2 {
  font-family: var(--top-h2-font);
  font-weight: 600;
  line-height: 1.2;
}
h2 .sub {
  display: block;
  font-size: var(--h2sub-size);
  color: var(--primary-color);
  margin-bottom: 1em;
  font-family: var(--top-h2-sub);
  letter-spacing: 0.2rem;
}

/* ==================================================
　下層ページ
================================================== */
.page-content p {
  font-size: clamp(0.9375rem, 2vw, 1rem);
  margin-bottom: 1em;
  line-height: 1.8;
}
.page-content a {
  text-decoration: underline;
}
.page-content a:hover {
  text-decoration: none;
}

/* -------------------------------
　見出し
-------------------------------- */
.page-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/sub-hero.jpg);
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
.page-header-inner {
  text-align: center;
  padding: 20px;
}
.page-h1 {
  color: #fff;
  font-weight: 900;
  font-family: var(--font-serif), serif;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.page-h1 .sub {
  display: block;
  color: #fff;
  font-size: var(--h1sub-size);
  letter-spacing: normal;
  font-weight: 600;
  font-family: var(--top-h2-sub), sans-serif;
  margin-bottom: 0px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.page-h2 {
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 95px;
}
.page-h2::before {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35px;
}
.page-h3 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1em;
}
/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
    .page-h2 {
      margin-bottom: 65px;
      line-height: 1.4;
  }
}


/* パンくずリスト */
.pankuzu {
  font-size: 88%;
  margin-bottom: 55px;
  line-height: 1.5;
}
.pankuzu a {
  text-decoration: underline;
}
.pankuzu a:hover {
  filter: none;
  text-decoration: none;
}
@media (max-width: 767px) {
  .pankuzu {
    font-size: 11px;
    margin-bottom: 30px;
  }
}
/* -------------------------------
　テーブル
-------------------------------- */
.table {
  width: 100%;
  display: table;
  border-top: 1px solid #999;
}
.table .tr {
  display: table-row;
}
.table .th {
  background-color: #f2f2f2;
  width: 200px;
  text-align: center;
}
.table .td {
  background-color: #fff;
  width: calc(100% - 200px);
}
.table .td p:last-child {
  margin-bottom: 0;
}
.table .th,
.table .td {
  vertical-align: middle;
  display: table-cell;
  border-bottom: 1px solid #999;
  padding: 1em;
}
.td .td-flex {
  display: flex;
}
.td .td-flex .title {
  width: 100px;
}

@media (max-width: 767px) {
  .table {
    display: block;
  }
  .table .tr {
    display: block;
  }
  .table .th {
    width: 100%;
    text-align: left;
    font-weight: bold;
    padding: 0.3em 1em;
  }
  .table .td {
    width: 100%;
  }
  .table .th,
  .table .td {
    display: block;
    border-bottom: 1px solid #999;
  }
  .td .td-flex {
    flex-flow: column;
  }
}
/* -------------------------------
　archive.php
-------------------------------- */
.page-news {
  width: 900px;
}
.page-newsList .news-li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;  /* タイトル折り返し対応 */
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.page-newsList .news-li:last-child {
  border-bottom: none;
}
.news-date {
  flex: 0 0 auto;
  margin-right: 40px;
  margin-left: 20px;
}
.news-ttl {
  flex: 1;
  margin-right: 20px;
}
.news-ttl p  {
  margin-bottom: 0;
}
/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .page-newsList .news-li {
    flex-direction: column;
  }
  .news-date {
    margin-bottom: 0.5em;
  }
  .news-ttl {
    margin-left: 20px;
  }
}


/* -------------------------------
　式典情報・お申込方法（親）
-------------------------------- */
.ceremony_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.ceremony_list li a {
  text-decoration: none;
}
.ceremony_list li {
  border: 7px solid #e9e9e9;
  padding: 25px;
  flex: 1 1 calc(50% - 30px);
}
.ceremony_list h2 {
  color: var(--text-color);
  font-size: var(--h5-size);
  margin-bottom: 1em;
}
.ceremony_list h2:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
}
.ceremony_list p {
  color: var(--text-color);
  margin-bottom: 0;
}
/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .ceremony_list {
    flex-direction: column;
  }
}

/* -------------------------------
　お申込み方法
-------------------------------- */
.entry_step {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.entry_step .step {
  width: 28%;

}
.entry_step .arrow {
  width: 8%;
  background: url("../images/entry_arrow.png") no-repeat 50% 40%;
  background-size: 30px;
  position: relative;
}
.entry_step .arrow p {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: bold;
}
.entry_step .arrow p span {
  background: linear-gradient(transparent 85%, #ebd5df 0%);
  padding-bottom: 0.1em;
  color: #333;
}
.entry_step .step img {
  width: 100%;
  margin-bottom: 20px;
}


/* 囲みデザイン */
.entry .note-box {
  width: 100%;
  background-color: #5382e7;
  color: #fff;
  padding: 5%;
  border-radius: 30px;
  border: 7px solid rgba(255, 255, 255, 0.76);
}
.entry .note-box p {
  margin-bottom: 1em;
}
.entry .note-box .ttl {
  font-size: 1.6em;
  font-weight: 700;
}
.entry .note-box .text-border {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid #FFF;
}
.entry .note-center {
  text-align: center;
}
.entry .note-narrow {
  margin: 25px auto 0;
  width: 70%;
}

/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .entry_step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .entry_step .step {
    width: 100%;
    text-align: center;
  }
  .entry_step .arrow {
    width: 100%;
    height: 100px;
    background: url("../images/entry_arrow_sp.png") no-repeat 50% 50%;
    background-size: 40px;
  }
  .entry_step .arrow p {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0%);
    margin-bottom: 20px;
    text-align: center;
    font-size: 110%;
  }
  .entry_step .step img {
    max-width: 350px;
    margin-bottom: 20px;
  }
  /* 囲みデザイン */
  .entry .note-box .ttl {
    font-size: 1.2em;
    line-height: 1.4;
  }
  .entry .note-narrow {
    width: 90%;
  }
}


/* -------------------------------
　会場へのアクセス
-------------------------------- */
.hd_c {
  font-weight: 500;
  margin-bottom: 0.5em;
}
.hd_c::before {
  content: "■";
  color: var(--secondary-color);
  display: inline;
  margin-right: 0.2em;
}

.accessmap {
  width: 100%;
  max-width: 700px;
}

/* -------------------------------
　FAQ よくあるご質問
-------------------------------- */
.faq {
  border: 7px solid #e9e9e9;
  padding: 30px;
  margin-bottom: 25px;
}
.faq .question {
  border-bottom: 1px solid #ccc;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.faq .question h2 {
  line-height: 1.5;
  font-size: var(--h4-size);
  font-weight: 500;
}
.faq .icon {
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 30px;
  border-radius: 50%;
  margin-left: -60px;
  margin-right: 24px;
}
.faq .question .icon {
  background-color: var(--primary-color);
  font-size: 100%;
}
.faq .answer .icon {
  background-color: var(--secondary-color);
  font-size: 125%;
  font-size: var(--h4-size);
}
.faq .honbun,
.faq h2 {
  margin-left: 60px;
}
.faq .honbun {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .faq {
    border: 5px solid #e9e9e9;
    padding: 15px;
    margin-bottom: 25px;
  }
  .faq .question {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .faq .icon {
    width: 30px;
    height: 30px;
    line-height: 28px;
    margin-left: -40px;
    margin-right: 10px;
  }
  .faq .answer .icon {
    display: none;
  }
  .faq .question h2 {
    margin-left: 40px;
    font-weight: 500;
  }
  .faq .honbun {
    margin-left: 0;
  }
}

/* -------------------------------
　参加者募集中
-------------------------------- */
.chikai-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.chikai-heading .chikai-lead {
  flex: 1;
}
.chikai-heading .photo {
  flex: 0 1 400px;
}
.chikai-heading .photo img {
  width: 100%;
}

.btn_oubo {
  display: inline-block;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 1em 3em;
  text-decoration: none !important;
  border-radius: 2em;
}
.btn_oubo:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .chikai-heading {
    flex-direction: column;
    margin-bottom: 2em;
  }  
  .chikai-heading .photo img {
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }

  .btn_oubo {
    width: 100%;
  }
}

/* -------------------------------
　ムービー・はたちニュース
-------------------------------- */
.movie-article {
  width: 900px;
  max-width: 90%;
  margin: auto;
}
.movie_nav {
  width: 100%;
  margin: 0 auto 60px;
  display: flex;
  justify-content: flex-start;
}
.movie_nav li {
  text-align: center;
  width: 25%;
  position: relative;
}
.movie_nav li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #333;
}
.movie_nav li:last-child::after {
  display: none;
}

.movie_nav a {
  display: inline-block;
  padding: 0.8em 1em;
  text-decoration: none;
  color: #333;
  /*font-size: 18px;*/
  font-size: 113%;
}
.movie_nav a.active,
.movie_nav a:hover {
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  transition: background-color 0.15s ease;
}
.movie_nav li:first-child::before,
.movie_nav li:last-child::before {
  display: none;
}
.movie_nav li:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #333;
}
.movie_nav li:last-child::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #333;
}

/*　Youtube埋め込みエリア　*/
.youtube-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 2em;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.chapter-Box .honbun-flex {
  display: flex;
  gap: 1em;
}
.chapter-Box .honbun-flex p {
  margin-bottom: 0;
}
.chapter-Box .honbun-flex .left {
  width: 65px;
}

/* -- タブレット用 （～1199px） -- */
@media (max-width: 1199px) {
  .youtube-wrap {
    width: 100%;
  }
  .movie_nav a {
    font-size: 95%;
  }
}
/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .movie_nav li:first-child::before,
  .movie_nav li:last-child::before {
    display: none;
  }
  .movie_nav {
    width: 100%;
    padding-top: 0;
    margin: 0 auto 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  .movie_nav li {
    width: 50%;
    position: relative;
  }
  .movie_nav li::after {
    display: none;
  }
  .movie_nav li a::before {
    content: "» ";
  }
  .movie_nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0;
    font-size: 100%;
    background-color: #f2f2f2;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
}

/* -------------------------------
　ムービー・アーカイブ
-------------------------------- */
.movie-archive-flex {
  display: flex;
  gap: 15%;
  margin-bottom: 2em;
}
.movie-archive-flex .left {
  width: 220px;
}
.movie-archive-flex .right {
  flex: 1;
}
.hatachi-news-pdf {
  text-align: center;
}
.hatachi-news-pdf ul li {
  margin-bottom: 1em;
}
/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .movie-archive-flex{
  flex-direction: column;
  gap: 10px;
  }
  .hatachi-news-pdf ul li {
    font-size: 0.9375em;
  }
}


/* -------------------------------
　スペシャルコンテンツ
-------------------------------- */

.cont_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.cont_list li {
  border: 7px solid #e9e9e9;
  flex: 0 1 calc(33.333% - 20px);
  padding: 15px;
}
.cont_list li a {
  display: block;
  text-decoration: none;
  color: #333;
}
.cont_list li img {
  width: 100%;
  transition: opacity 0.15s ease;
  display: block;
  margin: 0 auto 25px;
}
.cont_list li a:hover img {
  opacity: 0.7;
}
.cont_list li h2 {
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  /*font-size: 16px;*/
  font-size: 100%;
  text-decoration: none;
}
.cont_list li a:hover h2 {
  text-decoration: underline;
}
.cont_list li p {
  line-height: 1.8;
}

/* -- タブレット用 （～1199px） -- */
@media (max-width: 1199px) {
  .cont_list li {
    flex: 0 1 48%; /* 2列に切り替え */
  }
}

/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .cont_list li {
    flex: 0 1 100%; /* 1列に切り替え */
    border: 5px solid #e9e9e9;
    width: 100%;
    padding: 15px;
  }
  .cont_list li h2 {
    margin-bottom: 20px;
    font-size: 115%;
  }
  .cont_list li img {
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .cont_list li p {
    font-size: 13px;
  }
}

/* -------------------------------
　ミスきもの
-------------------------------- */
.Misskimono .ttl-img {
  width: 100%;
  margin-bottom: 25px;
}
.Misskimono h2 {
  font-size: var(--h4-size);
  font-weight: 500;
  line-height: 1.5;
  margin-left: 60px;
}
.mk-question {
  border-bottom: 1px solid #ccc;
  padding-bottom: 25px;
  margin-bottom: 25px;
  /*font-size: 20px;*/
  font-size: 125%;
  font-weight: 500;
}
.mk-question .icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  /*font-size: 20px;*/
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 125%;
  line-height: 30px;
  border-radius: 50%;
  margin-left: -60px;
  margin-right: 24px;
}
.Misskimono p.mk-name {
  margin-bottom: 0.5em;
}
.mk-name {
  font-weight: bold;
  color: var(--primary-color);
  /*font-size: 18px;*/
  font-size: 113%;
}
.mk-answer {
  margin-bottom: 60px;
}
.mk-photo img {
  max-width: 500px;
}

/* 画像つきインタビューエリア　*/
.mk-flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}
.mk-flex-img {
  width: 320px;
}
.mk-flex-img img {
  width: 100%;
}
.mk-flex-txt {
  flex: 1;
}
/* 写真の出し方を交互に */
.mk-flex:nth-child(odd) {
  flex-direction: row-reverse;
}

/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .mk-question {
    padding-bottom: 20px;
    margin-bottom: 20px;
    /*font-size: 16px;*/
    font-size: 115%;
    font-weight: 500;
  }

  .mk-question .icon {
    width: 30px;
    height: 30px;
    /*font-size: 16px;*/
    font-size: 115%;
    line-height: 28px;
    margin-left: -40px;
    margin-right: 10px;
  }
  .mk-question h2 {
    margin-left: 40px;
  }
  /*　画像つきインタビューエリア　*/
  .mk-flex {
    flex-direction: column !important; /* 縦並びに固定 */
  }
  .mk-flex-txt {
    width: 100%;
  }
  .mk-photo img {
    width: 100%;
  }
}

/* -------------------------------
　英語ページ
-------------------------------- */

/* 囲みデザイン */
.page-english .note-box {
  width: 100%;
  background-color: #5382e7;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  border: 7px solid rgba(255, 255, 255, 0.76);
}
.page-english .note-box p {
  margin-bottom: 0em;
  font-size: var(--h3-size);
  font-weight: 700;
}


/* ==================================================
　SNSシェアボタン
================================================== */
.sns__container {
  display: flex;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .sns__container {
    margin-top: 30px;
  }
}
.sns__container a {
  width: 100px;
  text-align: center;
  color: #fff;
  padding: 2px 0;
  margin-right: 10px;
}
.sns__container a:hover {
  opacity: 0.6;
}

.sns__twitter_x {
  background: #000;
}
.x-twitter-size {
  width: 15px;
  height: 12px;
  padding: 0px 1px;
}
.fa-x-twitter {
  background: #FFF;
  border-radius: 2px;
}
.fa-x-twitter::before {
  display: none;
}
.sns__facebook {
  background: #3b5998;
}
.sns__line {
  background: #1dcd00;
}

/* ==================================================
　その他ページ
================================================== */

/* -------------------------------
　ユース21京都／本市取組
-------------------------------- */
.youth_wrap {
  background-color: #fff5d7;
  padding: 20px 30px;
}

.youth_wrap h4 {
  /*font-size: 18px;*/
  font-size: 113%;
  margin-bottom: 20px;
}
.youth_wrap p {
  margin-bottom: 0;
}

.border-list-group {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dashed #aaa;
}
.border-list-group p:last-child {
  margin-bottom: 0;
}

.torikumi__logo_container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.torikumi__logo_container .img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.torikumi__logo_container .kyoto-logo {
  width: 26%;
  padding-right: 30px;
  border-right: 0.5px solid rgba(51, 51, 51, 1);
  min-width: 100px;
}
.torikumi__logo_container .sdgs-logo {
  width: 50%;
  margin-left: 20px;
  min-width: 200px;
}


/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .youth_wrap {
    padding: 15px;
  }

  .youth_wrap h4 {
    /*font-size: 16px;*/
    font-size: 115%;
    margin-bottom: 15px;
  }
}
/* -------------------------------
　お問合せ／サイトマップ
-------------------------------- */

.contact_wrap {
  background-color: #fff5d7;
  padding: 30px;
  text-align: center;
  font-weight: bold;
  /*font-size: 22px;*/
  font-size: 138%;
  line-height: 1.5;
}

.acc_list li {
  list-style: disc;
  list-style-position: outside;
  list-style-position: inside;
  margin: 1em 0;
  line-height: 1.8;
}
.acc_list ul {
  margin-left: 1em;
}
.acc_list li a {
  color: #0066ff;
  text-decoration: underline;
}
.acc_list li a:hover {
  text-decoration: none;
}


/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
  .contact_wrap {
    padding: 15px;
    font-size: 115%;
  }
   .contact_wrap {
    font-size: 16px;
  }
  .acc_list li {
    font-size: 13px;
  }
}

/* -------------------------------
　アクセシビリティ
-------------------------------- */
.table-scroll {
  overflow: auto;
  white-space: nowrap;
}
.table-scroll::-webkit-scrollbar {
  height: 5px;
}
.table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.table-scroll::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}
.table-scroll table {
  width: 100%;
  line-height: 1.5;
  border-left: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 20px;
}
.table-scroll tr {
  width: 100%;
}
.table-scroll th,
.table-scroll td {
  font-size: 1rem;
  border-top: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
  padding: 1em;
}
.table-scroll th {
  background-color: #f2f2f2;
  vertical-align: middle;
  font-weight: normal;
}
.table-scroll td {
  background-color: #fff;
  vertical-align: middle;
}
.table-scroll .center {
  text-align: center;
}

/* -- スマホ用（〜767px）-- */
@media (max-width: 767px) {
.table-scroll table {
    margin-bottom: 15px;
  }
  .table-scroll th,
  .table-scroll td {
    font-size: 0.875em;
    padding: 0.8em;
  }
}
