@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
*/



/****************************************************
 * 色々な設定
 ****************************************************/

/* スムーススクロール */
html {
	scroll-behavior: smooth;
}

/* サムネイルの横幅 */
.eye-catch {
	min-width: 100%;
}

/* 画像の余白削除 */
img { vertical-align: top; }

/* 画像サイズを100% */
img { width: 100%; }

/* 改行削除 */
@media screen and (min-width: 768px) {
	.brSP { display: none; }	/* スマホだけ改行したいとき */
}
@media screen and (max-width: 768px) {
	.brPC { display: none; }	/* パソコンだけ改行したいとき */
}

/* reCAPTCHAの中央表示 */
.grecaptcha-badge {
	margin: auto;
}

/* 検索窓の虫眼鏡の位置 */
.search-box br {
	display: none;
}



/****************************************************
 * アニメーションのデザイン
 ****************************************************/

/* ふわっとした動作（指定箇所に"fadeIn"を入れる） */
.fadeIn,
.eye-catch img {
	animation-name:fadeInAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* テキスト（点滅） */
.flash,
.flash-L,
.flash-R {
	animation: flashing 2s ease-in-out infinite alternate;
	color: #0077CC;
	font-weight: bold;
}
.flash-L { margin-left: 3px; }
.flash-R { margin-right: 3px; }
@keyframes flashing {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.2; }
}



/****************************************************
 * 見出しデザイン
 ****************************************************/

.article h2, .article h3, .article h4, .article h5, .article h6 {
	margin-bottom: 1.5em;
}

/* 見出し｜規約系のデザイン */
.headingOperation {
	font-size: 120%;
	font-weight: bold;
	margin-bottom: 1em!important;
	counter-increment: title;
}
.headingOperation::before {
	content: "第"counter(title)"条";
	padding-right: 1em;
}



/****************************************************
 * テキストデザイン
 ****************************************************/

