/* navi-item
-------------------------*/
.navi-item {
	padding: 30px 0 25px;
	background: #F1F1F1;
}
@media screen and (max-width: 767px) {
	.navi-item {
		padding: 13px 0 8px;
	}
	.navi-item .wrap {
		max-width: 350px;
	}
}
.navi-item_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.navi-item_list a {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	cursor: pointer;
	display: block;
}
.navi-item_list a:hover {
	opacity: 0.7;
}
.navi-item_list li {
	width: 24%;
}
@media screen and (max-width: 767px) {
	.navi-item_list li {
		width: 20%;
	}
}
.navi-item_list li .img {
	width: 160px;
	text-align: center;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.navi-item_list li .img {
		width: 75%;
	}
}
.navi-item_list li .img img {
	vertical-align: bottom;
}
.navi-item_list li .text {
	margin-top: 10px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.navi-item_list li .text {
		font-size: 0.7rem;
		margin-top: 5px;
	}
}

/* main-slider
-------------------------*/
.t-main-slider {
	padding: 100px 0 70px;
}
@media screen and (max-width: 767px) {
	.t-main-slider {
		padding: 45px 0;
	}
}
.t-main-slider .wrap {
	max-width: 1140px;
}

.slider-products .slick-list {
	max-width: 900px;
	margin: 0 auto;
}
.slider-products .slick-arrow {
	font-size: 2.8rem;
	width: 25px;
	height: 37px;
	position: absolute;
	top: calc(50% - 55px);
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	overflow: hidden;
	text-indent: -999px;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	cursor: pointer;
}
.slider-products .slick-arrow:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
	.slider-products .slick-arrow {
		top: 120px;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
.slider-products .slick-arrow.slick-prev {
	left: 0;
}
.slider-products .slick-arrow.slick-prev::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 0.7em;
	height: 0.7em;
	border-top: 2px solid #B2B2B2;
	border-right: 2px solid #B2B2B2;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	        transform: translateY(-50%) rotate(-135deg);
	right: 0;
}
.slider-products .slick-arrow.slick-next {
	right: 0;
}
.slider-products .slick-arrow.slick-next::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 0.7em;
	height: 0.7em;
	border-top: 2px solid #B2B2B2;
	border-right: 2px solid #B2B2B2;
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
	left: 0;
}
.slider-products .slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-top: 125px;
}
@media screen and (max-width: 767px) {
	.slider-products .slick-dots {
		margin-top: 35px;
	}
}
.slider-products .slick-dots li {
	line-height: 0;
	font-size: 0;
	margin: 0 10px;
}
@media screen and (max-width: 767px) {
	.slider-products .slick-dots li {
		margin: 0 6px;
	}
}
.slider-products .slick-dots li button {
	line-height: 0;
	font-size: 0;
	width: 15px;
	height: 15px;
	background: #F1F1F1;
	border-radius: 50%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	cursor: pointer;
}
.slider-products .slick-dots li button:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
	.slider-products .slick-dots li button {
		width: 6px;
		height: 6px;
	}
}
.slider-products .slick-dots li.slick-active button {
	background: #4D4D4D;
}
.slider-products .item {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.slider-products .item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}
.slider-products .item .img {
	width: 445px;
}
@media screen and (max-width: 767px) {
	.slider-products .item .img {
		width: 225px;
	}
}
.slider-products .item .box-text {
	width: 415px;
	padding: 0 30px;
}
@media screen and (max-width: 767px) {
	.slider-products .item .box-text {
		margin-top: 25px;
		padding: 0;
		width: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
.slider-products .item .box-text .head {
	text-align: center;
}
@media screen and (max-width: 767px) {
	.slider-products .item .box-text .head {
		width: 50%;
	}
}
.slider-products .item .box-text .head .new {
	font-size: 2.9rem;
	line-height: 1;
	text-align: center;
	display: inline-block;
	min-width: 150px;
	padding: 8px;
	border: 2px solid #F6921E;
	color: #F6921E;
}
@media screen and (max-width: 767px) {
	.slider-products .item .box-text .head .new {
		font-size: 1.4rem;
		min-width: 75px;
		padding: 4px;
	}
}
.slider-products .item .box-text .head .name {
	font-size: 3.2rem;
	line-height: 1.7;
	text-align: center;
	color: #000000;
	margin-top: 15px;
}
@media screen and (max-width: 767px) {
	.slider-products .item .box-text .head .name {
		font-size: 1.6rem;
		margin-top: 10px;
	}
}
.slider-products .item .box-text .head .name:first-child {
	margin-top: 0;
}
.slider-products .item .box-text .body {
	border-top: 1px solid #4D4D4D;
	margin-top: 25px;
	padding-top: 25px;
}
@media screen and (max-width: 767px) {
	.slider-products .item .box-text .body {
		width: 50%;
		padding-top: 0;
		margin-top: 0;
		border-top: 0;
		border-left: 1px solid #4D4D4D;
	}
}
.slider-products .item .box-text .body .text {
	font-size: 4.2rem;
	line-height: 1.7;
	font-weight: 700;
	text-align: center;
	color: #000000;
}
@media screen and (max-width: 767px) {
	.slider-products .item .box-text .body .text {
		font-size: 2.1rem;
	}
}
.slider-products .item .box-text .button {
	text-align: center;
	margin-top: 30px;
}
@media screen and (max-width: 767px) {
	.slider-products .item .box-text .button {
		width: 100%;
		margin-top: 10px;
	}
}

/* t-feature
-------------------------*/
.t-feature {
	padding: 100px 0;
	background: #4D4D4D;
}
@media screen and (max-width: 767px) {
	.t-feature {
		padding: 45px 0;
	}
}
.t-feature .wrap {
	max-width: 675px;
}
@media screen and (max-width: 767px) {
	.t-feature .wrap {
		max-width: 360px;
	}
}
.t-feature .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.t-feature .list {
		margin-top: 15px;
	}
}
.t-feature .list .item {
	width: 25%;
}
@media screen and (max-width: 767px) {
	.t-feature .list .item {
		width: 30%;
	}
}
.t-feature .list .item .icon {
	width: 108px;
	height: 113px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.t-feature .list .item .icon {
		width: 54px;
		height: 60px;
	}
}
.t-feature .list .item01 .icon {
	width: 150px;
}
@media screen and (max-width: 767px) {
	.t-feature .list .item01 .icon {
		width: 78px;
	}
}
.t-feature .list .item .text {
	line-height: 1.79;
	color: #FFFFFF;
	text-align: center;
	margin-top: 35px;
}
@media screen and (max-width: 767px) {
	.t-feature .list .item .text {
		margin-top: 10px;
	}
}

/* t-about
-------------------------*/
.t-about {
	padding: 80px 0;
}
.t-about a{
	text-decoration: underline;
	color: blue;
}
.t-about a:hover{
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.t-about {
		padding: 45px 0;
	}
}

/* t-use
-------------------------*/
.t-use {
	padding: 100px 0;
	background: #F1F1F1;
}
@media screen and (max-width: 767px) {
	.t-use {
		padding: 45px 0;
	}
}
.t-use .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media screen and (max-width: 767px) {
	.t-use .list {
		display: block;
	}
}
.t-use .list .item {
	max-width: 251px;
}
@media screen and (max-width: 767px) {
	.t-use .list .item {
		max-width: 100%;
	}
	.t-use .list .item + .item {
		margin-top: 20px;
	}
}
.t-use .list .item .title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-top: 24px;
}
@media screen and (max-width: 767px) {
	.t-use .list .item .title {
		font-size: 0.9rem;
		margin-top: 10px;
	}
}
.t-use .list .item .text {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.t-use .list .item .text {
		margin-top: 10px;
	}
}

