/* CSS Document */
.body{
	background:#00ABB9 ;
	margin: 0;
}

.header{
	background:#BAF5FF;
	color:darkolivegreen;
	
	font-size: 40px;
	padding: 30px;
	text-align: center;
}

.menu{
	background:#00ABB9;
}
.menu-in{
	width: 640px;
	margin-left: auto;
	margin-right: auto;	
}
.contents{
	background:#00867B;
	width: 640px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	
	color:azure;
}

/* メインパート */
.img{
	width:50%;
	height:auto;
	max-width: 300px
}


.honmon{
	font-size: 16px;
	margin-bottom: 40px;
	text-indent: 1rem;
}




/* リセット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;
}

/* メニュー外枠のスタイル */
.menu-in {
    display: flex;
    width: 640px;
    margin: 0 auto; /* 中央揃え */
}

/* メニューアイテムのスタイル */
.menu-item {
    flex: 1; /* 横幅を均等に分ける */
    background-color: #0082D5; /* ノーマル時の背景色 */
    color: white; /* 文字色 */
    text-align: center;
    padding: 8px 0; /* 上下のパディング */
    font-size: 16px;
    text-decoration: none; /* アンダーラインを消す */
    display: block; /* aタグをブロック要素として扱う */
    transition: background-color 0.3s ease; /* ホバー時のスムーズな背景色変更 */
}

.menu-item:hover {
    background-color: #92C7FF; /* ホバー時の背景色 */
}







.bt01{
	background: #0082D5; /* #82 == d 130 */
	color: #fff;/* ff ff ff */
	padding: 8px;
	width: 70px;
	text-align: center;
	border-radius: 5px;
	transition-duration: 0.3s;
}

.bt01:hover{
	background: #92C7FF;
	cursor: pointer;
	transform: rotate(-90deg);
	transform: scale(1.2);
}

.scroll-image {
  position: relative;
  overflow: hidden;
}

.scroll-image img {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  transition: transform 1s ease-out;
}

.scroll-image.visible img {
  transform: translateX(100%);
}

@keyframes slide{
	0%{
		transform: translateX(100%);
	}
	100%{
		transform: translateX(0);
}
}

.img {
	animation: slide 2s ease-out forwards; }

/* リセットとベース */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  line-height: 1.6;
}

/* ヘッダー */
.header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 30px 15px;
  text-align: center;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 10px rgba(101, 57, 220, 0.3);
  user-select: none;
}

/* メニュー */
.menu {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  padding: 15px 0;
  margin-bottom: 20px;
}

.menu-in {
  display: flex;
  gap: 30px;
}

.menu-item {
  color: #6a11cb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.menu-item:hover {
  background-color: #6a11cb;
  color: white;
}

/* コンテンツ */
.contents {
  max-width: 900px;
  margin: 0 auto 50px auto;
  background: white;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 8px 24px rgba(101, 57, 220, 0.15);
  font-size: 1.1rem;
  color: #444;
}

/* 食べ物のランキングなどの強調 */
.contents div > br + br {
  margin-bottom: 1rem;
}

.contents br {
  line-height: 1.8;
}

/* ランキングのアイコン文字を少し大きく */
.contents div {
  font-weight: 500;
  line-height: 1.8;
}

.contents div strong {
  font-weight: 700;
  color: #6a11cb;
}

/* 強調用の色づけ */
.contents br + span {
  color: #2575fc;
}

/* 全体的に余白を整える */
.contents > div > div {
  margin-bottom: 1.8rem;
  white-space: pre-wrap;
}

/* リンク色 */
a {
  color: #6a11cb;
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .menu-in {
    flex-direction: column;
    gap: 15px;
  }
  .contents {
    padding: 20px;
  }
  .header {
    font-size: 1.8rem;
    padding: 20px 10px;
  }
}
/* ベース */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  padding-bottom: 50px;
}

/* 背景の歯イラスト（薄く） */
body::before {
  content: "";
  position: fixed;
  top: 20%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: url('https://cdn-icons-png.flaticon.com/512/906/906175.png') no-repeat center/contain;
  opacity: 0.05;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

/* ヘッダー */
.header {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  font-weight: 700;
  font-size: 2.6rem;
  padding: 30px 15px;
  text-align: center;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 10px rgba(101, 57, 220, 0.3);
  user-select: none;
  position: relative;
  z-index: 1;
}

/* メニュー */
.menu {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  padding: 15px 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.menu-in {
  display: flex;
  gap: 30px;
}

.menu-item {
  color: #6a11cb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.menu-item:hover {
  background-color: #6a11cb;
  color: white;
}

/* コンテンツ全体 */
.contents {
  max-width: 900px;
  margin: 0 auto 50px auto;
  background: white;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 8px 24px rgba(101, 57, 220, 0.15);
  font-size: 1.1rem;
  color: #444;
  position: relative;
  z-index: 1;
}

/* 歯列矯正とはタイトル */
.contents > div:first-child {
  font-size: 2rem;
  font-weight: 700;
  color: #6a11cb;
  margin-bottom: 20px;
  border-bottom: 3px solid #6a11cb;
  padding-bottom: 8px;
}

/* テキストの基本 */
.honmon {
  margin-bottom: 20px;
  white-space: pre-wrap;
  font-weight: 500;
  line-height: 1.8;
}

/* メリットとデメリットの枠装飾 */
.honmon:nth-of-type(2), /* メリット */
.honmon:nth-of-type(3)  /* デメリット */ {
  border: 2px solid #6a11cb;
  border-radius: 12px;
  padding: 15px 20px;
  background: #e8eaff;
  font-weight: 600;
  box-shadow: inset 0 0 10px #c1c9f7;
}

/* メリットタイトルとデメリットタイトルを強調 */
.honmon:nth-of-type(2)::before {
  content: "＜メリット＞";
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #3548a1;
}

.honmon:nth-of-type(3)::before {
  content: "＜デメリット＞";
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #a13535;
}

/* 画像のスタイル（元のスライドアニメ付き） */
.img {
  width: 100%;
  max-width: 400px;
  height: auto;
  animation: slide 2s ease-out forwards;
  margin: 15px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* 画像まわりのテキスト */
.contents > div:nth-last-child(1) > div {
  margin: 10px 0 20px 0;
  font-weight: 600;
  color: #555;
  font-size: 1.1rem;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .menu-in {
    flex-direction: column;
    gap: 15px;
  }
  .contents {
    padding: 20px;
  }
  .header {
    font-size: 1.8rem;
    padding: 20px 10px;
  }
}

body {
  background: url('flower-background.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}
img {
  display: block;
  margin: 20px auto;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}