@charset "UTF-8";

* {
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust: 100%;
}
*, *:before, *:after {
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
	border: 0;
}
html {
	font-size: 62.5%;
}
body {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	text-align: center;
	font-size: 1.6rem;
	line-height: 2;
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	color: #222;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
::selection {
	background: #d22328;
	color: #fff;
}
::-moz-selection {
	background: #d22328;
	color: #fff;
}
a         { color: #222; text-decoration: none; }
a:link    { color: #222; text-decoration: none; }
a:visited { color: #222; text-decoration: none; }
a:hover   { color: #222; text-decoration: none; }
a:active  { color: #222; text-decoration: none; }
a.disabled {
	pointer-events: none;
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
    min-height: 100vh;
    border: solid 5px #34A738;
    .header {
        padding-bottom: 16px;
        h1 {
            margin: 0 auto;
            width: 80%;
            img {
                display: block;
                width: 100%;
            }
        }
        @media screen and (min-width: 768px) {
            padding-bottom: 24px;
            h1 {
                width: 188px;
            }
        }
    }
    .main {
        overflow: hidden;
        width: 100%;
        .page_width {
            margin: 0 auto;
            width: 90%;
            .label_list {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 8px;
                margin: 0;
                padding: 0;
                list-style: none;
                li {
                    overflow: hidden;
                    width: 100%;
                    border-radius: 8px;
                    a {
                        display: block;
                        position: relative;
                        .img_wrap {
                            position: relative;
                            .default_img {
                                display: block;
                                aspect-ratio: 1 / 1;
                                object-fit: cover;
                                width: 100%;
                            }
                            .hover_img {
                                position: absolute;
                                top: 0;
                                left: 0;
                                z-index: -1;
                                width: 100%;
                                height: 100%;
                                display: block;
                            }
                        }
                        .label_logo {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            z-index: 2;
                            width: 100%;
                        }
                        &:hover {
                            .img_wrap {
                                .hover_img {
                                    z-index: 1;
                                }
                            }
                        }
                    }
                    &.label_lovekyun {
                        a {
                            .label_logo {
                                background: rgba(255, 88, 131, 0.6);
                            }
                        }
                    }
                    &.label_topia {
                        a {
                            .label_logo {
                                background: rgba(65, 0, 69, 0.6);
                            }
                        }
                    }
                    &.label_caramel {
                        a {
                            .label_logo {
                                background: rgba(255, 172, 51, 0.6);
                            }
                        }
                    }
                }
            }
        }
        @media screen and (min-width: 768px) {
            .page_width {
                .label_list {
                    flex-direction: row;
                    li {
                        width: calc(calc(100% - 16px) / 3);
                    }
                }
            }
        }
    }
    .footer {
        .txt_copyright {
            color: #34A738;
            font-size: 1rem;
        }
        @media screen and (min-width: 768px) {
            .txt_copyright {
                font-size: 1.2rem;
            }
        }
    }
}