@charset "UTF-8";
/*
Theme Name: Kyoto Seizan Theme
Description: FLOCSS + SCSS Theme
Version: 1.0
*/
/* ==========================================================================
   Foundation - Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p,
ol, ul,
figure,
blockquote,
dl, dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

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

body {
  font-family: "Kosugi Maru", "Hiragino Maru Gothic ProN", Meiryo, sans-serif;
  color: #333333;
  margin: 0;
  line-height: 1.6;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 100;
  background-color: #fff;
}
.l-header__logo h1 {
  margin: 0;
  font-size: 24px;
  position: relative;
  z-index: 101;
}
.l-header__hamburger {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .l-header__hamburger {
    display: block;
  }
}
.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  left: 8px;
  transition: 0.3s;
}
.l-header__hamburger span:nth-child(1) {
  top: 10px;
}
.l-header__hamburger span:nth-child(2) {
  top: 19px;
}
.l-header__hamburger span:nth-child(3) {
  top: 28px;
}
@media (max-width: 768px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .l-header__nav ul {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
@media (min-width: 769px) {
  .l-header__nav ul {
    display: flex;
    gap: 30px;
  }
}

body.is-drawer-active {
  overflow: hidden;
}
body.is-drawer-active .l-header__hamburger span {
  background-color: #333333;
}
body.is-drawer-active .l-header__hamburger span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
body.is-drawer-active .l-header__hamburger span:nth-child(2) {
  opacity: 0;
}
body.is-drawer-active .l-header__hamburger span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}
body.is-drawer-active .l-header__nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  background-color: #fcf0ee;
  color: #333333;
  padding: 60px 0;
  margin-top: 60px;
  font-size: 14px;
}
.l-footer__site-name {
  margin-bottom: 40px;
  font-weight: normal;
  font-size: 16px;
}
.l-footer__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 0.8fr 1.5fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .l-footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.l-footer__col h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  font-weight: normal;
}
.l-footer__col .l-footer__heading + .l-footer__heading {
  margin-top: 15px;
}
.l-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav li {
  margin-bottom: 8px;
  padding-left: 1em;
  position: relative;
}
.l-footer__nav li::before {
  content: "├";
  position: absolute;
  left: 0;
  color: #999;
  font-family: monospace;
}
.l-footer__nav li a {
  text-decoration: none;
  color: #333333;
}
.l-footer__nav li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.l-footer__col--image {
  text-align: center;
}
.l-footer__col--image img {
  width: 100%;
  height: auto;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}
.l-footer__temple-caption {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
.l-footer__address-area {
  margin-top: 40px;
  line-height: 1.8;
}

.l-inner {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 1020px) {
  .l-inner {
    padding-right: 0;
    padding-left: 0;
  }
}

.u-content-width {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.u-text-center {
  text-align: center;
}

.c-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
  border-bottom: 1px solid #ccc;
}
.c-section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 2px;
  background-color: #cc9999;
}
@media (min-width: 769px) {
  .c-section-title {
    font-size: 1.75rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.c-section-title--center {
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.c-section-title--center::after {
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}

.p-top-hero {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
}
@media (min-width: 769px) {
  .p-top-hero {
    height: 80vh;
  }
}
.p-top-hero__inner {
  width: 100%;
  height: 100%;
}
.p-top-hero__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: heroZoomFade 18s infinite;
}
.p-top-hero__inner img:nth-child(1) {
  animation-delay: 0s;
}
.p-top-hero__inner img:nth-child(2) {
  animation-delay: 6s;
}
.p-top-hero__inner img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroZoomFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  43% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}
.p-top-news {
  padding: 60px 0;
}
.p-top-news__list {
  margin: 40px 0;
}
.p-top-news__item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.p-top-news__item time {
  font-weight: bold;
  color: #888;
  flex-shrink: 0;
}
.p-top-news__item a {
  color: #333;
}
.p-top-news__item a:hover {
  text-decoration: underline;
  color: #cc0000;
}

.p-top-school {
  padding: 80px 0;
}
.p-top-school__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-top-school__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.p-top-school__image {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
}
.p-top-school__image img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.p-top-school__image img:hover {
  transform: scale(1.08);
}
.p-top-school__name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.p-top-school__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.p-about-section {
  padding: 60px 0;
}
.p-about-section p {
  line-height: 2;
  margin-bottom: 1.5em;
  text-align: justify;
}
.p-about-section p:last-child {
  margin-bottom: 0;
}

.p-about-message {
  padding: 60px 0;
  background-color: #fff;
}
.p-about-message__flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 769px) {
  .p-about-message__flex {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
}
.p-about-message__image {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 769px) {
  .p-about-message__image {
    width: 320px;
  }
}
.p-about-message__image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.p-about-message__body {
  flex-grow: 1;
}
.p-about-message__body p {
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.p-about-message__body ruby rt {
  font-size: 0.6em;
}
.p-about-message__name {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  margin-bottom: 2rem !important;
}
.p-about-message__closing {
  text-align: right;
  font-weight: bold;
  margin-top: 2rem;
}

.p-about-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 2px solid #333;
}
.p-about-table th, .p-about-table td {
  padding: 15px 20px;
  border: 1px solid #333;
  font-size: 1.1rem;
  vertical-align: middle;
}
.p-about-table th {
  background-color: #f9f9f9;
  width: 40%;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .p-about-table th {
    width: 35%;
    font-size: 0.9rem;
    padding: 12px 10px;
  }
}
.p-about-table td {
  background-color: #fff;
  width: 60%;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-about-table td {
    font-size: 1rem;
    padding: 12px 10px;
  }
}

.p-about-history {
  margin-top: 40px;
}
.p-about-history__lead {
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1.8;
}
.p-about-history__list {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
}
.p-about-history__list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: #ccc;
}
@media (min-width: 769px) {
  .p-about-history__list::before {
    left: 160px;
  }
}
.p-about-history__item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .p-about-history__item {
    flex-direction: row;
    margin-bottom: 40px;
  }
}
.p-about-history__item::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 2px solid #a0a0a0;
  border-radius: 50%;
  z-index: 1;
}
@media (min-width: 769px) {
  .p-about-history__item::after {
    left: 153px;
  }
}
.p-about-history__year {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .p-about-history__year {
    width: 140px;
    margin-bottom: 0;
    text-align: right;
    padding-right: 40px;
  }
}
.p-about-history__event {
  flex-grow: 1;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .p-about-history__event {
    padding-left: 30px;
  }
}
.p-about-history__note {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
}

.p-about-organization {
  text-align: center;
  margin: 45px auto 0 auto;
}
.p-about-organization img {
  display: inline-block;
}

/* --- ページヘッダー --- */
.p-archive-header {
  background-color: #f5f5f5;
  padding: 60px 0;
  margin-bottom: 40px;
  text-align: center;
}
.p-archive-header__title {
  font-size: 28px;
  margin: 0;
}

/* --- 記事リスト --- */
.p-archive-list {
  margin-bottom: 80px;
}

.p-archive-item {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s;
}
.p-archive-item:hover {
  background-color: #fafafa;
}
.p-archive-item__link {
  display: block;
  padding: 20px 0;
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-archive-item__link {
    flex-direction: column;
    gap: 10px;
  }
}
.p-archive-item__meta {
  min-width: 150px;
  font-family: Arial, sans-serif;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-archive-item__meta time {
  font-weight: bold;
}
.p-archive-item__cat {
  font-size: 12px;
  background-color: #999;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
}
.p-archive-item__title {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}

/* --- ページネーション --- */
.p-archive-pagination {
  margin-top: 40px;
  text-align: center;
}
.p-archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-archive-pagination a, .p-archive-pagination span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
}
.p-archive-pagination a.current, .p-archive-pagination a:hover, .p-archive-pagination span.current, .p-archive-pagination span:hover {
  background-color: #4a90e2;
  color: #fff;
  border-color: #4a90e2;
}

.p-disclosure {
  padding: 60px 0;
}
.p-disclosure__section {
  margin-bottom: 80px;
}
.p-disclosure__section:last-child {
  margin-bottom: 0;
}
.p-disclosure__list {
  margin-top: 20px;
  border-top: 1px solid #eee;
}
.p-disclosure__list--finance {
  border-top: none;
  margin-top: 10px;
}
.p-disclosure__item {
  border-bottom: 1px solid #eee;
}
.p-disclosure__item a {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.p-disclosure__item a:hover {
  background-color: #fcf6f5;
  color: #cc0000;
}
.p-disclosure__item a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  background-image: url("../../images/icons/icon_1r_96.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-disclosure__item-date {
  font-size: 0.9rem;
  color: #666;
  margin-left: 5px;
}
.p-disclosure__finance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .p-disclosure__finance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-disclosure__finance-block {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 4px;
  border-left: 4px solid #a0a0a0;
}
.p-disclosure__year {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.p-sub-hero {
  background-color: #f9ece9;
  padding: 60px 0;
}
@media (min-width: 769px) {
  .p-sub-hero {
    padding: 80px 0;
  }
}
.p-sub-hero__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
@media (min-width: 769px) {
  .p-sub-hero__title {
    font-size: 2rem;
  }
}

.p-sub-hero {
  background-color: #f9ece9;
  padding: 60px 0;
}
@media (min-width: 769px) {
  .p-sub-hero {
    padding: 80px 0;
  }
}
.p-sub-hero__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
@media (min-width: 769px) {
  .p-sub-hero__title {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */