/* CSS Document */

.body{
  background: #FFF0F6; /* やわらかピンクの背景 */
  color: #333;
}

.header{
	  background: #FF7EB9; /* ピンク系のグラデも可 */
  background: linear-gradient(45deg, #FF7EB9, #FF65A3);
  color: white;
  font-size: 2.5rem;
  padding: 40px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 15px rgba(255, 110, 150, 0.4);
  font-weight: 700;
}



.menu{
	 background: #FFD6E8; /* やさしいピンク */
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.3);
  border-radius: 25px;
  width: 680px;
  margin: 20px auto;
}
.menu-in{
	 display: flex;
  justify-content: space-around;
}
.contents{

	 width: 680px;
  background: #FFF5F9;
  margin: 30px auto;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
  font-size: 1.1rem;
  line-height: 1.6;
}

/*リセット.css*/
h1,h2,h3,h4
div{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/*メニュー部分　by chat GPT*/

/*ベースのリセット*/

*{
	 margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Comic Sans MS', cursive, sans-serif; /* やわらか丸みフォント */
  transition: all 0.3s ease;
}

.menu-item {
   flex: 1;
  margin: 0 10px;
  background: #FFB6C1;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 0;
  border-radius: 30px;
  box-shadow: 0 5px 10px rgba(255, 182, 193, 0.6);
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.menu-item:hover {
   background: #FF77A9;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 120, 170, 0.7);
}





.bt01{
	
	background: #00B1D5;
	color: #fff;
	padding: 8px;
	width: 70px;
	text-align: center;
	border-radius: 10px;
	transition-duration: 0.3s;
}
.bt01:hover{
	background:#8EE1F3;
	cursor: pointer;
	transform: rotate(90deg);
	transform: scale(1.1)
}


/*text-align;center;*/