@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Template:   cocoon-master
Version:    1.1.3
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*master styleの非表示を強制的に解除*/
@media screen and (max-width: 1023px){
.no-mobile-sidebar .sidebar, .mobile-button-fmb .go-to-top-button, .no-mobile-header-logo #header .logo-header {
display:block;
}}
html { scroll-behavior: smooth;}
/*全体リンク用*/
body a {text-decoration:none;}
.logo-menu-button img{ 
	/*max-width: 300px !important;*/
	max-height: 50px;
    display: block;
    margin: 0 auto;}
/*免責事項サイトマップ表示用*/
body p{
    line-height: 1.4!important;
}
a {color: #90ab97;}
body{
background: linear-gradient(to bottom,rgb(255, 255, 255) 10%,rgba(234, 234, 234, 0.48)40%,rgba(234, 234, 234, 0.47)) !important;
}
/*全ページ背景アニメーション*/
.area{
     width: 100%;
    height:auto;

}

.circles{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
overflow:hidden;
z-index:-2;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
      animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
	background: rgba(255, 255, 255, 0.66);
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
	background: rgba(132, 242, 227, 0.66);
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
	background: rgba(242, 230, 132, 0.2);
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
	background: rgba(242, 184, 132, 0.4);
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
	background: rgba(255, 203, 203, 0.7);
}

.circles li:nth-child(6){
    left: 75%;
    width: 80px;
    height: 80px;
    animation-delay: 3s;
	background: rgba(224, 198, 255, 0.3);
}

.circles li:nth-child(7){
    left: 35%;
    width: 70px;
    height: 70px;
    animation-delay: 7s;
	background: rgba(148, 190, 255, 0.4);
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
	background: rgba(179, 247, 224, 0.66);
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
	background: rgba(148, 255, 75, 0.76);
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
	background: rgba(255, 255, 255, 0.5);
}



@keyframes animate {
 
    0%{
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.3;
        border-radius: 30%;
    }
	   30%{
        transform: translateY(-200px) rotate(480deg);
        opacity: 1;
        border-radius: 50%;
    }
		   40%{
        transform: translateY(-400px) rotate(480deg);
        opacity: 10.6;
        border-radius: 30%;
    }
		50%{
        transform: translateY(-500px) rotate(480deg);
        opacity: 0.2;
        border-radius: 80%;
    }
	80%{
        transform: translateY(-700px) rotate(480deg);
        opacity: 0.1;
        border-radius: 100%;
    }

	90%{
        transform: translateY(-900px) rotate(480deg);
        opacity: 0.1;
        border-radius: 70%;
    }
   100%{
        transform: translateY(-1900px) rotate(720deg);
        opacity: 0;
        border-radius: 100%;
    }


}
/*ぱんくず見づらい問題解決
.breadcrumb{color:#888!important;}
.breadcrumb-caption{color:#888!important;}
.breadcrumb a{color:#888!important;}*/
.main{background:none;}

/*アンダーバー*/
/* 初期配置 */
.c-underline-wrapper {
  text-align: center; /* JSで上書き可能 */
}

.c-underline-anim {
  position: relative;
  display: inline-block;
  font-size: 1.8em;
  margin:inherit;
}

/* アンダーライン（初期状態は非表示） */
.c-underline-anim::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: #009742;
  width: 0;
  transition: none;
}

/* アニメーション（JSで.animateが追加されたとき） */
.c-underline-anim.animate::after {
  animation: c-underline-shrink 1.5s ease-in forwards;
  width: 100vw;
}

/* アライメント別の下線位置設定 */
.c-underline-anim[data-align="left"]::after {
  left: 0;
  transform-origin: left;
}
.c-underline-anim[data-align="right"]::after {
  right: 0;
  transform-origin: right;
}
.c-underline-anim[data-align="center"]::after {
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
}

/* アニメーション定義 */
@keyframes c-underline-shrink {
  0% {
    width: 0;
  }
	  20% {
    width: 100vw;
  }
  50% {
    width: 0vw;
  }
  100% {
    width: 100%;
  }
}
/*** モバイルスライダーメニューアコーディオン設定***/
/* 横並びのラップ */
.menu-item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* トグルボタン */
.submenu-toggle {
  font-size: 1.2em;
  color: #999;
  cursor: pointer;
  padding: 0 10px;
}

/* アコーディオン動作用スタイル */
.accordion-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f9f9f9;
  padding: 0 0 0 1em;
}

/* 開いたとき */
.accordion-submenu.is-open {
  max-height: 500px; /* 子要素数に応じて大きめに設定 */
  padding: 0.5em 0 0.5em 1em;
}
/* プロフィールボックス */
.confit-hours{text-align:center;}
.author-box .sns-follow-buttons .follow-button span:before {
      color: #72d3b9;
    }
 .author-box .to-profile {
      position: absolute;
      background: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      text-decoration: none;
      color: #72d3b9;
      box-shadow: 0 0 10px rgba(83, 145, 130, .5), 0 0 5px -5px rgba(83, 145, 130);
      top: 105px;
      right: 45px;
      font-size: 0.9em;
      font-weight: bold;
    }

/************************************
** SNS ボタンをまとめて丸くする
************************************/

/*シェア・フォローボタンの枠組み*/
.sns-share.ss-top .sns-share-buttons,
.sns-share.ss-bottom .sns-share-buttons,
.sns-follow.sf-bottom .sns-follow-buttons,
.sns-follow.sf-widget .sns-follow-buttons {
	justify-content: center; /*中央に寄せる*/
	flex-wrap: wrap; /*折り返す*/
}

/*シェア・フォローボタンのリンク*/
.sns-share.ss-top .sns-buttons a,
.sns-share.ss-bottom .sns-buttons a,
.sns-follow.sf-bottom .sns-buttons a,
.sns-follow.sf-widget .sns-buttons a {
	width: 40px; /*横幅*/
	height: 40px; /*高さ*/
	margin-right: 4px; /*右側の余白*/
	margin-left: 4px; /*左側の余白*/
	border-radius: 50%; /*丸み*/
}

/*プロフィールウィジェットのリンク*/
.sns-follow.sf-profile .sns-buttons a {
	border-radius: 50%; /*丸み*/
	background-color:#ffffff !important;
 border:10px;
}
.sns-follow.sf-profile .sns-buttons a :hover{border-radius: 50%; /*丸み*/
	background-color:#2f4f2b;
	padding:5px;
 }
/*シェアボタンのアイコン*/
.sns-share.ss-top .sns-buttons a .social-icon,
.sns-share.ss-bottom .sns-buttons a .social-icon {
	font-size: 18px; /*アイコンの大きさ*/
	color:#fff!important;
}
/*インスタのアイコン*/
.sns-follow.sf-widget .instagram-follow-button-sq {
  background: linear-gradient(-30deg,#FFDD83, #F26939 30%, #CF2E92 60%, #4C64D3);
}
/*フォローボタンのアイコン*/
.sns-follow.sf-bottom .sns-follow-buttons .follow-button,
.sns-follow.sf-widget .sns-follow-buttons .follow-button {
	font-size: 24px; /*アイコンの大きさ*/
	color:#fff!important;
}
.sns-follow-buttons a :hover{border-radius: 50%; /*丸み*/
	background-color:#2f4f2b;
	padding:10px;
 }
/*シェアボタンのキャプション*/
.sns-share.ss-top .sns-buttons a .button-caption,
.sns-share.ss-bottom .sns-buttons a .button-caption {
	display: none; /*非表示*/
}

/*シェア・フォローボタンのシェア数*/
.sns-share.ss-top .sns-buttons a .share-count,
.sns-share.ss-bottom .sns-buttons a .share-count,
.sns-follow.sf-bottom .sns-buttons a .follow-count,
.sns-follow.sf-widget .sns-buttons a .follow-count {
	right: -2px; /*右側からの距離*/
	bottom: -2px; /*下側からの距離*/
	padding: 2px; /*内側の余白*/
	font-size: 10px; /*文字の大きさ*/
	border: solid 1px; /*線*/
	border-radius: 3px; /*丸み*/
	background-color: inherit; /*背景色*/
}

/*シェア数の表示が必要ないシェア・フォローボタン*/
.sns-share.ss-top .sns-buttons a .share-count:empty,
.sns-share.ss-bottom .sns-buttons a .share-count:empty,
.sns-follow.sf-bottom .sns-buttons a .follow-count:empty,
.sns-follow.sf-widget .sns-buttons a .follow-count:empty {
	padding: 0; /*内側の余白*/
	border: 0; /*線*/
}


/*ブログ個別タイトルをheaderに表示*/
/* アニメーション付きカテゴリーヘッダー */

.custom-category-header {
  width: 100vw;
	position: relative;
  overflow: hidden;
	z-index: 1;
}

.custom-category-header-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
	z-index: 0;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;  
	background: linear-gradient(180deg, rgba(3, 153, 69, 0.04) 0%, rgba(17, 79, 44, 0.47) 100%);

}

