@charset "UTF-8";
/* sidebar
--------------------------------*/
.sidebar {
  position: fixed;
  top: 44px;
  right: 0;
  z-index: 9999;
  height: 98%;
}
.sidebar ul {
  /*height: 582px;*/
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  height: 100%;
}
.sidebar ul .side_list {
  /*writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: sideways;
  -ms-writing-mode: tb-rl;
  box-sizing: inherit;
  height: 193px;*/
  height: calc(100% / 3);
  display: block;
}
.sidebar ul .side_list a {
  display: block;
  padding: 0 13px;
  height: 100%;
  display: flex;
  align-items: center;
}
.sidebar ul .side_list a img {
  padding: 20px 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.sidebar ul .catalog {
  background-color: #5f8ac1;
}
.sidebar ul .channel {
  background-color: #3368ae;
}
.sidebar ul .showroom {
  background-color: #5f8ac1;
}
@media screen and (max-width: 1100px) {
	.sidebar{
		position: absolute;
		top: auto;
		bottom: 0;
		left: 0;
		height: auto!important;
		width: 100%;
	}
	.sidebar ul{
		display: flex;
		height: 56px;
	}
	.sidebar ul .side_list{
		height: auto;
		width: 33.3333%;
		position: relative;
	}
	.sidebar ul .side_list a{
		font-size: 1.4rem;
		color: #fff;
		justify-content: center;
	}
	.sidebar ul .side_list a img{
		margin-right: 10px;
	}
	.sidebar ul .catalog,
	.sidebar ul .showroom{
    background-color: rgba(14,87,162,.7);
	}
	.sidebar ul .channel {
    background-color: rgba(14,87,162,.9);
	}
}

@media screen and (max-width: 767px) {
	.sidebar{
		position: static;
	}
	.sidebar ul{
		display: block;
		height: auto;
		width: 94%;
		margin: 7% auto;
	}
	.sidebar ul .side_list{
		width: 100%!important;
	}
	.sidebar ul .side_list + .side_list{
		margin-top: 2.8%;
	}
	.sidebar ul .side_list a {
		font-size: 3.7vw;
		height: 18.6vw;
	}
	.sidebar ul .side_list a img{
		margin-right: 2.6vw;
		padding: 0!important;
		margin-top: -0.5vw;
	}
	.sidebar ul .catalog,
	.sidebar ul .showroom,
	.sidebar ul .channel {
    background-color: #3d7bc3;
	}
	.sidebar ul .channel a{
		letter-spacing: 0.12em;
	}
	.sidebar ul .catalog img{
		width: 4.6vw;
	}
	.sidebar ul .channel img{
		width: 6vw;
	}
	.sidebar ul .showroom img{
		width: 6.6vw;
	}
}


/* mv
--------------------------------*/
#mv {
  line-height: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  margin-top: 108px;
}
#mv .slide {
  /*height: 650px;*/
  overflow: hidden;
  position: relative;
  background: no-repeat center center /cover;
  height: calc(100vh - 114px - 145px);
  min-height: 500px;
  z-index: 0;
}
#mv .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(34, 34, 34, .3);*/
  z-index: 1;
}
#mv .slide img {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
/*#mv .slide1 {
  background-image: url(../images/slider1.jpg);
}
#mv .slide2 {
  background-image: url(../images/slider2.jpg);
}
#mv .slide3 {
  background-image: url(../images/slider3.jpg);
}
#mv .slide4 {
  background-image: url(../images/slider4.jpg);
}
#mv .slide5 {
  background-image: url(../images/slider5.jpg);
}*/
#mv .slick-dots {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto 0;
  display: flex;
  justify-content: center;
  transform: rotate(-90deg);
  z-index: 1000;
}
#mv .slick-dots, #mv .slick-dots li {
  font-size: 0;
  line-height: 1;
}
#mv .slick-dots li {
  margin: 0 14px;
  position: relative;
}
#mv .slick-dots button {
  text-indent: 101%;
  font-size: 0;
  overflow: hidden;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
}
#mv .slick-dots .slick-active button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
}
#mv .wrap {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mv .ttl {
  font-size: 7rem;
  letter-spacing: .03em;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-align: center;
}
#mv .txt {
  color: #fff;
  line-height: 2.25;
  letter-spacing: .05em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 1100px) {
	#mv .slide{
		height: 40vw;
		min-height: inherit;
	}
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	#mv .slide img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 767px) {
	#mv{
		margin-top: 50px;
	}
	#mv .slide{
		height: auto;
		min-height: inherit;
	}
	#mv .slide img{
		width: 100%;
		position: static;
		transform: none;
	}
	
	#mv .slick-dots {
		position: absolute;
		top: auto;
		bottom: 8%;
		left: 50%;
		transform: translateX(-50%);
	}
	#mv .slick-dots button{
		width: 2.4vw;
		height: 2.4vw;
	}
	#mv .slick-dots .slick-active button::before{
		width: 6.6vw;
		height: 6.6vw;
	}
}
/* solution-area
--------------------------------*/
.solution-area {
	text-align: center;
	margin-top: 45px;
}
@media screen and (max-width: 1100px) {
	.solution-area {
		margin-top: 30px;
	}
}
@media screen and (max-width: 767px) {
	.solution-area {
		margin-top: 25px;
	}
}
/* smart-area
--------------------------------*/
.smart-area{
    margin-top: 45px;
    padding-bottom: 20px;
    border: 1px solid #2463b2;
}
.smart-area h2{
    margin: 0 auto 40px;
    padding: 10px 0;
    font-size:2.4rem;
    font-weight: bold;
    color: #2357a5;;
    border-bottom:1PX solid #2463b2;
    text-align: center;
}
.smart-area p{
    text-align: center;
    font-size: 1.4rem;
}
.smart-area .flex{
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    margin-top: 40px;
    padding: 0 20px;
}
.smart-area .smart-box{
    width: 24%;
}
.smart-area .smart-box h3{
    padding: 15px 0;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    background: #297ac9;
}
.smart-area .smart-box dl{
    border: 1px solid #e5e5e5;
    border-top:none;
}
.smart-area .smart-box dl dt{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.smart-area .smart-box dl dt span{
	display: block;
	height: 6em;
	padding-top: 2em;
}
.smart-area .smart-box:first-of-type dt span,
.smart-area .smart-box:last-of-type dt span{
    padding-top: 1em;
}
.smart-area .smart-box dd{
    margin: 15px;
}
.smart-area .smart-box dl dt + dd{
    padding: 15px;
    background: #f6f6f6;
    font-size: 1.5rem;
}
.smart-area .smart-box dl dt + dd span{
    display: block;
    margin: 0 auto 10px;
    color: #2258a5;
    font-weight: bold;
    text-align: center;
}
.smart-area .smart-box .btnstyle01 a{
    width: 100%;
	font-size: 1.4rem;
	padding-left: 0;
	line-height: 1.2;
}
.smart-area .smart-box .btnstyle01 a:after{
    right: 6px;
}

@media screen and (max-width: 1100px) {
	.smart-area .smart-box dl dt + dd,
	.smart-area .smart-box .btnstyle01 a{
		font-size: 1.2rem;
	}
	.btnstyle01 a{
		color: #007ac5;
		border: 3px solid #007ac5;
		background-color: #fff;
	}
	.btnstyle01 a::after{
		border-color:#007ac5;
		border-width: 2px;
    	width: 6px;
    	height: 6px;
	}
}
@media screen and (max-width: 768px) {
	.smart-area{
		padding-bottom: 10px;
	}
	.smart-area .flex{
		padding: 0 10px;
	}
	.smart-area .smart-box dl dt{
		font-size: 1.3rem;
	}
	.smart-area .smart-box dd{
		margin: 10px;
	}
	.smart-area .smart-box dl dt + dd {
		padding: 5px;
	}
	.btnstyle01 a::after{
		border-color:#007ac5;
		border-width: 1px;
    	width: 4px;
    	height: 4px;
	}
	.smart-area .smart-box .btnstyle01 a{
		font-size: 1rem;
		letter-spacing: -1px;
	}
	.smart-area .smart-box .btnstyle01 a:after{
		right: 1px;
	}
}
@media screen and (max-width: 767px) {
	.smart-area{
		margin-top: 25px;
		padding-bottom: 8px;
	}
	.smart-area h2{
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.smart-area h2 + p{
		padding: 0 2%;
	}
	.smart-area .flex{
		margin-top: 0;
		padding: 0 8px;
	}
	.smart-area .smart-box{
		width: 49%;
		margin-top: 2%;
	}
	.smart-area .smart-box dl dt{
		font-size: 1.2rem;
		font-weight: bold;
		line-height: 1.3;
		text-align: center;
	}
	.smart-area .smart-box dd + dd{
		margin: 10px 0 0;
	}
	.smart-area .smart-box dl dt + dd{
		margin: 5px;
		padding: 7px;
		line-height: 1.3;
	}
	.smart-area .smart-box dl dt + dd,
	.smart-area .smart-box .btnstyle01 a{
		font-size: 1.1rem;
		letter-spacing: -1px;
	}
	.smart-area .smart-box .btnstyle01 a::after{
		right: 3px;
	}
	.btnstyle01 a {
		color: #fff;
		border: 3px solid #333333;
		background: #333333;
	}
	.btnstyle01 a::after{
		border-color: #fff;
	}
}

/* news
--------------------------------*/
#news {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
#news .box {
  position: relative;
}
#news h2 {
  padding: 10px 10px 10px 0;
  font-size: 1.3rem;
}
.ie #news h2 {
  margin-bottom: 7px;
}
#news .news_list {
  position: absolute;
  top: 10px;
  right: 5px;
}
#news .news_list a {
  font-size: 1.1rem;
  font-weight: 700;
}
#news .news_list a:before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
  background: url(../common/images/icon_news_list.png);
  margin-right: 6px;
}
#news .list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#news .list > * {
  width: 47.5%;
}
#news .list .boxwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#news .list .boxwrap > * {
  width: 48%;
}
#news .list .boxwrap .box:nth-child(n+3) {
  margin-top: 30px;
}
#news .box .ttl {
  font-size: 1.6rem;
  letter-spacing: -.03em;
  line-height: 1.75;
  font-weight: bold;
  margin-top: 10px;
}
#news .box p {
  font-size: 1.4rem;
  font-size: 1.7;
}
#news ol {
  padding-top: 10px;
  border-top: 1px solid #cccccc;
}
#news ol li {
  justify-content: normal;
}
#news ol li + li {
  margin-top: 5px;
}
#news .time {
  font-size: 1.3rem;
  color: #999999;
}
#news .box:nth-child(1) .time {
  flex-basis: 13%;
}
#news .box:nth-child(1) ol li a {
  flex-basis: 85%;
  margin-left: 2%;
}
#news .box:nth-child(1) ol li a[target="_blank"]:after {
  display: none;
}
#news .box:nth-child(2) .time {
  flex-basis: 27%;
}
#news .box:nth-child(2) ol li a {
  flex-basis: 71%;
  margin-left: 2%;
}
#news a {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
	#news{
		padding-top: 4px;
	}
	#news .list {
		display: block;
		padding: 0 20px;
	}
	#news .list > *{
		width: 100%;
	}
	#news .box + .box{
		margin-top: 20px;
	}
	#news .box:nth-child(1) .time{
		flex-basis: auto;
		width: 5em;
	}
	#news .box:nth-child(1) ol li a{
		flex-basis: 1;
	}
	#news .box:nth-child(2) .time{
		flex-basis: auto;
		width: 9em;
	}
	#news .box:nth-child(2) ol li a{
		flex-basis: 1;
	}
}

@media screen and (max-width: 767px) {
	#news{
		padding: 0 0 8%;
	}
	#news .list{
		padding: 0;
	}
	#news .list .txtwrap{
		position: relative;
	}
	#news .ttltype2{
		font-size: 4.26vw;
		padding: .5em 4%;
		background: #eeeeee;
		position: relative;
		cursor: pointer;
	}
	#news .ttltype2:before,
	#news .ttltype2:after{
		content: "";
		display: inline-block;
		background: #0e57a2;
		position: absolute;
		margin: 0;
		left: auto;
		transition: transform .3s ease;
		top: 50%;
		transform: translateY(-50%);
	}
	#news .ttltype2:before{
		width: 5.2vw;
		height: .8vw;
		right: 4%;
	}
	#news .ttltype2:after{
		height: 5.2vw;
		width: .8vw;
		right: 5.8vw;
	}
	#news .ttltype2.acd-open:after{
		transform: translateY(-50%) rotate(90deg);
	}
	
	#news .listwrap{
		display: none;
	}
	#news .news_list a:before {
		width: 2vw;
		height: 2vw;
		background-size: 100% auto;
		vertical-align: middle;
		margin-right: 1vw;
		margin-top: -.6vw;
	}
	#news .news_list{
		position: static;
		display: block;
		text-align: center;
		margin: 1em 0 0;
	}
	#news .news_list a{
		display: block;
		font-size: 3.2vw;
	}
	
	#news .box + .box{
		margin-top: 7%;
	}
	#news ol{
		border-top: none;
		border-bottom: 1px solid #cccccc;
		padding: 0 0 6%;
	}
	#news ol li{
		display: block;
		padding: 4% 2% 0;
		margin-top: 0!important;
	}
	#news ol li .time{
		font-size: 3.4vw;
		width: auto!important;
		line-height: 1.6;
	}
	#news ol li a{
		display: block;
		font-size: 3.4vw;
		width: auto!important;
		margin: 0!important;
		line-height: 1.5;
	}
}



