<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*---- reset -----*/

html {
	overflow: auto;
}

body {
	overflow: hidden;
}

figure {
	margin: 0;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 768px) {
	img {
		width: 100%;
	}
	
	.icon_cart img {
		width: auto;
	}
}


/*---- utility -----*/
.pc {
	display: block;
}

.tab {
	display: none;
}

.left_box,
.right_box {
	width: calc(50% - 10px);
}

.left_box {
	float: left;
}

.right_box {
	float: right;
}

.align_l {
	text-align: left;
}

.align_c {
	text-align: center;
}

#contents {
	padding-top: 0;
}

.flex_box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
	.left_box,
	.right_box {
		float: none;
		width: 100%;
	}
}

@media only screen and (max-width: 490px) {
	.pc {
		display: none;
	}
}


/*---- module -----*/
#contents .ttl_box {
	margin-bottom: 40px;
	text-align: left;
}

.section_ttl {
	font-size: 32px;
	font-weight: bold;
	line-height: 1.2;
}

.section_ttl:after {
	content: "";
	display: block;
	width: 60px;
	height: 5px;
	margin-top: 5px;
	background: #03253e;
	background: -moz-linear-gradient(left, #03253e 0%, #0a70bc 50%, #0069b7 100%);
	background: -webkit-linear-gradient(left, #03253e 0%,#0a70bc 50%,#0069b7 100%);
	background: linear-gradient(to right, #03253e 0%,#0a70bc 50%,#0069b7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03253e', endColorstr='#0069b7',GradientType=1 );
}

.section_ttl.align_c:after {
	margin: 5px auto 0;
}

.ttl_blue {
	font-size: 20px;
	font-weight: bold;
	color: #0069b7;
}

.more_box {
	background: #fff;
	padding: 20px;
	margin-top: 60px;
	box-sizing: border-box;
	justify-content: center;
	text-align: center;
}

.more_box p {
	margin-top: 0;
}

.btn {
	position: relative;
	display: block;
	width: 345px;
	padding: 20px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #00a0e9;
	font-size: 18px;
	color: #fff;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	border-radius: 29px;
	transition: 0.4s;
}

.btn:link,
.btn:visited {
	color: #fff;
}

.btn:after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 6px);
	right: 20px;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}

.btn:hover {
	background: #4bb9fa;
}

.btn.android {
	background: #78be49;
}

.btn.android:hover {
	background: #90cc69;
}

.lead {
	font-size: 20px;
	line-height: 1.5;
}

@media only screen and (max-width: 490px) {
	.btn {
		width: 100%;
	}
}

@media only screen and (max-width: 360px) {
	.section_ttl {
		font-size: 28px;
	}
	
	.ttl_blue {
		font-size: 17px;
	}
	
	.lead {
		font-size: 17px;
	}
	
	.more_box p {
		text-align: left;
	}
	
	.btn {
		font-size: 15px;
	}
	
	.btn:after {
		display: none;
	}
}


/*---- main_visual -----*/
.main_visual {
	position: relative;
	background: #03253e;
	background: -moz-linear-gradient(top, #03253e 0%, #0a70bc 50%, #0069b7 100%);
	background: -webkit-linear-gradient(top, #03253e 0%,#0a70bc 50%,#0069b7 100%);
	background: linear-gradient(to bottom, #03253e 0%,#0a70bc 50%,#0069b7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03253e', endColorstr='#0069b7',GradientType=0 );
	overflow: hidden;
}

.main_visual:before,
.main_visual:after {
	content: "";
	display: block;
	position: absolute;
	width: 501px;
	height: 587px;
}

.main_visual:before {
	top: 0;
	left: 0;
	background: url(../img/bg_main_before.png) no-repeat top left;
}

.main_visual:after {
	bottom: 0;
	right: 0;
	background: url(../img/bg_main_after.png) no-repeat bottom right;
}

.main_visual h1 {
	text-align: center;
	position: relative;
	z-index: 2;
}

.main_visual h1 img {
	max-width: 100%;
	height: auto;
}

.main_visual .inr {
	position: relative;
}

.direct {
	position: absolute;
	bottom: 20px;
	right: 0;
	margin: 0;
	color: #fff;
	font-size: 13px;
	text-align: right;
}

.direct span {
	display: inline-block;
	border: 1px solid #fff;
	padding: 3px 6px;
	margin-bottom: 5px;
}

.mv_icon_area {
	display: none;
}

@media only screen and (max-width: 1024px) {
	.main_visual:before,
	.main_visual:after {
		background-size: 80%;
	}
}

@media only screen and (max-width: 812px) {
	.landscape .main_visual h1 img {
		padding: 0;
	}
}

@media only screen and (max-width: 768px) {		
	.main_visual:before,
	.main_visual:after {
		background-size: 70%;
	}
	
	.main_visual h1 {
		margin-left: 0;	
	}
	
	.main_visual h1 img {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
}

@media only screen and (max-width: 767px) {
	.main_visual:before,
	.main_visual:after {
		display: none;
	}
	
	.main_visual h1 img {
		padding: 0;
	}
	
	.direct {
		display: none;
	}
	
	.mv_icon_area {
		display: block;
		padding: 20px;
		box-sizing: border-box;
		background: #f1f1f1;
	}
	
	.mv_icon_area ul {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: center;
		margin-left: -20px;
	}
	
	.mv_icon_area ul li {
		margin-left: 20px;
		width: 33.33%;
	}
}

@media only screen and (max-width: 490px) {
	.main_visual:before,
	.main_visual:after {
		display: none;
	}
	
	.main_visual h1 img {
		padding: 0;
	}
}


/* bnr_area
---------------------------------------- */
.bnr_area {
	padding: 30px 0!important;
	background: #f1f1f1;
}

.bnr_area figure {
	text-align: left;
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bnr_area figcaption {
	padding-left: 20px;
}

@media only screen and (max-width: 490px) {
	.bnr_area figure {
		flex-wrap: wrap;
	}
	
	.bnr_area figure img {
		width: 100%;
	}
	
	.bnr_area figcaption {
		padding: 10px 0 0 0;
	}
}


/* sale_info
---------------------------------------- */
.sale_info a {
	display: block;
	padding: 10px 0;
	background: #f492a6;
	background: -moz-linear-gradient(top, #f492a6 0%, #f7dfe4 100%);
	background: -webkit-linear-gradient(top, #f492a6 0%,#f7dfe4 100%);
	background: linear-gradient(to bottom, #f492a6 0%,#f7dfe4 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f492a6', endColorstr='#f7dfe4',GradientType=0 );
}

.sale_info a:link,
.sale_info a:visited,
.sale_info a:hover {
	color: #F2103E;
}

.sale_info p {
	margin: 0;
}

.sale_info .copy {
	float: left;
	font-size: 16px;
	font-weight: bold;
	line-height: 2.5em;
}

.sale_info .detail_btn {
	position: relative;
	display: block;
	float: right;
	padding: 10px 30px;
	background: #F2103E;
	border-radius: 25px;
	transition: 0.4s;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.sale_info .detail_btn:after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sale_info a:hover .detail_btn {
	background: #EF3E61;
}

@media only screen and (max-width: 823px) {
	.landscape .sale_info .copy {
		float: none;
		line-height: 1.5em;
		text-align: center;
	}
	
	.landscape .sale_info .detail_btn {
		float: none;
		text-align: center;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 768px) {
	.sale_info .copy {
		float: none;
		text-align: center;
	}
	
	.sale_info .detail_btn {
		float: none;
		max-width: 180px;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 490px) {
	.sale_info .copy {
		float: none;
		line-height: 1.5em;
		text-align: center;
	}
	
	.sale_info .detail_btn {
		float: none;
		text-align: center;
		margin-top: 10px;
	}
}


/*---- intro -----*/
.intro .img {
	width: calc(55.3% - 10px);
	margin-right: -9%;
}

.intro .text {
	width: calc(52% - 10px);
}

.intro .text p {
	margin-bottom: 30px;
}

.intro .ttl_blue {
	margin-bottom: 20px;
}

.anchor_list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: -10px;
}

.anchor_list li {
	width: calc(50% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
	position: relative;
}

.anchor_list li:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	position: absolute;
	top: calc(50% - 8px);
	right: 18px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.anchor_list a {
	position: relative;
	display: block;
	width: 100%;
	border: 2px solid #0069b7;
	padding: 13px;
	box-sizing: border-box;
	line-height: 1;
	border-radius: 22px;
	font-size: 14px;
	color: #0069b7;
	overflow: hidden;
	transition: 0.4s;
}

.anchor_list a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 43px;
	height: 43px;
	background: #0069b7;
}

.anchor_list a:hover {
	background: #0069b7;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	.intro .img {
		margin: 0 auto 30px;
	}
	
	.intro .text {
		width: 100%;
	}
}

@media only screen and (max-width: 490px) {
	.intro .img {
		width: 80%;
	}
	
	.anchor_list li {
		width: 100%;
	}
}


/*---- broadcast_4k -----*/
.broadcast_4k {
	margin-top: 100px;
	background: #f1f1f1;
	padding-bottom: 100px;
}

.feature_list {
	margin: 100px 0 0 -20px;
}

.feature_list li{
	position: relative;
	width: calc(50% - 20px);
	margin: 0 0 20px 20px;
	background: #fff;
	box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.1);
}

.feature_list li:nth-child(3),
.feature_list li:nth-child(4) {
	margin-top: 60px;
}

.feature_list li:before {
	content: "";
	display: block;
	position: absolute;
	width: 129px;
	height: 129px;
	top: -64px;
	left: 10px;
	z-index: 2;
}

.feature_list .wide_color:before {
	background: url(../img/icon_widecolor.png) no-repeat center center;
}

.feature_list .fps_60:before {
	background: url(../img/icon_60fps.png) no-repeat center center;
}

.feature_list .multi_level:before {
	background: url(../img/icon_multilevel.png) no-repeat center center;
}

.feature_list .luminance:before {
	background: url(../img/icon_luminance.png) no-repeat center center;
}

.feature_list .img img {
	display: block;
	margin-bottom: 20px;
}

.feature_list figcaption {
	padding: 0 20px 20px;
	box-sizing: border-box;
}

.xit .movie_area {
	margin: 60px 0 120px;
}

.xit .movie_area.flex_box {
	flex-wrap: nowrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.xit .movie_nav {
	width: 15%;
}

.xit .movie_nav i {
	display: block;
}

.xit .movie_nav li {
	text-align: center;
	border-bottom: 1px solid #ccc;
}

.xit .movie_nav li:last-child {
	border-bottom: 0;
}

.xit .movie_nav li a {
	padding: 10px 0;
	display: block;
	color: #aaa;
	transition: 0.4s;
}

.xit .movie_nav li a:hover {
	background: #ddd;
	color: #00a0e9;
}

.cls-1 {
	fill: #aaa;
	fill-rule: evenodd;
}

.xit .movie_nav li a:hover .cls-1 {
	fill: #00a0e9;
}

.xit .movie_img {
	position: relative;
	width: 80%;
}

.xit .movie_img img {
	max-width: 100%;
}

.xit .movie_img img:nth-child(2) {
	position: absolute;
	bottom: -15%;
	right: -20%;
}

@media only screen and (max-width: 768px) {
	.broadcast_4k .left_box {
		width: 50%;
		margin: 0 auto 30px;
	}
	
	.xit .movie_area.flex_box {
		flex-wrap: wrap;
	}
	
	.xit .movie_nav {
		width: 100%;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		margin-bottom: 20px;
	}
	
	.xit .movie_nav li {
		width: 25%;
		border-bottom: 0;
		border-right: 1px solid #ccc;
	}
	
	.xit .movie_nav li:last-child {
		border-right: 0;
	}
	
	.xit .movie_img {
		width: 100%;
	}
	
	.xit .movie_img img:nth-child(2) {
		width: auto;
		right: -15%;
	}
}

@media only screen and (max-width: 490px) {
	.broadcast_4k {
		margin-top: 60px;
		padding-bottom: 60px;
	}
	
	.broadcast_4k .left_box {
		width: 100%;
	}
	
	.feature_list li {
		width: 100%;
	}
	
	.feature_list li:nth-child(2) {
		margin-top: 60px;
	}
	
	.xit .movie_area {
		margin-bottom: 100px;
	}
	
	.xit .movie_nav li a {
		font-size: 13px;
	}
	
	.xit .movie_img img:nth-child(2) {
		width: 40%;
		bottom: -20%;
	}
	
	.column_recording {
		margin: 40px 0;
		padding: 20px;
	}
	
	.column_recording .flex_box {
		flex-wrap: wrap;
	}
	
	.column_recording .img {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.column_recording .text {
		margin-left: 0;
	}
}

@media only screen and (max-width: 360px) {
	.feature_list .wide_color:before,
	.feature_list .fps_60:before,
	.feature_list .multi_level:before,
	.feature_list .luminance:before {
		background-size: 70%;
		left: -10px;
	}
}


/*---- beauty -----*/
.beauty {
	background: url(../img/bg_beautiful_screen.jpg) no-repeat center right #000;
	padding-bottom: 100px;
	background-size: cover;
}

.beauty .section_ttl {
	color: #fff;
}

.beauty .lead {
	color: #fff;
}

.beauty .flex_box {
	margin: 60px 0 0 -20px;
}

.blue_box {
	background: rgba(0 , 105, 183, 0.9);
	width: calc(50% - 20px);
	margin-left: 20px;
	padding: 40px 20px;
	box-sizing: border-box;
}

.beauty .blue_box:nth-child(2) {
	position: relative;
	top: -210px;
}

.blue_box .box_ttl {
	color: #fff;
	font-size: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}

.blue_box .box_ttl .icon {
	margin-right: 20px;
}

.blue_box p {
	color: #fff;
}

.blue_box p:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
	.beauty {
		background-size: contain;
		background-position-y: bottom; 
	}
}

@media only screen and (max-width: 490px) {
	.beauty {
		padding-bottom: 60px;
	}
	
	.blue_box {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.beauty .blue_box:nth-child(2) {
		top: 0;
	}
}

@media only screen and (max-width: 360px) {
	.blue_box .box_ttl {
		font-size: 16px;
	}
}


/*---- xit -----*/
.xit {
	margin-top: 40px;
}

.viewer_box img {
	width: 100%;
	height: auto;
}

.viewer_screen {
	margin-bottom: 30px;
}

.thumb_list {
	margin: 0 0 60px -14px;
}

.thumb_list li {
	width: calc(25% - 14px);
	margin-left: 14px;
	border: 3px solid #fff;
	box-sizing: border-box;
	transition: 0.4s;
}

.thumb_list li:hover {
	cursor: pointer;
	border-color: #cde908;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}

.thumb_list .active {
	border-color: #cde908;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}

.btn_remocon {
	position: relative;
	margin: 30px auto 60px;
	display: block;
	width: 60%;
	background: #fff;
	padding: 2px;
	box-sizing: border-box;
	transition: 0.4s;
}

.btn_remocon:after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.btn_remocon:link,
.btn_remocon:visited {
	color: #333;
}

.btn_remocon:hover {
	color: #333;
	cursor: pointer;
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.btn_remocon .img {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	width: 100%;
}

.btn_remocon img {
	width: 18%!important;
}

.btn_remocon .img figcaption {
	margin-left: 20px;
}

.xit .feature_list {
	margin: 40px 0 0 -20px;
	justify-content: center;
}

.xit .feature_list li {
	width: calc(33.33% - 20px);
}

.xit .feature_list li:before {
	display: none;
}

.xit .feature_list .box_ttl	{
	padding-left: 15px;
	box-sizing: border-box;
	margin-bottom: 10px;
	font-size: 14px;
}

.xit .feature_list figcaption {
	font-size: 12px;
	padding: 0 15px 15px;
}

.xit .feature_list li:nth-child(3),
.xit .feature_list li:nth-child(4) {
	margin-top: 0;
}

@media only screen and (max-width: 768px) {
	.btn_remocon {
		width: 80%;
	}
}

@media only screen and (max-width: 490px) {
	.thumb_list li {
		width: calc(50% - 14px);
		margin-bottom: 14px;
	}
	
	.btn_remocon {
		width: 100%;
	}
	
	.xit .feature_list li {
		width: 100%;
	}
	
	.xit .feature_list li:nth-child(2) {
		margin-top: 0;
	}
}

@media only screen and (max-width: 360px) {
	.xit .feature_list .box_ttl {
		font-size: 16px;
	}
}


/*---- smartlife -----*/
.smartlife {
	padding-bottom: 100px;
	background: #f1f1f1;
}

.app_list {
	list-style: none;
	margin: 40px 0 0 -10px;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

.app_list li {
	margin: 0 0 10px 10px;
	width: 18.9%;
}

.app_list li img {
	width: 100%;
	height: auto;
}

.app_list li a {
	display: block;
	transition: 0.4s;
}

.app_list li a:hover {
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.special_bnr_area {
	margin-top: 60px;
	padding: 30px 0;
	border-top: 1px solid #ccc;
}

.special_bnr_area figcaption {
	margin-bottom: 10px;
	text-align: center;
}

.special_bnr_area a {
	display: block;
	transition: 0.4s;
}

.special_bnr_area a:hover {
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

.point {
	margin-top: 60px;
	align-items: center;
}

.point + .point {
	flex-direction: row-reverse;
}

.point .img,
.white_box {
	width: calc(50% - 20px);
}

.point .img {
	text-align: center;
}

.point .img img {
	width: 68%!important;
}

.white_box {
	background: #fff;
	padding: 30px 20px;
	box-sizing: border-box;
	margin-left: 20px;
}

.white_box p:last-child {
	margin-bottom: 0;
}

.point + .point .white_box {
	margin-left: 0;
	margin-right: 20px;
}

.vod_box {
	margin-top: 60px;	
}

.hulu_box,
.unext_box {
	width: calc(50% - 10px);
	box-sizing: border-box;
}

.hulu_box {
	border: 2px solid #1f1f1f;
	background: #fff;
}

.unext_box {
	margin-left: 20px;
	border: 2px solid #333b45;
	background: #fff;
}

.hulu_box .box_ttl {
	padding: 20px 0;
	background: #1f1f1f;
	font-size: 18px;
	text-align: center;
	color: #6a3;
}

.unext_box .box_ttl {
	padding: 20px 0;
	background: #333b45;
	font-size: 18px;
	text-align: center;
	color: #fff;
}

.hulu_box .box_inr,
.unext_box .box_inr {
	padding: 18px;
	box-sizing: border-box;
}

.hulu_box .img,
.unext_box .img	{
	margin-bottom: 20px;
}

.hulu_box .text p,
.unext_box .text p {
	margin: 0;
}

.hulu_box .text p + p,
.unext_box .text p + p {
	margin-top: 20px;
}

.bnr_hulu,
.bnr_unext {
	margin-top: 20px;
	display: block;
	transition: 0.4s;
}

.bnr_hulu img,
.bnr_unext img {
	width: 100%;
	height: auto;
}

.bnr_hulu:hover,
.bnr_unext:hover {
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 823px) {
	.landscape .app_list li {
		width: 23.7%;
	}
	
	.landscape .app_list li img {
		width: 100%;
		height: auto;
	}
	
	.landscape .unext_box .img {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.landscape .unext_box .text {
		width: 100%;
		margin: 0;
	}
}

@media only screen and (min-width: 769px) and (max-width: 959px) {
	.app_list li {
		margin: 0 0 10px 8px;
	}
}

@media only screen and (max-width: 768px) {
	.app_list {
		justify-content: center;
	}
}

@media only screen and (max-width: 490px) {		
	.app_list {
		justify-content: flex-start;
	}
	
	.app_list li {
		width: 47%;
		margin-left: 8px;
	}
	
	.app_list li img {
		width: 100%;
		height: auto;
	}
	
	.point .img {
		width: 100%;
		margin: 0 auto 30px;
	}
	
	.point .white_box {
		width: 100%;
		margin-left: 0;
	}
	
	.point + .point .white_box {
		margin-right: 0;
	}	
	
	.hulu_box,
	.unext_box {
		width: 100%;
	}
	
	.hulu_box {
		margin-bottom: 20px;
	}
	
	.unext_box {
		margin-left: 0;
	}
}

@media only screen and (max-width: 490px) {
	.smartlife {
		padding-bottom: 60px;
	}
}

@media only screen and (max-width: 320px) {
	.app_list li {
		width: 46%;
	}
}


/* smartspeaker
---------------------------------------- */
.smartspeaker {
	padding-top: 0 !important;
}

.smartspeaker .flex_box	{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.smartspeaker .text_area {
	padding: 100px 0;
	background: #fff;
	position: relative;
	width: 50%;
}

.smartspeaker .text_area .area_wrap {
	width: 475px;
	float: right;
}

.smartspeaker .text_area .inr {
	width: 445px;
	margin-left: 0;
}

.smartspeaker .text_area .section_ttl {
	padding: 0;
	font-style: italic;
}

.smartspeaker .text_area .btn {
	width: 100%;
	padding: 20px 0;
	background: #333;
	border-radius: 36px;
	color: #fff;
}

.smartspeaker .text_area .btn:hover {
	opacity: 1;
	background: #666;
}

.smartspeaker .image_area {
	background: url(../img/bg_smartspeaker.jpg) no-repeat center center;
	width: 50%;
	position: relative;
}

.smartspeaker .image_area .area_wrap {
	width: 475px;
	height: 100%;
}

.smartspeaker .image_area .inr {
	width: 445px;
	height: 100%;
}

.smartspeaker .badge_list {
	position: absolute;
	padding: 0;
	margin: auto;
	top: calc(50% - 35px);
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	list-style: none;
}

.smartspeaker .badge_list li {
	margin-left: 40px;
}


@media only screen and (max-width: 823px) {
	.landscape .smartspeaker .flex_box {
		flex-direction: column-reverse;
	}
	
	.landscape .smartspeaker .image_area {
		width: 100%;
	}
	
	.landscape .smartspeaker .image_area .area_wrap {
		width: 100%;
	}
	
	.landscape .smartspeaker .badge_list {
		padding: 80px 0;
		position: static;
		margin-left: -40px;
	}
	
	.landscape .smartspeaker .text_area {
		width: 100%;
		padding-top: 40px;
	}
	
	.landscape .smartspeaker .text_area .area_wrap {
		width: 100%;
		float: none;
	}
	
	.landscape .smartspeaker .text_area .inr {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	.smartspeaker .flex_box {
		flex-direction: column-reverse;
	}
	
	.smartspeaker .image_area {
		width: 100%;
	}
	
	.smartspeaker .image_area .area_wrap {
		width: 100%;
	}
	
	.smartspeaker .badge_list {
		padding: 150px 0;
		position: static;
		margin-left: -40px;
	}
	
	.smartspeaker .text_area {
		width: 100%;
		padding-top: 40px;
	}
	
	.smartspeaker .text_area .area_wrap {
		width: 100%;
		float: none;
	}
	
	.smartspeaker .text_area .inr {
		width: 100%;
	}
}

@media only screen and (max-width: 490px) {
	.smartspeaker .text_area {
		padding-bottom: 60px;
	}
	
	.smartspeaker .image_area .inr {
		width: 100%;
	}
	
	.smartspeaker .badge_list {
		flex-wrap: wrap;
		justify-content: center;
		padding: 60px 0;
		margin-left: 0;
		width: 100%;
	}
	
	.smartspeaker .badge_list li {
		margin-left: 0;
	}
	
	.smartspeaker .badge_list li + li {
		margin-top: 20px;
	}
}


/*---- sound -----*/
.sound {
	position: relative;
	background: url(../img/bg_sound.png) no-repeat top center;
    background-size: cover;
    padding-bottom: 100px;
}

.sound .lead {
	position: absolute;
	top: 84px;
	left: calc(50% - 140px);
}

.sound .flex_box {
	margin-top: 790px;
	margin-left: -20px;
}

.sound .white_box .box_ttl {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #0069b7;
	margin-bottom: 30px;
}

.sound .white_box .box_ttl .icon {
	margin-right: 20px;
}

@media only screen and (max-width: 768px) {
	.sound {
		background-size: contain;
	}
	
	.sound .ttl_box {
		margin-top: -70px;
	}
	
	.sound .lead {
		top: 13px;
		right: 20px;
		left: 0;
		text-align: right;
	}
	
	.sound .flex_box {
		margin-top: 295px;
	}
}

@media only screen and (max-width: 640px) {
	.landscape .sound .ttl_box {
		margin-top: 270px;
	}
	
	.landscape .sound .lead {
		position: static;
		text-align: center;
	}
	
	.landscape .sound .flex_box {
		margin-top: 0;
	}
}

@media only screen and (max-width: 490px) {
	.sound {
		padding-bottom: 60px;
	}
	
	.sound .ttl_box {
		margin-top: 140px;
	}
	
	.sound .lead {
		position: static;
		text-align: center;
	}
	
	.sound .flex_box {
		margin-top: 0;
	}
	
	.sound .white_box {
		width: 100%;
	}
}

@media only screen and (max-width: 360px) {
	.sound .white_box .box_ttl {
		font-size: 17px;
		justify-content: flex-start;
	}
}


/*---- iot -----*/

.iot {
	position: relative;
	background: url(../img/bg_iot.jpg) no-repeat center -60px;
	background-size: cover;
	padding-bottom: 100px;
}

.iot .lead {
	position: absolute;
	top: 84px;
	left: calc(50% - 50px);
	padding-left: 30px;
}

.iot .feature_list li:before{
	content: none;
}

.iot .feature_list h3 {
	padding-left: 15px;
	box-sizing: border-box;
	margin-bottom: 10px;
	font-size: 14px;
}

.iot .feature_list figcaption{
	padding: 0 15px 20px;
	font-size: 13px;
}

#contents .iot .img img{
	margin: 10px auto;
}

.iot figcaption a.other_win:nth-of-type(1){
	margin-top: 10px;
	display: inline-block;
}

#contents .iot .sub_ttl {
	margin: 50px 0 30px 10px;
	color: #fff;
	overflow: hidden;
}

#contents .iot .sub_ttl span{
	background:transparent;
}

#contents .iot .sub_ttl:after{
	left: auto;
}

@media only screen and (min-width: 768px) {

	.iot .feature_list{
		margin: 370px 0 0 0px;
	}
	
	.iot .feature_list:nth-of-type(2){
		margin: 0;
	}

	.iot .feature_list li {
		width: calc(33.33% - 23px);
		margin: 0 10px 20px;
	}
}

@media only screen and (max-width: 768px) {
	
	#contents section.iot {
		padding-top: 50px;
		background-size: 100%;
		background-position:center top;
	}
	
	.iot .flex_box {
		margin-top: 0px;
	}

	.iot .lead {
		position: static;
		margin-bottom: 40px;
		padding-left: 0;
	}

	.iot .ttl_box {
		margin-top: 60%;
	}
	
	.iot .feature_list li:nth-child(3),
	.iot .feature_list li:nth-child(4) {
		margin-top: 0px;
	}
	#contents .iot .sub_ttl{
		color: #444;
	}
}

@media only screen and (max-width: 490px) {
	
	.iot {
		padding-bottom: 60px;
	}

}


/*---- func -----*/
.func {
	background: #f1f1f1;
	padding-bottom: 100px;
}

.func_list {
	margin-left: -14px;
	justify-content: center;
}

.func_list figcaption {
	margin-top: 10px;
	font-size: 20px;
	color: #0069b7;
	text-align: center;
	font-weight: bold;
}

.func_list li {
	width: calc(25% - 14px);
	margin-left: 14px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
	.func_list figcaption {
		font-size: 15px;
	}
}

@media only screen and (max-width: 490px) {
	.func {
		padding-bottom: 60px;
	}
	
	.func_list li {
		width: calc(50% - 14px);
	}
	
	.func_list figcaption {
		font-size: 14px;
	}
}

@media only screen and (max-width: 360px) {
	.func_list figcaption {
		font-size: 14px;
	}
}</pre></body></html>