/* Theme Name: CO_2026 */

*{
	margin: 0;
	padding: 0;
}
html{ font-size: 100%; }
body {
	position: relative;
	background: #FFF;
	line-height: 1.2;
	text-align: left;
	font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック",YuGothic,"メイリオ",Meiryo,sans-serif;
	font-weight: 500;
	font-size: 1rem;
	color: #333;
	user-select:none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-webkit-touch-callout:none
}
a{
	text-decoration: underline;
	color: #06c;
	-webkit-transition: .3s;
	transition: .3s;
}
a:hover{ text-decoration: none; }
a:hover img{ opacity: .7; }
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	-webkit-transition: .3s;
	transition: .3s;
}
p{
	margin: 20px 0;
	line-height: 1.6;
}
table{
	margin: 20px 0;
	width: 100%;
	background: #fff;
	border-collapse: collapse;
}
th, td{
	padding: 10px 5px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	font-size: 0.8em;
}
th{ background: #f5f6f8; }
ul{ margin-left: 20px; }
input, textarea, select, button{
	max-width: 100%;
	box-sizing: border-box;
	font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック",YuGothic,"メイリオ",Meiryo,sans-serif;
	font-size: 1em;
}

@media(max-width: 750px){
	.inner{ padding: 4%; }
}
@media(min-width: 751px){
	#wrap{
		margin: auto;
		width: 750px;
		background: #fff;
		box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
	}
	.inner{ padding: 30px; }
}

/* ================================================
 header
================================================ */
header{
	position: fixed;
	width: 100%;
	max-width: 750px;
	height: 50px;
	background: rgba(255,255,255,0.9);
	border-bottom: 1px solid #eaf6ff;
	z-index: 9;
}
header .flx{ align-items: center; }
header #logo{ padding: 10px 0 10px 15px; }
header #logo a{
	display: flex;
	background: url(../images/logo.png) 0 0 no-repeat;
	background-size: contain;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
}
header .pr{ margin-left: 5px; }
header .pr:after{
	content: "PR";
	padding: 0 3px;
	border: 1px solid #999;
	border-radius: 2px;
	font-size: 0.643em;
	color: #999;
}
header .menu_btn{
	position: relative;
	margin-left: auto;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
header .menu_btn span{
	position: absolute;
	left: 25%;
	width: 50%;
	height: 4px;
	background: #012c61;
	border-radius: 100px;
	transition: 0.5s;
}
header .menu_btn span:nth-of-type(1){ top: 30%; }
header .menu_btn span:nth-of-type(2){ top: calc(50% - 2px); }
header .menu_btn span:nth-of-type(3){ bottom: 30%; }
header .menu_btn.open span{ top: calc(50% - 2px); }
header .menu_btn.open span:nth-of-type(1){ transform: rotate(45deg); }
header .menu_btn.open span:nth-of-type(2){ opacity: 0; }
header .menu_btn.open span:nth-of-type(3){ transform: rotate(135deg); }

/* menu
-------------------- */
#menu{
	position: fixed;
	top: 50px;
	height: 100%;
	background: #012c61;
	box-sizing: border-box;
	color: #fff;
	z-index: 9;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
#menu.open{ right: 0; }
#menu ul li a{
	position: relative;
	display: block;
	padding: 1em 0;
	text-decoration: none;
	color: #fff;
}
#menu ul li .icon{ float: right; }
@media(max-width: 750px){
	header #logo{
		padding: 15px 0 15px 15px;
		width: 130px;
	}
	header #logo a{
		width: 130px;
		height: 20px;
	}
	#menu{
		right: -70%;
		padding: 4vw;
		width: 70%;
	}
}
@media(min-width: 751px){
	header #logo{
		padding: 10px 0 10px 15px;
		width: 197px;
	}
	header #logo a{
		width: 197px;
		height: 30px;
	}
	#menu{
		right: -400px;
		padding: 15px 30px;
		width: 400px;
	}
	#menu ul li a:hover{ text-decoration: underline; }
}

/* ================================================
 main
================================================ */
main{ padding-top: 50px; }
h1, h2, h3, h4{
	position: relative;
	font-weight: bold;
}
main h1{
	padding: 4%;
	border-bottom: 5px solid #012c61;
}
main h2{
	margin: 30px 0 10px;
	padding-bottom: 20px;
	text-align: center;
	font-size: 1.5em;
}
main h2::after, main h3::after, main h4::after{
	position: absolute;
	content: "";
	background: #012c61;
	border-radius: 100px;
}
main h2::after{
	bottom: 0;
	left: 50%;
	width: 100px;
	height: 5px;
	transform: translateX(-50%);
}
main h3{
	margin: 30px 0;
	padding: 0 0 8px 13px;
	border-bottom: 2px solid #ccc;
	font-size: 1.2em;
}
main h3::after{
	top: 0;
	left: 0;
	width: 5px;
	height: calc(100% - 8px);
}
main h4{
	margin: 20px 0;
	padding-left: 16px;
}
main h4::after{
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
}
main h1.img, main h2.img, main h3.img{
	padding: 0;
	border: 0;
}
main h2.img::after, main h3.img::after{
	position: static;
	width: 0;
	height: 0;
	border: 0;
}
@media(min-width: 751px){
	main h2{ margin: 50px 0 20px; }
}

