@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:	 cocoon-master
Version:		1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* 記事ヘッダーの並び順変更 */
/************************************
** 記事ヘッダー内の表示位置変更
************************************/

/* 記事ヘッダー */
.article-header {
    display: grid;
}

/* 日付 */
.article-header .date-tags {
    order: 1;
	
	text-align: left;
	font-size: 21px;
	margin: 0;
	padding: 0;
	line-height: 1;
}

/* タイトル */
.entry-title {
    order: 2;
}

/* 本文上カテゴリーとタグ */
.entry-categories-tags.ctdt-one-row {
    order: 3;
	margin-bottom: 0;
}

/* アイキャッチ */
.eye-catch-wrap {
    order: 4;
}

/* snsボタン */
.article-header .sns-share {
    order: 5;
}

/* PR表記 */
.pr-label {
    order: 6;
}

/* 本文余白調整 */
.content {
	margin-top: 0px;
}

.main {
	margin-top: 0px;
	padding: 0 !important;
}

.entry-content p {
	margin-bottom: 0.5em;
}

/* new_list 画像非表示 */
.new-entry-cards.no-image figure {
	display: none;
}
	
.new-entry-cards.no-image .new-entry-card-content {
	margin-left: 0;
}
	
/* new_list aタグ無効 */
.new-entry-cards.no-click a {
	pointer-events: none;
}

/* 固定ページタイトル装飾 */
.my-post-type-label-area h1.my-post-type-label,
.page .article-header .entry-title {
  text-align: center;
  margin: 1em 0;
  padding: 1em 0.5em;
  color: #1e90ff !important;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 1.0;
  border-bottom: solid 1px #1e90ff;
}

.my-post-type-label-area {
	font-size: 18px;
}

.my-post-type-label-area a {
	text-decoration: none;
}

/* 固定ページ日付なし */
.page .article-header .date-tags {
	display: none;
}

/* 投稿ページタイトル装飾 */
.single .article-header {
  margin: 1em 0 3em;
}

.single .article-header .entry-title {
  position: relative;
  padding: 0;
  color: #1e90ff !important;
  font-size: 1.3em;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.5;
}

/* h2装飾 */
.h2-design-01 {
  position: relative;
  text-align: center;
  margin: 40px 0 28px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #3f86d9 !important;
  letter-spacing: 0.04em;
}

.h2-design-01 span {
  position: relative;
  display: inline-block;
  padding: 0 44px;
}

/* 両脇のドット */
.h2-design-01 span::before,
.h2-design-01 span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 68px;
  height: 10px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.95;
}

