@charset "UTF-8";
/* main.scss */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
* {
  box-sizing: border-box;
}

body, button, input, select, optgroup, textarea {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 640px) {
  body, button, input, select, optgroup, textarea {
    font-size: 14px;
  }
}

a {
  color: #774a00;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
  z-index: 10000;
}

br[class^=br-] {
  display: none;
}

@media (min-width: 640px) {
  br.br-sm {
    display: inline;
  }
}
@media (min-width: 960px) {
  br.br-md {
    display: inline;
  }
}
@media (min-width: 1240px) {
  br.br-lg {
    display: inline;
  }
}
@media (max-width: 640px) {
  br.br-only-sm {
    display: inline;
  }
}
.img-sm-only, .img-md-only, .img-lg-only {
  display: none;
}

@media (max-width: 640px) {
  .img-sm-only {
    display: block;
  }
}
@media (min-width: 640px) {
  .img-sm-up {
    display: block;
  }
}
@media (max-width: 960px) {
  .img-md-only {
    display: block;
  }
}
@media (min-width: 960px) {
  .img-md-up {
    display: block;
  }
}
@media (min-width: 1240px) {
  .img-lg-up {
    display: block;
  }
}
p {
  margin: 0.5em auto 1em;
}
p:first-child {
  margin-top: 0;
}

:root {
  --page-padding: 1.5rem;
}

.entry-content {
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
}

.entry-content > .alignwide {
  max-width: 1240px;
  margin-inline: auto;
}

.entry-content > .alignfull {
  width: var(--vw);
  max-width: var(--vw);
  margin-left: 50%;
  transform: translateX(-50%);
  padding-inline: var(--page-padding);
}

body {
  overflow-x: hidden;
}

/* ----------------------------------------
 * WordPress: alignments
 * 画像・figure・ブロック共通
 * -------------------------------------- */
/* 左寄せ：テキスト回り込み */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

/* 右寄せ：テキスト回り込み */
.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

/* 中央寄せ：ブロックとして中央に */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

img.alignleft,
.wp-block-image .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

img.alignright,
.wp-block-image .alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

img.aligncenter,
.wp-block-image .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* figure 共通の余白調整など */
.wp-block-image,
figure {
  max-width: 100%;
}

.wp-block-image img {
  height: auto;
}

/* キャプション */
.wp-element-caption,
.wp-block-image figcaption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5em;
  color: #666;
}

@media (max-width: 768px) {
  .alignleft,
  .alignright,
  img.alignleft,
  img.alignright,
  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  margin: 2em auto 1em;
}
.entry-content h2 {
  font-size: 1.8em;
}
.entry-content h3 {
  font-size: 1.6em;
}
.entry-content h4 {
  font-size: 1.4em;
}
.entry-content h5 {
  font-size: 1.3em;
}
.entry-content h6 {
  font-size: 1.2em;
}

/* =========================================================
   Header (fixed) + SP Menu Button + Mobile Nav
   ========================================================= */
header#header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
header#header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
header#header .header-container .site-logo {
  width: 260px;
  line-height: 1;
  font-size: 16px;
  padding: 10px 20px;
}

/* -----------------------------------------
     Hamburger button
     ----------------------------------------- */
.sp-menu {
  display: none;
}
@media (max-width: 960px) {
  .sp-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* ボタンリセット */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: #774a00;
    color: #fff;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
    margin: 0.5em;
    /* 3本のバー（span）はボタン内の中央に重ねる */
  }
  .sp-menu span {
    position: absolute;
    left: 20%;
    width: 60%;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .sp-menu span:nth-child(1) {
    top: 14px;
  }
  .sp-menu span:nth-child(2) {
    top: 23px;
  }
  .sp-menu span:nth-child(3) {
    top: 32px;
  }
  .sp-menu:hover, .sp-menu:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
  }
  .sp-menu {
    /* active（開）でX化 */
  }
  .sp-menu.active span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }
  .sp-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }
  .sp-menu.active span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
  }
}

ul#global-menu-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}
@media (max-width: 960px) {
  ul#global-menu-ul {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    gap: 2em;
  }
}

@media (max-width: 960px) {
  .nav-area {
    width: 100%;
    background: linear-gradient(0deg, rgb(247, 245, 239), rgb(255, 255, 255));
    height: auto;
    position: absolute;
    right: 0;
    transform: translateY(-300%);
    transition: all ease 0.3s;
    writing-mode: tb-rl;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .nav-area.is-open {
    transform: translateY(0);
  }
  .nav-area .sp-nav-area {
    margin-top: 3em;
  }
  .nav-area ul#global-menu-ul li {
    display: block;
  }
  .nav-area ul#global-menu-ul li a {
    color: #333;
  }
  .nav-area ul#global-menu-ul li a:hover {
    color: #774a00;
  }
}
.entry-content {
  width: min(100% - 1rem * 2, 1080px);
  margin-inline: auto;
  margin: 5em auto;
}