/* ------------------------------------------------
 cl_box
------------------------------------------------ */
.cl_box{ margin: 30px 0; }
.cl_box .cl_box_ttl{
	background: #012c61;
	border-radius: 5px 5px 0 0;
}
.cl_box .cl_box_ttl a{
	display: block;
	padding: 3%;
	font-weight: bold;
	font-size: 1.2em;
	color: #fff;
}
.cl_box .inner{
	background: #fff;
	border: 1px solid #ccc;
	border-top: 0;
	border-radius: 0 0 5px 5px;
}
.cl_box .osusume{
	font-size: 0.9em;
	color: #012c61;
}
.cl_box .osusume .ttl{
	display: inline-block;
	padding: 3px 10px;
	background: #f9c517;
	border-radius: 3px;
	font-weight: bold;
	font-size: 0.7em;
}
.cl_box .osusume .inner{
	margin-top: -10px;
	padding: 15px 4% 8px;
	background: #fff7d6;
	border: 0;
	border-radius: 3px;
}
.cl_box .catchcopy{ font-size: 1.1em; }
/*
.cl_box .info .img{ flex: 38% 0 0; }
.cl_box .info .spec{
	flex: 1;
	padding-left: 10px;
}
.cl_box .info .spec table{ height: 100%;}
.cl_box .info .spec table th, .cl_box .info .spec table td{
	height: calc(100% / 3);
	font-size: 0.7em;
}
*/
.cl_box .rating{
	align-items: center;
	justify-content: space-between;
	gap: 0.5%;
	overflow: hidden;
}
.cl_box .rating .rating_box{
	width: 32.5%;
	text-align: center;
	font-size: 0.7em;
}
.cl_box .rating .rating_box .rating_ttl{
	padding: 5px;
	background: #f9c517;
	font-weight: bold;
	color: #012c61;
}
.cl_box .rating .rating_box .rating_content{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	height: 48px;
	background: #fff7d6;
}
.cl_box .rating .rating_box .rating_content .icon-rate{
	position: absolute;
	width: auto;
	height: calc(100% - 16px);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.15;
	z-index: 1;
}
.cl_box .rating .rating_box .rating_content .rating_txt{ z-index: 2; }
.cl_box .feature .ttl span{
	position: relative;
	padding: 5px 30px;
	background: #012c61;
	border-radius: 3px;
	font-weight: bold;
	color: #fff;
}
.cl_box .feature .ttl span::before, .cl_box .feature .ttl span::after{
	position: absolute;
	content: "";
	bottom: 8px;
	width: 1px;
	height: 50%;
	background: #fff;
}
.cl_box .feature .ttl span::before{
	left: 20px;
	transform: rotate(-45deg);
}
.cl_box .feature .ttl span::after{
	right: 20px;
	transform: rotate(45deg);
}
.cl_box .feature ul{
	margin-top: -10px;
	padding-top: 15px;
	background: #ebf6ff;
	border: 1px solid #012c61;
	border-radius: 5px;
}
.cl_box .feature ul li{
	position: relative;
	margin: 10px 0;
	padding-left: 24px;
	font-size: 0.9em;
}
.cl_box .feature ul li:last-of-type{ margin-bottom: 0; }
.cl_box .feature ul li .icon, .cl_box .unfit ul li .icon{
	position: absolute;
	top: -3px;
	left: 0;
}
.cl_box .timerBox{
	padding: 0;
	border: 1px solid #f9c517;
	text-align: center;
	font-size: 0.8em;
}
.cl_box .timerBox dt{
	padding: 3px;
	background: #f9c517;
	border-radius: 3px 3px 0 0;
	color: #333;
}
.cl_box .timerBox dd{ padding: 5px; }
.cl_box .timerBox dd span{
	font-weight: bold;
	color: #fff;
}
.cl_box .timerBox dd b span{ color: #ffe100; }
.cl_box .unfit dt{
	padding: 5px;
	background: #666;
	border-radius: 3px 3px 0 0;
	color: #fff;
}
.cl_box .unfit dt .icon{ color: #fff; }
.cl_box .unfit dd{
	padding: 2% 4%;
	background: #f5f6f8;
	border: 0;
	border-radius: 0 0 3px 3px;
}
.cl_box .unfit ul li{
	position: relative;
	margin: 5px 0;
	padding-left: 20px;
	color: #cc031c;
}
.cl_box .unfit ul li .icon{ top: -1px; }
@media(min-width: 751px){
	.cl_box .cl_box_ttl a{
		padding: 2%;
		font-size: 1.5em;
	}
	.cl_box .catchcopy{ font-size: 1.2em; }
	.cl_box .info .spec table th, .cl_box .info .spec table td{ font-size: 0.9em; }
}

/* ================================================
 footer
================================================ */
footer{
	background: #e8efff;
	font-size: 0.6em;
}
.footer_menu{ justify-content: center; }
.footer_menu li{ margin: 0 5px; }
.footer_menu li a{
	text-decoration: none;
	color: #333;
}

/* ================================================
 styles
================================================ */
.flx{ display: flex; }
.hide{ display: none; }

/* wpcf7
-------------------- */
.wpcf7 input, .wpcf7 textarea{
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 5px;
	-webkit-appearance: none;
}
.wpcf7 input[type=submit]{
	width: 100%;
	background: #01b5d0;
	border: 0;
	color: #fff;
}

/* box
-------------------- */
.box{
	margin: 20px 0;
	padding: 2% 4%;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.accordion dt{
	position: relative;
	padding-right: 24px;
	cursor: pointer;
}
.accordion dt .icon{
	position: absolute;
	top: 0;
	right: 0;
	color: #012c61;
}

/* point
-------------------- */
.point{
	position: relative;
	display: inline-block;
	margin: 0 0 10px -10px;
	padding: 2px 16px;
	background: #f9c517;
	border-radius: 3px;
	border: 2px solid #012c61;
	font-weight: bold;
	font-size: 0.8em;
	color: #012c61;
}
.point::after{
	position: absolute;
	content: "";
	top: 100%;
	left: 10px;
	border-width: 5px 6px;
	border-style: solid;
	border-color: #012c61 #012c61 transparent transparent;
}
.point span{ font-size: 1.6em; }

.question, .answer{
	position: relative;
	padding-left: 56px;
}
.question{
	padding-bottom: 20px;
	border-bottom: 2px solid #ddd;
	font-weight: bold;
	font-size: 1.1em;
}
.question::before, .answer::before{
	position: absolute;
	top: -10px;
	left: 0;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	text-align: center;
	line-height: 46px;
	font-family: H;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
}
.question::before{
	content: "Q";
	background: #447fe0;
}
.answer::before{
	content: "A";
	background: #ff7d7d;
}

/* timerBox
-------------------- */
.timerBox{
	padding: 10px;
	background: #333;
	border-radius: 5px;
	color: #fff;
}
.timerBox b{
	font-weight: normal;
	font-size: 1.286em;
}
.timerBox span{ color: #ff0; }

/* btn
-------------------- */
.bt_official a{
	position: relative;
	display: block;
	padding: 4%;
	background: #cc031c;
	border-radius: 100px;
	box-shadow: 0 5px 0 #af051a;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-size: 1.1em;
	color: #fff;
}
.bt_official a .icon{
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
}
.bt_fuki{
	position: relative;
	margin-bottom: -5px;
	padding: 4px 16px;
	display: inline-block;
	background: #fff;
	border: 1px solid #cc031c;
	border-radius: 100px;
	font-size: 0.7em;
	z-index: 1;
}
.bt_fuki::after{
	position: absolute;
	content: "";
	top: 100%;
	left: 50%;
	border: 5px solid transparent;
	border-top: 8px solid #fff;
	transform: translateX(-50%);
}

/* table
-------------------- */
td.maru2, td.maru, td.sankaku, td.batsu{
	height: 60px;
	background-position: center;
	background-repeat: no-repeat;
	text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
td.maru2{ background-image: url(../images/hikaku_maru2.png); }
td.maru{ background-image: url(../images/hikaku_maru.png); }
td.sankaku{ background-image: url(../images/hikaku_sankaku.png); }
td.batsu{ background-image: url(../images/hikaku_batsu.png); }

table.swipe{
	position: relative;
	display: block;
	width: calc(100vw - 3.0rem);
	max-width: 100%;
	font-size: 0;
	overflow-x: scroll;
}
table.swipe:before{
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 90px;
	height: 75px;
	background: url(images/tbl_slide.png) 0 0 no-repeat;
	background-size: 90px 75px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}
table.swipe.close:before{
	opacity: 0;
	-webkit-transition: .3s;
	transition: .3s;
}
table.swipe thead, table.swipe tbody{
	display: block;
	width: -webkit-max-content;
	width: max-content;
}
table.swipe th, table.swipe td{
	width: 120px;
	font-size: .9rem;
}
table.swipe tbody th{
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	line-height: 1.4;
	z-index: 1;
}
table.swipe thead th.blank{
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1;
}
table.swipe tbody th:before, table.swipe thead th.blank:before,
table.swipe tbody th:after, table.swipe thead th.blank:after{
	position: absolute;
	content: "";
	top: 0;
	width: 1px;
	height: 100%;
	background: #ccc;
}
table.swipe tbody th:before, table.swipe thead th.blank:before{
	left: -1px;
}
table.swipe tbody th:after, table.swipe thead th.blank:after{
	right: -1px;
}
table.swipe::-webkit-scrollbar{ height: 10px; }
table.swipe::-webkit-scrollbar-track{ background: #f1f1f1; }
table.swipe::-webkit-scrollbar-thumb{ background: #bcbcbc; }

/* list
-------------------- */
.li_n{ list-style: none; }
ul.checklist li{
	position: relative;
	margin: 8px 0;
	padding-left: 24px;
}
ul.checklist li::before, ul.checklist li::after{
	position: absolute;
	content: "";
}
ul.checklist li::before{
	top: 2px;
	left: 0;
	width: 12px;
	height: 12px;
	border: 2px solid #ccc;
}
ul.checklist li:after{
	top: -2px;
	left: 6px;
	width: 6px;
	height: 12px;
	border-right: 3px solid #cc031c;
	border-bottom: 3px solid #cc031c;
	transform: rotate(45deg);
}

.arrow_down{
	position: relative;
	height: 40px;
}
.arrow_down:after{
	position: absolute;
	content: "";
	top: 10px;
	left: 50%;
	border: 40px solid transparent;
	border-top: 20px solid #012c61;
	transform: translateX(-50%);
}

.m0{ margin: 0!important; }
.m10{ margin: 10px!important; }
.mt0{ margin-top: 0!important; }
.mt5{ margin-top: 5px!important; }
.mt10{ margin-top: 10px!important; }
.mt20{ margin-top: 20px!important; }
.mt30{ margin-top: 30px!important; }
.mb0{ margin-bottom: 0!important; }
.mb10{ margin-bottom: 10px!important; }
.mb_15{ margin-bottom: -15px!important; }
.mb_20{ margin-bottom: -20px!important; }
.mb20{ margin-bottom: 20px!important; }
.mb30{ margin-bottom: 30px!important; }
.ml0{ margin-left: 0!important; }

.pt10{ padding-top: 10px!important; }
.pt20{ padding-top: 20px!important; }
.pb0{ padding-bottom: 0!important; }

.bg_or{ background-color: #447fe0; }
.bg_be{ background-color: #fbf8ee; }
.bg_gr{ background-color: #f5f6f8; }
.bg_ye{ background-color: #fff7d6; }
.bg_pk{ background-color: #fdedef; }
.bg_bl{ background-color: #ebf6ff; }

.al-c{ text-align: center; }
.al-r{ text-align: right; }

.f07em, .notes{ font-size: 0.7em; }
.f08em{ font-size: 0.8em; }
.f12em{ font-size: 1.2em;  }
.yellow{ color: #ffe100; }
.gray, .notes{ color: #999; }
.red{ color: #cc031c; }
.orange{ color: #fc9821; }
.navy{ color: #012c61; }
.marker{
	background: -webkit-linear-gradient(transparent 60%, #ffe100 60%);
	background: linear-gradient(transparent 60%, #ffe100 60%);
}
.icon-excellent { fill: #cc031c; }
.icon-good { fill: #fc9821; }
.icon-average { fill: #999; }
.icon-poor { fill: #012c61; }

@media(min-width: 751px){
	.sp{ display: none; }
}