/* CSS Document */
.body{
	background: #fff;
	margin: 0;
}

.header{
	background:#FFCFD0;
	color: #fff;
	font-size: 30px;
	padding: 30px;
	text-align: center;
}

.menu{
	background: #FFDDDE;
}
.menu-in{
	width: 640px;
	margin-left: auto;
	margin-right: auto;	
}
.contents{
	background: #fff;
	width: 100%;
	
	padding: 10px;
	box-sizing: border-box;
	color: #000000;
	text-align: center
}


.honmon{
	margin-bottom: 40px;
	text-indent: 1em;
	width: 100%;
	
	padding: 10px;
	box-sizing: border-box;
	color: #000000;
	text-align: center

}




/* リセットCSS */」
h1,h2,h3,h4,h5
div{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


/* メニュー部分　by　chat gpt */


/* メニュー外枠のスタイル */
.menu-in {
    display: flex;
	justify-content: space-between;
    width: 640px;
    margin: 0 auto; /* 中央揃え */
}

/* メニューアイテムのスタイル */
.menu-btn {
    display: block;
	text-align: center;
	padding: 8px 0; /* 上下のパディング */
	width: 100%;
	background-color: #FFDDDE;
    color: white; /* 文字色 */
	text-decoration: none; 
    font-size: 16px;
	border: 1px solid transparent;
    transition: background-color 0.3s ease; /* ホバー時のスムーズな背景色変更 */
}

.menu-btn:hover {
    background-color: #FFCFD0; 
}


/* スライドショー用スタイル */
.slideshow-container {
  width: 600px;
  height: 400px;
  margin: 30px auto; /* 中央寄せ＋上の余白 */
  position: relative;
  overflow: hidden;
  border: 2px solid #FFCFD0; /* 枠つけたよ */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.slide {
  display: block;
  margin: auto;
	position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; 
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


.img {
  width: 600px;
  height: 400px;
  margin: 10px auto; /* 中央寄せ＋上の余白 */
  position: relative;
}


.sns-link {
  display: flex;
  align-items: center;
  margin-right: 0px;
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-family: 'monospace', sans-serif;
	transform: translateX(-15%)

}

.sns-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.sns-icon {
  width: 40px;
  height: auto;
	margin: 0 auto;
	padding: 0;
}
 




