/* 井上 ボタン・グラフ部分変更 20250206 */

a.ctabtn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 0 12px 0px;
	gap: 12px;
	width: auto;
	max-width: 680px;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	box-shadow: 0 6px 0px 0px #AF0404, 0 2px 0 0 #FF6E6E inset;
	background-color: #FF2424;
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/btn_harftone.png), url(/wp-content/themes/boatrace-research/images/img_customize/btn_harftone.png);
	background-repeat: no-repeat, no-repeat;
	background-position: -20% center, 120% center;
	position: relative;
	overflow: hidden;
	animation: ctaGrow 1.5s infinite ease-in-out;
}

@media screen and (max-width: 750px) {
	a.ctabtn {
		background-position: 140% center, -40% center;
		background-size: inherit;
	}
}

@media screen and (max-width: 480px) {
	a.ctabtn {
		background-position: 180% center, -80% center;
	}
}

a.ctabtn::before {
	content: "";
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
	background: url(/wp-content/uploads/2016/08/anim_page_btn.gif) no-repeat;
	background-size: contain;
}

a.ctabtn:hover {
	opacity: 0.8;
}

/* 大きくなるアニメーションを定義 */
@keyframes ctaGrow {

    0%,
    100% {
        transform: scale(1);
        /* 通常サイズ */
    }

    50% {
        transform: scale(1.05);
        /* 1.1倍に拡大 */
    }
}

/* カラー変更: 緑系枠線→ニュートラルグレー (#116534 → #D9DDE4) */
#entry-content div.totalreview.post {
	border: 1px solid #D9DDE4;
	border-radius: 12px;
	padding: 20px;
	background: #FFFFFF;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
	#entry-content div.totalreview.post {
		cover: 200%;
	}
}

#entry-content div.totalreview.post .totalreview_head {
	display: flex;
	align-items: center;
	/* カラー変更: 緑グラデーション→青グラデーション (#116534 → #004999) */
	background: linear-gradient(135deg, #004999 100%, #0066CC 100%);
	color: #fff;
	justify-content: center;
	gap: 20px;
	padding: 8px;
	border-radius: 8px;
	position: relative;
}

#entry-content div.totalreview.post .totalreview_head::before {
	position: absolute;
	content: "";
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/boat_icon.svg);
	background-size: 92%;
	width: 36px;
	height: 36px;
	background-repeat: no-repeat;
	left: 3%;
}

@media screen and (max-width: 920px) {
	#entry-content div.totalreview.post .totalreview_head {
		flex-direction: column;
		gap: 6px;
		justify-content: center;
		align-items: center;
	}
}

#entry-content div.totalreview.post .totalreview_head .totalreview_head_main {
	color: #fff;
	font-style: italic;
	display: flex;
	width: auto;
	gap: 8px;
	position: relative;
}

#entry-content div.totalreview.post .totalreview_head .totalreview_head_main span {
	font-style: normal;
}

#entry-content div.totalreview.post .totalreview_head .totalreview_head_right {
	display: flex;
	gap: 8px;
	position: relative;
}

#entry-content div.totalreview.post .totalreview_head .totalreview_head_right div {
	background: #F8F8F8;
	border: 1ox solid #eee;
	font-size: 14px;
	padding: 6px 8px;
	border-radius: 4px;
}

@media (max-width: 750px) {
	#entry-content div.totalreview.post .totalreview_head .totalreview_head_right {
		width: auto;
		padding-top: 0;
		border-top: none;
	}
}

@keyframes shimmer {
	0% {
		background-position: 0%;
		text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
	}

	50% {
		background-position: 50%;
		text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
	}

	100% {
		background-position: 100%;
		text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
	}
}

#entry-content div.totalreview.post .radar_graph {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 12px;
}

@media (max-width: 600px) {
	#entry-content div.totalreview.post .radar_graph {
		flex-direction: column;
	}
}

#entry-content div.totalreview.post .radar_graph .graph,
    #entry-content div.totalreview.post .radar_graph .rate_table {
	float: none;
	margin: 0;
}

