/*====================================================================
slick
====================================================================*/

html, body {
	margin: 0;
	padding: 0;
}
* {
	box-sizing: border-box;
}
.sliderArea {
  width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 25px;
  margin-top: -160px;
}
.sliderArea.w300 {
	max-width: 300px;
}
.slick-slide {
	margin: 0 5px;
}
.slick-slide img {
	width: 100%;
	height: auto;
  object-fit: cover;
  max-height: 250px;
  object-position: top;
}
@media screen and (max-width:1440px) {
  .sliderArea {
    margin-top: -140px;
  }
}
@media screen and (max-width: 1200px) {
  .slick-slide img {
    max-height: 220px;
  }
}
@media screen and (max-width: 1000px) {
  .slick-slide img {
    max-height: 170px;
  }
}
@media screen and (max-width: 480px) {
  .slick-slide img {
    max-height: 200px;
  }
}


.slick-prev, .slick-next {
	z-index: 1;
}
.slick-prev:before, .slick-next:before {
	color: #000;
}
.slick-slide {
	transition: all ease-in-out .3s;
	opacity: 1;
}
.slick-active {
	opacity: 1;
}
.slick-current {
	opacity: 1;
}
.thumb {
	margin: 20px 0 0;
}
.thumb .slick-slide {
	cursor: pointer;
}
.thumb .slick-slide:hover {
	opacity: .7;
}
.slick-dots{
  bottom: -40px;
}

/*====================================================================
以下は不要です。
====================================================================*/

.section {
  max-width: 300px;
  margin: 0 auto;
  padding: 30px 0;
}
.section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 30px 0 0;
}
.section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.section p._a .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 10px;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
   
    outline: none;
    background: transparent;
  transform: rotate(45deg);
}
@media screen and (max-width:1000px) {
  .slick-prev,
.slick-next
{
  width:clamp(10px, 4vw, 40px);
    height:clamp(10px, 4vw, 40px);
  }
  .slick-prev{
    left: -5vw;
  }
  .slick-next {
    right: -5vw;
}
}
.slick-prev{
   border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}
.slick-next{
   border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.slick-prev::before,
.slick-next::before{
  display: none;
}
.slick-dots li.slick-active button:before {
    color: #E72D3C;
  -webkit-text-stroke: 1px #E72D3C;
  opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 5rem;
    line-height: 14px;
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    content: '•';
    text-align: center;
    color: #ffffff;
  opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 1px #E72D3C;
}