.custom-category-header-text {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  padding: 1em;
	font-size:2.4em;
	font-weight: 600;
	 text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

/* ▼ アニメーション追加 */
.quote-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0 auto;
  flex-shrink: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-image {
  height: 3em;
  width: auto;
  display: block;
}

.quote-box {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 80%;
  word-break: break-word;
}

/* レスポンシブ */
@media screen and (max-width: 1030px) {
.custom-category-header-text {
 padding: 1em;
	font-size:2.05rem;
	font-weight: 600;
	}}
@media screen and (max-width: 768px) {
  .custom-category-header-bg {
    height: 40vh;
    min-height: 300px;
  }
.custom-category-header-text {
  padding: 1em;
	font-size:1.6rem;
	font-weight: 600;
}
  .quote-image {
    height: 2em;
  }

  .quote-box {
    font-size: 1.4rem;
  }
}

.custom-header-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
background-repeat:repeat-x;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
	animation: move-forever 15s linear infinite;

}

.wave-svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 100px;
  overflow: hidden;
z-index: 2; /* オーバーレイより下にしたい場合は2 */
 width: 200%;
 animation: waveMove 10s linear infinite; 
}

.wave3 path {
  fill: rgba(255, 255, 255, 0.7);
}
.wave-overlay path {
  fill: rgba(255, 255, 255, 1);
}
.wave-front path {
  fill: rgba(255, 255, 255, 0.3);
}

/* アニメーション遅延で奥行き感*/
.wave-back {
	  opacity: 0.2;
  z-index: 4;
  animation: waveMove3 30s linear infinite;
}
.wave2 {
	 opacity: 0.4;
	z-index: 3;
   animation: waveMove2 20s linear infinite;
}
.wave1 {
opacity: 1;
  z-index: 2;
 animation: waveMove1 15s linear infinite;
	max-height:50px;
}
#main #primary #content{padding: 3%;
  border-radius: 30px;
  margin: 3%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
	 text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);}

.home figure.wp-block-gallery.has-nested-images{justify-content:center;　align-items: center;　margin-bottom:0!important; padding-top:20px; padding-left:10px; margin-top:0!important;}
/*全てをまとめて非表示*/
/*フロント固定ページのタイトルを非表示*/
.home.page body{overflow:hidden;}
.home.page .entry-title{
  display: none;
}
/*全ページ*/
.container{overflow:hidden;}
/*ブログページ背景スクロール*/
.archive{background-attachment:scroll;}
.single{background-attachment:scroll;}
/*ブログ個別タイトルを非表示
header.article-header.entry-header h1.entry-title{display:none;}*/

/*ブログタイトルを表示
.tagline {
 text-align: center;
margin: 0.6em 0em 0.6em 1em ;
border-radius:50px 0 0 50px ;
background-color:#fff; 
padding:5px ; 
font-size:36px; font-weight: 900;
display:none;}*/
/*カテゴリーブログ本文部分を非表示*/
h1#archive-title.archive-title{display:none;}
.post.article{
  padding: 3%;
  border-radius: 30px;
  margin: 3%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);}
/*コンテンツ右側の詰まりを解消*/
.article ul, .article ol{padding-right:26px!important;}
/*フロント固定ページのシェアボタンを非表示*/
.home.page .sns-share{
  display: none;
}
.page .sns-share-message{display:none;}
.page .sns-share-buttons{display:none;}
/*フロント固定ページのフォローボタンを非表示*/
.home.page .main .sns-follow{
  display: none;
}

/*フロント固定ページの投稿日を非表示*/
.home.page .post-date{
  display: none;
}

/*フロント固定ページの更新日を非表示*/
.home.page .post-update{
  display: none;
}
/*エントリーカードを非表示*/
.admin-pv{
    display: none;
}
/* 元のロゴ画像を非表示 */
.logo > a img {
display:none;
}
.logo > a .site-name-text {
display: none;	 
background-size:100%;
background-position: center; 
margin-top:-5%; padding:0;  
	}

.hone.page .twitter-timeline-rendered{margin-top:3%!important;}
/*フロント固定ページの投稿者名を非表示*/
.home.page .author-info{
  display: none;
}
/*フロント固定ページのヘッダー固定背景を非表示*/
.home.page #header-container{display:none;}

/*固定ページmainのpaddingを消去*/
.page #main{padding:0;}
.content {
  margin-top: 0px;
}
/*更新日時を非表示*/
.page .date-tags {
    display: none;
}
/*元気村ページ内ボックスメニューマージン,大きさの設定*/
.page-id-184 .box-menus .box-menu {
  border-radius: 0 !important;
}