#entry-content div.totalreview.post .radar_graph .graph {
	width: 43%;
	padding: 12px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	box-shadow: 0 0 20px 0px rgba(21, 21, 21, 0.2);
	backdrop-filter: blur(2px);
}

@media screen and (max-width: 920px) {
	#entry-content div.totalreview.post .radar_graph .graph {
		width: 50%;
	}
}

@media (max-width: 600px) {
	#entry-content div.totalreview.post .radar_graph .graph {
		width: 100%;
	}
}

#entry-content div.totalreview.post .radar_graph .rate_table {
	border-collapse: separate;
	border-spacing: 0px 5px;
	border: none;
	box-shadow: none;
	width: 57%;
	min-width: auto;
}

@media screen and (max-width: 920px) {
	#entry-content div.totalreview.post .radar_graph .rate_table {
		width: 50%;
	}
}

@media (max-width: 600px) {
	#entry-content div.totalreview.post .radar_graph .rate_table {
		width: 100%;
	}
}

#entry-content div.totalreview.post .radar_graph .rate_table tr {
	background: #F9F9F9;
	border: 1px solid #eee;
}

#entry-content div.totalreview.post .radar_graph .rate_table th,
      #entry-content div.totalreview.post .radar_graph .rate_table td {
	border: none;
}

#entry-content div.totalreview.post .radar_graph .rate_table th {
	/* カラー変更: 緑グラデーション→青グラデーション (#116534 → #004999) */
	background: linear-gradient(135deg, #004999 100%, #0066CC 100%);
	font-style: italic;
	border-radius: 8px 0px 0 8px;
}

@media (max-width: 480px) {
	#entry-content div.totalreview.post .radar_graph .rate_table th {
		font-size: 3.5vw;
	}
}

#entry-content div.totalreview.post .radar_graph .rate_table .star-ratings {
	font-size: 25px;
	height: auto;
	text-shadow: none;
	letter-spacing: 0px;
	width: 100%;
}

@media (max-width: 480px) {
	#entry-content div.totalreview.post .radar_graph .rate_table .star-ratings {
		font-size: 5.5vw;
	}
}

#entry-content div.totalreview.post .totalreview_comment {
	background: #fff;
	border: none;
	color: #222;
	padding: 8px 0;
	font-weight: bold;
	transform: skewX(-10deg);
	padding: 10px;
	border: 2px solid #222;
	box-shadow: 5px 5px 0 0 #222;
}

#entry-content div.totalreview.post .totalreview_comment span {
	background: linear-gradient(transparent 50%, #fbff00 70%);
}

@media (max-width: 600px) {
	#entry-content div.totalreview.post .totalreview_comment {
		margin-top: 0;
	}
}

#entry-content .y_star {
	font-weight: bold;
	background: linear-gradient(0deg, #FFA500, #ECC500, #EA9700, #FFA500);
	background-size: 100%;
	background-position: 0%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: shimmer 3s linear infinite;
}

header#header {
	background: white;
	border-top: 4px solid #004b9d;
}

@media screen and (max-width: 750px) {
	header#header{
		background-image: url(/wp-content/themes/boatrace-research/images/img_customize/header_bg.png);
		background-size: cover;
		background-position: center;
	}
	header#header #topbar {
		height: auto;
		width: 96%;
	}
}


header#header #topbar #logo {
	display: block;
	width: 100%;
}

@media screen and (max-width: 750px) {
	header#header #topbar #logo {
		max-width: none;
		width: 100%;
		margin: 6px 0;
	}
}

header#header #topbar #logo a {
	display: flex;
	align-items: center;
	gap: 8px;
}

header#header #topbar #logo a h1 {
	padding: 0px 0px;
	background: unset;
}

header#header #topbar #logo a h1 img {
	width: auto;
	padding: 0;
}

@media screen and (max-width: 750px) {
	header#header #topbar #logo a h1 {
		margin: 0;
	}
}

header#header #topbar #logo a p {
	color: #fff;
	font-weight: bold;
	margin-bottom: 0;
}

@media screen and (max-width: 750px) {
	header#header #topbar #logo a p {
		font-size: 10px;
	}
}