/* t-products
-------------------------*/
.t-products {
	padding: 80px 0;
}
@media screen and (max-width: 767px) {
	.t-products {
		padding: 45px 0;
	}
}
.t-products .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
	.t-products .list {
		display: block;
	}
}
.t-products .list .item {
	background: #F1F1F1;
	width: 425px;
	/*padding: 45px 45px 20px;*/
	padding: 45px 10px 20px;
	margin-right: 50px;
}
@media screen and (max-width: 767px) {
	.t-products .list .item {
		width: auto;
		padding: 30px 15px 10px;
		margin-right: 0;
		border-radius: 10px;
	}
}
.t-products .list .item:nth-child(2n) {
	margin-right: 0;
}
.t-products .list .item:nth-child(n+3) {
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.t-products .list .item:nth-child(n+2) {
		margin-top: 25px;
	}
}
.t-products .list .item .title {
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.t-products .list .item .title {
		font-size: 2.25rem;
	}
}
.t-products .list .item .copy {
	font-size: 3.0rem;
	text-align: center;
	margin-top: 10px;
}
@media screen and (max-width: 767px) {
	.t-products .list .item .copy {
		font-size: 1.6rem;
	}
}
.t-products .list .item .img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 160px;
	text-align: center;
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.t-products .list .item .img {
		font-size: 1.6rem;
	}
}
.t-products .list .item .img img {
	height: 100%;
	width: auto;
}
.t-products .list .item .button {
	text-align: center;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.t-products .list .item .button {
		margin-top: 10px;
	}
}

/* t-news
-------------------------*/
.t-news {
	padding: 100px 0;
	background: #F1F1F1;
}
@media screen and (max-width: 767px) {
	.t-news {
		padding: 45px 0;
	}
}
.t-news .list .item {
	border-top: 1px solid #4D4D4D;
}
.t-news .list .item:last-child {
	border-bottom: 1px solid #4D4D4D;
}
.t-news .list .item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 19px 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	cursor: pointer;
}
.t-news .list .item a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
	.t-news .list .item a {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		padding: 8px 0;
	}
}
.t-news .list .item .text {
	font-size: 1.8rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-right: 1em;
}
@media screen and (max-width: 767px) {
	.t-news .list .item .text {
		font-size: 0.9rem;
	}
}
.t-news .list .item .time {
	font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
	.t-news .list .item .time {
		font-size: 0.9rem;
	}
}
.t-news .button {
	text-align: center;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.t-news .button {
		margin-top: 20px;
	}
}

/* t-column
-------------------------*/
.t-column {
	padding: 80px 0;
}
@media screen and (max-width: 767px) {
	.t-column {
		padding: 45px 0;
	}
}
.t-column .button {
	text-align: center;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.t-column .button {
		margin-top: 25px;
	}
}

/* official-store
-------------------------*/
.official-store{
	padding: 60px 0;
	background: #d7132e;
}
@media screen and (max-width: 767px) {
	.official-store{
		padding: 23px 0;
	}
}
.official-store .title{
	width: 450px;
	margin: 0 auto;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.official-store .title{
		width: 180px;
	}
}
.official-store .button{
	width: 96%;
	margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
	.official-store .button{
		margin: 8px auto 0;
	}
}
.official-store .button a{
	display: block;
	background: #FFFFFF;
	border-radius: 50px;
	text-align: center;
	padding: 13px;
	transition: 0.3s;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.official-store .button a{
		width: 100%;
		padding: 6px;
	}
}
.official-store .button a:hover{
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
}
.official-store .button img{
	width: 300px;
}
@media screen and (max-width: 767px) {
	.official-store .button img{
		width: 120px;
	}
}