
body{
	color:#4c4948;
}

a{
	color: #4c4948;
}

#main_content{
	margin-top:130px;
}


.top_sec{
	display: flex;
	justify-content: space-between;
	max-width: 1080px;
	margin:0 auto;
	padding: 0 120px;
	position:relative;
		z-index:99;
	}


.top_detail{
	width:40%;
}

.main_sub{
	width: 220px;
}

.main_logo{
	margin-top:40px;
}

.main_copy {
	margin-top:50px;
}

.main_copy p{
	font-size:13pt;
	line-height:200%;
}


.top_img{
	position:relative;
	width:55%;
}

.top_img > div{
	position:absolute;
}

.top_img01{
	width:65%;
	top: -30px;
	left: 60px;
	/*
	animation-name:updown1;
	animation-delay:0s;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite; 
	*/
}

.top_img02{
	top:0px;
	right: -60px;
	width: 50%;
	/*
	animation-name:updown2;
	animation-delay:0s;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite; 
	*/
}

.top_img03{
	top:260px;
	right: -30px;
	width: 60%;
	/*
	animation-name:updown3;
	animation-delay:0s;
	animation-duration: 6s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite; 
	*/
}

.top_img04{
	top:250px;
	left: 0px;
	width: 60%;
	/*
	animation-name:updown1;
	animation-delay:0s;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	*/
}

.top_img05{
	top:400px;
	right: 20px;
	width: 40%;
	/*
	animation-name:updown2;
	animation-delay:0s;
	animation-duration: 6s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	*/
}







@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes updown2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}



@keyframes updown3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}



.btn_list{
	position:relative;
	padding-top:140px;
	padding-bottom: 80px;
	margin-top:50px;
	background:#fccdd3;
}

.btn_list_wrap{
	position: relative;
	max-width: 880px;
	margin:0 auto;
	padding: 0 60px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 25px;
	grid-row-gap: 25px;
}

.btn_list_wrap > div{
	position:relative;
	cursor: pointer;
		-webkit-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	-moz-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	-ms-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	-o-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	transition: .4s cubic-bezier(0.78, .18, .34, .98);
}

.btn_list_wrap > div:hover{
	z-index:99;
	opacity:0.6;
		-webkit-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	-moz-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	-ms-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	-o-transition: .4s cubic-bezier(0.78, .18, .34, .98);
	transition: .4s cubic-bezier(0.78, .18, .34, .98);
}


.btn_list_wrap > div span{
	position:absolute;
	bottom:-10px;
	right:-10px;
	width:40px;
}



	
.content_index{
    margin-top: 100px;
}


.content_index_inner {
}


.content_box{
	position:relative;
	margin-bottom:100px;
	padding-bottom: 100px;
}


.content_box:last-child{
	margin-bottom:0px;
}



.content_box:after{
	content:"";
	position:absolute;
	z-index:-99;
	left:0;
	bottom:0;
	width:100%;
	height:350px;
	background:#fccdd3;
}

.content_wrap{
	width: 1180px;
	padding: 0 120px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

	.content_img{
	width:50%;
	position:relative;
}

.content_img img{
border-bottom-right-radius:50px;
}

.content_img_img {
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.6s cubic-bezier(0.78, .18, .34, .98) 0.2s,
	transform 0.6s cubic-bezier(0.78, .18, .34, .98) 0.2s;
}

.content_box.active .content_img_img{
	opacity: 1;
	transform: scale(1); /* 通常サイズに戻る */
}


.content_img .num{
	z-index: 99;
	position:absolute;
	width:160px;
	top:-50px;
	left:-50px;
	opacity:0;
}

.content_box.active .content_img .num{
	opacity:1;
	-webkit-transition: .4s cubic-bezier(0.78, .18, .34, .98) 0.6s;
	-moz-transition: .4s cubic-bezier(0.78, .18, .34, .98) 0.6s;
	-ms-transition: .4s cubic-bezier(0.78, .18, .34, .98) 0.6s;
	-o-transition: .4s cubic-bezier(0.78, .18, .34, .98) 0.6s;
	transition: .4s cubic-bezier(0.78, .18, .34, .98) 0.6s;
}



.content_detail{
	width:45%;
}

.shop_info{
	text-align:center;
}

.shop_info .place p{
	font-size:12pt;
}

.shop_info .new p{
	font-size:12pt;
}


.shop_info .nm{
	margin-top:10px;
}

.shop_info .nm p{
	font-size:22pt;
	position:relative;
}


.shop_info .insta{
	margin-top:15px;
}

.shop_info .insta p{
	font-size:12pt;
}

.shop_place{
	text-align: center;
	margin-top: 130px;
	color: #4c4948;
	background:#fff;
	padding: 10px 0;
}

.shop_place span{
	display: block;
	margin-bottom: 10px;
	font-size: 12pt;
	}

.shop_place p{
	display:block;
	font-size:22pt;
	font-weight:bold;
	line-height: 100%;
}


.shop_note{
	margin-top:20px;
}

.shop_note p{
	font-size:12pt;
}







@media screen and (max-width: 640px){
	
	
	#main_content {
		margin-top: 80px;
	}
	
	.main_logo {
		margin-top: 20px;
	}
	
	
	
	
	.main_sub {
		width:80%;
	}
	
	
	.top_sec {
		padding: 0 20px;
	}
	
	.top_detail {
		width: 60%;
	}
	
	.top_img {
		top: 30px;
	}
	
	.top_img01 {
		width: 90%;
		top: -30px;
		left: -5px;
	}
	
	
	.top_img02 {
		top: -10px;
		right: -48px;
		width: 70%;
	}
	
	.top_img04 {
		top: 130px;
		left: -10px;
		width: 88%;
	}
	
	.top_img03 {
		top: 105px;
		right: -65px;
		width: 95%;
	}
	
	.top_img05 {
		top: 215px;
		right: -35px;
		width: 50%;
	}
	
	
	
	
	
	.main_copy {
		margin-top: 25px;
		padding: 0 20px;
	}
	
	.main_copy p {
		font-size: 10pt;
		line-height: 165%;
	}
	
	
	.btn_list {
		padding-top: 70px;
		padding-bottom: 30px;
		margin-top: -30px;
	}
	
	
	.btn_list_wrap {
		padding: 0 30px;
		display: grid;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
	
	
	.btn_list_wrap > div {
		
	}
	
	.btn_list_wrap > div span {
    bottom: -5px;
    right: -5px;
    width: 25px;
	}
	
	
	
	.content_index {
		margin-top: 40px;
	}
	
	
	.content_index_inner {
		padding: 0 0px;
	}
	
	.content_box {
		display: block;
		margin-bottom: 40px;
		padding-bottom: 30px;
	}
	
	.content_wrap {
		width: 100%;
		padding: 0 30px;
		display: block;
	}
	
	
	.content_img {
		    width: 100%;
	}
	
	.content_img:after {
		width: 260px;
		height: 260px;
	}
	
	.content_box:after {
		height: 50%;
	}
	
	
	
	.content_img .num {
		width: 100px;
		top: -80px;
		left: -20px;
	}
	
	
	
	.content_detail {
		width: 100%;
		margin-top: 20px;
	}
	
	.shop_info {
		margin-bottom: 20px;
	}
	
	
	.shop_info .nm p {
		font-size: 16pt;
	}
	
	
	
	.shop_place span {
		font-size: 10pt;
		margin-bottom: 2px;
		line-height: 140%;
	}
	
	.shop_place {
		margin-top: 0px;
	}
		
	.shop_place p {
		font-size:20pt;
	}
	
	.shop_info .place p {
		font-size: 10pt;
	}
	
	.shop_info .new p {
		font-size: 10pt;
	}
	
	.shop_info .insta {
		margin-top: 9px;
	}
	
	.shop_info .insta a {
		font-size: 10pt;
	}
	
	.shop_note {
		margin-top: 5px;
	}
	
	.shop_note p {
		font-size: 10pt;
	}
	
	
	
}