/* search
--------------------------------*/
#search {
  
}

/* mtab
--------------------------------*/

.main-tab {
	display: flex;
	flex-wrap: wrap;
	margin:20px 0;
	-webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
  }

.mtab {
	width: 536px;
	padding: 20px 0;
	margin-top: 60px;
	color: #2357a5;
	background:#ededed;
	font-size: 2.4rem;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	/*flex: 1;*/
}
.mtab::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background-color: #fff;
}
.mtab:not(:last-of-type) {
	margin-right: 10px;
  }
  .mtab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
	background-image: url(../images/bg_search.png);
	background-repeat: no-repeat;
	background-size: cover;
  }
  .tab-switch:checked+.mtab { 
	  color: #fff;;
	  background-image: url(../images/bg_search.png);
	  background-repeat: no-repeat;
	  background-size: cover;
  }
  .tab-switch:checked+.mtab::after{
	  display: none;
  }
  .tab-switch:checked+.mtab+.mtab-content {
	height: auto;
	/*overflow: auto;*/
	padding: 0 0 70px;
	opacity: 1;
	transition: .5s opacity;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  }
.tab-switch {
	display: none;
}
.mtab-content h2{
	margin: 40px auto 20px;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
.mtab-content h2 + p{
	margin-bottom: 30px;
	padding: 0 3%;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
}

@media screen and (max-width: 1100px) {
	.mtab{
		width:45%;
	}
}

@media screen and (max-width: 767px) {
	.mtab{
		margin-top: 0;
		padding: 10px 0 20px;
		font-size: 1.5rem;
	}
	.tab-switch:checked+.mtab+.mtab-content{
		padding: 0 0 30px;
	}
	.mtab-content h2{
		margin: 20px auto 10px;
		font-size: 1.8rem;
	}
	.mtab-content h2 + p{
		padding: 0 2%;
		font-size: 1.4rem;
	}
}

/*.tabs:before {
  z-index: -1;
  max-width:1080px;
  height: 350px;
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: 0 auto;
  background-color: #FFFFFF;
  content: "";
}*/

.tabs .wrap{
	background:#fff;
}
.tab_item {
  width: calc(1080px/4);
  height: 70px;
	background-color: #eeeeee;
	line-height: 52px;
  color: #0e57a2;
  padding: 10px 0 0;
  border-right: 1px solid #0e57a2;
  border-left: 1px solid #0e57a2;
  border-bottom: 2px solid #0e57a2;
}

.tab_item:nth-child(2) {
  border-left: none;
}
.tab_item:nth-child(8) {
  border-right: none;
}
.tab_item:hover {
  color: #fff;
  opacity: 1;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.tab_item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background-color: #0e57a2;
  transition: all .2s;
  z-index: -1;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform .4s;
}
.tab_item:hover:before {
  width: 120%;
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
.tab_label {
  width: 65%;
  height: 110%;
  margin: 0 auto;
  font-size: 2rem;
}
.tab_item span.cate {
	display: inline-block;
	border-bottom: none;
	font-size: 1.4rem;
	color: #fff;
	background: #0e57a2;
	margin-bottom: .2em;
	padding: .25em .8em;
}
.ie .tab_item span.cate{
	padding: .4em .8em .1em;
	margin-bottom: .5em;
}
.tabs input:checked + .tab_item:hover {
  color: #0e57a2;
}
.tabs input:checked + .tab_item:before {
  display: none;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  height: 350px;
  color: #0e57a2;
  width: 1080px;
  margin: 0 auto;
}
/*
#tab01:checked ~ #tab01_content, #tab02:checked ~ #tab02_content, #tab03:checked ~ #tab03_content, #tab04:checked ~ #tab04_content, #tab05:checked ~ #tab05_content, #tab06:checked ~ #tab06_content {
  display: block;
}
*/
.tabs input:checked + .tab_item {
  background-color: #ffffff;
  border-bottom: none;
}
.tabs input:checked + .tab_item .tab_label {
  
}
.ie .tabs input:checked + .tab_item .tab_label {
  padding-bottom: 0px;
}
.label_sm {
	display: block;
  font-size: 1.3rem;
  vertical-align: middle;
}
.search .stitch {
  display: flex;
  padding: 35px 0 15px;
  flex-wrap: wrap;
  margin: 0;
}

.search .stitch li {
  flex-basis: 12.3%;
}
.search .stitch li a {
  display: block;
  border: 1px solid #dfdfdf;
	background: #fff;
}
.search .stitch li a:hover {
  border: 1px solid #0e57a2;
}
/* service01 */
.search .service01{
	padding: 25px;
	background: #fff;
}
.search .service01.bg01{
	background-color: #eef3fb;
}
.search .service01 h3{
	margin: 20px auto 30px;
	color: #2357a5;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}
.search .service01 ul{
	-webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
.search .service01 ul li{
	width: 49%;
	padding: 15px;
	background: #fff;
	border: 1px solid #e6e8ea;
}
.search .service01 dt{
	position: relative;
	text-align: center;
}

.search .service01 dt p{
	width: 100%;
	height: 75px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding-top: 1.3em;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	background-color: rgba(41,122,201,0.8);
}
.search .service01 dt span{
	display: block;
	font-size: 1.5rem;
	margin-top: -0.5em;
}
.search .service01 .btnstyle01{
	margin: 20px 0 0;
}
.search .service01 .btnstyle01 a{
	width: 100%;
}
@media screen and (max-width: 768px) {
	.search .service01 .btnstyle01 a{
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 767px) {
	/* service01 */
	.search .service01{
		padding: 10px;
	}
	.search .service01 h3{
		font-size: 1.7rem;
	}
	.search .service01 ul li{
		width: 100%;
		margin-bottom: 20px;
		padding: 0;
	}
	.search .service01 dt{
		margin: 5px 5px 0;
	}
	.search .service01 dt p{
		height: 3em;
		padding-top: 1em;
		font-size: 1.3rem;
	}
	.search .service01 dt span{
		font-size: 1rem;
	}
	.search .service01 .btnstyle01{
		margin-top: 10px;
	}
	.search .service01 .btnstyle01 a{
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 768px) {

	#tab01:checked ~ #tab01_content, #tab02:checked ~ #tab02_content, #tab03:checked ~ #tab03_content, #tab04:checked ~ #tab04_content, #tab05:checked ~ #tab05_content, #tab06:checked ~ #tab06_content {
		display: block;
	}

}

@media screen and (min-width: 1101px) {
	.swiper .stetch{
		width: auto!important;
	}
	 .swiper-button-prev,.swiper-button-next,.swiper-pagination{
    display: none;
  }
	.search .stitch li {
		flex-basis: 12.3%;
		width: 132px!important;
		margin: 0 0.99% 20px!important;
	}
}
@media screen and (max-width: 1200px) {
	.tab_item{
		width: 25%;
	}
}
@media screen and (max-width: 1100px) {
	#search{
		margin-top: 0;
	}
	.tabs:before{
		height: calc(100% - 65px);
	}
	.tab_content {
		width: 100%;
		margin: 0 auto;
	}
	.search .stitch{
		margin: 0 auto;
		padding: 35px 0;
		align-items: stretch;
		flex-wrap: wrap;
	}
	.search .stitch li{
		flex-basis: auto;
		height: 132px;
		margin: 0;
	}
	.search .stitch li a{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
	.swiper-container{
		width: 100%;
		padding: 0 3%;
	}
	.swiper-slide{
		margin-top: 0!important;
		margin-bottom: 16px!important;
	}
	.swiper-button-next,
	.swiper-button-prev {
		background-image: none;
		top: calc(50% - 8px);
		color: transparent;
	}
	.swiper-button-next:hover,
	.swiper-button-prev:hover{
		outline: none;
		border: none;
		background: none;
		color: transparent;
	}
	.swiper-button-next{
		right: 0;
	}
	.swiper-button-prev{
		left: 0;
	}
	.swiper-button-next::after,
	.swiper-button-prev::after{
		content: none;
	}
	.swiper-button-next::before,
	.swiper-button-prev::before {
		content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.swiper-button-next::before{
		right: 6px;
		border-right: 4px solid #0074c5;
    border-top: 4px solid #0074c5;
	}
	.swiper-button-prev::before{
		left: 6px;
		border-left: 4px solid #0074c5;
    border-bottom: 4px solid #0074c5;
	}
	.swiper-button-next.swiper-button-disabled,
	.swiper-button-prev.swiper-button-disabled{
		opacity: 1;
	}
	.swiper-button-next.swiper-button-disabled::before,
	.swiper-button-prev.swiper-button-disabled::before{
		border-color: #d1d0d0;
	}
	
	/*並び*/
	.stitch li:nth-child(1) { order: 1!important; }
	.stitch li:nth-child(2) { order: 2!important; }
	.stitch li:nth-child(3) { order: 3!important; }
	.stitch li:nth-child(4) { order: 4!important; }
	.stitch li:nth-child(5) { order: 6!important; }
	.stitch li:nth-child(6) { order: 7!important; }
	.stitch li:nth-child(7) { order: 8!important; }
	.stitch li:nth-child(8) { order: 9!important; }
	.stitch li:nth-child(9) { order: 5!important; }
	.stitch li:nth-child(10) { order: 10!important; }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
	.tab_content {
		display: block;
		height: 0;
		visibility: hidden;
	}
	#tab01:checked ~ #tab01_content, #tab02:checked ~ #tab02_content, #tab03:checked ~ #tab03_content, #tab04:checked ~ #tab04_content, #tab05:checked ~ #tab05_content, #tab06:checked ~ #tab06_content {
    height: auto;
		visibility: visible;
	}
	.tab_label{
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
/*
	 .swiper-button-prev,.swiper-button-next,.swiper-pagination{
    display: none;
  }
*/
	
	#search{
		padding: 8% 0;
	}
	.tabs:before{
		display: none;
	}
	.tabs .wrap{
		width: 100%;
		background-color:transparent;
	}
	.tab_item,
	.tab_label{
		width: 100%;
	}
	.tab_item{
		width: 94%;
		margin: 0 auto;
		float: none;
		background: #eeeeee;
		border: none;
		text-align: left;
		padding: 0 4%;
		height: 12vw;
		line-height: 12vw;
		margin-bottom: 0;
		margin-top: 1%;
		position: relative;
		display: flex;
		align-items: center;
	}
	.tab_item:nth-of-type(1) .tab_label,
	.tab_item:nth-of-type(2) .tab_label{
    line-height: 12vw;
	}	
	.tab_item span.cate{
		font-size: 2.8vw;
		padding: .4em .5em;
		display: block;
		margin: 0 .5em 0 0;
		width: auto;
		white-space: nowrap;
	}	
/*
	.tab_item:nth-child(8){
		margin-bottom: 8%;
	}
*/
	.tabs input:checked + .tab_item .tab_label{
		border-bottom: none;
	}
	.tabs input:checked + .tab_item{
		background: #eeeeee;
	}
	.tabs input:checked + .tab_item:before {
		display: block;
	}
	.tab_item:before,
	.tab_item:after{
		content: "";
		display: inline-block;
		background: #0e57a2;
		position: absolute;
		margin: 0;
		left: auto;
		transition: transform .3s ease;
		top: 50%;
		transform: translateY(-50%);
		transform-origin: center;
		z-index: 1;
	}
	.tab_item:before{
		width: 5.2vw!important;
		height: .8vw;
		right: 4%;
	}
	.tab_item:hover:before{
		transform: translateY(-50%);
	}
	.tab_item:after{
		height: 5.2vw;
		width: .8vw;
		right: 5.8vw;
	}
	.tab_item:hover{
		overflow: visible;
		color: #0e57a2;
	}
	.tab_item.acd-open:after{
		transform: translateY(-50%) rotate(90deg);
	}
	.tab_label{
		height: 100%;
		font-size: 4.8vw;
	}
	.label_sm{
		font-size: 3.46vw;
	}
	.tab_content{
		height: auto;
	}
	
	.tab_content_wrap{
		visibility:hidden;
		height:0;
		width: 100%;
		background: #fff;
		transition: .3s all;
	}
	.tab_content_wrap.visible{
		height: auto;
		visibility: visible;
	}
	.tab_content_wrap .tab_content{
		display: block;
	}
	.search .stitch{
		padding: 7% 0 16%;
	}
	.search .stitch li img{
		width: auto;
		vertical-align: middle;
	}
	
	.search .stitch li{
		margin-bottom: 15px!important;
		height: auto;
	}
	
	.swiper-button-next,
	.swiper-button-prev {
		width: 6vw;
		height: 6vw;
		top: auto;
		bottom: 6vw;
		margin: 0;
	}
	.swiper-button-next{
		right: 26%;
	}
	.swiper-button-prev{
		left: 26%;
	}
	.swiper-button-next::before,
	.swiper-button-prev::before {
		width: 3.2vw;
    height: 3.2vw;
	}
	.swiper-button-next::before{
		right: 2vw;
		border-right: .8vw solid #0074c5;
    border-top: .8vw solid #0074c5;
	}
	.swiper-button-prev::before{
		left: 2vw;
		border-left: .8vw solid #0074c5;
    border-bottom: .8vw solid #0074c5;
	}
		.button_line{
		position: absolute;
		width: .5vw;
		height: 6vw;
		background: #d1d0d0;
		bottom: 6vw;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

}


/* pickup_contents
--------------------------------*/
#pickup_contents {
  padding: 40px 0;
}
#pickup_contents .wrap {
  max-width: 1060px;
}
#pickup_contents .pickup {
  margin-top: 55px;
}
#pickup_contents .pickup_list {
  margin: -5px -10px 0;
}
#pickup_contents .pickup_item {
  width: 250px;
  height: 160px;
  margin: 5px 10px 15px;
  float: left;
}
#pickup_contents .pickup_list::after {
  content: "";
  display: block;
  clear: both;
}
.box_big {
  float: left !important;
  width: 520px !important;
  height: 340px !important;
}
.pickup_item figure {
  position: relative;
}
.pickup_item .ttl {
  color: #ffffff;
  background-color: rgba(0, 122, 197, 0.9);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: .4s ease-out;
  -o-transition: .4s ease-out;
  transition: .4s ease-out;
}
.ie .pickup_item .ttl {
  padding-top: 9px;
}
.pickup_item figure a:hover .ttl {
  height: 100%;
}
.pickup_item figure a:hover img {
  opacity: 1;
}
@media screen and (max-width: 1200px) {
	#pickup_contents .wrap {
/*		max-width: inherit;*/
		width: 1060px;
	}
	#pickup_contents .pickup_item {
