@charset "utf-8";


/*上部ボール*/
.menu_ball{
display:flex;
flex-wrap:wrap;
justify-content:center;

}

.ball_small{
padding:0 3px ;
max-width:108px;
}

/*メニューをまとめる*/

.menu-area{
background-color:#ffffff;
margin:0.2%;
}

.menu-container{
  display:flex;
  flex-direction: row;
  justify-content: flex-start;
text-align:left;
}

.menu-text {
	width:70%;
  margin-right: 1%;
  margin-left: 2%;
}
.menu-text p{
font-size:16px;
}

.menu-pict {
  margin-right: 2%;
margin-left: 1%;
}

.menu-pict img {
  width: 200px;
  height:auto;

}

.menu_largetextarea {
  margin-left: 2%;
  margin-right: 2%;

}
.menu_largetextarea p{
font-size:16px;
}


.hrmenu{
  border-top: 0.5px dashed #ccc;
}




.details {
	border-top: 1px solid #decbc5;
	border-left: 1px solid #decbc5;
	border-right: 1px solid #decbc5;
	&:last-of-type {
		border-bottom: 1px solid #decbc5;
	} 
}
.details-summary {
	position: relative;
	display: block;
	padding: 10px;
	color: ;
	font-size: 16px;
	text-align: center;
	background : #fff;/*詳細の背景色*/
	&:hover {
		cursor: pointer;
		opacity: 0.8;
	}
	.btn {
		position: absolute;
        top: 37%;
        left: 10%;
        width: 18px;
        height: 18px;
        transform-origin: center center;
        transition-duration: 0.2s;

        &:before,
        &:after {
            content: "";
            background-color: #808080;/*±文字色*/
            border-radius: 10px;
            width: 18px;
            height: 4px;
            position: absolute;
            top: 7px;
            left: 0;
            transform-origin: center center;
        }
        &:before {
            width: 4px;
            height: 18px;
            top: 0;
            left: 7px;
        }
    }
	&.is-active {
		.btn {
			-webkit-transform: rotate(-180deg);
			transform: rotate(-180deg);
			&:before {
            	content: none;
        	}	
		}
    }
}

.details-summary::-webkit-details-marker {
	display: none;
}

.details-content {
	padding: 20px 10px;
	.close-btn {
		display: block;
		margin: 0 auto;
		padding: 8px 20px;
		background: #30afc1;
		color: #fff;
		text-align: center;
		border: none;
		border-radius: 5px;
		cursor: pointer;
		&:hover {
			opacity: 0.8;
		}
	}
	p {
		margin: 0 0 20px;
		color: #736357;
		font-size: 16px;
		text-align: left;
		&:last-of-type {
			margin: 0 0 40px;
		}
	}
}