/* マーカー */
mark {
	color: #394154;
	background: repeating-linear-gradient(-45deg, #FFDDBC 0 2px, transparent 2px 4px) bottom left / 100% 0.8em no-repeat;
	font-weight: bold;
}

/* テキスト（三原色） */
.textR,
.textG,
.textB {
	font-weight:bold;
}
.textR { color:red; }
.textG { color:green; }
.textB { color:blue; }

/* 小文字化（左寄せ） */
.textSmall {
	font-size: 80%;
}



/****************************************************
 * ボックスデザイン
 ****************************************************/

/* ボックス（グレー） */
.boxGray {
	background-color: #F5F5F5;
	padding: 1em;
}
.boxGray-title {
	font-size:110%;
	font-weight: bold;
	margin-bottom: .3em;
}
.boxGray-title::before {
	content: '✔ ';
	color: #88ABDA;
	font-size: 1.2em;
}
.boxGray ul,
.boxGray ol {
	margin-bottom: 0!important;
}
.boxGray li a {
	color: #6FB6C3;
	font-weight: bold;
	transition: all .3s;
}
.boxGray li a:hover {
	color: #A3EAF7;
}
.boxGray p {
	margin-bottom: 0!important;
}
.boxGray p b {
	color: #595445;
}

/* ボックス（口コミ） */
.boxReview {
	display: block;
	justify-content: center;
	align-items: center;
	border: 1px solid #69788A;
	border-radius: 30px;
	padding: 2em 1em;
/* 	background-color: #F7F9FB; */
	background: linear-gradient(to right, #FFF, #F5F7FA);
}
@media screen and (min-width: 768px) {
	.boxReview {
		display: flex;
	}
}
.boxReview .boxReview-person {
	flex-basis: 20%;
	margin-right: 0;
	margin-bottom: 1em;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.boxReview .boxReview-person {
		margin-right: 1em;
		margin-bottom: 0;
	}
}
.boxReview .boxReview-person p:last-child {
	display: none;
}
.boxReview .boxReview-image img {
	width: 50%;
	height: 50%;
	border-radius: 50%;
}
@media screen and (min-width: 768px) {
	.boxReview .boxReview-image img {
		width: 100%;
		height: 100%;
	}
}
.boxReview .boxReview-name {
	font-size: 80%;
	margin-bottom: 0;
}
.boxReview .boxReview-star {
	color: #F8B704;
}
.boxReview .boxReview-reviewDiv,
.boxReview .boxReview-reviewQuote {
	flex-basis: 80%;
	margin-bottom: 0;
	background-color: transparent;
    border: none;
    border-top: 0;
    border-bottom: 0;
    padding: 1em;
}
.boxReview .boxReview-reviewDiv::before,
.boxReview .boxReview-reviewDiv::after,
.boxReview .boxReview-reviewQuote::before,
.boxReview .boxReview-reviewQuote::after {
	color: #69788A;
	font-size: 80%;
}
.boxReview .boxReview-title {
	color: var(--blue-dark);
	font-size: 110%;
	font-weight: bold;
	font-style: italic;
	margin-bottom: 0.2em;
}
.boxReview .boxReview-reviewQuote p {
	font-size: 90%;
}
.boxReview .boxReview-reviewDiv p:nth-last-child(2),
.boxReview .boxReview-reviewQuote p:nth-last-child(2) {
	margin-bottom: 0;
	padding-bottom: 0;
}
.boxReview .boxReview-reviewDiv p br,
.boxReview .boxReview-reviewQuote p br {
	display: none;
}
.boxReview .boxReview-reviewQuote p b {
	color: #0077CC;
}
.boxReview .boxReview-reviewDiv p:empty {
    display: none;
}
.boxReview .boxReview-reviewQuote cite {
	margin-top: 1.2em;
	border-top: dashed 1px #69788A;
}
.boxReview .boxReview-reviewQuote cite a {
	color: #535252;
	margin-right: 0;
	text-decoration: none;
}
@media screen and (min-width: 768px) {
	.boxReview .boxReview-reviewQuote cite a {
		margin-right: 2em;
	}
}
.boxReview .boxReview-reviewQuote cite a::before {
	content: "引用元：";
}

/* ボックス（メリット・デメリット） */
.boxMD {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
@media screen and (max-width: 768px) {
	.boxMD {
		flex-direction: column;
	}
}
.boxMD ul {
	position: relative;
	flex: 1;
	min-width: 300px;
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 4em 1em .3em 1em; /* タイトル帯の高さ分を上部に確保 */
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	color: #777;
	font-size: 90%;
}
.boxMD-merit {
	background-color: #FFF;
/* 	border: 1px solid #4a90e2; */
	border: 1px solid #A1C9D5;
}
.boxMD-demerit {
	background-color: #FFF;
/* 	border: 1px solid #D55656; */
	border: 1px solid #EE8379;
}
.boxMD-merit::before,
.boxMD-demerit::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 12px 16px;
	font-size: 1.1em;
	font-weight: bold;
	font-family: "Font Awesome 5 Free";
	color: #fff;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	box-sizing: border-box;
}
.boxMD-merit::before {
	content: "\f004  メリット";
/* 	background: linear-gradient(135deg, #4a90e2, #357abd); */
	background: #A1C9D5;
}
.boxMD-demerit::before {
	content: "\f05e  デメリット";
/* 	background-color: #D55656; */
	background: #EE8379;
}
.boxMD li {
	padding: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.boxMD li:last-child {
	border-bottom: none;
}

/* ボックス（あみあみ） */
.boxNet {
	background:linear-gradient(-45deg, transparent 25%, #F6F7F8 25%, #F6F7F8 50%, transparent 50%, transparent 75%, #F6F7F8 75%, #F6F7F8);
	background-size: 4px 4px;
	border-top: 4px double #DDDEDF;
	border-bottom: 4px double #DDDEDF;
	background-clip: padding-box;
	color: #666;
	text-align: center;
	padding: 2em 1em;
}

/* ボックス（ズレ） */
.boxZure {
	position: relative;
	background: none;
	border: 1px solid #ccc;
	margin: 2em auto;
	padding: 2em;
}
.boxZure:after {
	position: absolute;
	top: 7px;
	left: 7px;
	content: '';
	background-color: #eee;
	border: none;
	width: 100%;
	height: 100%;
	z-index: -1;
}



/****************************************************
 * リンクデザイン
 ****************************************************/

a {
	color: #1A80DA;
	font-weight: 500;
	text-decoration: none;
	transition: all .3s;
}
a img {
	transition: all .3s;
}
a img:hover {
	opacity: .7;
}

/* リンク（関連記事） */
.linkRelation {
	color: #0044CC;
	text-decoration: none!important;
	transition: all .3s;
}
.linkRelation:hover {
	color: #429EFF;
}
.linkRelation::before {
	content: "関連記事";
	color: #FFF;
	background-color: #88ABDA;
	margin-right: .7em;
	padding: .3em .7em .4em;
}

/* リンク（商品紹介） */
.linkEC {
	background: linear-gradient(to right, #FFF, #F5F7FA);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	width: 100%;
	padding: 16px;
	box-sizing: border-box;
}
.linkEC p,
.linkEC br {
	display: none;
}
.linkEC-title {
	display: block;
	color: #777;
	font-size: 100%;
	font-weight: bold;
	width: 100%;
	text-decoration: none;
	text-align: center;
	line-height: 1.6;
}
.linkEC-title:hover{
	color: #1A80DA;
	opacity: .7;
}
.linkEC-code {
	display: block;
	font-size: 85%;
	margin-top: .5em;
}
.linkEC-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 2em;
}
.linkEC-image {
  flex: 0 0 40%;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.linkEC-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s;
}
.linkEC-image:hover img {
	transform: scale(1.05);
}
.linkEC-links {
	flex: 0 0 60%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.linkEC-button {
	display: block;
	color: #FFF;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	padding: 10px 0;
	border-radius: 4px;
}
.linkEC-button:hover {
	color: #FFF;
	opacity: 0.7;
}
.linkEC-amazon	{ background-color: #A1C9D5; }
.linkEC-rakuten	{ background-color: #EE8379; }
.linkEC-yahoo	{ background-color: #F5C475; }
.linkEC-mercari	{ background-color: #999999; }



/****************************************************
 * ボタンデザイン
 ****************************************************/

/* CTA用 */
.buttonCTA {
	text-align: center;
	margin: 20px 0;
}
.buttonCTA-microcopy {
	color: #666;
	font-size: 90%;
	font-weight: bold;
	margin-bottom: 8px;
	animation: buttonCTA2-captionBlink 1.6s ease-in-out infinite;
}
.buttonCTA-microcopy::before {
	content: "＼";
	margin-right: .3em;
}
.buttonCTA-microcopy::after {
	content: "／";
	margin-left: .3em;
}
.buttonCTA-text {
	display: inline-block;
	padding: 14px 28px;
	font-size: 120%;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	border-radius: 50px;
	position: relative;
	z-index: 1;
	background: linear-gradient(to right, #d65b75, #d7b55e);
	transition: all 0.5s ease;
	overflow: hidden; /* 枠外にはみ出した光を隠す */
}
/* 枠線部分 */
.buttonCTA-text::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50px;
	padding: 2px;
	background: linear-gradient(to right, #d65b75, #d7b55e);
	-webkit-mask: 
		linear-gradient(#fff 0 0) content-box, 
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: -1;
}
/* 光る演出部分 */
.buttonCTA-text::after {
	content: "";
	position: absolute;
	top: -30%;
	left: -40%;
	width: 12%;
	height: 160%;
	background: linear-gradient(
		120deg,
		rgba(215, 181, 94, 0) 0%,		 /* ゴールド透明 */
		rgba(255, 255, 255, 0.4) 40%, /* 柔らかい白 */
		rgba(255, 255, 255, 0.6) 50%, /* 中央やや強め */
		rgba(255, 255, 255, 0.4) 60%, /* 白を少し残す */
		rgba(215, 181, 94, 0) 100%		/* ゴールド透明 */
	);
	transform: skewX(-25deg);
	filter: blur(3px);
	opacity: 0;
	animation: buttonCTA-shine 5s infinite;
	border-radius: 50px;
	z-index: 0;
}
@keyframes buttonCTA-shine {
	0% {
		left: -40%;
		opacity: 0;
	}
	8% {
		opacity: 1;
	}
	35% {
		left: 140%;	/* ゆったり移動 */
		opacity: 0.9;
	}
	40% {
		opacity: 0;
	}
	100% {
		left: 140%;
		opacity: 0;
	}
}
.buttonCTA-text:hover {
	background: #fff;
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	background-image: linear-gradient(to right, #d65b75, #d7b55e);
	transform: translateY(-2px);
}
.buttonCTA-text:active {
	transform: translateY(0);
}

/* 横並びのボタン用 */
.buttonCTA2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.buttonCTA2-item {
	width: 100%;
	max-width: 360px;
	text-align: center;
}
@media (max-width: 600px) {
	.buttonCTA2 {
		flex-direction: column;
		align-items: center;
	}
	.buttonCTA2-item {
		max-width: 320px;
	}
}
.buttonCTA2-caption {
	color: #666;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 8px;
	animation: buttonCTA2-captionBlink 1.6s ease-in-out infinite;
}
@keyframes buttonCTA2-captionBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.2; }
}
.buttonCTA2-caption::before {
	content: "＼";
	margin-right: 0.3em;
}
.buttonCTA2-caption::after {
	content: "／";
	margin-left: 0.3em;
}
.buttonCTA2-button {
	display: block;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	width: 100%;
	padding: 14px 20px;
	border-radius: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.buttonCTA2-button br{
	display: none;
}
.buttonCTA2-leftButton {
	color: #FFF;
	background: linear-gradient(to right, #70B0E6, #6B8CE3);
}
.buttonCTA2-rightButton {
	color: #223366;
	background-color: #E5EAF4;
}
.buttonCTA2-button:hover {
	opacity: 0.95;
	transform: translateY(-3px) scale(1.03);
	color: #C2D6FF;
}



/****************************************************
 * 吹き出しデザイン
 ****************************************************/

.balloonUser {
	display: flex;
	align-items: flex-start;
	margin-bottom: 24px;
	background-color: #FFF;
	border-radius: 12px;
	padding: 16px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease-out forwards;
}
.balloonUser-icon {
	flex-shrink: 0;
	margin-right: 14px;
}
.balloonUser-icon img {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	border: 2px solid #CCC;
	background-color: #FFF;
}
.balloonUser-icon::after {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: #555;
	text-align: center;
	content: "";
}
.balloonUser-review {
	position: relative;
	color: #333;
	background-color: #F2F2F2;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 15px;
	line-height: 1.7;
	max-width: 100%;
}
.balloonUser-review::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 16px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 10px solid #F2F2F2;
}
.balloonUser-review b {
	color: #595445;
}

/* 吹き出し｜リノの設定 */
.balloonAuthor .balloonUser-icon::after { content:"リノ"; color:#777; font-weight:bold; }
.balloonAuthor .balloonUser-icon img { border: 2px solid #777; }

/* 吹き出し｜キノの設定 */
.balloonBeginner .balloonUser-icon::after { content:"キノ"; color:#A8988A; font-weight:bold; }
.balloonBeginner .balloonUser-icon img { border: 2px solid #A8988A; }
.balloonBeginner .balloonUser-review { color:#5B514A; background-color: #FFF8F3; }
.balloonBeginner .balloonUser-review::before { border-right: 10px solid #FFF8F3; }
.balloonBeginner .balloonUser-review b { color: #E18CA5; }

/* アニメーション（ふわっと上がって出てくる） */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* モバイル対応 */
@media (max-width: 480px) {
	.balloonUser {
		flex-direction: row;
		align-items: flex-start;
	}
	.balloonUser-review {
		font-size: 14px;
		line-height: 1.6;
	}
}



/****************************************************
 * 画像デザイン
 ****************************************************/

/* 画像（キャプション設定） */
figure {
	text-align: center;
}
figure img {
	width: 100%;
}
figure figcaption {
	margin-top: .5em;
}



/****************************************************
 * アコーディオンデザイン
 ****************************************************/

/* アコーディオン｜単体 */
.accordionSingle {
	max-width: 100%;
	margin: 0 auto 3em;
}
.accordionSingle-item {
	margin-bottom: 12px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
	background: #f7fafd;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}
.accordionSingle-item:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.accordionSingle-detail {
	width: 100%;
	transition: all 0.3s ease;
	background: transparent;
}
.accordionSingle-question {
	list-style: none;
	cursor: pointer;
	padding: 20px;
	position: relative;
	font-size: 17px;
	font-weight: 600;
	color: #2f3e4d;
	background-color: transparent;
}
.accordionSingle-question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 20px;
	color: #5c738a;
	transition: transform 0.3s ease;
}
.accordionSingle-detail[open] .accordionSingle-question {
	border-bottom: 1px solid #c3d2e0;
}
.accordionSingle-detail[open] .accordionSingle-question::after {
	content: "−";
	transform: rotate(0deg);
}
.accordionSingle-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.6;
	background-color: #ffffff;
	transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordionSingle-answer b {
	color: #0077CC;
}
.accordionSingle-answer ul,
.accordionSingle-answer ol,
.accordionSingle-answer table {
	margin-bottom: 0;
}
.accordionSingle-detail[open] .accordionSingle-answer {
	max-height: 100%;
	padding: 20px;
}
.accordionSingle-detail[open] .accordionSingle-answer p {
	font-size: 90%;
	margin-bottom: 1.5em;
}
/* ▼ レスポンシブ調整 */
@media screen and (max-width: 600px) {
	.accordionSingle-question {
		font-size: 16px;
		padding: 18px 30px 16px 16px;
	}
	.accordionSingle-question::before {
		left: 12px;
		top: 16px;
		font-size: 14px;
		padding: 3px 8px;
	}
	.accordionSingle-question::after {
		right: 10px;
		top: 16px;
		font-size: 18px;
	}
	.accordionSingle-answer {
		font-size: 14px;
		padding: 0 16px;
	}
	.accordionSingle-detail[open] .accordionSingle-answer {
		padding: 16px;
	}
}

/* アコーディオン｜注意事項 */
.accordionWarnings summary {
	position: relative;
	cursor: pointer;
	padding: 14px 16px 14px 32px; /* 左にスペースを作る */
	color: #999;
	background-color: #FFF;
	font-size: 70%;
	font-weight: bold;
	list-style: none;
}
.accordionWarnings summary::before {
	content: "▶";
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	transition: transform 0.2s ease;
}
.accordionWarnings[open] summary::before {
	content: "▼";
}
.accordionWarnings-content {
	padding: 16px;
	color: #999;
	background-color: #FFF;
	font-size: 70%;
}

.law {
	font-size: 90%;
	margin-bottom: -2em;
}
.law summary {
	background: repeating-linear-gradient(-45deg, #F7F9FB 0 2px, transparent 2px 4px);
}
#affiliateNotice { display: none; } /* 投稿ページ以外では非表示 */
body.single #affiliateNotice { display: block; } /* 投稿ページのみ表示 */



/****************************************************
 * 引用のデザイン
 ****************************************************/

/* 引用｜文章 */
.quoteText p,
.quoteText ul,
.quoteText ol {
	font-size: 90%;
	margin-bottom: 0!important;
}
.quoteText p b {
	color: #0077CC;
}
.quoteText cite {
	margin-top: 2.4em;
	padding-top: 1em;
}
.quoteText cite::before {
	content: "引用：";
}
cite a {
	color: #535252;
}

/* 引用｜画像 */
figure {
	text-align: center;
}
figure img {
	width: 100%;
}
figure figcaption {
	margin-top: .5em;
}
.quoteImage figure figcaption a {
	color: #535252;
	text-decoration: none;
}
.quoteImage figure figcaption a::before {
	content: "引用元：";
}

/* 引用｜動画（YouTube） */
.quoteYouTube {
	display: block;
	color: #535252;
	font-size: 70%;
	text-align: center;
	text-decoration: none;
	margin-top: -6em;
	transition: all .3s;
}
.quoteYouTube::before {
	content: "引用元：";
}



/****************************************************
 * YouTubeのデザイン
 ****************************************************/

/* YouTube（動画の中央化） */
.video-container {
	margin: 0 auto;
}
/* YouTube（動画の中央化｜カテゴリー記事の場合） */
.youtube-center {
	text-align: center;
}



/****************************************************
 * テーブルデザイン
 ****************************************************/

table {
	text-align: center;
}
table caption {
	font-weight: bold;
}
table th {
	font-weight: bold;
	color: #FFF;
	background-color: #69788A;
}
table th,
table td {
	font-size: 0.7em;
	padding: 0.5em;
}
@media print, screen and (min-width: 768px) {
	table th,
	table td {
		font-size: 0.8em;
		padding: 0.8em;
	}
}
.table-left td {
	text-align: left;
}
.table-overflow {
	overflow-x: scroll;
}
.table-scroll {
	width: 100%;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
.tableReview th,
.tableReview td {
	height: 50px;   /* 最低でも50pxの高さ */
}

/* テーブル｜tdの左寄せ */
.tableLeft td {
	text-align: left!important;
}

/* テーブルのスクロール */
.table-scroll {
	overflow: auto;
	-webkit-overflow-scrolling: touch; /* スマホで慣性スクロール */
	position: relative;
	max-width: 100%;
}
/* 横スクロール */
.table-scroll table {
	min-width: 600px;
	border-collapse: collapse;
	width: 100%;
}
.table-scroll th,
.table-scroll td {
	white-space: nowrap;
	font-size: 65%;
}
/* 上部のヘッダーを固定（HTML側のクラス名：divに「fixed-header」） */
.table-scroll.fixed-header thead th {
	position: sticky;
	top: 0;
	z-index: 2;
}
/* 左端の列を固定（HTML側のクラス名：divに「fixed-column」） */
.table-scroll.fixed-column th:first-child,
.table-scroll.fixed-column td:first-child {
	position: sticky;
	left: 0;
	z-index: 1;
}
.table-scroll.fixed-column th:first-child {
	background: #69788A;
}
.table-scroll.fixed-column td:first-child {
	background: #FAFBFC;
}




/****************************************************
 * カテゴリーデザイン
 ****************************************************/

/* カテゴリ一覧（アコーディオン＋記事数付き） */
.cat_lists {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}
.cat-item {
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	background: #f9f9f9;
}
.cat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f4f4f4;
	padding: 0;
}
.cat_lists .cat-link-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 10px 14px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	background: #f4f4f4;
	transition: all 0.3s ease;
	box-sizing: border-box;
	border: none;
}
.cat_lists .cat-link-item:hover {
	color: #FFF !important;
	background: #69788A !important;
}
.cat-title-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	width: 100%;
	box-sizing: border-box;
}
/* .cat-title {
	color: #333;
	font-weight: bold;
	transition: all 0.3s ease;
}
.cat-title:hover {
	color: #FFF;
} */
.cat-count {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 12px;
	padding: 2px 8px;
	font-size: 12px;
	color: #666;
}
.cat_lists .cat-link-item:hover .cat-count {
	background: #fff !important;
	color: #333 !important;
	border-color: #fff !important;
}
.toggle-btn {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: #333;
	width: 40px;
	height: 100%;
	line-height: 1;
	border-left: 1px solid #ddd;
	transition: background 0.2s;
}
.toggle-btn:hover {
	background: rgba(0, 0, 0, 0.05);
}
.child-cat-lists {
	display: none;
	flex-direction: column;
	width: 100%;
	background: #fafafa;
}
.cat-item.is-open .child-cat-lists {
	display: flex;
}
.cat_lists .child-cat-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 10px 14px;
	background-color: #fff;
	color: #555;
	font-size: 14px;
	text-decoration: none;
	border-top: 1px solid #eee;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.cat_lists .child-cat-link:first-child {
	border-top: none;
}
.cat_lists .child-cat-link:hover {
	background-color: #d7b55e !important;
	color: #fff !important;
	border-color: #d7b55e !important;
}
.cat_lists .child-cat-link .cat-count {
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 2px 8px;
	font-size: 12px;
	color: #666;
}
.cat_lists .child-cat-link:hover .cat-count {
	background: #fff !important;
	color: #333 !important;
	border-color: #fff !important;
}



/****************************************************
 * タグデザイン
 ****************************************************/

.tag_lists {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}
.tag_lists a {
	position: relative;
	display: inline-block;
	padding: 6px 14px 6px 22px;
	background-color: #f4f4f4;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid #ddd;
	line-height: 1.4;
	transition: all 0.3s ease;
}
.tag_lists a::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #ccc;
}
.tag_lists a:hover {
	background-color: #69788A;
	color: #fff;
	border-color: #69788A;
	transform: translateY(-2px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}



/****************************************************
 * よくある質問のデザイン
 ****************************************************/

.headlineQuestion {
	color
	border: none;
    background-color: transparent!important;
	margin-bottom: 0.75em!important;
	padding: 1em 1em 1em 3em!important;
    position: relative;
	font-size: 16px!important;
}
.headlineQuestion::before {
	position: absolute;
	top: 1em;
    left: 0;
	display: inline-block!important;
	content: "Q"!important;
	color: #FFF;
	background: #D55656;
    border-left: none!important;
    border-bottom: none!important;
	width: 2em!important;
	height: 1.8em!important;
	text-align: center;
}
.headlineAnswer {
	position: relative;
	padding: 1em 1em 1em 3em;
}
.headlineAnswer::before {
	content: "A";
	display: inline-block;
	position: absolute;
	top: 1em;
    left: 0;
	color: #FFF;
	background: #659987;
	width: 2em;
	height: 1.8em;
	text-align: center;
	font-weight: bold;
}
.headlineAnswer p {
	margin-bottom: 1em;
}





/****************************************************
 * 
 * 
 * 以下、トップページのデザイン
 * 
 * 
 ****************************************************/

/****************************************************
 * メインビジュアル
 ****************************************************/

.skin-grayish.front-top-page .container .header-container .header {
	background-position: top center;
}
@media screen and (max-width: 1023px) {
	.skin-grayish.front-top-page .container .header-container .header {
		background-image: url(https://11neko.com/wp-content/uploads/top_thumbnail_sp.webp);
		background-position: center center;
	}
}
