/* CSS Document */
.body{
	background: #F5E5E0;
	margin: 0;
	
}

.header {

 display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  height: 200px;
  background-image: url("../img/IMG_6938.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 9999;

  color: white;          
  font-size: 40px;       
  font-weight: bold;     
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7); 
  position: relative;    
  z-index: 2;
  padding: 30px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.3);
}

 
.menu{
	background: #574D4A;
}
.menu-in{
	width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.contents{
	background: #F5EFEA;
	width: 640px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	box-sizing: border-box;
	
	color: #36180B
}



/* リセットcss */
h1,h2,h3,h4
div{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}



/* メニュー部分 by chatGPT */

/* メニュー全体のスタイル */
.menu-in {
    display: flex;
    justify-content: space-between;
    width: 640px;
    margin: 0 auto; /* 横幅を640pxにして中央揃え */
}

/* 各メニューボタンのスタイル */
.menu-btn {
    display: block;
    text-align: center;
    padding: 8px 0; /* 上下のパディング */
    width: 100%; /* 横幅がメニュー全体に広がる */
    background-color: #574D4A;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid transparent; /* ボーダーを透明に */
    transition: background-color 0.3s ease;
}

/* ホバー時のスタイル */
.menu-btn:hover {
    background-color: #BD9D96;
}

.copyright {
  background-color: #574D4A; 
  color: white;              
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}







.bt01{
	background:#0082D5;/* #B2 == d 130 */
	color:#fff;/*ff ff ff */
	padding: 8px;
	width: 70px;
	text-align: center;
	border-radius: 5px;
	transition-duration: 0.3s;
}

.bt01:hover{
	background:#95DDF7;
	cursor: pointer;
	transform: rotate(-90deg);
	transform: scale(1.2);
}