header#header #topbar #logo a img {
	object-fit: contain;
	padding: 0px;
	background: unset;
	width: auto;
}

header#header #topbar .search-form {
	border-radius: 8px;
	position: relative;
}

header#header #topbar .search-form input {
	border-radius: 8px;
	font-size: 14px;
	position: relative;
	padding-left: 32px;
}

header#header #topbar .search-form::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	margin: auto;
	width: 16px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/search_icon.svg);
	z-index: 5;
}

nav#headerMenu_2 {
	background-image:url(/wp-content/themes/boatrace-research/images/img_customize/header_bg.png);
	/*background: linear-gradient(135deg, #004999 100%, #0066CC 100%);*/
	background-position: center;
	border-bottom: 0;
	height: 50px;
	/*margin-bottom: 54px;*/
}

@media screen and (max-width: 1020px) {
	nav#headerMenu_2 {
		height: auto;
		position: relative;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 750px) {
	nav#headerMenu_2 {
		/* display: none; */
		background: unset;
		position: fixed;
		bottom: 0;
		top: unset;
		width: 100%;
	}
}

nav#headerMenu_2 #headerMenuInner {
	padding-top: 16px;
	gap: 12px;
}

@media screen and (max-width: 1020px) {
	nav#headerMenu_2 #headerMenuInner {
		width: 100%;
		padding: 0;
		gap: 0;
		display: grid;
		grid-template-columns: repeat(5,1fr);
	}
}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi {
	position: relative;
	background-color:#0066CC;
    background-image: url(/wp-content/themes/boatrace-research/images/img_customize/header_btn_harftone.png);
    background-position: 140px center;
	background-repeat:no-repeat;
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(0, 73, 153, 0.25);
	transform: skewX(-10deg);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	width:100%;
}

@media screen and (max-width: 750px) {
	nav#headerMenu_2 #headerMenuInner li.headerMenuLi {
		transform: none;
		width: 100%;
		border: unset;
		background-position: 8vw 0;
		background-size: 170%;
	}
}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi a {
	position: relative;
	z-index: 2;
	/* カラー変更: テキストシャドウを青系に (#003517 → rgba(0, 73, 153, 0.5)) */
	text-shadow: 1px 1px rgba(0, 73, 153, 0.5);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	transform: skewX(10deg);
	padding: 0.6em 0;
}

@media screen and (max-width: 750px) {
	nav#headerMenu_2 #headerMenuInner li.headerMenuLi a {
		transform: none;
	}
}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi a.headerMenuIcon::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 26px;
	vertical-align: -.2em;
	margin-right: .2em;
	background-repeat: no-repeat;
	background-position: center;
}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi a.headerMenuRanking::before {
	width: 24px;
	height: 26px;
}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 1020px) {
	nav#headerMenu_2 #headerMenuInner li.headerMenuLi a {
		font-size: 1.5vw;
	}
}

@media screen and (max-width: 750px) {
	nav#headerMenu_2 #headerMenuInner li.headerMenuLi a {
		font-size: 2.4vw;
		display: grid;
		justify-items: center;
		letter-spacing: -1px;
	}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi a b {
    display: none;
}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi a:after {
    content: attr(data-sptitle);
    font-weight: bold;
}
}

/* カラー変更: ホバー時グラデーション反転 (緑系→青系) */
nav#headerMenu_2 #headerMenuInner li.headerMenuLi:hover {
	background: linear-gradient(135deg, #0066CC 0%, #004999 100%);
}

nav#headerMenu_2 #headerMenuInner li.headerMenuLi:nth-child(1) {
	border-color: yellow;
}
nav#headerMenu_2 #headerMenuInner li.headerMenuLi:nth-child(1) a::before {
	background-image:url(/wp-content/themes/boatrace-research/images/img_customize/gn-icon-ranking.png);background-repeat:no-repeat;background-size:100%;
}
nav#headerMenu_2 #headerMenuInner li.headerMenuLi:nth-child(2) a::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/gn-icon-site.png);background-repeat:no-repeat;background-size:100%;
}
nav#headerMenu_2 #headerMenuInner li.headerMenuLi:nth-child(3) a::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/gn-icon-free.png);background-repeat:no-repeat;background-size:100%;
}
nav#headerMenu_2 #headerMenuInner li.headerMenuLi:nth-child(4) a::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/gn-icon-venue.png);background-repeat:no-repeat;background-size:100%;
}
nav#headerMenu_2 #headerMenuInner li.headerMenuLi:nth-child(5) a::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/gn-icon-column.png);background-repeat:no-repeat;background-size:100%;
}