/*    margin: 5px 5px 15px;*/
	}
}
@media screen and (max-width: 1100px) {
	#pickup_contents{
		padding: 3% 0 4%;
	}
	#pickup_contents .wrap {
		width: 100%;
		max-width: 728px;
	}
	#pickup_contents .pickup{
		margin-top: 0;
	}
	#pickup_contents .pickup_list{
		margin: 0 -4px;
	}
	#pickup_contents .pickup_item{
		width: 240px;
		margin: 2px;
		height: 160px;
		overflow: hidden;
		position: relative;
	}
	.pickup_item figure{
		width: 100%;
		height: 100%;
	}
	#pickup_contents .pickup_item img{
		position: absolute;
		top: 50%;
		left: 50%;
		transform:translate(-50%,-50%);
		width: auto;
		height: auto;
		min-width: 100%;
		min-height: 100%;
		max-width: inherit;
	}
	.box_big{
		width: 484px!important;
		height: 324px!important;
	}
}


@media screen and (max-width: 767px) {
	#pickup_contents{
		padding:8% 0;
	}
	#pickup_contents .wrap{
		width: 94%;
	}
	#pickup_contents .pickup_list{
		margin: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#pickup_contents .pickup_item {
		width: 48%;
		height: 32.8vw;
		margin: 0;
		position: relative;
		float: none!important;
	}
	#pickup_contents .pickup_item:nth-child(n + 2){
		margin-top: 4%;
	}
	#pickup_contents .pickup_item.box_big{
		width: 100%!important;
		height: 57.8vw!important;
	}
	.pickup_item .ttl{
		padding: 0;
		font-size: 3.4vw;
		height: 12.8vw;
		line-height: 1.38;
	}
	#pickup_contents .pickup_item.box_big .ttl{
		height: 6.4vw;
		padding: 0;
	}
	#pickup_contents .pickup_item img{
		width: 100%;
		min-height: inherit;
	}
}


