@charset "UTF-8";


/*スマホ*/
@media screen and (max-width:750px){
	
	/*
.planslide{width:100%;margin: 0px auto 0px auto; padding: 0px 0px 30px 0px;text-align:center;color: #000;line-height: 170%;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
        }*/

	.planslide {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 0 2px 0;
    text-align: center;
    color: #000;
    line-height: 170%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
}

.new-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;  /* 画面幅の 10% に固定 */
    height: auto;
    max-width: 60px; /* 画像の最大幅を制限（任意） */
	z-index: 1
}
	       .slider {
            width: 100%;
            position: relative;
        }
	

        .slick-slide {
            display: none;
        }

        .slick-slide.slick-active {
            display: block;
        }

        .thumbnails {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start; /* 左寄せ */
            margin-top: 2px;
            gap: 0px; /* 上段と下段の隙間を同じに */
        }

        .thumbnail {
            flex: 0 0 calc(25% - 0%); /* 5列に分ける */
            cursor: pointer;
            transition: opacity 0.3s;
            box-sizing: border-box; /* ボーダーのサイズを含む */
        }

        .thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid transparent;
        }

        .thumbnail:hover img {
            opacity: 0.7;
        }

        .thumbnail.active img {
            border: 1px solid #000;
        }

        .arrows {
            position: absolute;
            top: 37%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .arrow {
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 5px;
            cursor: pointer;
            z-index: 1;
            pointer-events: all;
        }

        .arrow.next {
            right: 0;
        }

        .arrow.prev {
            left: 0;
        }
        .thumbnail-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .thumbnail {
            width: calc(25% - 0px); /* 5列にするための計算 */
            margin: 0px;
            overflow: hidden;
            position: relative;
            box-sizing: border-box;
        }

        .thumbnail img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.3s ease, border-color 0.3s ease;
            border: 1px solid transparent;
            box-sizing: border-box;
        }

        .thumbnail:hover img {
            transform: scale(1.1);
            border-color: #000; /* 変更したい色 */
        }

        .thumbnail.active img {
            border-color: #000; /* 変更したい色 */
        }

        .arrows {
            display: flex;
            justify-content: space-between;
            width: 100%;
            position: absolute;
            top: 36%;
            transform: translateY(-50%);
        }

        .arrow {
            cursor: pointer;
            font-size: 0.8em;
            color: #fff;
        }

}

/*PC*/
@media print, screen and (min-width:751px){
/*
.planslide {max-width:1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 0 50px 0;
    text-align: center;
    color: #000;
    line-height: 170%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}*/
.planslide {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    padding: 0 0 10px 0;
    text-align: center;
    color: #000;
    line-height: 170%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
}

.new-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;  /* 画面幅の 10% に固定 */
    height: auto;
    max-width: 100px; /* 画像の最大幅を制限（任意） */
	z-index: 1
}
.slider {
    width: 100%;
    position: relative;
}

.slick-slide {
    display: none;
}

.slick-slide.slick-active {
    display: block;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 左寄せ */
    margin-top: 10px;
    gap: 0px;
}

.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumbnail {
    flex: 0 0 calc(25% - 0px); /* 5列にする */
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box;image-rendering: auto;
}

.thumbnail:hover img {
    transform: scale(1.1);
    border-color: #000;
}

.thumbnail.active img {
    border-color: #000;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    pointer-events: all;
    font-size: 2em;
}


.planslide2 {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 50px 0;
    text-align: center;
    color: #000;
    line-height: 170%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.slider2 {
    width: 70%;
    position: relative;
}

}