nav#headerMenu_2 #headerMenuInner li.headerMenuLi:hover > ul {
	display: block;
	top: 100%;
	font-size: 0.9em;
}

/* カラー変更: フッター背景を青に (#027030 → #004999) */
#footer {
	background: #004999;
	position: relative;
}

@media screen and (max-width: 750px) {
	/* カラー変更: SPフッターページ背景を青に */
	#footer #pages {
		background: #004999;
	}
}

#footer #pages li a {
	color: #fff;
}

#footer #sp_fotterMenu {
	width: 96%;
	margin: auto;
	backdrop-filter: blur(3px);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1% 0;
	display: none;
	z-index: 10;
}

@media screen and (max-width: 750px) {
	#footer #sp_fotterMenu {
		display: block;
	}
}

#footer #sp_fotterMenu #sp_fotterMenuInner {
	display: flex;
	gap: 8px;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi {
	position: relative;
	/* カラー変更: SPメニュー背景を青グラデーションに (#0C7E3C → #004999) */
	background: linear-gradient(135deg, #004999 100%, #0066CC 100%);
	background-size: 120%;
	border: 2px solid #fff;
	width: calc(100% / 4 - 2px);
	border-radius: 12px;
	width: 100%;
        /* アコーディオンの子要素（コンテンツ） */;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi a,
        #footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi button {
	position: relative;
	z-index: 2;
	/* カラー変更: テキストシャドウを青系に (#003517 → rgba(0, 73, 153, 0.5)) */
	text-shadow: 1px 1px rgba(0, 73, 153, 0.5);
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: #fff;
	font-size: 2.8vw;
	padding: 8% 4%;
	width: 100%;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi a b,
          #footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi button b {
	height: 8vw;
	align-items: center;
	display: flex;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi a.headerMenuIcon::before,
          #footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi button.headerMenuIcon::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 26px;
	vertical-align: -.2em;
	margin-right: .2em;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi a.headerMenuRanking::before,
          #footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi button.headerMenuRanking::before {
	width: 24px;
	height: 26px;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi a:hover,
          #footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi button:hover {
	opacity: 0.8;
}

/* カラー変更: SPメニューホバー時グラデーション反転 (緑系→青系) */
#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi:hover {
	background: linear-gradient(135deg, #0066CC 0%, #004999 100%);
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi:nth-child(1) {
	border-color: yellow;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi:nth-child(1) a::before {
	background-image: url(/wp-content/themes/boatrace-research/images/gn-crown.png);
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi:nth-child(2) a::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/header_btn_icon_01.svg);
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi:nth-child(3) a::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/header_btn_icon_02.svg);
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi:nth-child(4) a::before,
        #footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi:nth-child(4) button::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/header_btn_icon_03.svg);
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi > ul {
	display: none;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi .child-box-sp {
	display: none;
	width: 100%;
	position: fixed;
	right: 0;
	bottom: 100%;
	border: none;
	padding-bottom: 0;
	backdrop-filter: blur(3px);
	z-index: 1;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi .child-box-sp li {
	width: 100%;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi .child-box-sp li a {
	display: block;
	padding: 12px 24px;
	text-align: left;
	color: #fff;
	transition: background-color 0.3s;
	/* カラー変更: サブメニュー背景を青系に (rgba(1, 90, 34, 0.9) → rgba(0, 51, 102, 0.9)) */
	background: rgba(0, 51, 102, 0.9);
	border-top: 1px solid #fff;
	font-size: 14px;
	font-style: italic;
	width: 100%;
	position: relative;
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi .child-box-sp li a::before {
	content: "";
	position: absolute;
	right: 4%;
	width: 30px;
	height: 13px;
	background-size: 100%;
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/nav-arrow.svg);
}

#footer #sp_fotterMenu #sp_fotterMenuInner li.footerMenuLi .accordion-sp.active .child-box-sp {
	display: block;
}

/* 口コミ部分の装飾 20250217*/
/* カラー変更: 口コミ枠線をニュートラルグレーに (#116534 → #D9DDE4) */
#entry-content .kuchikomi-chart-table-wrap .kuchikomi-chart-wrap {
	border: 1px solid #D9DDE4;
	border-radius: 12px;
	padding: 0 0px 20px;
	background: #FFFFFF;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	margin: 0 auto;
	text-align: center;
	width: 100%;
}

@media screen and (max-width: 600px) {
	#entry-content .kuchikomi-chart-table-wrap .kuchikomi-chart-wrap {
		padding: 12px;
		background-size: 180%;
	}
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-chart-wrap article {
	margin: auto;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-chart-wrap article h3 {
	border: none;
	margin: auto;
	text-align: center;
	width: 100%;
	padding: 8px 4px 10px;
	border-radius: 8px 8px 0 0px;
	/* カラー変更: 口コミ見出し背景を青グラデーションに (#116534 → #004999) */
	background: linear-gradient(135deg, #004999 100%, #0066CC 100%);
	color: #fff;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-chart-wrap article h3 + p {
	width: 96%;
	padding: 6px 0 6px;
	background: #ffffffcc;
	backdrop-filter: blur(10px);
	border: 1px solid #f9f9f9;
	margin: 8px auto;
}

@media screen and (max-width: 600px) {
	#entry-content .kuchikomi-chart-table-wrap .kuchikomi-chart-wrap article {
		width: 100%;
	}
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-chart-wrap article canvas {
	display: block;
	margin: 0 auto;
	backdrop-filter: blur(10px);
	border-radius: 150px;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap {
	margin-top: 12px;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	border: none;
	border-spacing: 8px;
	border-collapse: separate;
	box-shadow: none;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th {
	width: 50%;
	font-size: 18px;
	font-weight: bold;
	padding: 12px;
	background-repeat: no-repeat;
	background-position: 200px center;
	margin-bottom: 12px;
	transform: skewX(-10deg);
	border: none;
	text-shadow: 1px 1px #292929;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th span {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th span::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
}

@media screen and (max-width: 600px) {
	#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th {
		font-size: 3.6vw;
		background-position: -50% center;
	}

	#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th span {
		gap: 4px;
	}

	#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th span::before {
		width: 16px;
		height: 16px;
	}
}

/* カラー変更: テーブルヘッダー背景を青グラデーションに (#0C7E3C → #004999) */
#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th:first-child {
	background: linear-gradient(135deg, #004999 100%, #0066CC 100%);
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th:first-child span::before {
	background: url(/wp-content/themes/boatrace-research/images/img_customize/good_icon.svg) no-repeat center/contain;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th:last-child {
	background-color: #343A51;
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/table_harftone_blue.png);
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table th:last-child span::before {
	background: url(/wp-content/themes/boatrace-research/images/img_customize/bad_icon.svg) no-repeat center/contain;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td {
	width: 50%;
	vertical-align: top;
	border: none;
	padding: 0;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td ul li {
	position: relative;
	padding-left: 30px;
	list-style: none;
	padding: 10px 12px 10px 40px;
}

@media screen and (max-width: 600px) {
	#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td ul li {
		font-size: 3.8vw;
	}
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td ul li::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 12px;
	margin: auto;
	width: 20px;
	height: 20px;
	background: url(/wp-content/themes/boatrace-research/images/img_customize/user_icon.svg) no-repeat center/contain #999;
	border-radius: 50px;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table {
	background-color: #F9FFFC;
}

/* カラー変更: 口コミボーダーを青に (#0C7E3C → #004999) */
#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table ul {
	border-bottom: 1px solid #004999;
}

/* カラー変更: 口コミアイテムボーダーを青に (#0C7E3C → #004999) */
#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table ul li {
	border: 1px solid #004999;
	border-bottom: none;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table ul li:nth-child(5n+1)::before {
	background-color: #0b68c4;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table ul li:nth-child(5n+2)::before {
	background-color: #0e9d53;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table ul li:nth-child(5n+3)::before {
	background-color: #bb3f3f;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table ul li:nth-child(5n+4)::before {
	background-color: #b5b737;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.good_table ul li:nth-child(5n+5)::before {
	background-color: #66D0B5;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.bad_table {
	background-color: #F8F9FF;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.bad_table ul {
	border-bottom: 1px solid #343A51;
}

#entry-content .kuchikomi-chart-table-wrap .kuchikomi-table-wrap .kuchikomi-review-table td.bad_table ul li {
	border: 1px solid #343A51;
	border-bottom: none;
}

/* サイドバーの装飾 20250220*/

aside#side .widget-wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 16px;
}

aside#side .widget-wrap article .side_title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	/* カラー変更: サイドバータイトル背景を青グラデーションに (#0C7E3C → #004999) */
	background: linear-gradient(135deg, #004999 100%, #0066CC 100%);
	background-position: 180px center;
	transform: skewX(-10deg);
	border: none;
	padding: 8px 0;
	border-radius: 4px 4px 0 0;
}

aside#side .widget-wrap article .side_title span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	transform: skewX(10deg);
}

aside#side .widget-wrap article .side_title span::before {
	content: "";
	display: inline-block;
	width: 21px;
	height: 24px;
	vertical-align: -.2em;
	margin-right: .2em;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

aside#side .widget-wrap article .side_title.post span::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/paper_icon.svg);
}

aside#side .widget-wrap article .side_title.column span::before {
	background-image: url(/wp-content/themes/boatrace-research/images/img_customize/header_btn_icon_03.svg);
}

aside#side .widget-wrap article .siderank_all {
	font-feature-settings: "palt";
	counter-reset: ranking;
	background: #F7F7F7;
	padding: 14px;
	margin-top: 12px;
	margin-bottom: 0;
    /* 順位に応じた色指定 */;
}

aside#side .widget-wrap article .siderank_all .siderank_item {
	counter-increment: ranking;
}

