@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-container{
	margin: 0;
	font-family: "Forum", serif;
  	font-weight: 400;
}

.sticky-container img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	padding: 5% 0;
	background-color: #f2f2f2;
}

.wrapper h1{
	text-align: center;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 1.1;
	margin: 8% auto;
}

@media(min-width:750px){
	.sticky-container{
		display: flex;
		justify-content: center;
		column-gap: 160px;
		background-color: #fff;
	}
	
	.pc-box{
		position: sticky;
        left: 0;
        top: 0;
        display: flex;
        width: 30%;
        height: 100vh;
        justify-content: center;
        align-items: center;
	}
	
	.pc-box__left p{
		text-align: center;
		font-size: 2.9rem;
		margin: 1% auto 6%;
	}
	
	.left-title{
		font-size: 3.8rem;
		line-height: 1.2;
		text-align: center;
		}

	.left-title span{
		font-size: 7rem;
		line-height: 0.7;
		}

	.pc-box__left .category-list {
		width: 100%;
		padding: 0;
		margin: 15% auto 0;
		list-style: none;
	}

	.pc-box__left .category-list li{
		border-bottom: solid 1px #888888;
	}

	.pc-box__left .category-list li a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 24px 10px;
		text-decoration: none;
		color: #333;
		font-weight: bold;
		font-size: 1.5rem; 
		letter-spacing: 0.05em;
	}

	/* 矢印（V字）の作成 */
	.pc-box__left .arrow {
		display: inline-block;
		width: 7px;
		height: 7px;
		border-right: 2px solid #333; 
		border-bottom: 2px solid #333;
		transform: rotate(45deg); 
		margin-bottom: 4px;
	}

	.pc-box__left img{
		width: 50vh;
	}
		
	.wrapper{
		width: 36%;
		margin: 0;
		padding: 3% 0;
	}
	
	.wrapper h1{
		text-align: center;
		font-weight: 400;
		font-size: 3.3rem;
		line-height: 1.1;
		margin: 5% auto;
	}

}

/*==============================
	
		main-contents
	
==============================*/

.main-contents{
	margin: 20% auto 10%;
}

.contents-inner{
	width: 100%;
	margin: 0 auto 15%;
	padding-top: 14%;
}

.inner-top{
	margin: 0 auto 5%;
	position: relative;
	padding-top: 7%;
}

.inner-top h2{
	font-weight: normal;
	position: absolute;
	top: 0;
	left: 2%;
	margin: 0;
	font-size: 2.2rem;
}

@media(min-width:750px){
	
	.inner-top{
		padding-top: 6%;
	}

	.inner-top h2{
		font-size: 2.9rem;
	}
}

/*---------- style ----------*/

.style{
	width: 90%;
	margin: 0 auto 10%;
}

.style-inner{
	margin-bottom: 10%;
}

.style-grid{
	display: grid;
	grid-template-columns: 67% 33%;
	column-gap: 5px;
}

.grid-right{
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}


.style-grid2{
	grid-template-columns: 33% 67%;
}


.order1{
	order: 2;
}


.order2{
	order: 1;
}


/*-------- slide --------*/

.slide{
	position: relative;
}

.slide img:first-child{
	display: block;
	width: 100%;
	height: auto;
}

.slide img:last-child{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: fade 6s infinite;
}

@keyframes fade{
	0%{opacity: 0;}
	25%{opacity: 0;}
	50%{opacity: 1;}
	75%{opacity: 1;}
	100%{opacity: 0;}
}


/*---------- credit ----------*/

.credit {
	width: 90%;
	margin: 2% auto;
}

.credit-inner {
	margin: 0 auto;
	position: relative;
}

.credit-inner a {
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 1.3rem;
	line-height: 2;
}

.credit-inner a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1%;
	width: 20px;
	height: 5px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	transform: translateY(-50%) skewX(45deg);
}

.credit-inner .credit-price {
	margin-left: 3px;
}

.credit-inner .credit-price::after {
	content: "tax in";
	font-size: .9rem;
	margin-left: 5px;
}

.contents-inner .all{
	width: 90%;
	margin: 5% auto;
}

@media(min-width:750px){
	
	.credit {
		width: 80%;
	}

	.credit-inner a {
		font-size: 1.4rem;
	}
	
	.credit-inner .credit-price::after {
		font-size: .99rem;
	}
	
	.contents-inner .all{
		width: 60%;
		font-size: 1.0rem;
		padding: 2% 0;
	}

	.contents-inner .all span{
		font-size: 1.0rem;
	}

}


/*---------- other ----------*/

.other{
	margin: 10% auto;
}

.move-wrap{
	display: flex;
	align-items: center;
	overflow: hidden;
	margin: 5px 0;
	column-gap: 5px;
}

.slideshow{
	display: flex;
	column-gap: 5px;
    animation: loop-slide 22s infinite linear 1s both;
}

.slideshow2{
	display: flex;
	column-gap: 5px;
    animation: loop-slide2 22s infinite linear 1s both;
}

.content{
	width: 130px;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


@keyframes loop-slide2 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}


.all{
	display: block;
	width: 90%;
	margin: 15% auto 15%;
	text-align: center;
	font-size: .9rem;
	/*border: solid 1px #000;*/
	color: #fff;
	background-color: #000;
	text-decoration: none;
	position: relative;
	line-height: 1.5;
	padding: 3% 0;
}

.all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