@media screen and (min-width: 835px) {
.page-id-184 .box-menus .box-menu {
    width: 10% !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 834px) {
.page-id-184 .box-menus .box-menu {
    width: 22% !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }
}

.page-id-184 .box-menu:hover {
  background-color:#c6e1b961!important;
  opacity: 0.4;
}
.page-id-184 .box-menu-icon {
  font-size: 30px!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-id-184 .box-menu-icon * {
  max-width: 50px!important;
  max-height:30px!important;
  height: auto;
  display: inline-block;
}
.page-id-184 .box-menu-icon img {
  font-size: 30px!important;
  border: none;
  box-shadow: none;
}

.page-id-184 .box-menus .box-menu-icon * {
  margin: 5px 0 !important;
}

.page-id-184 .box-menu-label {
  font-size: 12px!important;
  font-weight: 500;
}
/*あったかページ内ボックスメニューマージン,大きさの設定*/
/* 固定メニューのボックス */
.page-id-1729 .c-underline-anim.animate{margin-bottom:0;}
.page-id-1729 .box-menus .box-menu {
  border-radius: 0 !important;
}
.micro-balloon-icon.micro-icon.fab-info-circle::before {color: #44915b;}
.wp-block-group.is-layout-constrained.wp-container-core-group-is-layout-7a3688e9.wp-block-group-is-layout-constrained{margin-bottom:5px;}
.fa-info-circle::before{color: #75b773;}
.fa-pen::before{color: #888;}
.fa-sitemap::before {color: #7cb3d5;}
.fa-user-tie::before {color: #83918c;}
.fa-book-open::before {color: #61649d;}
.fa-building::before {color: #9d9d9d;}
@media screen and (min-width: 739px){
.page-id-1729 .box-menus .box-menu {
    width: 15% !important;
    margin-right: 0 !important;
    margin-top: 10px !important;
  }
}
@media screen and (min-width: 501px) and (max-width: 738px) {
.page-id-1729 .box-menus .box-menu {
    width: 22% !important;
    margin-right: 0 !important;
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 500px) {
.page-id-1729 .box-menus .box-menu {
    margin-right: 0 !important;
	 margin-top: 0 !important;
  }
}

.page-id-1729 .box-menu:hover {
  background-color:#c6e1b961!important;
  opacity: 0.4;
}
.page-id-1729 .box-menu-icon {
  font-size: 30px!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-id-1729 .box-menu-icon * {
  max-width: 50px!important;
  max-height:30px!important;
  height: auto;
  display: inline-block;
}
.page-id-1729 .box-menu-icon img {
  font-size: 30px!important;
  border: none;
  box-shadow: none;
}

.page-id-1729 .box-menus .box-menu-icon * {
  margin: 2px 0 !important;
}

.page-id-1729 .box-menu-label {
  font-size: 12px!important;
	padding:2px 0!important;
	margin:0;
  font-weight: 500;
}
/*入会案内リスト*/
.page-id-4127 .wp-block-list.is-style-numeric-list-step.has-list-style{padding-right:5px!important;}
.tab-caption-box-content{padding: 0.4em 0.25em!important;}
@media screen and (max-width: 834px) {
.page-id-4127 .article ul, .article ol {
    padding-left: 0!important;
  }
}
.page-id-4127 .btn-l.btn-circle::after, .ranking-item-link-buttons a.btn-circle::after, .btn-wrap.btn-wrap-l.btn-wrap-circle > a::after{right:0;}
/*集落活動センターあおぞらボックス,大きさの設定*/
.page-id-3724 .article ul{padding-right:0!important; padding-left: 10px;}
.page-id-3724 .box-menus .box-menu {
  border-radius: 0 !important;
}
.page-id-3724 [class*="is-style-icon-list-"] > li {
  padding-left: 1.2em;
  position: relative;
}
.page-id-3724 .box-menu-icon .fa-user::before{
color: #009843!important;}
.page-id-3724 .box-menu-icon .fa-heart::before{
color: #ff6baa!important;}
.page-id-3724 .box-menu-icon .fa-book::before{
color: #5d7b95!important;}

.micro-balloon-icon.micro-icon.fab-info-circle::before {color: #44915b;}
.wp-block-group.is-layout-constrained.wp-container-core-group-is-layout-7a3688e9.wp-block-group-is-layout-constrained{margin-bottom:5px;}

@media screen and (min-width: 739px){
.page-id-3724 .box-menus .box-menu {
    margin-right: 0 !important;
    margin-top: 10px !important;
	min-height:auto;
	
  }
}
@media screen and (min-width: 501px) and (max-width: 738px) {
.page-id-3724 .box-menus .box-menu {
    width: 22% !important;
    margin-right: 0 !important;
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 500px) {
.page-id-3724 .box-menus .box-menu {
    margin-right: 0 !important;
    margin-top: 0 !important;
	min-height:50px;
  }
}

.page-id-3724 .box-menu:hover {
  background-color:#c6e1b961!important;
  opacity: 0.4;
}
.page-id-3724 .box-menu-icon {
  font-size: 30px!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-id-3724 .box-menu-icon * {
  max-width: 50px!important;
  max-height:30px!important;
  height: auto;
  display: inline-block;
}
.page-id-3724 .box-menu-icon img {
  font-size: 30px!important;
  border: none;
  box-shadow: none;
}

.page-id-3724 .box-menus .box-menu-icon * {
  margin: 2px 0 !important;
}

.page-id-3724 .box-menu-label {
  font-size: 12px!important;
	padding:2px 0!important;
	margin:0;
  font-weight: 500;
}
/*ボックスメニューマージン,大きさの設定*/
.box-menus{justify-content: center;
}
.box-menu:hover{
	box-shadow:none;
	opacity: 0.7;
}
.box-menus .box-menu {
	border-radius: 15px;}
@media screen and (min-width: 835px) {
.box-menus .box-menu {
width: 18%;
margin-right: 1%;
margin-top: 1%;
	}}
@media screen and (min-width:738px) and (max-width: 833px) {
.box-menus .box-menu {
width:25%;
margin-right: 2%;
margin-top: 2%;
	}
}
@media screen and (min-width:501px) and (max-width: 738px) {
.box-menus .box-menu {
width:30%;
margin-right: 2%;
margin-top: 2%;
	}
}
@media screen and (max-width: 500px) {
.box-menus .box-menu {
width:46%;
margin-right: 2%;
margin-top: 2%;
	}
}
@media screen and (max-width: 834px) {
.box-menu:last-child{}}
	@media screen and (min-width: 551px){p.covertext{font-size:38px!important;}}
	@media screen and (max-width: 550px){p.covertext{font-size:23px!important;}}
a.wp-block-latest-posts__post-title{color:rgba(0, 149, 92, 1)!important;}
a.wp-block-latest-posts__post-title:hover{color:rgba(124, 227, 0, 1)!important;}
 main#main.post.main{background:#fff;}
.home.page .tagline{display:none;}
.home.page .logo-text{padding:0;}
.navi-in{display:none;}
#header-in{background: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));}
.header-container{height:300px;}
.home.page #main{width:100%;padding:20px 0!important;}
.home.page .main {background: none;}
/*フッター設定*/
#footer .author-thumb{display:none!important;}
#footer a{color: #fff;}
#footer .widget_nav_menu ul li a{padding:0;}
#footer{background-color:#009742; padding-top:30px; padding-left: 0; padding-right:0; padding-bottom:0;color:#fff;} 
@media screen and (min-width: 835px){
.navi-footer-in > .menu-footer li{border-left: 1px solid #fff!important; color:#fff;}
	.navi-footer-in > .menu-footer li:last-child{border-right: 1px solid #fff!important;}}
@media screen and (max-width: 834px){
	#navi-footer-in{display:flex!important; justify-content:flex-end;}.navi-footer-in > .menu-footer a {font-size:10px; color:#fff;}
.footer-bottom.fnm-text-width .menu-footer li{width:auto!important;}}
@media screen and (max-width: 480px){#navi-footer-in a{font-size:8px!important; color:#fff;}
#navi-footer-in{display:flex!important; font-size:8px!important; justify-content:flex-end;} .navi-footer-in > .menu-footer a {font-size:10px;}}
#author_box-3{background:none; padding:0;}
#footer .sns-button .follow-button a{color:#fff!important;}
.author-box.border-element.no-icon.cf{padding:0;}
.author-content{padding:0!important;}
.author-description{display:inline-block; text-align:left!important; margin:auto; align-items:center;}
.author-description a{text-decoration:underline;}
.nwa .author-box a {text-align: center; color: #fff!important;}
.nwa .author-box a:hover {color: #a7e1ad!important;}
.footer-divider {
  position: absolute;
  top: -60px; /* 上に重ねる位置を調整 */
  left: 0;
  width: 100%;
  height: 60px;
  background: url('/wp-content/uploads/2025/08/subfooter_recolored.png') repeat-x top center;
  background-size: cover;
  z-index: 2;
}
.footer .footer-bottom{ padding-left: 0; padding-right:0; padding-bottom:0;}
.footer .source-org{background-color:#a7e1ad; margin:0; padding:0; width:100%; text-align:center;color:#000;}
.footer .wrap{margin-right:0; margin-left:0; width:100%; overflow:hidden;}
.footer a:hover{background:none!important; color: #a7e1ad;}
.widget_author_box{background:#fff; border-radius:20px;}
.author-box{border:0; }
#author_box-2{box-shadow: 5px 5px 10px rgba(6, 59, 32, 0.39); }
.nwa .author-box .author-description{text-align:center;}


.home.page .wp-container-4 img{border:solid 2px #fff; box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, .2);}
.wp-container-4 .wp-image-57 { 
	animation:  move-y 1s infinite alternate ease-in-out;
  opacity: 1;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
.wp-container-4 .wp-image-56 { animation:  move-y 1.5s infinite alternate ease-in-out;
  opacity: 1;
}
@keyframes move-y {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(40px);
  }
}
.wp-container-4 .wp-image-53 { animation:  move-y 2s infinite alternate ease-in-out;
  opacity: 1;
}
@keyframes move-y {
  from {
    transform: translateY(50px);
  }
  to {
    transform: translateY(0px);
  }
}
.wp-container-4 .wp-image-55{animation:  move-y 3s infinite alternate ease-in-out;
  opacity: 1;
}
@keyframes move-y {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0px);
  }
}
.wp-container-4 .wp-image-51{animation:  move-y 2s infinite alternate ease-in-out;
  opacity: 1;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(30px);
  }
}
.has-bottom-margin.is-style-bottom-margin-1em {
	margin-bottom: 1.8em !important;}
#post-17{min-height:100%;}
#post-17 figcaption
 {position:relative;
	 top:0;
	 margin-top:-40%;
	 text-align:center;
color:#fff!important;
font-size:12px;
	opacity:1;
}
.custom-sankaku-bottom{
   clip-path: polygon(0 0,100% 0,100% calc(100% - 50px),50% 100%,0 calc(100% - 50px));
}

.cstm-clip-top-bottom-r {
  clip-path: polygon(0 7vmin, 100% 0, 100% calc(100% - 7vmin), 0 100%);
}
.cstm-wave-top-bottom {
  --mask:
    radial-gradient(33.6px at 50% 47px, #000 99%, #0000 101%) calc(50% - 40px) 0/80px 51% repeat-x,
    radial-gradient(33.6px at 50% -27px, #0000 99%, #000 101%) 50% 20px/80px calc(51% - 20px) repeat-x,
    radial-gradient(33.6px at 50% calc(100% - 47px), #000 99%, #0000 101%) calc(50% - 40px) 100%/80px 51% repeat-x,
    radial-gradient(33.6px at 50% calc(100% + 27px), #0000 99%, #000 101%) 50% calc(100% - 20px)/80px calc(51% - 20px) repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);

  @media (max-width: 1023px) {
    --mask:
      radial-gradient(30.24px at 50% 42.3px, #000 99%, #0000 101%) calc(50% - 36px) 0/72px 51% repeat-x,
      radial-gradient(30.24px at 50% -24.3px, #0000 99%, #000 101%) 50% 18px/72px calc(51% - 18px) repeat-x,
      radial-gradient(30.24px at 50% calc(100% - 42.3px), #000 99%, #0000 101%) calc(50% - 36px) 100%/72px 51% repeat-x,
      radial-gradient(30.24px at 50% calc(100% + 24.3px), #0000 99%, #000 101%) 50% calc(100% - 18px)/72px calc(51% - 18px) repeat-x;

    @media (max-height: 500px) {
      --mask:
        radial-gradient(16.01px at 50% 22.5px, #000 99%, #0000 101%) calc(50% - 20px) 0/40px 51% repeat-x,
        radial-gradient(16.01px at 50% -12.5px, #0000 99%, #000 101%) 50% 10px/40px calc(51% - 10px) repeat-x,
        radial-gradient(16.01px at 50% calc(100% - 22.5px), #000 99%, #0000 101%) calc(50% - 20px) 100%/40px 51% repeat-x,
        radial-gradient(16.01px at 50% calc(100% + 12.5px), #0000 99%, #000 101%) 50% calc(100% - 10px)/40px calc(51% - 10px) repeat-x;
    }
  }

  @media (max-width: 480px) {
    --mask:
      radial-gradient(16.01px at 50% 22.5px, #000 99%, #0000 101%) calc(50% - 20px) 0/40px 51% repeat-x,
      radial-gradient(16.01px at 50% -12.5px, #0000 99%, #000 101%) 50% 10px/40px calc(51% - 10px) repeat-x,
      radial-gradient(16.01px at 50% calc(100% - 22.5px), #000 99%, #0000 101%) calc(50% - 20px) 100%/40px 51% repeat-x,
      radial-gradient(16.01px at 50% calc(100% + 12.5px), #0000 99%, #000 101%) 50% calc(100% - 10px)/40px calc(51% - 10px) repeat-x;
  }
}
.cstm-curved-edge-top-bottom {
  --c: 78px;
  mask: radial-gradient(60% var(--c) at 50% var(--c), #0000 calc(100% - 2px), #000) 0 calc(-1*var(--c));

  @media (max-width: 1023px) {
    --c: 58px;

    @media (max-height: 500px) {
      --c: 33px;
    }
  }

  @media (max-width: 480px) {
    --c: 33px;
  }
}

#post-17 .blank-box.bb-tab, .bb-tab.is-style-blank-box-red, .bb-tab.is-style-blank-box-navy, .bb-tab.is-style-blank-box-blue, .bb-tab.is-style-blank-box-yellow, .bb-tab.is-style-blank-box-green, .bb-tab.is-style-blank-box-pink, .bb-tab.is-style-blank-box-orange, .bb-tab.is-style-sticky-gray, .bb-tab.is-style-sticky-yellow, .bb-tab.is-style-sticky-red, .bb-tab.is-style-sticky-blue, .bb-tab.is-style-sticky-green{
  border-radius:0 10px 10px 10px;
	margin:1em;
}
#post-17 .wp-block-button__link.has-background.has-text-align-center.wp-element-button a:hover{background-color: rgba(0,0,0,0.6);!important; color:#fff!important;}
#post-17 .new-entry-card-link.widget-entry-card-link.a-wrap:hover {
  background-color: #d2e3d9!important;}
#post-17 figure.wp-block-image.size-thumbnail.is-style-rounded.a:hover{
  transform: scale(1.2) rotate(9deg);
  transition-duration: 0.5s;
}
#post-17 .content{overflow:hidden; }
.wp-container-3.wp-block-cover .sns-cover-title{margin:0; padding:2px;}
.mobile-menu-buttons .menu-button{width: calc( 100% - 70px ) ;}
#post-17 .wp-block-cover, .wp-block-cover-image {width:100%; padding:0; margin:0 ;}
 @media (min-width: 600px){
#post-17 .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image{width: auto!important; min-width:250px;}}
#post-17 .wp-block-navigation .wp-block-navigation-item{align-items: flex-start;}
.article ul li{margin:0;}
#post-17 hr {height:10px; border:none; background-image: linear-gradient(0deg, rgba(104, 70, 46, 1), rgba(170, 112, 73, 1));}
#post-17 .wp-block-gallery.has-nested-images figure.wp-block-image{flex-grow: 0!important;}
#post-17 .wp-container-3{margin-bottom:0!important;}
#post-17 .wp-container-6 .wp-block-cocoon-blocks-blank-box-1{margin:0 3%;}
#post-17 .wp-container-7 .wp-block-cocoon-blocks-blank-box-1{margin:0 3%;}
#post-17 .wp-block-columns{margin:3%!important;}
#post-17 .wp-container-2{margin:0 3%!important;}
#post-17 .wp-block-cocoon-blocks-blank-box-1{border-radius:10px; border:2px solid #999 ; box-shadow: inset 0.1em 0.1em 0.3em #888; margin-left:3%!important; margin-right:3%;}
.home.page .article h3{margin-bottom:1%;}
 .archive.wrap #content-in{padding:20px 20px 0 20px;}
#footer .wrap{padding:0!important;}
.go-to-top-button{ border-radius: 30px;}
.go-to-top-button:hover {
  color: #f6fa7f;
  background-color:#25ba68;
}
/* カラム落ち問題 */
.content-in{justify-content:center;flex-wrap: nowrap;}
#menu-main-menu-1.menu-footer{justify-content: center;}
.single{/*.background-color:#0fa650;*/z-index:1}
.archive{/*background-color:#0fa650;*/z-index:1}
.content-bottom{margin:0!important;}
.footer-in .wrap {margin-top:-11px;}
.footer{margin-top:-11px!important;}
aside.widget-content-bottom{margin-bottom:0!important; }
#content-bottom-in{width:100%; background-image: repeat-x;}
#footer-in{margin-top:-10px!important;}
.subfooter{ width:100%;}
.archive .wrap {padding:0;}
.menu-main-menu-container {text-align:center;}
.footer-title{text-align:center;}
.menu-main-menu-container li:hover{text-decoration:underline; color:#fff;}
.home .wp-block-group{margin-bottom:0!important; }
.wp-block-cocoon-blocks-balloon-ex-box-1.speech-wrap{padding:3% 3% 0 3%; justify-content:center;}
#post-17#content-bottom-in{margin-top:-100px; min-width:100%c;}
#content-bottom-in img{ min-width:100%!important;}
h1.entry-title{
margin-top:1%;
}
.tagline {
    text-align: center;
    margin: 2.6em 0em 0.6em 1em;
    border-radius: 50px 0 0 50px;
    background-color: #fff;
    padding: 5px;
    font-size: 36px;
    font-weight: 900;
}
 #main#post-1{background:#fff;}
.post main#main.main{background:#fff;}

.home.page .speech-person{width:20%!important;}
.home.page .speech-icon img{border: 3px solid #fff;}
.home.page .speech-name{padding:5px; }
.home.page .speech-balloon{border-radius:20px; padding-bottom:20px;}
.home.page .speech-balloon::before{top:30px;}
.home.page .speech-balloon::after{top:30px;}
.home.page .wp-block-cocoon-blocks-balloon-ex-box-1.speech-wrap {
    padding: 5% 3% 5% 3%;
    justify-content: center;
}
.home.page .article h3{margin-top:10px; margin-left: -30px;}
.home.page .article h3 {
  border-left: 0;
border-right: 0px;
 border-top: 0px ;
border-bottom: 0px;
    font-size: 22px;
    padding: 12px 20px;
}
.home.page .article h3{    border-radius: 5px 20px 20px 5px;}
.home.page .has-indigo-background-color{ background-image: linear-gradient(90deg, rgba(65, 164, 253, 1), rgba(6, 66, 138, 1));}
.home.page .has-green-background-color{ background-image: linear-gradient(90deg, rgba(89, 248, 57, 1), rgba(41, 141, 8, 1));}
.home.page .has-pink-background-color{background-image: linear-gradient(90deg, rgba(255, 55, 216, 1), rgba(161, 15, 255, 1));}
.page-id-3{background:#fff;}
.speech-balloon.has-text-color.has-background.has-border-color.has-black-color.has-white-background-color.has-white-border-color{padding:3%;}
#post-17 a.wp-block-navigation-item__content:hover{color:#006400;}
.menu-close-button{ text-align: right; padding-right: 10px;}
@media screen and (max-width: 1023px) {
  body:where(.mblt-header-mobile-buttons, .mblt-header-and-footer-mobile-buttons) {
    margin-top: 0px!important;
  }
}

.entry-content{margin-bottom:0;}
/************************************
**投稿ページcss
************************************/
.post .wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:none; position: static; color:#000;}
ul.xoxo.blogroll{list-style-type:none; padding-left: 0px; text-align:center; font-size:14px;}


/************************************
** aboutページcss
************************************/
/*about固定ページ非表示一覧*/
#post-184 .page #header-container{display:none;}
#post-184 .c-underline-anim.animate{margin-bottom: 0px;}
#post-184 .wp-block-group.is-layout-constrained.wp-container-core-group-is-layout-e2a7c072.wp-block-group-is-layout-constrained{padding-top:3%;padding-bottom: 0px;margin-bottom: 0px;}
.main #post-184{padding:0!important; }
#post-184 .entry-content {margin:0; padding-top:10px;}
#post-184 .article-footer {margin:3%;}
#post-184 .entry-footer {margin:3%;}
.page-id-184 .wp-block-image .aligncenter{border-radius:10px; padding-left:3%; padding-right:3%; }
.page-id-184{
  background:none;}
.page.page-id-184 main{background:none;}
#post-184 .speech-name {
  padding: 2%;
	border-radius: 15px;}
#post-184 .speech-icon-image{border:3px solid #fff; }
#post-184 .speech-balloon::after{top:35px;}
#post-184 .speech-balloon::before{top:35px;}
#post-184 .speech-person{width:20%;}
#post-184 .speech-balloon{border-radius:30px; padding:3%; filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.1));}
#post-184.wp-block-cover.alignfull.is-light{padding:0;}
#post-184 .wp-block-cover {padding-right:0; padding-left:0;} 
#post-184 .wp-block-cover .wp-block-cover__background{ margin:3% 3% 0 3%; padding-top:1% ; padding-bottom:0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
	 text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);}
#post-184 .has-text-align-right{margin:3%; }
#post-184 .has-midnight-gradient-background:hover{
  background-image: linear-gradient(90deg, rgba(103, 126, 250, 1), rgba(142, 84, 219, 1))!important;}
#post-184 .wp-block-media-text.is-stacked-on-mobile.is-image-fill{width:90%; }
#post-184 .wp-block-media-text .wp-block-media-text__media{margin: 0 0 0 5%;}
#post-184 .houjingaiyou{margin:5%!important;}
#post-184 li.has-text-color.has-blue-color.has-background.has-white-background-color.has-small-font-size.wp-block-navigation-item.wp-block-navigation-link:hover{background-color:#87CEFA!important; color:#fff;}
#post-184 .wp-container-11.has-white-background-color.has-background{width:90%; margin:5%; padding:3%;}
#post-184 .wp-block-navigation__container{margin-bottom:0;}
#post-184 .wp-container-2.is-content-justification-center.has-text-color.has-blue-color.has-background.has-white-background-color.items-justified-center.wp-block-navigation{margin:0 3%;}
#post-184 .wp-block-column.is-vertically-aligned-top{flex-basis: 100%;}
.article h5 {margin-top:0!important;   font-size: 20px;   padding: 5px; }
#post-184 table th, #post-184 table td {background: #fff; border:none;min-width: 110px;
}
#post-184 table td {font-size:13px;}
.is-style-stripes #post-184 table th, #post-184 table td {vertical-align: text-top;}
#post-184 .aligncenter.size-full.is-resized{width:90%; border-radius:20px;}
.has-white-background-color.has-light-blue-border-color{margin: 0 5%!important;}
#post-184 .rogohoujin {margin:20% 0;}
#post-184.wp-block-image:not(.is-style-rounded)>a, .wp-block-image:not(.is-style-rounded) img{margin:0 auto; }
#post-184 .wp-block-media-text__media{width:80%; }
#post-184 .wp-block-media-text__content{filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.1));}
@media screen and (max-width: 600px){
	#post-184 .wp-block-media-text .wp-block-media-text__media{margin: 5% 10% 5% 10%; }
	#post-184 .box-menu-box.block-box.box-menu-27{margin-top:30px;}	
	}
@media screen and (min-width: 601px){
#post-184 .wp-block-media-text__media{width:100%;}}
@media screen and(min-width:601px) (max-width: 800px){
	#post-184 .box-menu-box.block-box.box-menu-27{margin-top:30px;}	}


/************************************
** aboutページcss あおぞら
************************************/
#post-3724 h2.c-underline-anim.animate{margin-bottom:0px;}
.main #post-3724{padding:0!important; }
#post-3724 .entry-content {margin:3% 3% 0 3%; }
#post-3724 .article-footer {margin:3%;}
#post-3724 .entry-footer {margin:3%;}
.page-id-3724 .wp-block-image .aligncenter{border-radius:10px; padding-left:3%; padding-right:3%; }
.page-id-3724{
  background:none;}
#post-3724 .speech-icon-image{border:3px solid #fff; }
#post-3724 .speech-balloon::after{top:35px;}
#post-3724 .speech-balloon::before{top:35px;}
#post-3724 .speech-person{width:20%;}
#post-3724 .speech-balloon{border-radius:30px; padding:3%; filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.1));}
#post-3724.wp-block-cover.alignfull.is-light{padding:0;}
#post-3724 .wp-block-cover {padding-right:0; padding-left:0;} 
#post-3724 .wp-block-cover .wp-block-cover__background{ margin:3% 3% 0 3%; padding-top:1% ; padding-bottom:0;border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
	 text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);}
#post-3724 .has-text-align-right{margin:2%; }
#post-3724 .has-midnight-gradient-background:hover{
  background-image: linear-gradient(90deg, rgba(103, 126, 250, 1), rgba(142, 84, 219, 1))!important;}
#post-3724 .wp-block-media-text.is-stacked-on-mobile.is-image-fill{width:90%; }
#post-3724 .wp-block-media-text .wp-block-media-text__media{margin: 0 0 0 5%;}
#post-3724 .houjingaiyou{margin:5%!important;}
#post-3724 li.has-text-color.has-blue-color.has-background.has-white-background-color.has-small-font-size.wp-block-navigation-item.wp-block-navigation-link:hover{background-color:#87CEFA!important; color:#fff;}
#post-3724 .wp-container-11.has-white-background-color.has-background{width:90%; margin:5%; padding:3%;}
#post-3724 .wp-block-navigation__container{margin-bottom:0;}
#post-3724 .wp-container-2.is-content-justification-center.has-text-color.has-blue-color.has-background.has-white-background-color.items-justified-center.wp-block-navigation{margin:0 3%;}
#post-3724 .wp-block-column.is-vertically-aligned-top{flex-basis: 100%;}
.article h5 {margin-top:0!important;}
#post-3724 table th, #post-3724 table td {background: #fff; border:none;min-width: 110px;
}
#post-3724 table td {font-size:13px;}
.is-style-stripes #post-3724 table th, #post-3724 table td {vertical-align: text-top;}
#post-3724 .aligncenter.size-full.is-resized{width:90%; border-radius:20px;}
.has-white-background-color.has-light-blue-border-color{margin: 0 5%!important;}
#post-3724 .rogohoujin {margin:20% 0;}
#post-3724.wp-block-image:not(.is-style-rounded)>a, .wp-block-image:not(.is-style-rounded) img{margin:0 auto; }
#post-3724 .wp-block-media-text__media{width:80%; }
#post-3724 .wp-block-media-text__content{filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.1));}
@media screen and (max-width: 600px){
	#post-3724 .wp-block-media-text .wp-block-media-text__media{margin: 5% 10% 5% 10%; }
	}
@media screen and (min-width: 601px){
#post-3724 .wp-block-media-text__media{width:100%;}}
/* 背景あったか・あおぞら共通 */

/************************************
** aboutページcss あったか
************************************/
#post-1729 .wp-block-cover .wp-block-cover__background{ 
margin: 3%;
  padding-top: 1%;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);}}
.main #post-1729{padding:0!important; }
#post-1729 .entry-content {margin:0%;}
#post-1729.article-footer {margin:3%;}
#post-1729 .entry-footer {margin:3%;}
.page-id-1729 .wp-block-image .aligncenter{border-radius:10px; padding-left:3%; padding-right:3%; }
.page-id-1729{
  background:none;}
#post-1729 .speech-icon-image{border:3px solid #fff; }
#post-1729 .speech-balloon::after{top:35px;}
#post-1729 .speech-balloon::before{top:35px;}
#post-1729 .speech-person{width:20%;}
#post-1729 .speech-balloon{border-radius:30px; padding:3%; filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.1));}
#post-1729.wp-block-cover.alignfull.is-light{padding:0;}
#post-1729 .wp-block-cover {padding-right:0; padding-left:0;} 
#post-1729 .has-text-align-right{margin:2%; }
#post-1729 .has-midnight-gradient-background:hover{
  background-image: linear-gradient(90deg, rgba(103, 126, 250, 1), rgba(142, 84, 219, 1))!important;}
#post-1729 .wp-block-media-text.is-stacked-on-mobile.is-image-fill{width:90%; }
#post-1729 .wp-block-media-text .wp-block-media-text__media{margin: 0 0 0 5%;}
#post-1729 .houjingaiyou{margin:5%!important;}
#post-1729 li.has-text-color.has-blue-color.has-background.has-white-background-color.has-small-font-size.wp-block-navigation-item.wp-block-navigation-link:hover{background-color:#87CEFA!important; color:#fff;}
#post-1729 .wp-container-11.has-white-background-color.has-background{width:90%; margin:5%; padding:3%;}
#post-1729 .wp-block-navigation__container{margin-bottom:0;}
#post-1729 .wp-container-2.is-content-justification-center.has-text-color.has-blue-color.has-background.has-white-background-color.items-justified-center.wp-block-navigation{margin:0 3%;}
#post-1729 .wp-block-column.is-vertically-aligned-top{flex-basis: 100%;}
#post-1729 table th, #post-1729 table td {background: #fff; border:none;min-width: 110px;
}
#post-1729 table td {font-size:13px;}
.is-style-stripes #post-1729 table th, #post-1729 table td {vertical-align: text-top;}
#post-1729.aligncenter.size-full.is-resized{width:90%; border-radius:20px;}
.has-white-background-color.has-light-blue-border-color{margin: 0 5%!important;}
#post-1729 .rogohoujin {margin:20% 0;}
#post-1729.wp-block-image:not(.is-style-rounded)>a, .wp-block-image:not(.is-style-rounded) img{margin:0 auto; }
#post-1729 .wp-block-media-text__media{width:80%; }
#post-1729 .wp-block-media-text__content{filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.1));}
@media screen and (max-width: 600px){
	#post-1729 .wp-block-media-text .wp-block-media-text__media{margin: 5% 10% 5% 10%; }
	}
@media screen and (min-width: 601px){
#post-1729 .wp-block-media-text__media{width:100%;}}
/************************************
** contactページcss
************************************/
#wpcf7-f298-p304-o1{padding:0 10%;}
.page-id-304 #header-container{display:none;}
.page-id-304.page #main{padding:4% 0;}
#post-304 .article-footer.entry-footer{display:none;}
#post-304 .entry-title{display:none;}
.page .main{background:none; }
#post-304{padding: 1% 0;
  margin:5% 5% 0 5%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: solid 1px rgba(255,255,255,0.3);
  box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.1) inset;}
.wpcf7{width:80%; margin:auto;}
#post-304.header-container,#post-304.main,{background-image: linear-gradient(0deg, rgba(0, 169, 34, 1), rgba(4, 202, 255, 0)); border:none;}
.wp-block-preformatted.has-small-font-size{background:none; padding:0 10%; border:0;}
.wp-block-cocoon-blocks-button-1{width:80%;}
#wpcf7-f310-p304-o1 small{color:red;}


/************************************
** イベントリストページ
/*************************************
 * ▼ イベントカード一覧（グリッドレイアウト）
 *************************************/
@media screen and (max-width: 834px) {
  .ect-vertical-card .entry-card-wrap {
    width: 49%!important;
  }
}
.ect-3-columns {
  column-gap: 2%;
}
.ect-3-columns .entry-card-wrap {
  width: 32%;
}
/*イベントぱんくず*/
.my-breadcrumbs-tag {
margin-top: -50px;
  margin-left: 10%;
  font-size: 70%;
	position: relative;
  z-index: 2;
}
@media screen and (max-width: 700px) {
.my-breadcrumbs-tag {
margin-top: 0;
  margin-left: 10%;
	 margin-right: 10%;
  font-size: 70%;
	}}
.my-breadcrumbs-tag a {
    line-height: 1.2;
    text-decoration: none;
}

.my-breadcrumbs-tag a:hover {
	color: #009843;
}

.mycus-breadcrumbs-tag .fa-chevron-right {
margin-top: -3%;
  margin-left: 10%;
}

@media screen and (max-width: 480px) {
    .mycus-breadcrumbs-tag {
        font-size: 8px;
    }
}

/*カラーリングの変更*/

.my-breadcrumbs-tag a, .my-breadcrumbs-tag .fa-chevron-right {
	color: #888;
}
/*ここまで*/
/*フルカレンダー*/
.eo-fullcalendar-reset.fc-unthemed .fc-today {
background: #eafff2!important;
}
.fc-unthemed .fc-today {
	background: #eafff2!important;}
.eo-fullcalendar-responsive .fc-toolbar h2 {
  font-size: 130%;
  font-weight: 700;
}
@media (max-width: 512px) {
  .eo-fullcalendar-responsive .fc-toolbar h2 {
    text-align: center;
    font-size: 120%;
    padding-bottom: 2%;
    font-weight: 700;
  }
}
.eo-fullcalendar .fc-view-container .fc-view table tbody .fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table thead .fc-sun {
 color:#f4746b;
}
.fc-row.fc-widget-header {
  background-color: #b4d9b836;
}
.eo-fullcalendar .fc-view-container .fc-view table tbody .fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table thead .fc-sat{
 color:#689fed;
}
@media screen and (max-width: 500px){
	.fc-view-container{font-size:8px!important;}}
@media screen and (min-width:501px) and (max-width: 738px){
	.fc-view-container{font-size:10px!important;}}

/*詳細ページ内日付時間・メタ要素*/
.event h1.entry-title{
--r: .4em;
  --c: #4DA868;
  position: absolute;
  top: 20px;
  left: calc(-1*var(--r));
  line-height: 1.8;
  padding: 0 .5em calc(2*var(--r));
  border-radius: var(--r) 0 0 var(--r);
  background: radial-gradient(100% 50% at left,#4DA868 98%,#0000 101%) 100% 0/.5lh calc(100% - 2*var(--r)), radial-gradient(100% 50% at right,#0005 98%,#0000 101%) 0 100%/var(--r) calc(2*var(--r)), conic-gradient(from 90deg at var(--r) calc(100% - 2*var(--r)),#0000 25%,var(--c) 0) 0 0/calc(101% - .5lh) 100%;
  background-repeat: no-repeat;
  color: #fff;
}
.event-report p {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 16px;
  border: 2px solid #000000;
  border-radius: 9999px;
  background-color: #f56464;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.event-report p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
}

.event-report p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #f56464 transparent transparent;
  translate: -50% 100%;
}
.eo-sc-ymd {
font-size: 1.8em;
font-weight: 900;
margin: 0;
padding: 0;
line-height: 1;
}
.eo-venue-map {
border-radius: 10px;
border: solid 2px #009842;
}
.eo-sc-time {
font-size: 1.6em;
font-weight: 800;
margin: 0;
}
#primary #content .event.type-event.hentry{margin-top:6em;}
.eventorganiser-event-meta{margin-top:1em;}
@media screen and (max-width: 500px) {.eo-sc-ymd {
font-size: 1.3em;
font-weight: 900;
margin: 0;
padding: 0;
}
	.eo-sc-time {
font-size: 1.2em;
font-weight: 800;
margin: 0;
}}
@media screen and (max-width: 480px) {
  .entry-title, .article h2 {
    font-size: 20px;
    padding: 0.3em 0em 0.3em 0em;
  }
}
.eo-events.eo-events-shortcode.event-list {
  margin: 0 2%;
}
ul.event-list {
  margin: 0 auto;
  padding: 2rem 1rem 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  list-style: none;
  color: #333 !important;
}

/*************************************
 * ▼ カード本体
 *************************************/
.eo-event-card {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
  color: #333 !important;
}
.eo-event-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ▼ オーバーレイ効果 */
.eo-event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  pointer-events: none;
}
.eo-event-card:hover::before {
  opacity: 1;
}

/*************************************
 * ▼ サムネイル（画像あり／なし共通）
 *************************************/
.eo-event-thumbnail-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  position: relative;
}

/* 画像あり */
.eo-event-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.eo-event-card:hover .eo-event-thumb {
  transform: scale(1.1);
}

/* 画像なし（ダミー） */
.eo-event-thumb.eo-event-noimage {
  background: linear-gradient(135deg, #ddd, #bbb);
  color: #666;
  font-weight: bold;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/*************************************
 * ▼ 日付バッジ（画像の上に重ねる）
 *************************************/
.eo-event-date-badge {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #009843;
  border-radius: 2px;
  font-weight: bold;
  z-index: 30;
  width: 60px;
  text-align: center;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.35);
  border-radius: 3px;
	color: #fff;
}
.eo-event-month {
  font-size: 0.7em;
  line-height: 1.1;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #fff;
}
.eo-event-day {
font-size: 1.4em;
  line-height: 1.2;
  background: #fff;
	color:#000;
  margin: 0;
  padding-top: 3px;
  padding-bottom: 3px;
}
.eo-event-date-badge-2 {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #009843;
  z-index: 30;
  width: 80px;
  text-align: center;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.35);
  border-radius: 3px;
  color: #fff;
}
.eo-event-year-2 {
  line-height: 1.4;
  margin-bottom: 5px;
}
.eo-event-month-2 {
  font-size: 0.7em;
  line-height: 1.1;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #fff;
}
.eo-event-day-2 {
  font-size: 1.3em;
  line-height: 1.2;
  background: #fff;
  color: #000;
  margin: 0;
	transform: scaleY(1.5);}
.eo-event-weekday-2 {
  background: #fff;
  color: #000;
  line-height: 1.3;
  padding-bottom: 3px;
  font-size: 70%;
  padding-top: 5px;
  font-weight: normal;
}
li.eo-event-card:nth-child(n) {
padding-right: 0px;
}
/*************************************
 * ▼ コンテンツエリア（タイトル・抜粋）
 *************************************/
/* 地図コンテナにリボン用の位置調整 */
.eo-event-venue-map {
  position: relative;
  overflow: visible;
}

.eo-event-venue-map::before {
  content: "MAP";
 --f: .4em;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon( 100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
  transform-origin: 0% 100%;
  background-color: #e63020;
  z-index: 9999;
  color: #fff;
  font-weight: bolder;
}
.eo-event-content-area {
  flex: 1;
  padding: 1em;
  display: flex;
  flex-direction: column;
}

/* タイトル */
h3.eo-event-title {
  border: none !important;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0.5em 0 0.3em;
  line-height: 1.4;
  color: #333 !important;
}
h3.eo-event-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
  position: relative;
}
h3.eo-event-title a:hover {
  color: #7db7a9 !important;
}
h3.eo-event-title a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #7db7a9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
h3.eo-event-title a:hover::after {
  transform: scaleX(1);
}

/* 抜粋 */
.eo-event-excerpt {
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
  padding: 10px 0 0;
}


/*イベントカテゴリーリスト */
#eo_fullcalendar_1,#eo_fullcalendar_1_loading{margin-left:10%; margin-right:10%;}
.circle-category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
   justify-content: flex-start;
  margin-top: 30px;
	align-content:center;
}
.circle-category-cards{margin-left:6%; margin-right:6%;}
.custom-header-for-cards{display:none;}
.circle-card {
  width: 22.8%;
  min-height: 300px; /* 高さを伸ばして楕円形に */
  border-radius: 5% / 5%; /* 横50%、縦40%で楕円に */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  text-align: center;
  background-color: #f4f4f4;
}

.circle-card:hover {
  transform: scale(1.05);
}

.circle-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.circle-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.circle-card-top {
height: 50%;
  background-color: #fff;
  padding: 0px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.circle-card-top h5 {
  margin: 0 0 6px;
  font-weight: bold;
  line-height: 1.3;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.circle-card-top p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  max-height: 4.5em; /* 約3行まで */
  overflow: hidden;
  text-overflow: ellipsis;
}

.circle-card-bottom {
  position: relative;
  height: 50%;
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.circle-card:hover .circle-card-bottom {
  transform: scale(1.08); /* ズーム */
	filter: brightness(1.1); /* 明るく（フェード感） */}

.circle-card-noimg {
  background-color: #ccc;
}

@media (min-width: 931px) {
  .circle-category-cards {
    justify-content:flex-start; /* スマホでは中央揃えにしてバランスを取る */
  }
}
@media (max-width: 930px) {
  .circle-card {
    width: calc(50% - 12px); /* gap 24px の半分引いて2列に */
  }

  .circle-category-cards {
    justify-content: center; /* スマホ時のみ中央揃えでも自然 */
  }
}

img.attachment-thumbnail.eo-event-thumbnail{max-width: 20%;
  height: auto;
  vertical-align: middle;}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*pc2*/
@media screen and (min-width: 1023px){
	.single.sidebar{    padding: 1.5%;
    width: 28%;
    margin: 0 1% 0 0.5%;
}
 .main{margin-right:10px;}
.single .content{margin-top:40px; margin-left:20px; margin-right:20px;}
.archive .content{margin-top:40px; margin-left:20px; margin-right:20px;}

	}

/*pc*/
@media screen and (min-width: 800px){
 /*必要ならばここにコードを書く*/
.wp-container-2 img{width:200px; height:auto; }}
.footer-bottom-content{display:inline-block;width:100%;}
.footer-bottom-logo{position:static;}
.navi-footer-in > .menu-footer li{border:none;}
.navi-footer-in > .menu-footer li:last-child{border:none;}
.mobile-header-menu-buttons {
    display: flex;
    align-items: stretch;
  }
  .mobile-menu-buttons > li {
    padding-top: 3px;
  }
  .mobile-header-menu-buttons {
    top: 0;
    bottom: auto;
    justify-content:space-between;
    min-width: 46px;
    z-index: 3;
    box-shadow: 0 0 5px darkgrey;
  }
.has-logo-button .logo-menu-button {
    flex-grow: 99;
}
.mobile-header-menu-buttons {
    margin-top:0px;
}
.mobile-header-menu-buttons li .navi-menu-button .menu-button{width:10%!important;}
.has-logo-button .menu-button {
    width: 70px;
}
}

#post-17 figcaption{font-size:12px;}

#navi-footer-in{color:#fff;}
.navi-footer-in a{color: #fff!important;}
.navi-footer-in a:hover{color: #a7e1ad!important;}

	.admin-bar .mobile-header-menu-buttons {
    margin-top:0;
}
.archive .content{margin-top:40px; margin-left:20px; margin-right:20px;}
.single .content{margin-top:40px; margin-left:20px; margin-right:20px;}
	.single.sidebar{    padding: 1.5%;
    width: 28%;
    margin: 0 1% 0 0.5%;
}

  /*必要ならばここにコードを書く*/

}
/*safari*/
_:lang(x)+_:-webkit-full-screen-document,.kokubanmojibox{margin-right:13%!important;}
/*834px以下*/
@media screen and (max-width: 834px){
	#post-17 figcaption {text-shadow: 1px 1px 2px rgb(0 0 0);}
#navi-footer-in{display:none;}
  /*必要ならばここにコードを書く*/
.page-id-304 .content{margin-top:15%!important;}
	.home.page .wp-block-latest-posts__featured-image{margin-top:20px;}
.wp-container-6 .wp-block-cocoon-blocks-blank-box-1{margin-top: 4%;}
wp-container-7 .wp-block-cocoon-blocks-blank-box-1{margin-top: 4%;}
#post-17 figcaption{font-size:12px;}
.archive .content{margin-top:40px; margin-left:20px; margin-right:20px;}
.single .content{margin-top:20px; margin-left:0; margin-right:0;}
main.main, div.sidebar{margin: 20px;}
	.tagline{margin-top:20px;}
}
/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/

#post-17 figcaption {display: block;
    font-size: 10px;
	font-weight:bold;
   margin-top: -60px;
	padding-top:8px;
	line-height:1.2!important;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);}
	.page-id-184 .content {
   margin-top:0!;
  }
.wp-container-6 .wp-block-cocoon-blocks-blank-box-1{margin-top: 4%;}
.wp-container-7 .wp-block-cocoon-blocks-blank-box-1{margin-top: 4%;}
main.main, div.sidebar{margin: 20px;}
.logo > a .site-name-text {
display: none;	
	margin-left:1%; margin-right:3%;
background-position: center;
	  resize: both;
	margin-top:-2%; 
	}
.tagline{background-color:#fff; padding:5px ; margin-right:0; border-radius:50px 0 0 50px ; font-size:20px;  font-weight: 900;}

}

/*固定ページ更新日非表示*/
.page .date-tags {
display: none;
}
/*新着記事戻るボタン*/
.is-list-horizontal .swiper-button-prev{
  display: flex;
}
#breadcrumb{margin-left:5%;}
.author-info{display:none;}
.type-event .date-tags{display:none;}
.type-event .entry-meta{display:none;}

@media (min-width: 600px) {
  body.single-event .eo-event-venue-map {
    width: 100%!important;
    float: right;
  }
}
/************************************
** サイトマップ
************************************/
.page-id-440 h1.entry-title{display:none;}
/*その他 */
#post-389.entry-content{margin-top:3em;}
.ect-3-columns .entry-card-wrap{background:#e3eae4; padding:10px; border-radius:10px;}
.ect-3-columns .entry-card-wrap:hover{background:#94ce92;}
.wp-block-button.has-custom-width.wp-block-button__width-75:hover{
	border-radius: 100px;
	background:#94ce92;}
.recb-entry-border .related-entry-card-wrap{border-radius:10px;}
.date-tags{line-height: 0.5;
  text-align: left;}
.single .content{margin-top:0;
	}
.main{padding-top:0;}
@media screen and (min-width:700px) and (max-width:834px) {
  main.main, div.sidebar{
    padding: 32px 16px!important;
  }
}
@media screen and (max-width: 834px) {
  main.main, div.sidebar {
    padding: 0px 16px;
	  padding-top:6%;
  }
}

#slide-in-sidebar {
  display: block;
  padding-top: 0;
  width: 94%;
  padding-left: 3%;
  margin: 0;
}
.home.page .has-text-align-center.has-dark-grey-color.has-text-color.has-link-color.wp-elements-ae549f72f16a5bfed8cb84cb33a41b28{font-size:25px!important;}
	
@media screen and (max-width: 480px) {
.home.page .has-text-align-center.has-dark-grey-color.has-text-color.has-link-color.wp-elements-ae549f72f16a5bfed8cb84cb33a41b28{font-size:15px!important;}
	.home.page p.has-text-align-center{font-size:23px;}
	.home.page.has-text-align-center.is-style-bottom-margin-0em.has-bottom-margin{font-size:25px;}
}


@media (min-width: 600px) {
  body.single-event .eo-event-meta {
    width: 100%;
    float:unset!important;
  }
}
.eo-event-meta{list-style:none; padding-left: 0px; font-size: 1.2em; margin:0!important;}
.eo-event-meta strong{display:none;}
.eventorganiser-event-meta h4{display:none;}
.type-event .category-archive-meta{display:none;}
li{list-style:none; }
ul.eo-events-widget{padding-left:0; }
.fc-ltr .fc-basic-view .fc-day-number{padding-right: 3px!important;}
@media screen and (max-width: 600px){
	#post-1086 .eo-fullcalendar-reset{font-size:0.7em!important;}}
@media screen and (max-width: 400px){
		#post-1086 .eo-fullcalendar-reset{font-size:0.5em!important;}}
.grecaptcha-badge { visibility: hidden; }
.eo-event-meta time{font-size:3vw; font-weight:900;}
.event-plus {
  margin-top: 10px;
  margin-bottom: 30px;
}
.eve-fla {
  margin-bottom: 1%;
  display: block;
  border-radius: 10px;
  padding: 0;
}
.event-venuemeta p{font-size:110%; font-weight:500;}
.event-plus p {
  padding: 0 3px 5px 5px;
}

.event-plus b {
  display: block;
  padding: 1px;
  --r: .8em;
  border-block: .3em solid #0000;
  padding-inline: .5em calc(var(--r) + .25em);
  line-height: 1.5;
  clip-path: polygon(100% 0,0 0,0 100%,100% 100%,calc(100% - var(--r)) calc(100% - .25em),100% 50%,calc(100% - var(--r)) .25em);
  background: radial-gradient(.2em 50% at left,#2b573c78,#0000) border-box, #4da768 padding-box;
/* width: fit-content;*/
	color: #fff;}
.eo-event-time{font-size:150%; font-weight:500;}
.post .wp-block-gallery.has-nested-images figure.wp-block-image figcaption{padding-bottom:20px!important; max-height:0;}
.wrap {width:100%!important;}
td.eo-event-future{background-color:#00a3af;}
td.eo-event-future a{color:#fff;}
td.eo-event-future a:hover{color:#e8ff73;}
.is-layout-flex{gap:0.5rem}
figcaption.wp-element-caption{text-align:center;}
@media screen and (min-width: 600px)
{ul.eo-event-meta {
    width: 100%!important;
}
body .is-layout-flow > * + * {
	margin-block-start: 0;}}
ul.eo-upcoming-dates{padding-left:0;}