/* CSS Document */
.body{
	background:#F8F4E6;
	margin: 0;
	
}

.header{
	background:#98714f;
	color: #fff;
	font-size: 30px;
	padding: 30px;
	text-align: center;
	
}

.menu {
  background: none;  /* 背景色をなくす */
  text-align: center; /* 中央揃え */
}

.menu-in {
  background: #cbab82;
  width: 640px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}


.contents{
	background:#FFFFFF;
	width: 640px;
	margin-left:auto;
	margin-right: auto;
	padding: 10px;
	box-sizing: border-box;
	
	color:#000000;

}

.big-title {
  font-weight: bold;
}
.homon
{margin-bottom: 20px
}
h1,h2,h3,h4,
div{
	box-sizing: border-box;
	margin: 0;
	padding: 0;

}

/* メニュー　by chatGPT　*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* メニュー外枠のスタイル　*/
.menu-in {
    display: flex;
    width: 640px;
    margin: 0 auto; /* 中央揃え　*/
}

/* メニューアイテムのスタイル　*/
.menu-item {
    background-color:#cbab82; /* ノーマル時の背景色　*/
    color: white; /* 文字色　*/
    padding: 8px 0; /* 上下のパディング　*/
    flex: 1; /* 横幅を均等に分ける　*/
    text-align: center;
    text-decoration: none; /* アンダーラインを消す　*/
    font-size: 16px;
	display: block; /* aタグをブロック要素として扱う　*/
    transition: background-color 0.3s ease;/* ホバー時のスムーズな背景色の変更　*/
}

.menu-item:hover {
    background-color: #F2C9C9;/* ホバー時の背景色　*/
}

.flex-container {
    display: flex;
    align-items: center; /* 縦位置を中央に揃える（必要なら） */
    justify-content: center; /* 中央寄せ（任意） */
    gap: 20px; /* 画像と文字の間隔 */
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
}

.link-img {
  flex-shrink: 0; /* 画像の縮小を防ぐ */
  width: 300px; /* 画像の固定幅 */
}

.img {
      width: calc(80% - 100px);
      display: block;
      margin: 0 auto;
    }


.img02 {
  width: 100%;
  height: auto;
  display: block;
}

.text-box {
	width: 60%; /* 画像と合わせて100%になるよう調整 */
}
	
.text-box {
  text-align: center; /* ← これで中央揃え */
  max-width: 800px;   /* お好みで幅制限 */
 margin: 30px auto 0 auto; /* ← 上だけ30px余白を追加 */
	}

.button-container {
  display: flex;
   justify-content: center; 
  gap: 80px;                /* ボタン間のスペース */

}

.bt01 {
 background-color: #DCACAC;
  color: white;
  border: none;
  width: 120px;       /* 幅と高さを同じに */
  height: 120px;
  padding: 0;        /* 中の余白は0に */
  border-radius: 50%; /* これで丸くなる */
  cursor: pointer;
  text-align: center; /* テキスト中央揃え */
  font-size: 15px;    /* お好みで文字サイズ調整 */
 line-height: 1;  /* 1倍に設定すると行間が狭くなる */
	
	display: flex;
  align-items: center;     /* 縦方向センター */
  justify-content: center; /* 横方向センター */
}


.bt01:hover{
	background: #F09D9D;
	curdor: pointer;
	transform: scale(1.2);
}


.bt02 {
  width: 160px;
  text-align: center;
  cursor: pointer;
  color: #3A2619;
  padding: 5px;
  border-radius: 5px;
  text-decoration: underline;
  /* float は使わずflexで */
	transition: transform 0.3s ease; /* 追加 */
}

.bt02:hover{
	cursor: pointer;
	transform: rotate(-90deg);
	transform: scale(1.2);
	 margin-left: auto;
}


.button-wrapper {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  margin-top: 20px;
	gap: 100px;  /* ここを大きくする */
}

.icon-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-grow: 1;  /* ここでアイコンが広がり中央揃えされる */
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* ← ここが中央揃えのキー */
}


.icon {
  width: 80px;
  height: 80px;
  cursor: pointer;
	transition: transform 0.3s ease; /* ← アニメーション効果 */
	border-radius: 30%; /* これでアイコンを丸くします */
	
}

.icon:hover {
  transform: scale(1.4); /* ← 拡大 */
}

.icon-caption {
  margin-top: 15px;
  font-size: 12px;
  color: #555;
  text-align: center;
}


.below-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 640px;
  margin: 20px auto 0 auto
}

.icon-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  width: 250px;
  margin-left: auto;
}
