@charset "UTF-8";

/* 画面幅別の表示・非表示 */
.only-m {
    display: none;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .only-pc {
        display: none;
    }

    .only-m {
        display: block;
    }
}

/* -------------------------------
チェックリスト設定
------------------------------- */

ul.checklist {
    /* border: 1px solid #ccc; */
    list-style: none;
    padding: 1em;
}

ul.checklist li {
    background-image: url(../images/icon-check02-red.png);
    background-position: 0 5px;
    background-repeat: no-repeat;
    background-size: 1.2em;
    padding-left: 1.8em;
    margin-bottom: 0.8em;
}

ul.checklist li:last-child {
    margin-bottom: 0em;
}

/* -------------------------------
テーブル設定
------------------------------- */

table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin: 1em 0;
}

th,
td {
    padding: 0.5em;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

th {
    background-color: #f0f0f0;
    font-weight: bold;
    text-align: center;
}

td {
    background-color: #fff;
    text-align: center;
}

/* -------------------------------
フォーム設定
------------------------------- */

.mailform {
    background-color: #fff;
    margin-bottom: 1em;
    padding: 1em 0 1.5em;
    box-shadow: 0 0 1px #000;
}

.input {
    padding: 0 2em;
}

.input_style {
    background-color: #fffbf0;
    width: 100%;
    height: 60px;
    margin-bottom: 0.5em;
    text-align: center;
    font-size: 1.4em;
}

input[type="image"] {
    width: 100%;
}

.caution {
    text-align: center;
    font-size: 0.8em;
    color: #f00;
}

/* -------------------------------
ページトップリンク
-ページの指定の高さを超えたら下から出現-
https://ugokuweb.coco-factory.jp/ugokuweb/move01/8-1-2/
------------------------------- */

/*リンクの形状*/


/* #page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#942D2F;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
 */
#page-top img {
    width: 60px;
}

#page-top a:hover img {
    opacity: 0.8;
}


/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove,
#fix_menu_smartphone.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove,
#fix_menu_smartphone.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

/*==================================================
スライダーのためのcss
https://ugokuweb.coco-factory.jp/ugokuweb/move01/6-1-1/
===================================*/
.slider {
    padding: 0;
    position:relative;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 5px solid #fff;/*矢印の色*/
    border-right: 5px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    padding: 0;
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}
@media screen and (max-width: 767px) {
    .slick-dots {
        margin:-40px 0 0 0;
    }
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:12px;/*ドットボタンのサイズ*/
    height:16px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#000;/*ドットボタンの現在地表示の色*/
}

/* -------------------------------
フェードイン
------------------------------- */

/*フェードイン*/
.fadein,
.fadein_bottom,
.fadein_left,
.fadein_right {
    opacity : 0;
    transition: all 1s;
}

/*同一位置でフェードイン*/
.fadein {
    transform: translateY(0px);
}

/*下からフェードイン*/
.fadein_bottom {
    transform: translateY(40px);
}

/*左からフェードイン*/
.fadein_left {
    transform: translateX(-40px);
}

/*右からフェードイン*/
.fadein_right{
    transform: translateX(40px);
}