﻿@charset "utf-8";

/*==================================
	MAIN
===================================*/
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 920px;
            height: 600px;
            margin: auto;
            overflow: hidden;
        }
        .slider-container img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }
        .arrow-btn {
            position: absolute;
            bottom: 30px;
            right: 30px;
            cursor: pointer;
            z-index: 10;
        }


 /* ===========================================
	スマートフォン系 748 - 
=========================================== */
@media screen and (max-width: 750px) {
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 920px;
            height: 600px;
            margin: auto;
            overflow: hidden;
        }
        .slider-container img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }
        .arrow-btn {
            position: absolute;
            bottom: 100px;
            right: 30px;
            cursor: pointer;
            z-index: 10;
        }

}