@charset "UTF-8";
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

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

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

#hamburger-menu-button {
  display: none;
  overflow-x: hidden;
}

.hamburger-menu-wrapper {
  position: relative;
  z-index: 1000;
}

.hamburger-menu-open {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.hamburger-menu-open i {
  font-size: 2rem;
}

.hamburger-menu-close {
  margin: 0 auto;
}
.hamburger-menu-close i {
  font-size: 2rem;
}

.hamburger-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  /* 必要に応じて幅を調整してください */
  height: 100%;
  transform: translateX(100%);
  overflow-x: hidden;
  width: 80vw;
  background-color: white;
  transition: all 0.5s ease;
  box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.2);
  padding: 32px 0px;
}
.hamburger-menu-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hamburger-menu-content ul li {
  width: 150px;
  text-align: center;
  border-radius: 1rem;
  position: relative;
}
.hamburger-menu-content ul li.comics {
  background-color: #CCFFCC;
}
.hamburger-menu-content ul li.comics a::before {
  content: "\f193";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li.movies {
  background-color: #CCFFFF;
}
.hamburger-menu-content ul li.movies a::before {
  content: "\f21a";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li.goods {
  background-color: #C2EBFF;
}
.hamburger-menu-content ul li.goods a::before {
  content: "\f3ec";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li.events {
  background-color: #DAD4FF;
}
.hamburger-menu-content ul li.events a::before {
  content: "\f1f7";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li.shop {
  background-color: #FFE2EB;
}
.hamburger-menu-content ul li.shop a::before {
  content: "\f543";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li.app {
  background-color: #FFE9BE;
}
.hamburger-menu-content ul li.app a::before {
  content: "\f4e7";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li.nagano {
  background-color: #FFFF99;
}
.hamburger-menu-content ul li.nagano a::before {
  content: "\f586";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li.contact {
  background-color: #ccc;
}
.hamburger-menu-content ul li.contact a::before {
  content: "\f50a";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.hamburger-menu-content ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}
.hamburger-menu-content .footer-sns-links ul {
  list-style: none;
  display: flex;
  padding: 0;
  gap: 1rem;
  justify-content: center;
  flex-direction: row;
}
.hamburger-menu-content .footer-sns-links ul li {
  font-size: 1.25rem;
  background-color: #666;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  text-align: center;
  line-height: 2rem;
}

#hamburger-menu-button:checked ~ .hamburger-menu-open {
  display: none;
}
#hamburger-menu-button:checked ~ .hamburger-menu-content {
  transform: translateX(0%);
}

* {
  font-family: "Shin Go Regular", sans-serif;
}

body {
  animation: bgextendAnimeBase 15s linear infinite;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.contents-box {
  flex-grow: 1;
}

@keyframes bgextendAnimeBase {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px -400px;
  }
}
h2,
h1 {
  font-family: "Shin Go Medium", sans-serif;
}

.site-header {
  position: relative;
}
.site-header div.addition {
  height: 125px;
  background-color: white;
  position: absolute;
  width: 100%;
  top: -125px;
  z-index: -1;
}
.site-header .header-body {
  background-color: white;
}
.site-header .header-body h1 {
  padding-top: 1rem;
  text-align: center;
  margin-bottom: 0;
}
.site-header .header-body .site-description {
  text-align: center;
  margin-bottom: 0px;
}
.site-header .header-body div.pc-menu ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-header .header-body div.pc-menu ul li {
  border-radius: 1.5rem;
  position: relative;
}
.site-header .header-body div.pc-menu ul li.comics {
  background-color: #CCFFCC;
}
.site-header .header-body div.pc-menu ul li.comics a::before {
  content: "\f193";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li.movies {
  background-color: #CCFFFF;
}
.site-header .header-body div.pc-menu ul li.movies a::before {
  content: "\f21a";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li.goods {
  background-color: #C2EBFF;
}
.site-header .header-body div.pc-menu ul li.goods a::before {
  content: "\f3ec";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li.events {
  background-color: #DAD4FF;
}
.site-header .header-body div.pc-menu ul li.events a::before {
  content: "\f1f7";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li.shop {
  background-color: #FFE2EB;
}
.site-header .header-body div.pc-menu ul li.shop a::before {
  content: "\f543";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li.app {
  background-color: #ffe9be;
}
.site-header .header-body div.pc-menu ul li.app a::before {
  content: "\f4e7";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li.nagano {
  background-color: #FFFF99;
}
.site-header .header-body div.pc-menu ul li.nagano a::before {
  content: "\f586";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li.contact {
  background-color: #ccc;
}
.site-header .header-body div.pc-menu ul li.contact a::before {
  content: "\f50a";
  font-family: "Bootstrap-icons";
  font-weight: 900;
  margin-right: 0.5rem;
}
.site-header .header-body div.pc-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}
.site-header .header-body div.pc-menu ul .sns-menu {
  color: white;
  background-color: #666;
}

#header-border {
  height: 60px;
  width: 100%;
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/06/cloud.png");
  margin-bottom: 1rem;
}

#footer-border {
  height: 60px;
  width: 100%;
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/06/cloud.png");
  transform: rotate(180deg);
}

.main-contets-box,
.side-bar {
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
}

#secondary h2 {
  font-size: 1.5rem;
  text-align: center;
  background-color: #b7ed64;
  border-radius: 1.5rem;
  padding: 0.5rem 0;
  user-select: none;
}
#secondary div.widget ul.wp-block-latest-posts__list img {
  width: 100%;
}
#secondary div.widget ul.wp-block-latest-posts__list li + li {
  border-top: 0.5px solid #b7ed64;
}
#secondary .widget + .widget {
  margin-top: 0.5rem;
}
#secondary .wp-block-search__inside-wrapper {
  position: relative;
}
#secondary .wp-block-search__input {
  width: 100%;
  padding-right: 40px;
  /* ボタン分のスペースを確保 */
  box-sizing: border-box;
  border-radius: 1.5rem;
}
#secondary .wp-block-search__button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  height: 100%;
  width: 40px;
  font-size: 20px;
  color: #333;
  /* アイコンの色を調整 */
}
#secondary .wp-block-search__button::before {
  content: "\f52a";
  /* Font Awesomeの虫眼鏡アイコン */
  font-family: "Bootstrap-icons";
  font-weight: 900;
  /* アイコンの太さ */
}
#secondary .wp-block-latest-posts__list {
  margin-left: 1rem;
}
#secondary .wp-block-categories-list,
#secondary .wpp-list {
  list-style: none;
  padding: 0px;
  margin-left: 1rem;
}
#secondary .wp-block-categories-list li,
#secondary .wpp-list li {
  font-size: 13px;
  padding: 0.25rem 0rem;
  margin: 0px;
}
#secondary .tag-pool {
  margin-left: 1rem;
}
#secondary ul.wp-block-latest-posts__list li {
  margin-bottom: 1rem;
}
#secondary div.tptn_posts_daily ul,
#secondary div.tptn_posts ul {
  list-style: none;
  padding: 0;
  margin-left: 1rem;
}
#secondary div.tptn_posts_daily ul li,
#secondary div.tptn_posts ul li {
  margin: 0 auto 1rem;
  text-align: center;
}
#secondary div.tptn_posts_daily ul li img,
#secondary div.tptn_posts ul li img {
  width: 100%;
  max-width: 225px;
  height: auto;
}
#secondary div.tptn_posts_daily ul li span.tptn_after_thumb,
#secondary div.tptn_posts ul li span.tptn_after_thumb {
  display: block;
}
#secondary div.tptn_posts_daily ul li span.tptn_title,
#secondary div.tptn_posts ul li span.tptn_title {
  font-size: 13px;
}
#secondary div.tptn_posts_daily ul li:first-child span.tptn_title::before,
#secondary div.tptn_posts ul li:first-child span.tptn_title::before {
  content: "";
  display: inline-block;
  /* または block */
  width: 40px;
  /* 画像の幅 */
  height: 40px;
  /* 画像の高さ */
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/08/kkrn_icon_ranking_1.png");
  background-size: cover;
  /* 画像のサイズ調整 */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像の位置調整 */
  vertical-align: baseline;
  /* テキストのベースラインに揃える */
  transform: translateY(0.5rem);
}
#secondary div.tptn_posts_daily ul li:nth-child(2) span.tptn_title::before,
#secondary div.tptn_posts ul li:nth-child(2) span.tptn_title::before {
  content: "";
  display: inline-block;
  /* または block */
  width: 40px;
  /* 画像の幅 */
  height: 40px;
  /* 画像の高さ */
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/08/kkrn_icon_ranking_2.png");
  background-size: cover;
  /* 画像のサイズ調整 */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像の位置調整 */
  vertical-align: baseline;
  /* テキストのベースラインに揃える */
  transform: translateY(0.5rem);
}
#secondary div.tptn_posts_daily ul li:nth-child(3) span.tptn_title::before,
#secondary div.tptn_posts ul li:nth-child(3) span.tptn_title::before {
  content: "";
  display: inline-block;
  /* または block */
  width: 40px;
  /* 画像の幅 */
  height: 40px;
  /* 画像の高さ */
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/08/kkrn_icon_ranking_3.png");
  background-size: cover;
  /* 画像のサイズ調整 */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像の位置調整 */
  vertical-align: baseline;
  /* テキストのベースラインに揃える */
  transform: translateY(0.5rem);
}
#secondary div.tptn_posts_daily ul li:nth-child(4) span.tptn_title::before,
#secondary div.tptn_posts ul li:nth-child(4) span.tptn_title::before {
  content: "4．";
  font-size: 1rem;
}
#secondary div.tptn_posts_daily ul li:nth-child(5) span.tptn_title::before,
#secondary div.tptn_posts ul li:nth-child(5) span.tptn_title::before {
  content: "5．";
  font-size: 1rem;
}
#secondary div.popular-posts li {
  margin-bottom: 1rem;
}
#secondary div.popular-posts li img {
  width: 100%;
  height: auto;
  display: block;
}
#secondary div.popular-posts li:first-child a.wpp-post-title::before {
  content: "";
  display: inline-block;
  /* または block */
  width: 40px;
  /* 画像の幅 */
  height: 40px;
  /* 画像の高さ */
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/08/kkrn_icon_ranking_1.png");
  background-size: cover;
  /* 画像のサイズ調整 */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像の位置調整 */
  vertical-align: baseline;
  /* テキストのベースラインに揃える */
  transform: translateY(0.5rem);
}
#secondary div.popular-posts li:nth-child(2) a.wpp-post-title::before {
  content: "";
  display: inline-block;
  /* または block */
  width: 40px;
  /* 画像の幅 */
  height: 40px;
  /* 画像の高さ */
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/08/kkrn_icon_ranking_2.png");
  background-size: cover;
  /* 画像のサイズ調整 */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像の位置調整 */
  vertical-align: baseline;
  /* テキストのベースラインに揃える */
  transform: translateY(0.5rem);
}
#secondary div.popular-posts li:nth-child(3) a.wpp-post-title::before {
  content: "";
  display: inline-block;
  /* または block */
  width: 40px;
  /* 画像の幅 */
  height: 40px;
  /* 画像の高さ */
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/08/kkrn_icon_ranking_3.png");
  background-size: cover;
  /* 画像のサイズ調整 */
  background-repeat: no-repeat;
  /* 画像の繰り返しを防ぐ */
  background-position: center;
  /* 画像の位置調整 */
  vertical-align: baseline;
  /* テキストのベースラインに揃える */
  transform: translateY(0.5rem);
}
#secondary div.popular-posts li:nth-child(4) a.wpp-post-title::before {
  content: "4．";
  font-size: 1rem;
}
#secondary div.popular-posts li:nth-child(5) a.wpp-post-title::before {
  content: "5．";
  font-size: 1rem;
}

article.post-preview-box:nth-of-type(1) .post-preview-inner-box {
  display: block;
  height: 100%;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box img {
  width: 100%;
  height: auto;
  border: 1px #ddd solid;
  border-radius: 0.5rem;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .entry-header {
  margin-top: 0.5rem;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box h2.entry-title {
  font-size: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  /* タイトルが複数行になるのを許容 */
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .entry-meta {
  font-size: 0.75rem;
  color: #333;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box {
  width: 100%;
  position: relative;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name {
  background-color: black;
  color: black;
  padding: 0.25rem;
  border-radius: 0.5rem;
  box-sizing: border-box;
  font-size: 0.75rem;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.goods {
  background-color: #c2ebff;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.shop {
  background-color: #ffe2eb;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.events {
  background-color: #dad4ff;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.comics {
  background-color: #ccffcc;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.movies {
  background-color: #ccffff;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.app {
  background-color: #ffe9be;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.nagano {
  background-color: #ffff99;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name + span.category-name {
  margin-left: 5px;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box div:nth-of-type(2) {
  width: 100%;
}
article.post-preview-box:nth-of-type(1) .post-preview-inner-box div:nth-of-type(2) .entry-content {
  display: block;
}
article.post-preview-box .post-preview-inner-box {
  display: flex;
  border: 1px solid #b7ed64;
  border-radius: 1rem;
}
article.post-preview-box .post-preview-inner-box h2.entry-title {
  font-size: 1.2rem;
}
article.post-preview-box .post-preview-inner-box h2.entry-title .new-badge {
  background-color: red;
  color: white;
  padding: 5px 10px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  transform: translateY(-3px);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box {
  width: 30%;
  margin-right: 16px;
}
article.post-preview-box .post-preview-inner-box .thumbnail-box img {
  width: 100%;
  height: auto;
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name {
  font-size: 0.75rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25rem;
  border-radius: 5rem;
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.goods {
  background-color: rgba(194, 235, 255, 0.8);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.shop {
  background-color: rgba(255, 226, 235, 0.8);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.events {
  background-color: rgba(218, 212, 255, 0.8);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.comics {
  background-color: rgba(204, 255, 204, 0.8);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.movies {
  background-color: rgba(204, 255, 255, 0.8);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.app {
  background-color: rgba(255, 233, 190, 0.8);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.nagano {
  background-color: rgba(255, 255, 153, 0.8);
}
article.post-preview-box .post-preview-inner-box .thumbnail-box .entry-categories .category-name.info {
  background-color: rgba(245, 245, 245, 0.8);
}
article.post-preview-box .post-preview-inner-box div:nth-of-type(2) {
  width: 70%;
}
article.post-preview-box .post-preview-inner-box div:nth-of-type(2) .entry-content {
  display: none;
}
article.post-preview-box .post-preview-inner-box .entry-meta {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  article.post-preview-box:nth-of-type(1) {
    width: 100%;
  }
  article.post-preview-box .post-preview-inner-box {
    display: block;
    height: 100%;
  }
  article.post-preview-box .post-preview-inner-box img {
    width: 100%;
    height: auto;
    border: 1px #ddd solid;
    border-radius: 0.5rem;
  }
  article.post-preview-box .post-preview-inner-box .entry-header {
    margin-top: 0.5rem;
  }
  article.post-preview-box .post-preview-inner-box h2.entry-title {
    font-size: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    /* タイトルが複数行になるのを許容 */
  }
  article.post-preview-box .post-preview-inner-box .entry-meta {
    font-size: 0.75rem;
    color: #333;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box {
    width: 100%;
    position: relative;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name {
    background-color: black;
    color: black;
    padding: 0.25rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
    font-size: 0.75rem;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.goods {
    background-color: #c2ebff;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.shop {
    background-color: #ffe2eb;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.events {
    background-color: #dad4ff;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.comics {
    background-color: #ccffcc;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.movies {
    background-color: #ccffff;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.app {
    background-color: #ffe9be;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name.nagano {
    background-color: #ffff99;
  }
  article.post-preview-box .post-preview-inner-box .thumbnail-box div.entry-categories span.category-name + span.category-name {
    margin-left: 5px;
  }
  article.post-preview-box .post-preview-inner-box div:nth-of-type(2) {
    width: 100%;
  }
  article.post-preview-box .post-preview-inner-box div:nth-of-type(2) .entry-content {
    display: block;
  }
}

#form-container-box {
  background-color: white;
  background-color: white;
  padding: 1rem;
  border-radius: 1rem;
}
#form-container-box .form-container-inner-box {
  max-width: 600px;
  margin: 0 auto;
}
#form-container-box label {
  width: 100%;
}
#form-container-box label span.wpcf7-form-control-wrap {
  width: 100%;
}
#form-container-box input {
  border: 1px solid;
  width: 100%;
  padding: 0.5rem;
  border-radius: 1rem;
}
#form-container-box textarea {
  border: 1px solid;
  width: 100%;
  padding: 0.5rem;
  border-radius: 1rem;
}
#form-container-box input[type=submit] {
  background-color: #b7ed64;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 1rem;
  max-width: 150px;
}
#form-container-box p:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.breadcrumbs {
  padding: 0.5rem;
  border-radius: 1rem;
  color: #666;
  font-size: 0.75rem;
}

body.single h1.entry-title,
body.page h1.entry-title {
  font-size: 2rem;
  border-bottom: 2px solid #b7ed64;
  margin-top: 1rem;
}
body.single .post-thumnail-box img,
body.page .post-thumnail-box img {
  width: 100%;
  height: auto;
}
body.single .entry-content h2,
body.page .entry-content h2 {
  font-size: 1.5rem;
  width: 100%;
  color: #505050;
  /*文字色*/
  padding: 0.5em;
  /*文字周りの余白*/
  display: inline-block;
  /*おまじない*/
  line-height: 1.3;
  /*行高*/
  background: #b7ed64;
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;
  /*左側の角を丸く*/
  margin-bottom: 1rem;
}
body.single .entry-content h2:before,
body.page .entry-content h2:before {
  content: "";
  display: inline-block;
  background-image: url("https://chiikawapark.com/wp-content/uploads/2024/08/h2デザイン頭マーク.png");
  margin-right: 8px;
  width: 40px;
  height: 31px;
  background-size: 60%;
  /* 画像を要素に合わせてカバー */
  background-repeat: no-repeat;
  /* 画像の繰り返しを無効化 */
  background-position: center center;
  vertical-align: middle;
  /* 中央揃えにする */
}
body.single .entry-content h3,
body.page .entry-content h3 {
  font-size: 1.3rem;
  position: relative;
  padding-left: 1.2em;
  /*アイコン分のスペース*/
  line-height: 1.4;
  margin-bottom: 1rem;
}
body.single .entry-content h3:before,
body.page .entry-content h3:before {
  font-family: "Bootstrap-icons";
  content: "\f633";
  /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;
  /*絶対位置*/
  font-size: 1em;
  /*サイズ*/
  left: 0;
  /*アイコンの位置*/
  top: 0;
  /*アイコンの位置*/
  color: #b7ed64;
  /*アイコン色*/
  font-weight: 900;
}
body.single .entry-content h4,
body.single .entry-content h5,
body.single .entry-content h6,
body.page .entry-content h4,
body.page .entry-content h5,
body.page .entry-content h6 {
  border-bottom: 1px dashed #b7ed64;
}
body.single .entry-content p,
body.page .entry-content p {
  margin-left: 1rem;
  line-height: 200%;
}
body.single .entry-content .wp-block-my-blocks-sample-block div.content,
body.page .entry-content .wp-block-my-blocks-sample-block div.content {
  line-height: 200%;
}
body.single .entry-content .wp-block-my-blocks-sample-block div.twitter-embed.typesquare_option,
body.page .entry-content .wp-block-my-blocks-sample-block div.twitter-embed.typesquare_option {
  display: flex;
  justify-content: center;
}
body.single .entry-content div.typesquare_option small.typesquare_option,
body.page .entry-content div.typesquare_option small.typesquare_option {
  display: block;
  margin-bottom: 1rem;
}
body.single .entry-content img,
body.page .entry-content img {
  max-width: 100%;
  height: auto;
}
body.single .entry-content .is-provider-youtube > div,
body.page .entry-content .is-provider-youtube > div {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比を維持 */
  height: 0;
}
body.single .entry-content .is-provider-youtube > div iframe,
body.page .entry-content .is-provider-youtube > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer#site-footer .footer-body {
  padding: 0rem 0rem 1rem;
  background-color: white;
}
footer#site-footer .footer-body h2 {
  font-size: 1rem;
  text-align: center;
}
footer#site-footer .footer-body p.copy-light {
  text-align: center;
  font-size: 0.75rem;
}
footer#site-footer ul#menu-footer-menu {
  list-style: none;
  padding: 1rem 0rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
footer#site-footer ul#menu-footer-menu li {
  font-size: 0.75rem;
}
footer#site-footer .footer-sns-links ul {
  list-style: none;
  display: flex;
  padding: 0;
  gap: 1rem;
  justify-content: center;
}
footer#site-footer .footer-sns-links ul li {
  font-size: 1.25rem;
  background-color: #666;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  text-align: center;
  line-height: 2rem;
}

.comment-respond textarea,
.comment-respond input {
  max-width: 100%;
  border-radius: 1.5rem;
  border: 1px solid #ccc;
  padding: 0.5rem;
}
.comment-respond form > p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.comment-respond form > p label {
  display: inline-block;
  width: 6rem;
}
@media screen and (min-width: 768px) {
  .comment-respond form > p {
    flex-direction: row;
  }
}
.comment-respond .comment-form-cookies-consent {
  display: block;
}
.comment-respond .comment-form-cookies-consent label {
  width: auto;
}
.comment-respond input[type=submit] {
  background-color: #b7ed64;
  margin: 0 auto;
}

.tags-links {
  line-height: 200%;
}
.tags-links .typesquare_option {
  border: 1px solid gray;
  padding: 0.25rem 0.5rem;
  border-radius: 0.75rem;
}

.pagination {
  gap: 0.5rem;
}
.pagination span.current {
  width: 2rem;
  height: 2rem;
  color: #333;
  border: 1px solid #333;
  text-align: center;
  border-radius: 50%;
  line-height: 2rem;
}
.pagination a.inactive {
  width: 2rem;
  height: 2rem;
  color: white;
  background-color: #333;
  text-align: center;
  border-radius: 50%;
  line-height: 2rem;
}
.pagination a.next-page,
.pagination a.prev-page {
  color: white;
  background-color: #333;
  padding: 0 1rem;
  border-radius: 1rem;
  line-height: 2rem;
}

div.ssbp-wrap {
  margin-bottom: 1rem;
}

.youtube-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.youtube-container .youtube-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

td.title.column-title {
  background-color: red;
}

/*# sourceMappingURL=chikawa.css.map */
