@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
}

img {
    max-width: 100%;
}

a {
    cursor: pointer;
    transition: 0.2s;
}

a:hover {
    opacity: 0.85;
}

.container {
	position: relative;
	background-image: url('img//BG_fx.gif');
	background-attachment: fixed;
	width: 100%;
	text-align: center;
	overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

.content {
    position: relative;
}

.content::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	background-image: url('img/bg_02.png');
	z-index: -1;
    max-width: 1920px;
}

.content_size {
    text-align: center;
    width: 960px;
    margin: 0 auto;
}

.banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 42px;
    margin: 45px auto;
}

.site_banner {
    margin: 36px auto;
}

.garapon_about {
    width: 828px;
    font-weight: bold;
    border: solid 1px #fff;
    background-color: rgba(60, 200, 198, 0.6);
    margin: 20px auto;
    padding: 25px 0;
}

.copyRight {
	font-size: 11px;
	padding-top: 100px;
	font-weight: bold;
}


@media screen and (max-width: 950px) {
    .content {
        padding: 0 2.5%;
        margin-top: 100px;
    }

    .content::before {
        background-size: 200%;
        left: 0;
        margin-top:80px
    }

    .content_size {
        width: 100%;
    }

    .garapon_about {
        width: 100%;
        padding: 10px;
    }

    .banner {
        gap: 20px
    }

    .copyRight {
        font-size: 10px;
        padding-top: 30px;
    }
}