@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/*slick-initializedが付与されたら表示*/

.slider{
    /*display: none;*/
    opacity: 0;
    transition: opacity .3s linear;
}

.slider.slick-initialized{
    /*display: block;*/
    opacity: 1;
}


/* Icons */

@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}


/* Arrows
========================================*/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 40%;
  display: block;
  width: 23px;
  height: 23px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 33;
}

.slick-prev::before,
.slick-next::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
}

.slick-prev::before {
	background-image: url(../images/arrow-L.svg); /* 適宜パス調整 */
}

.slick-next::before {
  background-image: url('../images/arrow-R.svg'); /* 適宜パス調整 */
}

.slick-prev {
  left: -30px;
}
.slick-next {
  right: -30px;
}
/*
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
	bottom: -76px;
    display: block;
    width: 22px;
	height: 38px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 33;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: calc(50% - 280px);
}
[dir='rtl'] .slick-prev
{
    right: 0px;
    left: auto;
}

.slick-next
{
    right: calc(50% - 280px);
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 0px;
}
*/


/* Dots
========================================*/
.slick-dots {
    position: absolute;
    bottom: -50px;
    display: flex; /* 中央揃えにflex */
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 各dot(li) */
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px; /* 左右に10pxの間隔 */
    padding: 0;
    cursor: pointer;
}

/* dotのbutton */
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

/* dotの中身 (黒丸) */
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px; /* サイズを10pxに合わせる */
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•'; /* 黒丸にする */
    text-align: center;
    opacity: 1;
    color: #c9caca; /* 通常時の色 */
    transition: color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* hover時・focus時 */
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    color: #231815;
}

/* active時 */
.slick-dots li.slick-active button:before {
    color: #231815;
}

/*
.slick-dotted.slick-slider
{
	margin-bottom: 50px;
	background-color: #EEEEEE;
    text-align: center;
}

.slick-dots
{
	position: absolute;
	bottom: -50px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	background-color: #000000;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: #E8EAED;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: #696B6E;
}
*/