@charset "utf-8";
/* CSS Document */
/*all*/
body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic";
  color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
p {
    line-height: 1.6;
    word-wrap: break-word;
	margin-bottom: 10px;
}
img{
    max-width: 100%;
	vertical-align: bottom;
}

#wrapper{
    width: 740px;
	margin:0 auto;
    overflow: hidden;
    color: #2b3135;
	box-shadow: rgb(238, 238, 238) 0px 0px 20px 10px;
}
#content {
    margin:0 auto;
    width: 95%;
    text-align: justify;
    background-color: #fff;
}
@media screen and (max-width:760px){
	#wrapper {
		width: 100%;
	}
}

.mb0 {
	margin-bottom: 0;
}
.mb10{
    margin-bottom: 10px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.tac{
	text-align: center;
}
.tar{
	text-align: right;
}
.fwB{
    font-weight: bold;
}
.fsS{
	font-size: 0.6rem;
}
.fsSM {
	font-size: 1.2em;
}
.fsL{
	font-size: 1.6rem;
}
.fcBl {
    color: #0285d1;
}
.fcR {
	color: #ff0000;
}
.fcP {
	color: #e7316c;
}
.fcY {
	color: #fff29b;
}
.fcG {
	color: #6F6F6F;
}
.fcO {
	color: #ffa500;
}
.marker {
	background: linear-gradient(transparent 60%, #fff29b 0%);
}
.marker_red {
	background: linear-gradient(transparent 60%, #ff9b9b 0%);
}
.bgY {
	background: #fff8ca;
}

/*hover*/
a.site_btn{
	cursor: pointer;
    cursor: hand;
}

/*pc・sp responsive*/
@media screen and (max-width:760px){
    .sp_ds{
        display: block;
    }
    .pc_ds{
        display: none;
    }
}
@media screen and (min-width:760px){
    .sp_ds{
        display: none;
    }
    .pc_ds{
		display: block;
    }
}

/*first*/
.fukidashi-l{
	display: flex;
	align-items: center;
}
.fukidashi-l img{
	max-width: 100px;
}
.fukidashi-r{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.fukidashi-r img{
	max-width: 100px;
}
.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 10px 0 10px 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #c9eff0;
  border-radius: 10px
}

.balloon1-left:before {
  content: "";
  position: absolute;
  top: 60%;
  left: -20px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-right: 15px solid #c9eff0;
}

.balloon1-left p {
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.balloon1-right {
  position: relative;
  display: inline-block;
  margin: 10px 15px 10px 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #f5deeb;
  border-radius: 10px;
}

.balloon1-right:before {
  content: "";
  position: absolute;
  top: 55%;
  right: -20px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-left: 15px solid #f5deeb;
}

.balloon1-right p {
  margin: 0;
  padding: 0;
  font-size: 13px;
}

/*point*/
.ttl01 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
    padding: 3%;
    margin: 50px 0 20px 0!important;
    box-shadow: #ccc 4px 5px 5px;
    background: linear-gradient(to right, #b68ddb, #0285d1);
}
.point01, .point02, .point03, .point04, .point05 {
    border: solid 2px #6db6ef;
	border-radius: 10px;
}
.point01_sub, .point02_sub, .point03_sub, .point04_sub, .point05_sub {
    font-weight: bold;
    color: #fff;
    background-color: #6db6ef;
    margin-top: 0;
    padding: 2%;
}
.point01_contents, .point02_contents, .point03_contents, .point04_contents, .point05_contents {
    margin: 3%;
}
.point01_bg01, .point02_bg01 {
	background: #ecf8ff;
	padding: 20px 20px 10px;
}
.point01_bg02 {
	background: #f8f1ff;
	padding: 20px 20px 10px;
}

/*矢印アニメーション*/
.cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
	position: relative;
	display: flex;
	height: 95px;/*画面いっぱいにする場合100vh*/
	margin: -1.5em auto 1em;
	justify-content: center;
	align-items: center;
}
.cp_arrows .cp_arrow {
	position: absolute;
	top: 85%;/*着地点（サンプルは[class:cp_arrows]height300pxの50%）*/
	left: 46%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
	opacity: 0;
}
.cp_arrows .cp_arrowfirst {
	-webkit-animation: arrow-move08 2s ease-in-out infinite;
	        animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrowsecond {
	-webkit-animation: arrow-move08 2s 1s ease-in-out infinite;
	        animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before, .cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 40px;
	height: 10px;
	content: '';
	background: #85cbf3;
}
.cp_arrows .cp_arrow:before {
	-webkit-transform: rotate(30deg) translateX(-30%);
	        transform: rotate(30deg) translateX(-30%);
	-webkit-transform-origin: top left;
	        transform-origin: top left;
}
.cp_arrows .cp_arrow:after {
	-webkit-transform: rotate(-30deg) translateX(30%);
	        transform: rotate(-30deg) translateX(30%);
	-webkit-transform-origin: top right;
	        transform-origin: top right;
}
@-webkit-keyframes arrow-move08 {
	0% {
		top: 40%;/*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes arrow-move08 {
	0% {
		top: 40%;/*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.conclusion {
  margin: 20px auto;
  border: solid 5px #ea4283;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22); /* 影の色 */
}
.conclusion-title {
  background: #ea4283; /* タイトル背景色 */
  padding: 7px 0;
  text-align: center;
  color: #FFF; /* タイトル文字色 */
  font-weight: bold;
  letter-spacing: 0.05em;
}
.conclusion p {
  margin: 0;
  padding: 3%;
  line-height: 1.2;
}
.conclusion-txt {
  justify-content: center;
  align-items: center;	
}

/*point02*/
table.item_info{
    width: 100%;
	border: 3px solid #e1e1e1;
}
table.item_info th {
    padding: 1%;
    font-size: 0.8em;
    line-height: 1.2;
    font-weight: bold;
    border-bottom: 2px solid #ffffff;
    border-right: 2px dotted #fff;
    background: #e1e1e1;
    text-align: center;
    width: 25%;
    vertical-align: middle;
}
table.item_info td{
	border-right: 2px dotted #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    padding: 2%;
    font-size: 0.8em;
    width: calc(100% / 3);
    text-align: center;
    vertical-align: middle;
	line-height: 1.2;
}

/*cqpro*/
.comparison_box{
    width: 100%;
	border: 3px solid #6db6ef;
}
.comparison_box th {
    padding: 1%;
    font-size: 0.8em;
	color: #fff;
    line-height: 1.2;
    font-weight: bold;
    border-bottom: 1px solid #ffffff;
    border-right: 1px dotted #fff;
    background: #6db6ef;
    text-align: center;
    width: 13%;
    vertical-align: middle;
}
.comparison_box td{
	border-right: 2px dotted #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    padding: 2%;
    font-size: 0.8em;
	width: calc(100% / 6);
    text-align: center;
    vertical-align: middle;
	line-height: 1.2;
}
.comparison_box td:last-child {
	border-right: none;
}
.comparison_box tr:last-child th, .comparison_box tr:last-child td{
	border-bottom: none;
}
.comparison_box td img {
	height: 90px;
	margin-top: 10px; 
}
.comparison_box td a {
	color: #2b3135;
}
.comparison_box .ex {
	color: #ff0000;
	font-size: 2em;
}
.comparison_box .go {
	color: #aadaf6;
	font-size: 2em;
}
.comparison_box .so {
	color: #f5c132;
	font-size: 2em;
}
.comparison_box .bad {
	font-size: 2em;
}
.site_btn01{
    display: block;
    width: 90%;
    margin: 5px auto;
    line-height: 1.2;
    padding: 5px;
    border-radius: 5px;
    background-color: #ea4283;
    box-shadow: 2px 2px 0 #cb1751;
    color: #fff;
    font-weight: bold;
}
.site_btn02{
    display: block;
    width: 100%;
    margin: 5px auto;
    line-height: 1.2;
    padding: 5px;
    border-radius: 5px;
    background-color: #6F6F6F;
    box-shadow: 2px 2px 0 #484848;
    color: #fff;
    font-weight: bold;
}
@media screen and (max-width:760px){
	.comparison_box {
		overflow-x: scroll;
	}
	.comparison_box table{
		width: 630px;
	}
	.comparison_box .sticky {
        position: sticky;
		left: 0;
    }
}

/*evaluation*/
table.evaluation{
    width: 100%;
	margin: 0 auto;
	border: 3px solid #e1e1e1;
}
table.evaluation th {
    padding: 1%;
    font-size: 0.8em;
    line-height: 1.2;
    font-weight: bold;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #fff;
    background: #e1e1e1;
    text-align: center;
    width: 25%;
    vertical-align: middle;
}
table.evaluation td{
	border-right: 2px dotted #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    padding: 2%;
    font-size: 0.8em;
    width: calc(100% / 2);
    text-align: center;
    vertical-align: middle;
	line-height: 1.2;
}
table.evaluation .ex {
	color: #ff0000;
	font-size: 2em;
}
table.evaluation .go {
	color: #aadaf6;
	font-size: 2em;
}
table.evaluation .so {
	color: #f5c132;
	font-size: 2em;
}
table.evaluation .bad {
	font-size: 2em;
}
/*.eva_site_btn{
    display: block;
    width: 80%;
    margin: 5px auto;
    line-height: 1.2;
    padding: 5px;
    border-radius: 5px;
    background-color: #ea4283;
    box-shadow: 2px 2px 0 #cb1751;
    color: #fff;
    font-weight: bold;
}*/
.eva_site_btn02{
    display: block;
    width: 80%;
    margin: 5px auto;
    line-height: 1.2;
    padding: 5px;
    border-radius: 5px;
    background-color: #6F6F6F;
    box-shadow: 2px 2px 0 #484848;
    color: #fff;
    font-weight: bold;
}
.eva_site_btn{
    position: relative;
    display: block;
    width: 80%;
    padding: 5px;
    margin: 5px auto;
    border-radius: 5px;
    background-color: #ea4283;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}
.ttl02 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  padding: 3%;
  margin: 8% 0 4% 0!important;
  box-shadow: #ccc 4px 5px 5px;
  background: #f3bbc9;
  line-height: 1.1;
	
}
.ttl03{
	position: relative;
    line-height: 1.2;
    font-weight: bold;
    padding: 0.5rem 0;
    margin: 5% 0 4%;
}
.ttl03:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: linear-gradient(to right, #b68ddb, #0285d1);
}
.cqpro_point, .cqpro_use, .cqpro_good, .panasonic_point, .panasonic_use, .panasonic_cta, .icelady_point, .icelady_use, .icelady_cta {
	width: 90%;
	margin: 0 auto;
}
.cqpro_bgY {
	background: #fff29b;
	padding: 20px 20px 10px;
}
/*アニメーション*/
.shuffling {
    animation-duration: 1.4s!important;
    -webkit-animation-duration: 1.4s;
    -ms-animation-duration: 1.4s;
    -moz-animation-duration: 1.4s!important;
    -webkit-animation-name: shuffling;
    -moz-animation-name: shuffling;
    -o-animation-name: shuffling;
    animation-name: shuffling;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-moz-keyframes shuffling {
    0% {-moz-transform: skewX(9deg);}
    10% {-moz-transform: skewX(-8deg);}
    20% {-moz-transform: skewX(7deg);}
    30% {-moz-transform: skewX(-6deg);}
    40% {-moz-transform: skewX(5deg);}
    50% {-moz-transform: skewX(-4deg);}
    60% {-moz-transform: skewX(3deg);}
    70% {-moz-transform: skewX(-2deg);}
    80% {-moz-transform: skewX(1deg);}
    90% {-moz-transform: skewX(0deg);}
    100% {-moz-transform: skewX(0deg);}
}
@-o-keyframes shuffling {
    0% {-o-transform: skewX(9deg);}
    10% {-o-transform: skewX(-8deg);}
    20% {-o-transform: skewX(7deg);}
    30% {-o-transform: skewX(-6deg);}
    40% {-o-transform: skewX(5deg);}
    50% {-o-transform: skewX(-4deg);}
    60% {-o-transform: skewX(3deg);}
    70% {-o-transform: skewX(-2deg);}
    80% {-o-transform: skewX(1deg);}
    90% {-o-transform: skewX(0deg);}
    100% {-o-transform: skewX(0deg);}
}
@-webkit-keyframes shuffling {
    0% {-webkit-transform: skewX(9deg);}
    10% {-webkit-transform: skewX(-8deg);}
    20% {-webkit-transform: skewX(7deg);}
    30% {-webkit-transform: skewX(-6deg);}
    40% {-webkit-transform: skewX(5deg);}
    50% {-webkit-transform: skewX(-4deg);}
    60% {-webkit-transform: skewX(3deg);}
    70% {-webkit-transform: skewX(-2deg);}
    80% {-webkit-transform: skewX(1deg);}
    90% {-webkit-transform: skewX(0deg);}
    100% {-webkit-transform: skewX(0deg);}
}
@keyframes shuffling {
    0% {transform: skewX(9deg);}
    10% {transform: skewX(-8deg);}
    20% {transform: skewX(7deg);}
    30% {transform: skewX(-6deg);}
    40% {transform: skewX(5deg);}
    50% {transform: skewX(-4deg);}
    60% {transform: skewX(3deg);}
    70% {transform: skewX(-2deg);}
    80% {transform: skewX(1deg);}
    90% {transform: skewX(0deg);}
    100% {transform: skewX(0deg);}
}
/*refrection*/
.reflection{
display:inline-block;
position:relative;
overflow:hidden;
}
.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 3s ease-in-out infinite;
}
@keyframes reflection {
0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/*footer*/
footer {
    padding: 10% 2% 10%;
    text-align: center;
    background-color: #e1e1e1;
	font-size: 13px;
}

footer a {
    color: #2b3135;
	text-decoration: none;
}

.fukidashi-l img,.fukidashi-r img {
    max-width: 30%!important;
}

/* ぺこぺこ凹むボタン */
.pekopeko {
    animation: pekopeko 2s infinite;
    box-shadow: 0 3px 0 rgb(159, 9, 57, 1);
}
@keyframes pekopeko {
    0% {
        box-shadow: 0 3px 0 rgb(159, 9, 57, 1);
        top: 0px;
    }
    10% {
        box-shadow: 0 0 0 rgb(159, 9, 57, 1);
        top: 3px;
    }
    20% {
        box-shadow: 0 3px 0 rgb(159, 9, 57, 1);
        top: 0px;
    }
    30% {
        box-shadow: 0 0 0 rgb(159, 9, 57, 1);
        top: 3px;
    }
    40% {
        box-shadow: 0 3px 0 rgb(159, 9, 57, 1);
        top: 0px;
    }
}

/* accordion*/
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
padding: 1em;
display: block;
font-weight: bold;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.25em;
top: 1.25em;
width: 2px;
height: 0.75em;
background-color: #fff;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
margin: 0 3%;
overflow: hidden;
}
.toggle:checked + .title + .content {
max-height: 2000px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}

.mt3{
    margin-top: 3%;
}