@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-container{
	margin: 0;
}

.sticky-container img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}

.mv{
	margin: 0 auto 10%;
}

.mv img:nth-child(1){
	width: 80%;
	margin: 10% auto 10%;
}

.mv img:nth-child(2){
	width: 100%;
	margin: 10% auto;
}

.mv h1{
	text-align: center;
	font-size: 1.5rem;
	font-weight: normal;
	margin: 3% auto;
	font-family: "bahnschrift", sans-serif;
}

.mv p{
	text-align: center;
	font-size: .85rem;
	line-height: 2;
	margin: 5% auto;
}

@media(min-width:750px){
	.sticky-container{
		display: flex;
		justify-content: center;
		column-gap: 0px;
		background-color: #f9f9f9;
	}
	
	.pc-box{
		position: sticky;
        left: 0;
        top: 0;
        display: flex;
        width: 33%;
        height: 100vh;
        justify-content: center;
        align-items: center;
	}
	
	.pc-box__left img{
		width: 40vh;
		animation: upDown 2s ease-in-out infinite alternate;
	}
		
	.pc-box__right img{
		width: 30vh;
		animation: swingCenter 2s ease-in-out infinite alternate;
	}
		
	.wrapper{
		width: 35%;
		margin: 0;
	}
	
	.br_s{
		display: none;
	}
}

/*===================================

		main-contents

====================================*/

.main-contents{
	margin: 20% auto 10%;
}

.contents-inner{
	/*width: 90%;*/
	margin: 10% auto 25%;
	position: relative;
}

/*---------- style1 ----------*/

.inner-img1{
	width: 80%;
	margin: 0 auto;
	padding-top: 11%;
}

.inner-other1{
	position: absolute;
	width: 25%;
	top: 0;
	left: 2%;
	animation: swingCenter 2s ease-in-out infinite alternate;
	transform-origin: center center;
}

/*---------- style2 ----------*/

.inner-other2{
	box-sizing: border-box;
	padding: 10%;
}

.inner-other3{
	box-sizing: border-box;
	padding: 10%;
}

/*---------- style3 ----------*/

.inner-img4{
	margin: 0 auto;
}

.inner-img5{
	width: 80%;
	margin: 10% auto;
}


/*---------- style4 ----------*/

.inner-img6{
	width: 100%;
	margin: 0 auto;
	padding-top: 10%;
}

.inner-other4{
	position: absolute;
	width: 25%;
	top: 0;
	right: 5%;
	animation: upDown 2s ease-in-out infinite alternate;
}


/*---------- style5 ----------*/

.position{
	position: relative;
}

.inner-img7{
	width: 55%;
}

.inner-img8{
	width: 55%;
	margin-left: 45%;
	margin-top: -20%;
}

.inner-other5{
	position: absolute;
	top: 7%;
	right: 6%;
	width: 32%;
	animation: swingCenter 2s ease-in-out infinite alternate;
	transform-origin: center center;
}


.inner-other6{
	position: absolute;
	bottom: 3%;
	left: 10%;
	width: 22%;
	animation: upDown 2s ease-in-out infinite alternate;
}


/*---------- style6 ----------*/

.flex{
	display: flex;
	column-gap: 8px;
	grid-row-gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.flex-base{
	align-items: baseline
}

.flex div{
	width: calc(50% - 4px);
}


/*---------- style7 ----------*/

.inner-img13{
	width: 75%;
	margin: 0 auto;
	padding-top: 15%;
}

.inner-other7{
	position: absolute;
	width: 22%;
	top: 0;
	left: 3%;
	animation: swingCenter 2s ease-in-out infinite alternate;
	transform-origin: center center;
}


/*---------- style8 ----------*/

.inner-other8{
	box-sizing: border-box;
	margin-top: 10%;
}

.inner-other9{
	box-sizing: border-box;
	margin-bottom: 10%;
}

.inner-img16{
	width: 80%;
	margin: 10% auto 0;
}


/*---------- animation ----------*/

@keyframes swingCenter {
    0% {
        /* 反時計回りに15度回転 */
        transform: rotate(-15deg);
    }
    100% {
        /* 時計回りに15度回転 */
        transform: rotate(15deg);
    }
}


@keyframes upDown {
    0% {
        /* 上に10ピクセル動かします（Yは縦方向を意味します） */
        transform: translateY(-10px);
    }
    100% {
        /* 下に10ピクセル動かします */
        transform: translateY(10px);
    }
}




/*----------- credit -----------*/

.credit{
	width: 80%;
	margin: 5% auto;
	font-family: "bahnschrift", sans-serif;
}

.credit a{
	display: block;
	color: #000;
	text-decoration: none;
	font-size: .99rem;
	position: relative;
}

.credit a span{
	/*float: right;*/
	margin-left: 8px;
}

.credit a span::after{
	content: 'tax in';
	font-size: .7rem;
	margin-left: 5px;
}


.credit a::after{
	content: 'BUY';
	position: absolute;
	top: 50%;
    right: 0%;
    transform: translate(0, -50%);
	padding: 0 5%;
    line-height: 1.3;
	background-color: #000;
	color: #fff;
	border-radius: 30px;
	font-size: .89rem;
}

@media(min-width:750px){
	.credit{
		width: 75%;
		margin: 5% auto;
		font-family: "bahnschrift", sans-serif;
	}

	.credit a{
		display: block;
		color: #000;
		text-decoration: none;
		font-size: 1.3rem;
		position: relative;
	}
	.credit a span{
		margin-left: 10px;
	}

}

/*----------- all -----------*/

.all{
	display: block;
	width: 90%;
	margin: 15% auto 15%;
	text-align: center;
	font-size: .9rem;
	border-radius: 50px;
	color: #fff;
	background-color: #000;
	text-decoration: none;
	position: relative;
	line-height: 1.5;
	padding: 3% 0;
	font-family: "bahnschrift", sans-serif;
}

.all span{
	font-size: 1.1rem;
	letter-spacing: 1px;
}

.all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}


/*===================================

		information

====================================*/

.information{
	width: 100%;
	margin: 15% auto 5%;
}

.information-inner{
	width: 90%;
	margin: 0 auto 10%;
	border: solid 2px #000;
	border-radius: 15px;
	box-sizing: border-box;
	padding: 5%;
}

.information-inner h2{
	text-align: center;
	width: fit-content;
	margin: 0 auto 5%;
	letter-spacing: 2px;
	font-size: 2rem;
	font-family: "bahnschrift", sans-serif;
	position: relative;
	padding: 0 25px;
}

.information-inner h2::before{
	content: '◆';
	font-size: .9rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.information-inner h2::after{
	content: '◆';
	font-size: .9rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.daiya{
	width: fit-content;
	padding: 0 25px;
}

.daiya::before{
	content: '◆';
	font-size: .8rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.daiya::after{
	content: '◆';
	font-size: .8rem;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.profile-img{
	width: 70%;
	margin: 0 auto;
}

.information-inner h3{
	text-align: center;
	letter-spacing: 1px;
	font-size: 1.3rem;
	font-family: "bahnschrift", sans-serif;
	margin: 8% auto 3%;
	/*width: 100%;
	display: flex;
	align-items: center;*/
}

/*.information-inner h3:before,
.information-inner h3:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
}
.information-inner h3:before {
	margin-right: 10px;
}
.information-inner h3:after {
	margin-left: 10px;
}*/

.information-inner p{
	font-size: .7rem;
	line-height: 1.7;
	margin: 3% auto;
}

.information-inner a {
	text-align: center;
	font-size: .9rem;
	color: #000;
	font-weight: 600;
	margin: 8% auto 5%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	filter: brightness(0);
}

.information-inner a img {
	display: inline-block;
	width: 23px;
	margin-right: 8px;
}

.information-inner a SVG{
	fill: #000000;
	fill: black;
}

.event p{
	text-align: center;
	font-size: .85rem;
}

.event .kome{
	font-size: .6rem;
	margin-bottom: 10%;
}