aside#side .widget-wrap article .siderank_all .siderank_item a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: bold;
}

aside#side .widget-wrap article .siderank_all .siderank_item a .siderank_eyecatch {
	float: none;
	position: relative;
	width: auto;
}

aside#side .widget-wrap article .siderank_all .siderank_item a .siderank_eyecatch::before {
	content: counter(ranking);
	position: absolute;
	top: -5px;
	left: -5px;
	padding: 2px 6px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	border-radius: 1px;
	box-shadow: 2px 2px 0px 0px rgba(34, 34, 34, 0.2);
}

aside#side .widget-wrap article .siderank_all .siderank_item a .siderank_explain {
	float: none;
	width: auto;
	padding-left: 0;
}

aside#side .widget-wrap article .siderank_all .siderank_item.first-item a {
	flex-direction: column;
}

aside#side .widget-wrap article .siderank_all .siderank_item.first-item a .siderank_eyecatch {
	width: 100%;
}

aside#side .widget-wrap article .siderank_all .siderank_item.first-item a .siderank_eyecatch::before {
	padding: 4px 8px;
	font-size: 14px;
}

aside#side .widget-wrap article .siderank_all .siderank_item.first-item a .siderank_eyecatch img {
	width: 100%;
	height: auto;
}

aside#side .widget-wrap article .siderank_all .siderank_item.first-item a .siderank_explain {
	width: 100%;
	font-size: 16px;
}

