@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%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
}
/*#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: 46.7vw;
		min-height: inherit;
	}
	
}

@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;
	}
}
/* 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(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 {
  padding: 50px 0;
  margin-top: 60px;
  background-image: url(../images/bg_search.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.tabs:before {
  z-index: -1;
  width: 100%;
  height: 350px;
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #FFFFFF;
  content: "";
}
.tab_item {
  width: calc(1080px/4);
  height: 65px;
  background-color: #eeeeee;
  line-height: 50px;
  color: #0e57a2;
  padding: 10px;
  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: 2.4rem;
}
.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 {
  border-bottom: 5px dashed #007ac5;
  padding-bottom: 3px;
}
.ie .tabs input:checked + .tab_item .tab_label {
  padding-bottom: 0px;
}
.label_sm {
  font-size: 1.5rem;
  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;
}

@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;
	}
}
@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%;
	}
	.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;
	}
/*
	.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 {
		top: auto;
		bottom: 8%;
	}
	.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;
	}

}


/* after_support
--------------------------------*/
#after_support {
  background-image: url(../images/bg_after_support.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 0 40px 0;
  margin-top: 0;
}
#after_support p {
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
}
#after_support .support_list {
  margin-top: 20px;
}
#after_support .flowtxt {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  background: #fff;
  width: 535px;
  padding: 20px 15px;
  margin: 0 auto;
}
#after_support .support_list .support {
  display: flex;
  justify-content: space-between;
}
#after_support .support_list .support li {
  width: 280px;
  margin: 10px;
}
#after_support .support_list .support li a {
  height: 100%;
  width: 100%;
  display: block;
  background: #fff;
  position: relative;
  transition: .3s;
}
#after_support .support_list .support li a:hover img {
  opacity: 1;
}
#after_support .support_list .support li .num {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
  margin-bottom: 5px;
}
#after_support .support_list .support li .num span {
  font-size: 4rem;
  text-align: center;
  display: block;
  margin-top: 3px;
}
#after_support .support_list .support li .flowttl {
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
}
#after_support .support_list .support li figure {
  text-align: center;
}
#after_support .support_list .support_caption {
  line-height: 2.25;
  max-width: 720px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 122, 197, 0.8);
  width: 97%;
  margin: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  height: 35px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: .4s ease-out;
  -o-transition: .4s ease-out;
  transition: .4s ease-out;
}
.ie #after_support .support_list .support_caption {
  padding-top: 5px;
}
#after_support .support_list .support li a:hover .support_caption {
  height: 96%;
}
@media screen and (max-width: 1100px) {
	#after_support{
		background-image: url(../images/bg_after_support_tab.png);
		background-position: center;
		padding: 3% 0 6%;
	}
	#after_support .wrap{
		max-width: 728px;
	}
	#after_support p{
		line-height: 2;
	}
	#after_support .support_list{
		margin-top: 4%;
	}
	#after_support .support_list .support{
		flex-wrap: wrap;
	}
	#after_support .support_list .support li {
		width: 48%;
		margin: 0;
		position: relative;
	}
	#after_support .support_list .support li:nth-child(n + 3){
		margin-top: 4%;
	}
	#after_support .support_list .support li img{
		width: 100%;
	}
	#after_support .support_list .support_caption{
		width: 97%;
		margin: 1.5% 1.5% 1.4%;
	}
}

@media screen and (max-width: 767px) {
	#after_support{
		background-image: url(../images/bg_after_support_sp.png);
		padding: 16% 0 9%;
	}
	#after_support p{
		font-size: 3.7vw;
		line-height: 1.8;
	}
	#after_support p br{
		display: none;
	}
	#after_support .support_list{
		margin-top: 8%;
	}
	#after_support .support_list .support_caption{
		font-size: 3.7vw;
		height: 6.9vw;
		width: 95%;
		margin: 2.5% 2.5% 2.4%;
	}
}


/* 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{
		font-size: 3.4vw;
		height: 12.8vw;
		line-height: 1.38;
	}
	#pickup_contents .pickup_item.box_big .ttl{
		height: 6.4vw;
		padding: 0;
	}
}


/* 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 */