/* banner
--------------------------------*/
#banner_area {
  padding: 40px 0 25px;
  position: relative;
  border-top: 1px solid #dfdfdf;
}
#banner_area .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#banner_area .item {
  margin-right: 30px;
  width: 340px;
}
#banner_area .item:nth-child(3n) {
  margin-right: 0;
}
#banner_area .item .blue {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin-top: .5em;
}
#banner_area .item a:hover p {
  color: #007ac5;
}
#banner_area .item figure {
  text-align: center;
}
#banner_area .item ul {
  margin-top: 5px;
}
#banner_area .item ul li {
  font-size: 1.4rem;
  line-height: 1.7;
  text-indent: -1em;
  padding-left: 1em;
}
#banner_area .item ul li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1100px) {
	#banner_area {
		padding: 4.6% 0 3.2%;
	}
	#banner_area .item {
		margin-right: 1.4%;
		width: 32.4%;
	}
}

@media screen and (max-width: 767px) {
	#banner_area {
		padding: 5.3% 0 4%;
	}
	#banner_area .list{
		display: block;
	}
	#banner_area .item{
		width: 100%;
		margin-right: 0;
	}
	#pickup_contents .pickup_list::after {
		content:none;
	}
	#banner_area .item .blue{
		font-size: 3.46vw;
		margin: .5em 0 .8em;
	}
}


/* End Hack */