aside#side .widget-wrap article .siderank_all .siderank_item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

aside#side .widget-wrap article .siderank_all .siderank_item:nth-child(1) a .siderank_eyecatch::before {
	background-color: #ffd700;
}

aside#side .widget-wrap article .siderank_all .siderank_item:nth-child(2) a .siderank_eyecatch::before {
	background-color: #c0c0c0;
}

aside#side .widget-wrap article .siderank_all .siderank_item:nth-child(3) a .siderank_eyecatch::before {
	background-color: #cd7f32;
}

aside#side .widget-wrap article .siderank_all .siderank_item:nth-child(n+4) a .siderank_eyecatch::before {
	background-color: gray;
}

/* カラー変更: リスト枠線をニュートラルグレーに (#2E8B57 → #D9DDE4) */
#entry-content ul.list {
	padding: 0;
	list-style: none;
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	border: 1px solid #D9DDE4;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

#entry-content ul.list > ol {
	margin: 0 !important;
}

#entry-content ul:not(.toc_list) {
	margin: 20px 0;
	padding: 10px;
}

#entry-content ul:not(.toc_list) li {
	position: relative;
	padding: 5px 0 5px 20px;
	margin-bottom: 12px;
	line-height: 1.7;
	border-bottom: 1px solid #eee;
	list-style-type: none !important;
}