.h2-design-01 span::before {
  left: -36px;
  background-image:
    radial-gradient(circle, #78c76a 0 6px, transparent 7px),
    radial-gradient(circle, #bfe7b7 0 3px, transparent 4px),
    radial-gradient(circle, #d9f1d3 0 2px, transparent 3px),
    radial-gradient(circle, #d9f1d3 0 2px, transparent 3px);
  background-size: 12px 12px, 8px 8px, 6px 6px, 6px 6px;
  background-position: 0 center, 22px center, 40px center, 54px center;
}

.h2-design-01 span::after {
  right: -36px;
  background-image:
    radial-gradient(circle, #78c76a 0 6px, transparent 7px),
    radial-gradient(circle, #bfe7b7 0 3px, transparent 4px),
    radial-gradient(circle, #d9f1d3 0 2px, transparent 3px),
    radial-gradient(circle, #d9f1d3 0 2px, transparent 3px);
  background-size: 12px 12px, 8px 8px, 6px 6px, 6px 6px;
  background-position: right 0 center, right 22px center, right 40px center, right 54px center;
}

/* 上下の細い緑ライン */
.h2-design-01::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: min(92%, 620px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(120, 199, 106, 0) 0%,
    rgba(120, 199, 106, 0.22) 12%,
    rgba(120, 199, 106, 0.9) 50%,
    rgba(120, 199, 106, 0.22) 88%,
    rgba(120, 199, 106, 0) 100%
  );
}

.h2-design-01::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: min(92%, 620px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(120, 199, 106, 0) 0%,
    rgba(120, 199, 106, 0.22) 12%,
    rgba(120, 199, 106, 0.9) 50%,
    rgba(120, 199, 106, 0.22) 88%,
    rgba(120, 199, 106, 0) 100%
  );
}

/* 続きを読む系ボタンの装飾 */
.my-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 14px 28px;
    border: 1px solid #3f86d9;
    border-radius: 999px;
    color: #3f86d9;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-decoration: none;
    position: relative;
	margin-bottom: 1.8em;
}

.my-more-btn:hover {
	transform: translateY(-1px);
	background: linear-gradient(180deg, #ffffff 0%, #f2faf3 100%);
	border-color: #3f79d0;
	color: #3f79d0;
}

.my-more-btn:active {
	transform: translateY(0);
	box-shadow:
    0 4px 10px rgba(74, 132, 216, 0.10),
    0 2px 6px rgba(130, 200, 120, 0.08);
}

.my-page-title-area {
	margin-bottom: 60px;
	padding: 15px;
	position: relative;
	width: 100%;
	text-align: center;
	color: #FFF !important;
	background: #1e90ff !important;
}

.my-page-title-area:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -18px;
	left: 0;
	width: 0;
	height: 0;
	margin: auto;
	border-style: solid;
	border-color: #1e90ff transparent transparent transparent;
	border-width: 33px 20px 0 20px;
}

.my-page-title-area .my-page-sub-title {
	margin: 0;
	color: #FFF !important;
	background: #1e90ff !important;
}

/* 横幅固定セクション */
.faq-cards,
.entry-manual-step,
.my-reports-slider,
.my-members-slider,
.my-news-list {
	max-width: 1000px;
	margin: 5vw auto;
}

/* 自作月フィルター */
.my-month-selectbox {
	width: 40%;
	margin: 2vw 0 2vw 55%;
}

/* 自作タグフィルター */
.my-tag-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 16px;
	margin: 0 auto 24px;
	padding: 0 !important;
	list-style: none;
}

.my-tag-filter-item {
	margin: 0;
}

.my-tag-filter-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	background: #e9e9e9;
	border-radius: 8px;
	color: #555;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	white-space: normal;
	word-break: keep-all;
	overflow-wrap: break-word;
	transition: background .2s ease, color .2s ease;
}

.my-tag-filter-item a:hover {
	background: #dff3e4;
	color: #2f8f4e;
}

.my-tag-filter-item.is-active a {
	background: #71c78a;
	color: #fff;
	font-weight: 700;
}

/* コンテンツ下部 */
#content-bottom-in {
  display: flex;
  gap: 20px;
}

#content-bottom-in .widget-content-bottom {
  flex: 1;
}

#content-bottom .widget_media_image {
	text-align: center;
	width: 30%;
	padding: 0;
	margin: 0;
}

/* フッター */
.footer-widgets, .footer-widgets-m {
	margin: 0;
}

.footer-mobile {
	padding: 0;
}

.footer-mobile .widget {
	margin-bottom: 0;
}

.footer-mobile .widget_media_image {
	text-align: center;
}

.footer-mobile .widget_media_image img {
	width: 60vw;
}

.footer-mobile .menu {
	font-weight: bold;
}

.footer-mobile .menu li {
	padding: 0px 0 0px 30px;
	position: relative;
}

.footer-mobile .menu li:before {
	position: absolute;
	content: "-";
	font-size: 15px;
	color: #1e90ff !important;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.footer-mobile .menu a {
	font-size: 13px;
	display: block;
	color: #505050 !important;
}

.footer-bottom {
	margin-top: 0;
	padding: 0;
}

.footer-bottom .copyright {
	margin-top: 0;
}

/* ご入会の流れ */
.entry-manual .entry-manual-step {
	padding: 0 3vw;
}

.entry-manual .entry-manual-step p {
	color: #000 !important;
}

/* new_listショートコードデザイン共通 */
.new-entry-card-thumb {
	height: 120px;
}

.new-entry-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* メンバー紹介 */
.my-member-list .new-entry-card-snippet {
  -webkit-line-clamp: 5 !important;
}

.single-member .entry-title {
	margin-bottom: 0.5em !important;
}