.entry-content.front-entry_content {
  margin-top: 0;
}

/* =========================================================
   Archive
   ========================================================= */
h1.page-title {
  margin: 5vh auto;
}

article.post-card a {
  color: #333;
  border: 1px solid #ddd;
  display: grid;
  grid-template-columns: 1fr 20px;
  gap: 1em;
  align-items: center;
  padding: 1em 2em;
  margin: 1em auto;
}
article.post-card a h2, article.post-card a h3 {
  color: #333;
  font-size: 1.3em;
  padding: 0;
  margin: 0;
}
article.post-card a h2 .inner span, article.post-card a h3 .inner span {
  display: block;
}
article.post-card a h2 .inner span.date, article.post-card a h3 .inner span.date {
  font-size: 14px;
}
article.post-card a:after {
  content: " ";
  width: 16px;
  height: 16px;
  display: block;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
article.post-card a:hover {
  background-color: #f7f5ef;
}
@media (max-width: 640px) {
  article.post-card a {
    padding: 0.75em 1em;
  }
}

/* =========================================================
   Single
   ========================================================= */
h1.entry-title {
  border-bottom: 1px solid #ccc;
  padding: 0.25em 0;
  margin: 5vh auto;
}

div#footer-contact {
  background: #f7f5ef;
  padding: 3em 1em;
}
div#footer-contact h2 {
  writing-mode: tb-rl;
  margin: 2em auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.6em;
  font-size: 1.4em;
  font-weight: 500;
}

.tel a {
  color: #333;
  font-size: 1.5em;
}
.tel a::before {
  content: "tel";
  font-size: 16px;
  margin-right: 0.5em;
}
.tel a:hover {
  color: white;
}

footer {
  background-color: #774a00;
  color: white;
  padding: 3em 1em;
}
footer p.site-info {
  text-align: center;
  font-size: 0.8em;
  margin: 3em 1em;
}

.animation {
  width: 100%; /* 画面の端から端まで */
  overflow: hidden; /* はみ出たキャラを隠す */
}
.animation span {
  width: 100px; /* キャラのサイズに合わせて調整 */
  display: block;
  /* アニメーションの設定 */
  animation: walk-across 30s steps(300) infinite;
}

/* 左から右へ動かす動きの定義 */
@keyframes walk-across {
  0% {
    transform: translateX(-100px); /* スタート：画面の左外側（キャラの幅分マイナス） */
  }
  0% {
    transform: translateX(-100px); /* スタート：画面の左外側（キャラの幅分マイナス） */
  }
  100% {
    transform: translateX(100vw); /* ゴール：画面の右外側へ */
  }
}
div#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  cursor: pointer;
}
div#page_top:hover {
  opacity: 0.7;
}
div#page_top img {
  width: 68px;
  margin: auto;
  transform: rotateY(180deg);
}

.breadcrumbs {
  padding: 0.25em 1em;
  font-size: 14px;
  background-color: #f7f5ef;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li + li::before {
  content: ">";
  margin-right: 0.5rem;
  color: #999;
}

.wp-block-button .wp-block-button__link:hover {
  background-color: black;
  color: white;
  border-color: black;
}

.is-provider-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.is-provider-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

figure.wp-block-embed.aligncenter.is-type-video.is-provider-youtube.wp-block-embed-youtube {
  text-align: center;
}

.front-entry_content section {
  padding: 4em 0;
}
.front-entry_content h2 {
  margin: 2em auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.6em;
  font-size: 1.4em;
  font-weight: 500;
}

@media (max-width: 640px) {
  .order div:first-child {
    order: 2;
  }
  .order div:nth-child(2) {
    order: 1;
  }
}

.houtokukun p {
  writing-mode: tb-rl;
  line-height: 3;
}
@media (max-width: 640px) {
  .houtokukun p {
    writing-mode: inherit;
    line-height: 2;
    text-align: center;
  }
}

.event-box table tbody tr td {
  border: none;
  padding: 0;
}
.event-box table tbody tr td:first-child {
  width: 30%;
  font-size: 1.4em;
}
@media (max-width: 640px) {
  .event-box table tbody tr td {
    display: block;
  }
  .event-box table tbody tr td:first-child {
    padding: 0.25em 0;
  }
  .event-box table tbody tr td:nth-child(2) {
    background-color: #f7f5ef;
    padding: 0.25em;
  }
}
.event-box p {
  margin: 0.5em auto;
}

.member-grid {
  justify-content: center;
}
.member-grid > figure {
  width: calc(16.6666666667% - 1em);
}/*# sourceMappingURL=main.css.map */