#entry-content ul:not(.toc_list) li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

#entry-content ul:not(.toc_list) li::before {
	content: "";
	display: inline-block;
    width: 15px;
    height: 15px;
	position: absolute;
    left: 0px;
    top: 10px;
    background-image: url(https://boatrace-research.jp/wp-content/themes/boatrace-research/images/list-code.svg);
}

/* 無料予想のlistタグ */

.free-detail {
    position: relative;
    margin-top: 2.8em;
}
p.free-detail-text {
    position: absolute;
    bottom: 100%;
    left: 1em;
    /* カラー変更: 無料予想タグ背景を青グラデーションに (#116534 → #004999) */
    background: linear-gradient(135deg, #004999 100%, #0066CC 100%);
    color: #fff;
    font-weight: bold;
    margin: 0;
    line-height: 1;
    padding: 0.4em 1em 0.2em;
    border-radius: 0.4em 0.4em 0 0;
}



/* 吹き出しのスタイル */
.balloon-wrap{
	display: flex;
	margin: 20px 0 30px;
	overflow: hidden;
}

#entry-content .balloon-icon img{
	width: 80px;
	height: 80px;
	margin-top: 0;
	max-width: none; /*テスト用に見栄えでつけているだけなので、画像のサイズが本番用に合えば外して大丈夫です！*/

}

.balloon-text{
	display:inline-block;
	margin:5px 0 0 10px;
	position: relative;
	padding: 10px 20px;
	border-radius: 10px;
	line-height: 1.7;
	font-size: 15px;
	color: #000;
	background: url(/wp-content/themes/boatrace-research/images/fukidashi-bg.png) right bottom/auto 100px no-repeat #eaf1fd;
}
.balloon-text:after{
	content: "";
	position: absolute;
	top: 9px;
	left: -14px;
	border-top:6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 5px solid transparent;
	border-right: 11px solid #eaf1fd;
}

  /* カラー変更: 囲みボックス枠線をニュートラルグレーに (#2E8B57 → #D9DDE4) */
  .kakomi-box9 {
    width: 100%;
    background: #fff;
    border: 1px solid #D9DDE4;
    border-radius: 8px;
    padding: 24px 24px 10px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .newtop-textbox.ranking-box ul li #entry-content {
	display: flex;
	margin: 0;
	gap: 12px;
  }

  .newtop-textbox.ranking-box ul li #entry-content .totalreview {
	width: calc(66% - 6px);
  }

  .newtop-textbox.ranking-box ul li #entry-content .totalreview table th {
	min-width: 90px;
  }

  .newtop-textbox.ranking-box ul li #entry-content .totalreview table td {
	width: 100%;
  }

  .newtop-textbox.ranking-box ul li #entry-content .meta-box {
	width: 33%;
  }

  .newtop-textbox.ranking-box ul li #entry-content .meta-box figure {
	margin: 0;
  }

  .newtop-textbox.ranking-box ul li #entry-content .meta-box figure img {
	margin: 0;
  }

  .newtop-textbox.ranking-box ul li #entry-content .meta-box .table-wrap {
	overflow-x: scroll;
  }

  @media screen and (max-width: 750px) {
	.newtop-textbox.ranking-box ul li #entry-content {
		flex-direction: column;
	}
	.newtop-textbox.ranking-box ul li #entry-content .totalreview,
	.newtop-textbox.ranking-box ul li #entry-content .meta-box {
		width: 100%;
	  }
  }

  div.newtop-textbox h2 {
    border-color: #004999;
}

