@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

a:link {
  color: #000;
}
a:visited {
  color: #999;
}
a:hover {
  color: #7e0000;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 20px;
}
header .header-inner .logo {
  font-weight: bold;
  font-size: 1.5rem;
}
header .header-inner .logo a {
  text-decoration: none;
}
header .header-inner .logo a img {
  width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(8%) sepia(48%) saturate(7054%) hue-rotate(357deg) brightness(105%) contrast(108%);
}
header .header-inner .nav {
  padding: 10px 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
header .header-inner .nav ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}
header .header-inner .nav ul li {
  margin: 0;
}
header .header-inner .nav ul li a {
  padding: 5px 10px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}
header .header-inner .nav ul li a:hover:not(li.current_page_item) {
  color: #7e0000;
}
header .header-inner .nav ul li.current_page_item a {
  background-color: rgba(126, 0, 0, 0.2196078431);
  border-radius: 5px;
  font-weight: bold;
}

.menu-trigger {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
}
.menu-trigger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}
.menu-trigger span:nth-child(1) {
  top: 0;
}
.menu-trigger span:nth-child(2) {
  top: 11px;
}
.menu-trigger span:nth-child(3) {
  bottom: 0;
}
.menu-trigger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(-45deg);
}
.menu-trigger.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-trigger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(45deg);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    transition: all 0.4s;
    padding-top: 100px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1500;
  }
  .nav.is-active {
    right: 0;
  }
  .nav ul {
    flex-direction: column;
    padding: 40px;
    gap: 30px;
  }
}

.key-visual {
  position: relative;
  max-width: 100%;
  height: 100vh;
  background: url(../images/background.png) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.key-visual .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.key-visual .logo img {
  width: 15vmax;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(8%) sepia(48%) saturate(7054%) hue-rotate(357deg) brightness(105%) contrast(108%);
}
.key-visual .logo h1 {
  margin: 0 auto;
  text-align: center;
  font-size: 4vmax;
  font-family: "Merriweather", serif;
  font-weight: 500;
  font-style: normal;
  color: #222;
}
.key-visual .logo h1 span.sub {
  display: block;
  font-size: 0.4em;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #444;
}

.filter::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: inherit;
  filter: blur(6px) brightness(90%);
  content: "";
  z-index: 1;
}

.post {
  padding: 140px 20px 60px 20px;
  height: auto !important;
  text-align: center;
}
.post .time-stamp {
  position: relative;
  line-height: 1.8;
  color: #666;
  z-index: 2;
}
.post h1 {
  position: relative;
  font-size: 1.8em;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  z-index: 2;
}
.post h1 a {
  color: #222;
  text-decoration: none;
}

.main {
  margin: 20px auto;
  width: 620px;
  font-size: 1.125rem;
}
.main article, .main section {
  margin-bottom: 2.4em;
  box-sizing: border-box;
  color: #222;
  line-height: 1.8;
  text-align: left;
}
.main article h2, .main section h2 {
  display: table;
  margin: 2.4em auto 1.6em auto;
  font-size: 1.8em;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  padding: 5px 20px;
  border-bottom: #7e0000 5px solid;
  text-align: center;
}
.main article h3, .main section h3 {
  margin: 2.4em 0 1.6em 0;
  font-size: 1.4em;
}
.main article h3::before, .main section h3::before {
  content: "〇";
  padding-right: 0.5em;
  color: #7e0000;
}
.main article h4, .main section h4 {
  margin: 1.6em 0 0.8em 0;
  color: #7e0000;
}
.main article ul, .main section ul {
  margin-bottom: 1.6em;
  padding-left: 40px;
}
.main article ul li, .main section ul li {
  margin: 0.2em;
}
.main article blockquote, .main section blockquote {
  position: relative;
  margin: 1.6em 0.8em;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #fafafa;
}
.main article blockquote::before, .main section blockquote::before {
  position: absolute;
  content: "“";
  font-size: 60px;
  line-height: 1;
  color: #ddd;
}
.main article blockquote p, .main section blockquote p {
  position: relative;
  padding-left: 40px;
}
.main article blockquote cite, .main section blockquote cite {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-align: right;
}
.main article img, .main section img {
  box-sizing: border-box;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.main article figure, .main section figure {
  margin: 1.6em 0.8em;
}
.main article figure figcaption, .main section figure figcaption {
  font-size: 0.8em;
  color: #666;
  text-align: center;
}
.main article pre, .main section pre {
  margin: 1.6em 0.8em;
  padding: 15px 20px;
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  white-space: pre-wrap;
}
.main article pre code, .main section pre code {
  font-family: "Courier New", Courier, monospace;
  line-height: 1.5;
}
.main article table, .main section table {
  width: 100%;
  margin-bottom: 10px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-spacing: 0;
}
.main article table th, .main article table td, .main section table th, .main section table td {
  padding: 0.5em 1em;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  line-height: 2.7;
  vertical-align: top;
}
.main article table th, .main section table th {
  background-color: #fafafa;
  font-weight: 600;
}
.main article .wp-block-table, .main section .wp-block-table {
  display: block;
  overflow: auto;
}
.main article .wp-block-table th, .main article .wp-block-table td, .main section .wp-block-table th, .main section .wp-block-table td {
  white-space: nowrap;
}
.main article .wp-block-table::-webkit-scrollbar, .main section .wp-block-table::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.main article .wp-block-table::-webkit-scrollbar-track, .main section .wp-block-table::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 5px;
}
.main article .wp-block-table::-webkit-scrollbar-thumb, .main section .wp-block-table::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 5px;
}
.main article .wp-block-table::-webkit-scrollbar-thumb:hover, .main section .wp-block-table::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}
.main article input[type=text], .main article input[type=email], .main article textarea, .main section input[type=text], .main section input[type=email], .main section textarea {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.2em;
  line-height: 1.8;
  color: #666;
  width: 100%;
}
.main article textarea, .main section textarea {
  height: 260px;
}
.main article input[type=submit], .main section input[type=submit] {
  display: block;
  cursor: pointer;
  margin: 0 auto;
  padding: 10px;
  background-color: #7e0000;
  border: none;
  border-radius: 4px;
  font-size: 1.2em;
  line-height: 1.8;
  color: #fff;
  width: 50%;
}
.main article .searchform div, .main section .searchform div {
  width: 100%;
  text-align: center;
}
.main article .searchform div input[type=text], .main section .searchform div input[type=text] {
  width: 50%;
}
.main article .searchform div input[type=submit], .main section .searchform div input[type=submit] {
  display: inline;
  margin: 0 0 0 1em;
  width: 20%;
}
.main article a.wp-element-button, .main section a.wp-element-button {
  color: #fff;
  transition: all 0.3s ease;
}
.main article a.wp-element-button:hover, .main section a.wp-element-button:hover {
  background-color: #666;
  transform: translateY(-5px);
}