.single-member .entry-categories-tags {
	margin-bottom: 3em !important;
}

.single-member .entry-categories a {
	/* pointer-events: none; */
	color: #FFF;
	background: #1e90ff;
	border-radius: 0.4em;
}

.single-member .entry-categories a .tax-icon {
	display: none;
}

/* =========================
   グループ全体
========================= */
.member-group {
  background: #eef7ff;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
/**/
.member-group:nth-of-type(even) {
  background: #eef8f1;
}
/**/
/* =========================
   見出し行
========================= */
.member-group-title-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #2f8cff;
}

.member-group:nth-of-type(even) .member-group-title-row {
  border-bottom-color: #1f8b57;
}

.member-group-title {
  margin: 0 !important;
  display: inline-block;
  padding: 0.625rem 1rem;
  background: #fff;
  color: #222;
  border-radius: 0.25rem;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.member-group-count {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #444;
}

/* =========================
   カード一覧エリア
========================= */
.new-entry-cards.my-member-list {
  background: #fff;
  border-radius: 0.875rem;
  padding: 0 1rem;
  overflow: hidden;
}


/* =========================
   各カード本体
========================= */
.member-group .new-entry-card,
.member-group .widget-entry-card {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px dashed #d9d9d9;
  box-shadow: none;
  position: relative;
}

.member-group .new-entry-card:last-child,
.member-group .widget-entry-card:last-child {
  border-bottom: none;
}

/* =========================
   サムネイル
========================= */
.member-group .new-entry-card-thumb,
.member-group .widget-entry-card-thumb,
.member-group .card-thumb {
  grid-column: 1;
  margin: 0;
  inline-size: 5.5rem;
  width: 5.5rem;
  float: none;
  flex: none;
}

.member-group .new-entry-card-thumb img,
.member-group .widget-entry-card-thumb img,
.member-group .card-thumb img {
  display: block;
  inline-size: 100%;
  max-inline-size: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.375rem;
}

/* =========================
   テキスト側
========================= */
.member-group .new-entry-card-content,
.member-group .widget-entry-card-content,
.member-group .card-content {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  margin-left: 0;
  padding: 0;
}

.member-group .new-entry-card-title,
.member-group .widget-entry-card-title,
.member-group .card-title {
  margin: 0 0 0.375rem;
  padding: 0;
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  font-weight: 700;
  line-height: 1.45;
  color: #111;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.member-group .new-entry-card-snippet,
.member-group .widget-entry-card-snippet,
.member-group .card-snippet {
  margin: 0;
  padding: 0;
  font-size: clamp(0.875rem, 0.84rem + 0.2vw, 0.95rem);
  line-height: 1.7;
  color: #666;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* Cocoon側の余計なメタ領域対策 */
.member-group .new-entry-card-meta,
.member-group .widget-entry-card-meta,
.member-group .card-meta,
.member-group .new-entry-card-info,
.member-group .widget-entry-card-info,
.member-group .card-info,
.member-group .new-entry-card-date,
.member-group .widget-entry-card-date {
  margin: 0;
  padding: 0;
}

/* =========================
   矢印を消す
========================= */
.member-group .new-entry-card::after,
.member-group .widget-entry-card::after {
  content: none;
}

/* 最新情報 */
.my-news-list .new-entry-card-title {
	color: #1e90ff;
}

.my-news-list .new-entry-card-thumb {
	float: right;
}

.my-news-list .new-entry-card-content {
	margin-left: 0;
}

/* 活動のご紹介 */
.mycard .new-entry-card-link {
	background-color: #e0ffff;
	border: 0px;
	padding: 15px;
	margin: 1em;
}

.single-activity_report .entry-title {
	margin-bottom: 0.5em !important;
}

.single-activity_report .entry-categories a {
	/*pointer-events: none;*/
	color: #FFF;
	background: #1e90ff;
	border-radius: 0.4em;
}

.single-activity_report .entry-categories a .tax-icon {
	display: none;
}

/* FAQ */
.faq-cards a {
	min-height: 150px;
	padding: 20px;
}

.faq-cards .new-entry-card-title {
	font-size: 20px;
	margin: 10px;
	padding-left: 25px;
	text-indent: -25px;
	color: #1e90ff;
}

.faq-cards .new-entry-card-title:before {
	content: "Q.";
	color: #1e90ff;
	font-size: 25px;
}

.faq-cards .new-entry-card-snippet {
	font-size: 15px;
	margin: 10px;
	padding-left: 25px;
	text-indent: -25px;
	color: #006633;
	-webkit-line-clamp: none !important;
}

.faq-cards .new-entry-card-snippet:before {
	content: "A.";
	color: #006633;
	font-size: 25px;
}

/* アイキャッチ非表示設定 */
.single-new .eye-catch-wrap,
.single-activity_report .eye-catch-wrap {
	display: none;
}

/*************************
 * トップページコンセプトバナー
 **************************/
.top_concept {
  padding-bottom: 40px;
}

.top_concept h3 {
  color: #1e90ff;
  font-size: clamp(20px, 4.8vw, 28px);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.top_concept__box {
  background: #1e90ff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.top-concept__title {
  padding: 24px 0;
}

.top-concept__title h2 {
  margin: 0;
  padding: 0;
  color: #FDF2F3;
  background: #1e90ff;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.top-concept__title h4 {
  margin-bottom: 0;
  border: none;
  color: #FDF2F3;
  text-align: center;
  font-weight: 400;
  font-size: clamp(14px, 2.6vw, 20px);
}

.top-concept__title p {
  color: #ffffff;
}

.top-concept__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.top-concept__txt {
  flex: 1 1 40%;
  min-width: 0;
}

.top-concept__txt h4 {
  color: #E9848D;
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 400;
  padding: 16px 0;
}

.top-concept__txt p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin-bottom: 0;
}

.top-concept__thumb {
  flex: 1 1 48%;
  min-width: 0;
}

.top-concept__thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.top-concept__thumb-main img {
  aspect-ratio: 16 / 7;
}

.top-concept__thumb-sub {
  display: flex;
  gap: 0.5vw;
  margin-top: 0.5vw;
}

.top-concept__thumb-sub-item {
  flex: 1;
  min-width: 0;
}

.top-concept__thumb-sub-item img {
  aspect-ratio: 4 / 3;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
	/* 余白調整 */
	#container.wrap {
		padding-bottom: 15vw;
	}
	
	.content {
		padding: 0.5em;
	}
	
    .main {
	    margin-top: 0 !important;
	    padding: 0 !important;
    }
	
	.breadcrumb {
		margin: 0 0.4em;
	}
	
	.entry-title {
		margin-top: 5vw;
		margin-bottom: 0;
	}

	/* 自作投稿タイプエリアの文字サイズ */
	.my-post-type-label-area {
		font-size: 16px;
	}

	/* h2装飾 */
    .h2-design-01 {
        font-size: 22px;
        margin: 32px 0 24px;
    }

    .h2-design-01 span {
        padding: 0 30px;
    }

    .h2-design-01 span::before,
    .h2-design-01 span::after {
        width: 48px;
        height: 8px;
    }

    .h2-design-01 span::before {
        left: -18px;
        background-size: 10px 10px, 7px 7px, 5px 5px, 5px 5px;
        background-position: 0 center, 16px center, 30px center, 41px center;
    }

    .h2-design-01 span::after {
        right: -18px;
        background-size: 10px 10px, 7px 7px, 5px 5px, 5px 5px;
        background-position: right 0 center, right 16px center, right 30px center, right 41px center;
    }

    .h2-design-01::after {
        bottom: -12px;
        height: 2px;
    }

	/* 続きを読む系ボタン装飾 */
    .my-more-btn {
        min-width: 240px;
        padding: 13px 24px;
        font-size: 15px;
    }
	
	/* モバイルメニュー */
	.menu-icon span.fa-bars {
		font-size: 30px !important;
		color: #339966;
	}
	
	.menu-close-button {
		height: 50px;
		text-align: right;
		padding-right: 20px;
		color: #339966;
	}
	
	.menu-close-button span.fa-close {
		background: #FFF;
		width: 50px;
		height: 50px;
	}
	
	.menu-icon:has(.fa-bars) ~ .menu-caption {
		display: none;
	}

	.mobile-menu-buttons .menu-caption {
		font-size: 10px;
		opacity: none;
	}

	.navi-menu-content {
		top: 0;
		right: 0;
		bottom: auto;
		left: auto;
		transform: translateY(-100%);
	}
	
	#navi-menu-content .menu-drawer {
		padding: 0;
	}
	
	#navi-menu-content .menu-drawer li {
		font-weight: bold;
		border-top: 1px solid #e6e6e6;
	}
	
	#navi-menu-content .menu-drawer li a {
		font-size: 13px;
	}
	
	li.mobile-slide-menu {
		padding: 10px 0 10px 30px;
		position: relative;
	}
	
	li.mobile-slide-menu:before {
		position: absolute;
		content: "-";
		font-size: 15px;
		color: #1e90ff !important;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	li.mobile-slide-menu:after {
		position: absolute;
		content: ">";
		font-size: 15px;
		color: #1e90ff !important;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
	
	li.mobile-slide-menu a {
		display: block;
		color: #505050 !important;
	}

	li.mobile-inquiry {
		padding: 10px;
		background: #1e90ff;
	}
	
	li.mobile-inquiry a {
		color: #FFF !important;
		text-align: center;
	}
	
	.navi-menu-button .custom-menu-icon {
		color: #1e90ff !important;
	}
	
	/* コンテンツ下部 */
	#content-bottom-in {
		display: block;
	}
	
	#content-bottom .widget_media_image {
		text-align: center;
		width: 100%;
		padding: 0;
		margin: 5vw 0 0 0;
	}

	#content-bottom .widget_media_image a {
		display: block;   /* ブロック化して高さ100%を効かせる */
		width: 100%;
		height: 100%;
	}

	#content-bottom .widget_media_image img {
		width: 95%;
		height: 95%;
	}
	
	/* メンバー調整 */
	.member-group {
		padding: 0.875rem;
	}

	.member-group-title-row {
		gap: 0.625rem;
		margin-bottom: 0.875rem;
		padding-bottom: 0.625rem;
	}

	.new-entry-cards.my-member-list {
		padding: 0 0.75rem;
	}

	.member-group .new-entry-card,
	.member-group .widget-entry-card {
		grid-template-columns: 4.75rem minmax(0, 1fr);
		column-gap: 0.875rem;
		padding: 0.875rem 0;
	}

	.member-group .new-entry-card-thumb,
	.member-group .widget-entry-card-thumb,
	.member-group .card-thumb {
		inline-size: 4.75rem;
		width: 4.75rem;
	}
	
	/* FAQタイトル */
	.my-page-title-area {
		width: 100vw;
		margin-left: calc(50% - 50vw);
	}
	
	/********
	 * コンセプトバナー
	 **********/
  .top-concept__box {
    flex-direction: column;
    gap: 6vw;
    padding: 6vw 0 10vw;
  }

  .top-concept__txt,
  .top-concept__thumb {
    width: 100%;
  }

  .top-concept__thumb {
    margin-top: 0;
  }

  .top-concept__thumb-sub {
    gap: 2vw;
    margin-top: 2vw;
  }

  .top-concept__txt p {
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.5;
  }

  .top_concept h3 {
    font-size: clamp(20px, 4.8vw, 24px);
  }

  .top-concept__title {
    padding: 3.2vw 0 4.4vw 0;
  }

  .top-concept__title h2 {
    font-size: clamp(24px, 5.8vw, 30px);
  }

  .top-concept__title h4 {
    font-size: clamp(14px, 4vw, 18px);
  }

  .top_concept__box {
    margin-top: 3.2vw;
  }

  .top-concept__thumb-main img {
    aspect-ratio: 16 / 7;
  }

  .top-concept__thumb-sub-item img {
    aspect-ratio: 4 / 3;
  }
  .top-concept__txt,
  .top-concept__thumb {
    width: 100%;
    padding: 0 4vw;
    box-sizing: border-box;
  }
}}

/*834px以下*/
@media screen and (max-width: 834px){}

/*480px以下*/
@media screen and (max-width: 480px){}
