﻿/*リセットCSS*/
*{
	padding: 0;
	margin: 0;
}
ul,ol{
	list-style: none;
}
/*共通CSS*/
h1,.slider,.Pay_setting_button{
    width: 100%;
}
.background
{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.slider {
    align-self: center;
}
/*カルーセル実装*/
.slider img{
    height: auto;
    width: 100%;
}
/*ドットナビゲーション_大きさ変更*/
.slide-dots
{
    display: block;
    width: 100%;
    list-style: none;
    text-align: center;
	position: absolute;
	bottom: 3%;
}
.slide-dots li
{
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slide-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 5px;
    height: 5px;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slide-dots li button:hover,
.slide-dots li button:focus
{
    outline: none;
}
.slide-dots li button:hover:before,
.slide-dots li button:focus:before
{
    opacity: 1;
}
.slide-dots li button:before
{
    font-family: 'slick';
    font-size: 30px; /*●の大きさ*/
    line-height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    content: '•';
    text-align: center;
    opacity: .30;
    color: rgb(0, 133, 109);;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slide-dots li.slick-active button:before
{
    opacity: 1.0;
    color: rgb(0, 133, 109);
}
/*枠線消去*/
.slick-slide{
	outline: none !important;
}