.wp-block-latest-posts__list.wp-block-latest-posts {
  padding: 0;
  list-style: none;
}
.wp-block-latest-posts__list.wp-block-latest-posts li {
  display: grid;
  grid-template-areas: "thumb title date" "thumb excerpt excerpt";
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 20px;
  grid-row-gap: 5px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
  align-items: start;
}
.wp-block-latest-posts__list.wp-block-latest-posts li:not(:has(.wp-block-latest-posts__featured-image)) {
  grid-template-areas: "title date" "excerpt excerpt";
  grid-template-columns: 1fr auto;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__featured-image {
  grid-area: thumb;
  margin: 0;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__featured-image img {
  width: 120px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  display: block;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__post-title {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__post-title:hover {
  color: #7e0000;
  text-decoration: underline;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__post-date {
  grid-area: date;
  font-size: 0.9rem;
  color: #888;
  white-space: nowrap;
  padding-top: 2px;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__post-excerpt {
  grid-area: excerpt;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__post-excerpt .wp-block-latest-posts__read-more {
  margin-top: auto;
  align-self: flex-end;
  display: inline-block;
  padding: 4px 0;
  color: #7e0000;
  font-weight: bold;
  text-decoration: none;
}
.wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__post-excerpt .wp-block-latest-posts__read-more:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .wp-block-latest-posts__list.wp-block-latest-posts li {
    grid-template-areas: "thumb title" "thumb date" "excerpt excerpt";
    grid-template-columns: 100px 1fr;
  }
  .wp-block-latest-posts__list.wp-block-latest-posts li .wp-block-latest-posts__post-date {
    text-align: left;
  }
}

.top-page span.min {
  display: block;
  color: #666;
  font-size: 0.5em;
  font-weight: normal;
}
.top-page ul {
  padding: 0;
}
.top-page ul li {
  margin-bottom: 15px;
  list-style: none;
}
.top-page ul li a {
  display: flex;
  align-items: center;
  gap: 15px; /* 画像とテキストの間隔 */
  text-decoration: none;
  margin-bottom: 10px;
}
.top-page ul li a img {
  width: 160px; /* お好みのサイズに */
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover; /* 画像を切り抜いてフィットさせる */
}
.top-page ul li a span {
  display: block;
}
.top-page ul li a span.date {
  color: #999;
  font-size: 0.8em;
}

.p-navigation {
  text-align: center !important;
}
.p-navigation a {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #7e0000;
  text-decoration: none;
  border-radius: 4px;
  color: #fff;
}

.footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 80px 20px 40px;
  font-family: "Shippori Mincho", serif;
}
.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer .footer-inner .footer-info {
  flex: 1;
  min-width: 250px;
}
.footer .footer-inner .footer-info .footer-logo img {
  width: 80px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer .footer-inner .footer-info p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}
.footer .footer-inner .footer-info p span.type {
  margin-right: 0.8em;
  font-size: 1.4em;
  font-family: "Merriweather", serif;
  font-weight: 500;
  font-style: normal;
}
.footer .footer-inner .footer-nav {
  display: flex;
  gap: 50px;
}
.footer .footer-inner .footer-nav .nav-group h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}
.footer .footer-inner .footer-nav .nav-group ul {
  list-style: none;
  padding: 0;
}
.footer .footer-inner .footer-nav .nav-group ul li {
  margin-bottom: 12px;
}
.footer .footer-inner .footer-nav .nav-group ul li a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer .footer-inner .footer-nav .nav-group ul li a:hover {
  color: #ff8a8a;
}
.footer .footer-inner .footer-sns h4 {
  margin-bottom: 20px;
  color: #fff;
}
.footer .footer-inner .footer-sns .sns-links {
  display: flex;
  gap: 15px;
}
.footer .footer-inner .footer-sns .sns-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.footer .footer-inner .footer-sns .sns-links a:hover {
  transform: translateY(-5px);
}
.footer .footer-inner .footer-sns .sns-links a.is-x:hover {
  background-color: #000;
}
.footer .footer-inner .footer-sns .sns-links a.is-fb:hover {
  background-color: #1877f2;
}
.footer .footer-inner .footer-sns .sns-links a.is-insta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer .copyright {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #888;
}

.u-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.u-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .u-fade-up {
    transition: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-inner .footer-nav {
    gap: 30px;
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .menu-trigger {
    display: none;
  }
}
@media (max-width: 768px) {
  .menu-trigger {
    display: block;
  }
  .key-visual {
    height: 50vh;
  }
  .main {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */