@charset "UTF-8";
/* フォント
========================== */
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/Fredoka-VariableFont_wdth,wght.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: block;
}
/* 共通変数
========================== */
/* フォント
--------------------------- */
/* 色
--------------------------- */
/* レイアウト
--------------------------- */
/* ブレークポイント
--------------------------- */
/* ベーススタイル
========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 0.875rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333333;
  background: #fffdf7;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

:root {
  --rate: 1;
}

html {
  font-size: calc(16px * var(--rate));
}

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

button {
  border: none;
  background: none;
}

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

a, button {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

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

fieldset {
  padding: 0;
  border: none;
}

main {
  padding-top: var(--header-height);
}

.home :where(h1, h2, h3, h4, h5, h6, p, span, dl, dt, dd, ul, ol),
.news-content :where(h1, h2, h3, h4, h5, h6, p, span, dl, dt, dd, ul, ol),
.page-content :where(h1, h2, h3, h4, h5, h6, p, span, dl, dt, dd, ul, ol):where(:not(.entry-content *)) .reset-css :where(h1, h2, h3, h4, h5, h6, p, span, dl, dt, dd, ul, ol) {
  margin: 0;
}

/* ヘッダー
========================== */
/* 管理画面
-------------------------- */
.admin-bar .header {
  top: var(--header-height);
  margin-top: 46px;
}

@media (min-width: 783px) {
  .admin-bar .header {
    margin-top: 32px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fffdf7;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

.header-inner {
  padding: 0 clamp(1rem, -0.25rem + 5.33vw, 3.75rem);
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .header-inner {
    gap: 1rem;
    height: auto;
    padding: 1rem clamp(1rem, -10rem + 17.19vw, 3.75rem);
  }
}

.header-pc {
  display: none;
}
@media (min-width: 1024px) {
  .header-pc {
    display: contents;
  }
}
.header-pc .button-inner {
  gap: 0.5rem;
  padding: 0;
}
@media (min-width: 768px) {
  .header-pc .button {
    width: 100%;
    padding-block: 0.75rem;
  }
}

.header-inner2 {
  flex: 1;
}

.header-inner3 {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .header-logo-sp {
    display: none;
  }
}
.header-logo-sp img {
  height: 2.5rem;
}

@media (min-width: 1024px) {
  .header-logo-pc img {
    height: 3.75rem;
  }
}

.header-nav-pc .nav-list {
  display: flex;
  margin-top: 0.25rem;
}
.header-nav-pc .nav-list li {
  position: relative;
  flex: 1;
}
.header-nav-pc .nav-list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1.5rem;
  background-color: #afd862;
  transform: translateY(-50%);
}
.header-nav-pc .nav-list a {
  padding-block: 0.5rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 1050;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger:hover {
  opacity: 0.6;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 32px;
}

.menu-text {
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1;
}

.header-wave-inner {
  padding-top: 7rem;
}

.header-nav-sp {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fffdf7;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 1000;
}

.is-open .header-nav-sp {
  opacity: 1;
  visibility: visible;
}
.is-open .menu-icon img:first-of-type {
  transform: translateY(8px) rotate(45deg);
}
.is-open .menu-icon img:nth-of-type(2) {
  opacity: 0;
}
.is-open .menu-icon img:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-nav-inner {
  flex: 1;
  min-height: 0;
  padding-block: 1.5rem;
}

.header-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}

.nav-logo {
  margin-top: 1rem;
}
.nav-logo img {
  height: 4rem;
}

.obj-header1 {
  bottom: 20%;
  left: 13%;
}

.obj-header2 {
  bottom: 0;
  left: 49%;
}
@media (min-width: 768px) {
  .obj-header2 {
    bottom: 5%;
  }
}

.obj-header3 {
  top: 20%;
  right: 0;
  background-position: top;
}

/* フッター
========================== */
.obj-footer1 {
  top: 15%;
  left: 10%;
}

.obj-footer2 {
  top: 25%;
  left: 45%;
}

.obj-footer3 {
  top: -20%;
  right: 10%;
  z-index: 1;
}

.obj-footer4 {
  bottom: -40%;
  left: 2%;
}
@media (min-width: 768px) {
  .obj-footer4 {
    bottom: -55%;
    left: 4%;
  }
}

.obj-footer5 {
  top: 30%;
  right: 2%;
}
@media (min-width: 768px) {
  .obj-footer5 {
    top: 70%;
    right: 7%;
  }
}

.footer-content {
  position: relative;
  padding-bottom: 1.5rem;
}
.footer-content::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 4px;
  background-image: radial-gradient(circle, #2e7d32 2px, transparent 2px);
  background-size: 11px 4px;
  background-repeat: repeat-x;
  background-position: left center;
}

.footer-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer-logo img {
  height: 4rem;
}
@media (min-width: 768px) {
  .footer-logo img {
    height: 5rem;
  }
}

.footer-nav .nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-nav .nav-list a {
  padding: 0;
}
@media (min-width: 768px) {
  .footer-nav .nav-list li {
    position: relative;
    width: 10rem;
  }
}
@media (min-width: 768px) {
  .footer-nav .nav-list li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 1.5rem;
    background-color: #2e7d32;
    transform: translateY(-50%);
  }
}

.footer .section {
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer .button-inner {
    flex-direction: row;
    justify-content: center;
    padding-bottom: 1.5rem;
  }
}
.footer .button {
  min-width: 18rem;
}

.footer-under-text {
  padding-block: 0.5rem;
  text-align: center;
}

.copyright {
  margin-top: 0.5rem;
  font-weight: 500;
  text-align: center;
}
.copyright small {
  font-size: inherit;
}

/* 共通パーツ(ブロックエディタ入力)
========================== */
.entry-content img,
.entry-content video,
.entry-content iframe,
.entry-content embed,
.entry-content object,
.entry-content table,
.entry-content pre,
.entry-content figure,
.entry-content div {
  max-width: 100%;
}
.entry-content h2 {
  width: fit-content;
  padding: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  text-align: center;
  border: 1px solid #333333;
  background-color: #d8fc5c;
}
@media (min-width: 768px) {
  .entry-content h2 {
    font-size: 1.25rem;
  }
}
.entry-content h3 {
  position: relative;
  padding-bottom: 2px;
  padding-left: 0.5em;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid #afd862;
}
@media (min-width: 768px) {
  .entry-content h3 {
    font-size: 1.125rem;
  }
}
.entry-content h3::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  left: 0;
  width: 2px;
  background: #2e7d32;
}
.entry-content h4 {
  position: relative;
  padding-bottom: 2px;
  padding-left: 0.5em;
  font-weight: 500;
}
.entry-content h4::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  left: 0;
  width: 2px;
  background: #2e7d32;
}
.entry-content h5, .entry-content h6 {
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .entry-content h5, .entry-content h6 {
    font-size: 1rem;
  }
}
.entry-content ul > li {
  position: relative;
  padding-inline-start: 1em;
}
.entry-content ul > li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.4em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #2e7d32;
}
.entry-content ul ul > li::before {
  background-color: transparent;
  border: 1px solid #2e7d32;
}
.entry-content ul ul ul > li::before {
  top: 50%;
  left: 0.5em;
  width: 0.5rem;
  height: 1px;
  border: none;
  border-radius: 0;
  background-color: #2e7d32;
  transform: translate(-50%, -50%);
}
.entry-content ul ol {
  padding-inline-startt: 1em;
}
.entry-content ol {
  padding-inline-start: 0;
  list-style-position: inside;
}
.entry-content ol ol {
  padding-inline-start: 1em;
}
.entry-content ol li::marker {
  font-weight: 500;
  color: #2e7d32;
}
.entry-content ol ul {
  padding-inline-start: 1rem;
}
.entry-content a {
  color: #2e7d32;
  text-decoration: underline;
}
.entry-content img {
  display: inline;
  border-radius: 0.5rem;
}
.entry-content blockquote {
  margin: 1rem;
}
.entry-content dd {
  margin-inline-start: 1rem;
}
.entry-content pre {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.entry-content h2.has-text-align-center {
  width: auto;
}
.entry-content .chip {
  width: fit-content;
}

.reset-css a,
.reset-css * a {
  color: inherit;
  text-decoration: none;
}

/* 共通パーツ
========================== */
/* ユーティリティ
-------------------------- */
.relative {
  position: relative;
}

.z-index-1 {
  z-index: 1;
}

.z-index-5 {
  z-index: 5;
}

.z-index-10 {
  z-index: 10;
}

.radius-8 {
  border-radius: 0.5rem;
}

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

/* レイアウト
-------------------------- */
.section {
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .section {
    padding: 4rem 0 5rem;
  }
}

.container {
  padding: 0 clamp(1rem, -0.25rem + 5.33vw, 3.75rem);
  margin: 0 auto;
}

/* テキスト
-------------------------- */
.en {
  font-family: "Fredoka", sans-serif;
}

.text-white {
  color: #fffdf7;
}

.title1,
.title1-light {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .title1,
  .title1-light {
    margin-bottom: 3rem;
    font-size: clamp(1.5rem, 0.357rem + 2.38vw, 2.5rem);
  }
}
.title1 span,
.title1-light span {
  display: block;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1;
  color: #2e7d32;
}
@media (min-width: 768px) {
  .title1 span,
  .title1-light span {
    font-size: clamp(1.125rem, 0.411rem + 1.49vw, 1.75rem);
  }
}

.title1-light {
  color: #fffdf7;
}
.title1-light span {
  color: #d8fc5c;
}

/* 背景
-------------------------- */
.bg1 {
  background-color: #afd862;
}

.bg2 {
  background-color: #2e7d32;
}

.bg3 {
  background-color: #f2f6f8;
}

.bg4 {
  background-color: #fffdf7;
}

.bg-wave {
  position: relative;
  margin-block: -0.5rem;
  line-height: 1;
}
.bg-wave.wave1 {
  color: #afd862;
}
.bg-wave.wave2 {
  color: #2e7d32;
}
.bg-wave.wave3 {
  color: #f2f6f8;
}
.bg-wave.wave4 {
  color: #fffdf7;
}
.bg-wave.flip-x > svg {
  transform: translateY(0.8rem) scaleX(-1);
}
.bg-wave svg {
  width: 100%;
  transform: translateY(0.8rem);
}

.wave-sp {
  display: block;
}
@media (min-width: 768px) {
  .wave-sp {
    display: none;
  }
}

.wave-pc {
  display: none;
}
@media (min-width: 768px) {
  .wave-pc {
    display: block;
  }
}

/* line
-------------------------- */
.line-dot > *:not(:last-child) {
  position: relative;
}
.line-dot > *:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 4px;
  background-image: radial-gradient(circle, #2e7d32 2px, transparent 2px);
  background-size: 11px 4px;
  background-repeat: repeat-x;
  background-position: left center;
}

/* ボタン
-------------------------- */
.button-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
}
@media (min-width: 768px) {
  .button-inner {
    padding-block: 3rem;
  }
}

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 15rem;
  padding: 1rem 3rem;
  background-color: #d8fc5c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #333333;
  border-radius: 50px;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .button {
    font-size: 1.25rem;
  }
}
@media (hover: hover) {
  .button:hover {
    opacity: 1;
    transform: scale(1.1);
  }
}

.button-style1 {
  background-color: #ffcf1b;
}

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

.button-icon {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 0.75rem;
  aspect-ratio: 1;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .button-icon {
    width: 1rem;
  }
}
.button-icon.icon-external {
  width: 1rem;
}
@media (min-width: 768px) {
  .button-icon.icon-external {
    width: 1.25rem;
  }
}

.button-icon2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  aspect-ratio: 1;
  background-color: #fffdf7;
  border-radius: 50%;
}

.chip {
  padding: 0.25rem 0.5rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fffdf7;
  background-color: #2e7d32;
  border: 1px solid #333333;
  border-radius: 50px;
}

/* アニメーション
-------------------------- */
.anime-swing {
  transform-origin: center;
  animation: swing 0.6s steps(2, end) infinite alternate;
}

.anime-swing2 {
  transform-origin: center;
  animation: swing2 0.6s steps(2, end) infinite alternate;
}

@keyframes swing {
  from {
    transform: rotate(-10deg);
  }
  to {
    transform: rotate(10deg);
  }
}
@keyframes swing2 {
  from {
    transform: rotate(10deg);
  }
  to {
    transform: rotate(-10deg);
  }
}
.anime-fade-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s 0.1s ease, transform 0.8s 0.1s cubic-bezier(0.45, 0.35, 0.2, 1.45);
}
.anime-fade-up.is-show {
  opacity: 1;
  transform: scale(1);
}

/* アイコン
-------------------------- */
.icon-arrow {
  background-image: url("../img/common/icon-arrow.svg");
}

.icon-external {
  background-image: url("../img/common/icon-external.svg");
}

.icon-instagram {
  background: url("../img/common/icon-instagram.svg") center/contain no-repeat;
  width: 1.8125rem;
  aspect-ratio: 1;
}

/* ナビ
-------------------------- */
.nav-list {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
.nav-list a {
  display: block;
  padding: 1rem 0.2rem;
}

.logo a {
  display: inline-block;
}

.nav-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  margin-inline: auto;
}

/* 協賛
-------------------------- */
.supporters-list {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .supporters-list {
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .supporters-item {
    display: grid;
    grid-template-columns: 16rem 1fr;
    align-items: center;
    gap: 3rem;
  }
}
.supporters-item + .supporters-item {
  margin-top: 1rem;
}

.supporters-title {
  padding: 0.5rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  border: 1px solid #333333;
  background-color: #d8fc5c;
}
@media (min-width: 768px) {
  .supporters-title {
    margin-block: auto;
    font-size: 1.125rem;
  }
}

.supporters-values {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1rem;
  color: #fffdf7;
}
@media (min-width: 768px) {
  .supporters-values {
    justify-content: flex-start;
  }
}
.supporters-values dd {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
}

.page-content .supporters-values {
  color: #333333;
}

/* obj
-------------------------- */
.obj-inner {
  position: absolute;
  overflow: hidden;
}
.obj-inner > .obj {
  position: static;
}

.obj {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.obj.flip-x {
  transform: scaleX(-1);
}

.obj-bag1 {
  width: clamp(2.5rem, 0.915rem + 6.76vw, 7rem);
  background-image: url("../img/common/obj-bag1.png");
  aspect-ratio: 106/103;
}

.obj-bird1 {
  width: clamp(6rem, 2.479rem + 15.02vw, 16rem);
  background-image: url("../img/common/obj-bird1.png");
  aspect-ratio: 223/204;
}

.obj-board1 {
  width: clamp(2rem, 0.944rem + 4.51vw, 5rem);
  background-image: url("../img/common/obj-board1.png");
  aspect-ratio: 102/149;
}

.obj-camera1 {
  width: clamp(3.5rem, 1.915rem + 6.76vw, 8rem);
  background-image: url("../img/common/obj-camera1.png");
  aspect-ratio: 84/61;
}

.obj-camera2 {
  width: clamp(2.5rem, 1.444rem + 4.51vw, 5.5rem);
  background-image: url("../img/common/obj-camera2.png");
  aspect-ratio: 83/53;
}

.obj-child1 {
  width: clamp(2.75rem, 1.958rem + 3.38vw, 5rem);
  background-image: url("../img/common/obj-child1.png");
  aspect-ratio: 100/151;
}

.obj-child2 {
  width: clamp(3rem, 2.12rem + 3.76vw, 5.5rem);
  background-image: url("../img/common/obj-child2.png");
  aspect-ratio: 100/145;
}

.obj-child3 {
  width: clamp(3rem, 2.12rem + 3.76vw, 5.5rem);
  background-image: url("../img/common/obj-child3.png");
  aspect-ratio: 106/160;
}

.obj-child4 {
  width: clamp(3rem, 2.12rem + 3.76vw, 5.5rem);
  background-image: url("../img/common/obj-child4.png");
  aspect-ratio: 91/121;
}

.obj-child5 {
  width: clamp(3.25rem, 2.282rem + 4.13vw, 6rem);
  background-image: url("../img/common/obj-child5.png");
  aspect-ratio: 95/125;
}

.obj-child6 {
  width: clamp(8rem, 5.183rem + 12.02vw, 16rem);
  background-image: url("../img/common/obj-child6.png");
  aspect-ratio: 275/208;
}

.obj-cloud1 {
  width: clamp(6.5rem, 4.675rem + 7.58vw, 11.5rem);
  background-image: url("../img/common/obj-cloud1.png");
  aspect-ratio: 232/136;
}

.obj-flag1 {
  width: clamp(3rem, 1.087rem + 8.16vw, 5rem);
  background-image: url("../img/common/obj-flag1.png");
  aspect-ratio: 105/87.5;
}
@media (min-width: 768px) {
  .obj-flag1 {
    width: clamp(5rem, 3.857rem + 2.38vw, 6rem);
  }
}

.obj-flower1 {
  width: clamp(6rem, 1.217rem + 20.41vw, 11rem);
  background-image: url("../img/common/obj-flower1.png");
  aspect-ratio: 99/67;
}

.obj-flower2 {
  width: clamp(2.5rem, 1.444rem + 4.51vw, 5.5rem);
  background-image: url("../img/common/obj-flower2.png");
  aspect-ratio: 103/102;
}

.obj-flower3 {
  width: clamp(6rem, 3.887rem + 9.01vw, 12rem);
  background-image: url("../img/common/obj-flower3.png");
  aspect-ratio: 207/216;
}

.obj-flower4 {
  width: clamp(3rem, 1.592rem + 6.01vw, 7rem);
  background-image: url("../img/common/obj-flower4.png");
  aspect-ratio: 120/110;
}

.obj-footprints1 {
  width: clamp(6rem, 3.887rem + 9.01vw, 12rem);
  background-image: url("../img/common/obj-footprints1.png");
  aspect-ratio: 219/195;
}

.obj-grass1 {
  width: clamp(3rem, 1.592rem + 6.01vw, 7rem);
  background-image: url("../img/common/obj-grass1.png");
  aspect-ratio: 145/98;
}

.obj-insect1 {
  width: clamp(4.5rem, 2.915rem + 6.76vw, 9rem);
  background-image: url("../img/common/obj-insect1.png");
  aspect-ratio: 185/192;
}

.obj-map1 {
  width: clamp(11rem, 5.891rem + 21.23vw, 25rem);
  background-image: url("../img/common/obj-map1.png");
  aspect-ratio: 324/160;
}

.obj-map2 {
  width: clamp(2.5rem, 0.915rem + 6.76vw, 7rem);
  background-image: url("../img/common/obj-map2.png");
  aspect-ratio: 105/106;
}

.obj-mountain1 {
  width: clamp(6rem, 2.479rem + 15.02vw, 16rem);
  background-image: url("../img/common/obj-mountain1.png");
  aspect-ratio: 247/166;
}

.obj-tree1 {
  width: clamp(3.5rem, 2.62rem + 3.76vw, 6rem);
  background-image: url("../img/common/obj-tree1.png");
  aspect-ratio: 112/132;
}

.obj-tree2 {
  width: clamp(4rem, 2.592rem + 6.01vw, 8rem);
  background-image: url("../img/common/obj-tree2.png");
  aspect-ratio: 116/72;
}

.obj-tree3 {
  width: clamp(3.5rem, 2.62rem + 3.76vw, 6rem);
  background-image: url("../img/common/obj-tree3.png");
  aspect-ratio: 123/178;
}

.obj-tree4 {
  width: clamp(6.5rem, 4.211rem + 9.77vw, 13rem);
  background-image: url("../img/common/obj-tree4.png");
  aspect-ratio: 210/117;
}

.obj-photo-adult1 {
  width: clamp(3.5rem, 2.444rem + 4.51vw, 6.5rem);
  background-image: url("../img/common/obj-photo-adult1.png");
  aspect-ratio: 114/224;
}

.obj-photo-child1 {
  width: clamp(5rem, 3.239rem + 7.51vw, 10rem);
  background-image: url("../img/common/obj-photo-child1.png");
  aspect-ratio: 155/200;
}

.obj-photo-child2 {
  width: clamp(3.5rem, 2.268rem + 5.26vw, 7rem);
  background-image: url("../img/common/obj-photo-child2.png");
  aspect-ratio: 108/199;
}

.obj-photo-child3 {
  width: clamp(3rem, 1.944rem + 4.51vw, 6rem);
  background-image: url("../img/common/obj-photo-child3.png");
  aspect-ratio: 96/215;
}

.obj-photo-child4 {
  width: clamp(3rem, 1.944rem + 4.51vw, 6rem);
  background-image: url("../img/common/obj-photo-child4.png");
  aspect-ratio: 92/200;
}

.obj-photo-child5 {
  width: clamp(3rem, 1.944rem + 4.51vw, 6rem);
  background-image: url("../img/common/obj-photo-child5.png");
  aspect-ratio: 104/220;
}

.obj-photo-flag1 {
  width: clamp(2rem, 1.296rem + 3vw, 4rem);
  background-image: url("../img/common/obj-photo-flag1.png");
  aspect-ratio: 52/217;
}

/* 固定ページ
========================== */
.page-inner1 {
  margin-bottom: -20vw;
}

.page-title1 {
  padding-block: 2.5rem 3rem;
  margin: 0;
  font-weight: 700;
  text-align: left;
}

.page-title2 {
  font-weight: 700;
  font-size: 1.25rem;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .page-title2 {
    font-size: 1.5rem;
  }
}

.page-title3 {
  padding-block: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .page-title3 {
    font-size: 1.75rem;
  }
}

.page-sub-text {
  padding-bottom: 1rem;
  text-align: center;
}

.page-inner2 {
  padding-bottom: 20vw;
  margin-top: -0.8rem;
}

.entry-content,
.news-content,
.single-content {
  padding: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .entry-content,
  .news-content,
  .single-content {
    padding-inline: 2rem;
  }
}

.page-content {
  padding: 1rem;
}
@media (min-width: 768px) {
  .page-content {
    padding-inline: 2rem;
  }
}
.page-content :where(h2) {
  margin: 0;
}
.page-content .event-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-content .event-item {
    flex-direction: row;
    gap: 3rem;
  }
}
.page-content .event-item + .event-item {
  margin-top: 1.5rem;
}

.entry-content + .page-content {
  padding-top: 0;
}

/* obj
========================== */
/* プライバシー
-------------------------- */
.obj-page-privacy1 {
  left: 4%;
  bottom: 0;
}

.obj-page-privacy2 {
  top: 5%;
  left: 45%;
}
@media (min-width: 768px) {
  .obj-page-privacy2 {
    top: unset;
    bottom: 0;
  }
}

.obj-page-privacy3 {
  right: 0;
  bottom: 15%;
}

/* お知らせ
-------------------------- */
.obj-page-news1 {
  bottom: 0;
  left: 2%;
}

.obj-page-news2 {
  bottom: 0;
  left: 45%;
}

.obj-page-news3 {
  right: 0;
  bottom: 60%;
}

.obj-page-news4 {
  right: 2rem;
  bottom: 40%;
}

.obj-page-news5 {
  right: 15%;
  bottom: 60%;
}

/* 公式フォト
-------------------------- */
.obj-page-photo1 {
  bottom: 0%;
  left: 14%;
}

.obj-page-photo2 {
  bottom: -5%;
  left: 2%;
}

.obj-page-photo3 {
  bottom: -10%;
  left: 45%;
}

.obj-page-photo4 {
  right: 0;
  bottom: 55%;
}

.obj-page-photo5 {
  right: 0;
  bottom: 0;
}

.obj-page-photo6 {
  top: 15%;
  right: 13%;
}

/* スタートリスト
-------------------------- */
.obj-page-start1 {
  top: 100%;
  left: 0;
}

.obj-page-start2 {
  bottom: -20%;
  left: 2%;
}

.obj-page-start3 {
  bottom: 0%;
  left: 45%;
}

.obj-page-start4 {
  right: 0%;
  bottom: 40%;
}

.obj-page-start5 {
  top: 0;
  left: 53%;
}

/* リザルト
-------------------------- */
.obj-page-result1 {
  bottom: -10%;
  left: 0;
}

.obj-page-result2 {
  bottom: 10%;
  left: 25%;
}

.obj-page-result3 {
  bottom: 0;
  left: 45%;
}

.obj-page-result4 {
  top: -25%;
  right: 2%;
}

/* 協賛のご案内
-------------------------- */
.obj-page-supporters1 {
  bottom: -10%;
  left: 0;
}

.obj-page-supporters2 {
  bottom: -10%;
  left: 45%;
}

.obj-page-supporters3 {
  top: 0;
  left: 10%;
}

.obj-page-supporters4 {
  top: -90%;
  right: 0;
}

.obj-page-supporters5 {
  right: 3%;
  bottom: 40%;
}

/* 開催情報
-------------------------- */
.obj-page-information1 {
  bottom: -10%;
  left: 0;
}

.obj-page-information2 {
  bottom: 10%;
  left: 12%;
}

.obj-page-information3 {
  top: 5%;
  left: 45%;
}
@media (min-width: 768px) {
  .obj-page-information3 {
    top: unset;
    bottom: 0;
  }
}

.obj-page-information4 {
  top: -90%;
  right: 0;
}

/* その他ページ
-------------------------- */
.obj-page-other1 {
  bottom: -10%;
  left: 0;
}

.obj-page-other2 {
  bottom: 10%;
  left: 15%;
}

.obj-page-other3 {
  bottom: -10%;
  left: 40%;
}

.obj-page-other4 {
  top: -90%;
  right: 0;
}

.obj-page-other5 {
  right: 10%;
  bottom: 50%;
}

/* お問い合わせフォーム
========================== */
.form .wpcf7 .form-label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-size: 1rem;
}
.form .wpcf7 .form-label .required {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: #d8fc5c;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #333333;
  border-radius: 50px;
}
@media (min-width: 768px) {
  .form .wpcf7 .form-item,
  .form .wpcf7 .form-item fieldset {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}
.form .wpcf7 .form-item + .form-item,
.form .wpcf7 .form-item fieldset + .form-item {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .form .wpcf7 .form-item + .form-item,
  .form .wpcf7 .form-item fieldset + .form-item {
    margin-top: 1.25rem;
  }
}
.form .wpcf7 .form-item input:not([type=radio]),
.form .wpcf7 .form-item textarea,
.form .wpcf7 .form-item fieldset input:not([type=radio]),
.form .wpcf7 .form-item fieldset textarea {
  width: 100%;
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
  border: 1px solid #333;
  border-radius: 0.375rem;
  background-color: #fffdf7;
}
@media (min-width: 768px) {
  .form .wpcf7 .form-label {
    flex: 0 0 35%;
  }
}
@media (min-width: 768px) {
  .form .wpcf7 .wpcf7-form-control-wrap {
    flex: 1;
  }
}
.form .wpcf7 .wpcf7-form-control:focus {
  border-color: #afd862;
  outline: none;
}
.form .wpcf7 .wpcf7-list-item-label {
  font-weight: 500;
}
.form .wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.form .wpcf7 .wpcf7-radio label {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.form .wpcf7 input[type=radio] {
  position: relative;
  width: 1rem;
  aspect-ratio: 1;
  border: 1px solid #333333;
  border-radius: 50%;
  background: #fffdf7;
  appearance: none;
}
.form .wpcf7 input[type=radio]:checked {
  border-color: #afd862;
}
.form .wpcf7 input[type=radio]:checked::before {
  content: "";
  position: absolute;
  inset: 0.125rem;
  border-radius: 50%;
  background: #2e7d32;
}
.form .wpcf7 .wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}
.form .wpcf7 .wpcf7-not-valid-tip {
  color: #D9534F;
  font-weight: 400;
}
.form .wpcf7 .wpcf7-response-output {
  padding: 0.25rem 0.5rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  text-align: center;
}
.form .wpcf7 form.invalid .wpcf7-response-output {
  text-align: center;
  border-color: #ffcf1b;
}
.form .wpcf7 .form-button-inner {
  position: relative;
}
.form .wpcf7 .form-button-inner .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.75rem);
  margin: 0;
  background-color: #2e7d32;
  transform: translateY(-50%);
}
.form .wpcf7 .form-button-inner .wpcf7-spinner::before {
  background-color: #fffdf7;
}

/* TOPページ
========================== */
.home {
  /* fv
  -------------------------- */
}
.home .fv {
  position: relative;
  height: calc(100svh - var(--header-height));
  overflow: hidden;
}
@supports (height: 100dvh) {
  .home .fv {
    height: calc(100dvh - var(--header-height));
  }
}
.home .fv::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 767px;
  height: 100%;
  background-image: url("../img/top/fv2-sp.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) {
  .home .fv::after {
    width: max(100%, 1440px);
    height: 100%;
    background-image: url("../img/top/fv2-pc.png");
  }
}
.home .fv-img {
  position: absolute;
  inset: 0 0 2px;
  background-image: url("../img/top/fv1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 39% 40%;
  z-index: 1;
}
.home .fv-inner {
  position: relative;
  height: 100%;
  padding-top: 3rem;
  z-index: 5;
}
.home .fv-catch {
  margin: 0 0 0 auto;
  writing-mode: vertical-rl;
}
.home .fv-catch span {
  display: block;
  inline-size: fit-content;
  padding: 0.8em 0.5rem;
  font-size: clamp(2rem, 1.522rem + 2.04vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  background-color: #fffdf7;
  border-radius: 50px;
  box-shadow: -4px 4px 4px rgba(51, 51, 51, 0.25);
}
.home .fv-catch span + span {
  margin-block-start: 0.5rem;
}
.home {
  /* お知らせ(news)
  -------------------------- */
}
@media (min-width: 768px) {
  .home .news-inner1 {
    display: flex;
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .home .news-inner1 .title-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 30%;
  }
}
@media (min-width: 768px) {
  .home .news-inner1 .title1 {
    padding-top: 1.5rem;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .home .news-list {
    margin-block: auto;
  }
}
@media (min-width: 768px) {
  .home .news-list {
    flex: 1;
  }
}
.home .obj-news1 {
  display: none;
}
@media (min-width: 768px) {
  .home .obj-news1 {
    position: relative;
    display: block;
    flex: 1;
    width: clamp(6.25rem, 3.393rem + 5.95vw, 8.75rem);
  }
}
.home {
  /* 開催情報(information)
  -------------------------- */
}
.home .obj-info1 {
  bottom: 85%;
  left: 8%;
}
.home .obj-info2 {
  bottom: 0;
  left: 40%;
}
@media (min-width: 768px) {
  .home .obj-info2 {
    bottom: -13%;
  }
}
.home .obj-info3 {
  right: 11%;
  bottom: 15%;
}
.home .obj-info4 {
  top: 40%;
  left: 1.5%;
}
.home .obj-info5 {
  top: 95%;
  right: 0;
}
.home .obj-info5 .obj-cloud1 {
  transform: translateX(6%);
}
.home .info-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .home .info-content {
    flex-direction: row;
    gap: 3rem;
  }
}
.home .info-img-inner {
  width: clamp(6.25rem, 3.478rem + 11.52vw, 9rem);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .home .info-img-inner {
    flex: 0 0 12rem;
    width: 12rem;
    margin-right: 0;
  }
}
.home .info-img-inner img {
  width: auto;
}
.home .info-list {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .home .info-list {
    margin: 0 auto 0 0;
  }
}
.home .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.home .info-item + .info-item {
  margin-top: 0.5rem;
}
.home .info-item dt {
  flex: 0 0 6rem;
}
.home .info-item dd {
  line-height: 1.7;
}
.home .info-values {
  font-weight: 500;
}
.home .information .button-inner {
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .home .information .button-inner {
    flex-direction: row;
    justify-content: center;
  }
}
.home .information .button {
  width: 16rem;
}
@media (min-width: 768px) {
  .home .information .button {
    width: 18rem;
  }
}
.home .obj-info6 {
  bottom: -8%;
  left: 0;
}
.home .obj-info6 .obj-map1 {
  transform: translateX(-31%);
}
.home {
  /* 子どもの走るきっかけ作り(concept)
  ------------------------------ */
}
.home .obj-concept1 {
  top: 38%;
  left: 12%;
}
.home .obj-concept2 {
  top: 80%;
  left: 8%;
}
.home .obj-concept3 {
  top: -36%;
  right: 1%;
}
.home .obj-concept4 {
  top: 6%;
  right: 3%;
  z-index: 5;
}
@media (min-width: 768px) {
  .home .obj-concept4 {
    top: -23%;
  }
}
.home .concept-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .home .concept-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .home .concept-img-inner {
    flex: 0 0 40%;
  }
}
.home .concept-img-inner img {
  border: 2px solid #fffdf7;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .home .concept-img-inner img {
    margin-right: 0;
  }
}
.home .concept-text-inner {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .home .concept-text-inner {
    font-size: 1.25rem;
  }
}
.home .concept-text-inner p + p {
  margin-top: 1em;
}
.home {
  /* 公式フォト(photo)
  -------------------------- */
}
.home .photo .wave-sp,
.home .photo .wave-pc {
  position: relative;
  z-index: 2;
}
.home .obj-photo1 {
  top: -25%;
  left: 0;
  padding-block: 1%;
  z-index: 5;
}
.home .obj-photo1 .obj-bird1 {
  transform: translateX(-14%) rotate(20deg);
}
.home .obj-photo2 {
  bottom: 15%;
  left: 30%;
  z-index: 1;
}
@media (min-width: 768px) {
  .home .obj-photo2 {
    bottom: 0;
  }
}
.home .obj-photo3 {
  top: 25%;
  right: 5%;
  z-index: 5;
}
.home .obj-photo4 {
  top: 3%;
  left: 2%;
}
.home .obj-photo5 {
  top: -7%;
  left: 68%;
}
.home .obj-photo6 {
  bottom: 14%;
  left: 0;
}
.home .obj-photo7 {
  top: -4%;
  left: 0;
}
@media (min-width: 768px) {
  .home .obj-photo7 {
    top: 12%;
  }
}
.home .obj-photo8 {
  top: -8%;
  right: 0;
}
@media (min-width: 768px) {
  .home .obj-photo8 {
    top: unset;
    right: unset;
    bottom: 5%;
    left: 14%;
  }
}
.home .obj-photo8 .obj-child6 {
  transform: translateX(17%);
}
@media (min-width: 768px) {
  .home .obj-photo8 .obj-child6 {
    transform: translateX(0);
  }
}
.home .obj-photo9 {
  top: 3%;
  left: 32%;
}
@media (min-width: 768px) {
  .home .obj-photo9 {
    top: 25%;
    left: 30%;
  }
}
@media (min-width: 768px) {
  .home .insta-content {
    display: flex;
    gap: 1rem;
  }
}
.home .insta-content .button-inner {
  z-index: 5;
}
@media (min-width: 768px) {
  .home .insta-content .button-inner {
    padding-top: 0;
  }
}
.home .insta-title-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .home .insta-title-inner {
    flex-direction: column;
    justify-content: center;
    flex: 0 0 40%;
  }
}
.home .insta-title-inner .title1 {
  text-align: left;
}
.home .insta-title-inner .button {
  min-width: 13rem;
  padding: 0.75rem 2rem;
}
@media (min-width: 768px) {
  .home .insta-title-inner .button {
    padding: 1rem 3rem;
  }
}
.home .insta-content {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .home .insta-content {
    padding-top: 4rem;
  }
}
@media (min-width: 768px) {
  .home .insta-img-inner {
    flex: 1;
  }
}
.home .instagram-gallery-list[data-feed_layout=gallery] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .home .instagram-gallery-list[data-feed_layout=gallery] {
    gap: 1rem;
  }
}
.home .instagram-gallery-list[data-feed_layout=gallery] .instagram-gallery-item {
  width: auto;
  border-radius: 0.5rem;
}
.home .instagram-gallery-item:hover .instagram-gallery-item__media-mask {
  opacity: 0.6;
}
.home {
  /* お問い合わせ(contact)
  -------------------------- */
}
.home .obj-contact1 {
  top: 0;
  left: 2%;
  z-index: 1;
}
.home .obj-contact2 {
  top: 95%;
  left: 1%;
}
@media (min-width: 768px) {
  .home .obj-contact2 {
    top: 110%;
  }
}
.home .obj-contact3 {
  top: 23%;
  left: 50%;
}
.home .obj-contact4 {
  top: -30%;
  right: 2%;
}
.home .obj-contact5 {
  top: 40%;
  right: 0;
}
@media (min-width: 768px) {
  .home .obj-contact5 {
    top: 75%;
  }
}
.home .obj-contact6 {
  top: 15%;
  right: 8%;
}
@media (min-width: 768px) {
  .home .obj-contact6 {
    top: 30%;
  }
}
.home .obj-contact7 {
  top: 35%;
  left: 0;
  display: none;
}
@media (min-width: 768px) {
  .home .obj-contact7 {
    display: block;
  }
}
.home .obj-contact8 {
  top: 60%;
  right: 0;
  display: none;
}
@media (min-width: 768px) {
  .home .obj-contact8 {
    display: block;
  }
}
.home .contact .bg-wave {
  z-index: 5;
}
.home .contact .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .home .contact .title1 {
    margin-bottom: 1.5rem;
  }
}
.home .contact-text {
  margin-bottom: 1.5rem;
  text-align: center;
  word-break: auto-phrase;
}
@media (min-width: 768px) {
  .home .contact-text {
    margin-bottom: 3rem;
  }
}
.home .contact-form {
  max-width: 50rem;
  padding: 1.5rem 1rem;
  margin-inline: auto;
  background-color: #fffdf7;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .home .contact-form {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .home .contact-form .button-inner {
    padding-block: 1.5rem 0;
  }
}
.home {
  /* 大会を支えてくださる皆様(supporters)
  ----------------------------------- */
}
.home .obj-supporters1 {
  bottom: 0;
  left: 3%;
  z-index: 5;
}
.home .obj-supporters2 {
  right: 15%;
  bottom: -21%;
  z-index: 5;
}
.home .obj-supporters3 {
  bottom: -37%;
  left: 1%;
}
.home .obj-supporters4 {
  top: 27%;
  right: 0;
}
.home .obj-supporters5 {
  bottom: 20%;
  left: 0;
  display: none;
}
@media (min-width: 768px) {
  .home .obj-supporters5 {
    display: block;
  }
}
.home .supporters-cta {
  position: relative;
  max-width: 50rem;
  padding: 1rem;
  margin-inline: auto;
  text-align: center;
  background: url("../img/top/cta1.png") center/cover no-repeat;
  border: 1px solid #fffdf7;
  border-radius: 1rem;
  z-index: 5;
  overflow: hidden;
}
.home .supporters-cta .button-inner {
  padding-bottom: 0;
}
.home .supporters-cta-text {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* お知らせページ
========================== */
/* TOP・一覧・詳細 共通
-------------------------- */
.news .news-thumbnail {
  margin-bottom: 1rem;
}
.news .news-thumbnail img {
  width: 100%;
}
.news .news-item {
  display: block;
  padding-block: 0.75rem;
}
@media (min-width: 768px) {
  .news .news-item {
    padding-block: 1.25rem;
  }
}
.news .news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .news .news-meta {
    gap: 1rem;
  }
}
.news .news-date {
  font-family: "Fredoka", sans-serif;
  color: #2e7d32;
  font-weight: 500;
}
.news .news-tag {
  padding: 0.25rem 0.5rem;
  font-weight: 500;
  line-height: 1;
  color: #333333;
  background-color: #ffcf1b;
  border: 1px solid #333333;
  border-radius: 50px;
}
.news .news-title {
  font-weight: 700;
  font-size: 1rem;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .news .news-title {
    font-size: 1.25rem;
  }
}

/* お知らせ一覧ページ
-------------------------- */
.news-content .news-title {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .news-content .news-title {
    font-size: 1.5rem;
  }
}
.news-content li + li {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .news-content .news-item {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .news-content .news-thumbnail {
    flex: 0 0 30%;
  }
}
.news-content .news-thumbnail img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .news-content .news-title-inner {
    flex: 1;
  }
}

/* お知らせ詳細ページ
-------------------------- */
.single-content .news-title {
  margin-top: 0;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .single-content .news-title {
    font-size: 1.5rem;
  }
}

/* 一覧・詳細 共通
-------------------------- */
.single-content .nav-links,
.single-content .page-links,
.news-content .nav-links,
.news-content .page-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  color: #2e7d32;
}
@media (min-width: 768px) {
  .single-content .nav-links,
  .single-content .page-links,
  .news-content .nav-links,
  .news-content .page-links {
    font-size: 1.125rem;
  }
}
.single-content .page-numbers.current,
.single-content .post-page-numbers.current,
.news-content .page-numbers.current,
.news-content .post-page-numbers.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  aspect-ratio: 1;
  color: #fffdf7;
  background-color: #2e7d32;
  border-radius: 50%;
}/*# sourceMappingURL=style.css.map */