#entry-content table th, #entry-content table td {
    text-align: left;
}

div.newtop-ranking-banner,body ul.list {
	border-color: #004999;
}

body #entry-content h4 {
	border-color: #004999;
	color: #004999;
}

/* =============================
   監修者・執筆者カード（投稿用）
   ============================= */
.br-authorSection {
	margin: 32px 0;
}

.br-authorSection__intro {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.7;
}

.br-authorCards {
	display: flex;
	gap: 16px;
	align-items: stretch;
}

.br-authorCard {
	flex: 1 1 0;
	border: 2px solid #004999;
	border-radius: 8px;
	padding: 12px 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.br-authorCard__header {
	font-size: 14px;
	margin-bottom: 8px;
	color: #0066CC;
}

.br-authorCard__role {
	font-weight: 700;
}

.br-authorCard__name {
	font-weight: 700;
	margin-left: 4px;
}

.br-authorCard__inner {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

#entry-content .br-authorCard__avatar img {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	object-fit: cover;
	margin-top: unset;
    max-width: unset;
}

.br-authorCard__meta {
	flex: 1 1 auto;
	font-size: 13px;
	line-height: 1.6;
}

.br-authorCard__title {
	font-weight: 700;
	margin-bottom: 6px;
}

.br-authorCard__text p {
	margin: 0 0 4px;
}

.br-authorCard__textMore {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.br-authorCard__textMore.is-open {
	max-height: 1000px;
}

.br-authorCard__more {
	margin-top: 4px;
	padding: 0;
	border: none;
	background: transparent;
	color: #0066CC;
	font-size: 13px;
	cursor: pointer;
	text-decoration: underline;
}

.br-authorCard__more[disabled] {
	display: none;
}

.br-authorCard__link {
	display: inline-block;
	margin-top: 6px;
	font-size: 13px;
	color: #0066CC;
	text-decoration: underline;
}

@media screen and (max-width: 920px) {
	.br-authorCards {
		flex-direction: column;
	}

	.br-authorCard__inner {
		align-items: flex-start;
	}
}

#entry-content .full-testimonial {
	border: 1px solid #004999;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 12px;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

#entry-content .full-testimonial a {
	margin-right: 12px;
}

#entry-content .full-testimonial .stars {
	color: #EA6600;
	margin-left: 4px;
}

#entry-content .full-testimonial .rr_review_text {
	margin-top: 4px;
	line-height: 1.6;
}

#entry-content .full-testimonial .rr_date {
	margin-top: 4px;
	font-size: 12px;
	color: #777;
}

#entry-content .rr-pager {
	margin: 16px 0;
	text-align: center;
}

#entry-content .rr-pager__page {
	display: inline-block;
	margin: 0 4px;
	padding: 4px 8px;
	border: 1px solid #004999;
	background: #fff;
	color: #004999;
	font-size: 13px;
	cursor: pointer;
}

#entry-content .rr-pager__page.is-current {
	background: #004999;
	color: #fff;
}


/* toppage faq */
.newtop-qa{
}
.newtop-qa__item{
    padding: 1.4em 0;
    display:flex;
    flex-direction:column;
    gap:.6em;
}
.newtop-qa__item + .newtop-qa__item{
    border-top: 1px solid lightgray;
}
p.newtop-qa__item-question,
p.newtop-qa__item-answer{
    display:flex;
    color:#333;
    margin:unset;
}
.newtop-textbox p.newtop-qa__item-question span,
.newtop-textbox p.newtop-qa__item-answer span{
    font-size: 1.8em;
    font-weight:bold;
    margin-right:0.4em;
    line-height: 1;
}
p.newtop-qa__item-question{
    font-weight:bold;
    width: fit-content;
    align-items: center;
}

p.newtop-qa__item-question span{
    color:#2e92cd;
}
p.newtop-qa__item-answer span{
    color:#fe4b4b;
}

.unset-all{
	font-size: unset !important;
    font-weight: unset !important;
    margin-right: unset !important;
    line-height: unset !important;
	color: unset !important;
}
