/*----------------------------------------------------------------------
TOPスライドイメージ
----------------------------------------------------------------------*/

#login-setting-area {
    scroll-margin-top: 60px;
}

.top-slide-Img-inner {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

/* スライド画像 */
.top-slide-img-slide-Item-contents img {
	width: 100%;
	height: auto;
	max-heigt: 500px;
}

.top-slide-Img-slide-Item {
	display: block;
	text-decoration: none;
}

/* スライドのナビゲーションエリアのコンテナ */
#top-slide-img-nav-container {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

#top-slide-img-nav {
	padding: 8px 0;
	background: #fff;
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	#top-slide-img-nav {
		padding: 2px 0;
	}
}

/* ---------------------
スライド一時停止・再生するボタン
--------------------- */
#top-slide-img-nav button.pauseButton {
	display: inline-block;
	width: 18px;
	height: 20px;
	vertical-align: middle;
	margin: 0 0 0 8px;
	background: url(/webcontent/responsible/image/top_carousel/btn-pause.png) no-repeat center center;
	background-size: auto 100%;
}
@media screen and (max-width: 767px) {
	#top-slide-img-nav button.pauseButton {
		width: 9px;
		height: 12px;
		margin: 0 6px;
		background: url(/webcontent/responsible/image/top_carousel/btn-pause.png) no-repeat center center;
		background-size: auto 100%;
	}
}

#top-slide-img-nav button.pauseButton.pause {
	background: url(/webcontent/responsible/image/top_carousel/btn-play.png) no-repeat center center;
	background-size: auto 100%;
}

/*slickコンテナの高さを可変にする*/
.slick-slide {
	height: auto !important;
}

/* ---------------------
前のスライドへボタン
--------------------- */
.slick-prev {
	display: inline-block;
	width: 8px;
	height: 16px;
	overflow: hidden;
	color: #fff;
	font-size: 1px;
	cursor: pointer;
	margin-left: 142px;
}

.slick-prev::after {
	display: block;
	content: '';
	width: 8px;
	height: 14px;
	background: url(/webcontent/responsible/image/top_carousel/icon-arrow-gray.png) right 0 no-repeat;
	background-size: auto 100%;
	transform: rotate(180deg);
}
/*スマートフォン*/
@media screen and (max-width: 767px) {
	.slick-prev {
        width: 40px;
        height: 40px;
        margin: 0px;
        padding: 14px;
	}

	.slick-prev::after {
		display: block;
		content: '';
		width: 10px;
		height: 10px;
	}
}

/* ---------------------
次のスライドへボタン
--------------------- */
.slick-next {
	display: inline-block;
	width: 8px;
	height: 16px;
	overflow: hidden;
	color: #fff;
	font-size: 1px;
	margin: 0 142px 0 0;
	cursor: pointer;
}

.slick-next::after {
	display: block;
	content: '';
	width: 8px;
	height: 14px;
	background: url(/webcontent/responsible/image/top_carousel/icon-arrow-gray.png) right 0 no-repeat;
	background-size: auto 100%;
}
@media screen and (max-width: 767px) {
	.slick-next {
        width: 40px;
        height: 40px;
        margin: 0px;
        padding: 14px;
	}

	.slick-next::after {
		display: block;
		content: '';
		width: 10px;
		height: 10px;
	}
}

/* ---------------------
ドットボタンと一時停止ボタンのコンテナ
--------------------- */
.top-slide-img-nav-btnSet {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 679px;
}

/* ドットボタンと一時停止ボタンのコンテナのインナー */
.top-slide-img-nav-btn-set-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: auto;
}

/* ---------------------
ドットのコンテナ
--------------------- */
.slick-dots {
	display: inline-block;
	line-height: 1;
	text-align: left;
}

/* ドットのリスト */
.slick-dots >li {
	display: inline-block;
	border-radius: 50%;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	width: 38px;
	height: 38px;
	background: transparent;
	position: relative;
}

@media screen and (max-width: 767px) {
	.slick-dots >li {
		width: 22px;
		height: 22px;
	}
}

/* 表示されているスライド画像に対応したドット */
.slick-dots > li.slick-active {
	background: transparent;
}

/* ドットボタン */
.slick-dots > li button {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	z-index: 1;
	border-radius: 50%;
	overflow: hidden;
	font-size: 1px;
	color: #fff;
	cursor: pointer;
}

.slick-dots > li button::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #949494;
	position: absolute;
	top: calc(50% - 4px);
	left: calc(50% - 4px);
}

@media screen and (max-width: 767px) {
	.slick-dots > li button::after {
		content: '';
		width: 4px;
		height: 4px;
		top: calc(50% - 2px);
		left: calc(50% - 2px);
	}
}

.slick-dots > li.slick-active button::after {
	background: #007B94;
}

/* ドット外周の円 */
.dot-circle {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: scale(1);
	transition-duration: 0.6s;
	z-index: 0;
}

.slick-active .dot-circle {
	opacity: 1;
	transform: scale(1);
	transition-duration: 0.6s;
}

.dot-circle svg {
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	.dot-circle svg {
		width: 22px;
		height: 22px;
	}
}

.dot-circle circle {
	transform-origin: center center;
	fill: transparent;
	stroke: #d8d8d8;
	stroke-width: 1px;
}
@media screen and (max-width: 767px) {
	.dot-circle circle {
		cx: 11px;
		cy: 11px;
		r: 10px;
	}
}

.dot-circle circle.move-circle {
	stroke: #4aa5c7;
	stroke-width: 2px;
	box-sizing: border-box;
	transform: rotate(-90deg);
	stroke-dasharray: 0 150;
}

.slick-active .dot-circle circle.move-circle {
	animation: circle 5s linear forwards;
}
@media screen and (max-width: 767px) {
    .slick-active .dot-circle circle.move-circle {
        animation: circle 10s linear forwards;
    }
}

.slick-active .dot-circle.slickpause circle.move-circle {
	animation-play-state: paused;
}

/* ドット外周の円のアニメーション */
@keyframes circle {
	0% {
		stroke-dasharray: 0 134;
	}
	99.9%,to {
		stroke-dasharray: 136 134;
	}
}