/* CSS Document */
@font-face {
  font-family: 'kinari-gothic-mini';
  src: url('../fonts/kinari-gothic-mini.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body{
	background: #ffffff;
	margin: 0;
}

.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:#E4C1B5;
	color: #ffffff;
	font-size: 15px;
	padding: 5px;
	text-align: center;
	border-bottom: 1px solid #ccc;
	font-family: 'kinari-gothic-mini', sans-serif;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.logo-img{
	width: 100px;
	height: 100px;
	margin-left: 20px;
}

.subtitle-img{
	width: 144.2px;
	heignt: 39px;
}

.explanation-img{
	width: 216.3px;
	heignt: 58.5px;
	margin-left: 216.3px;
	margin-top: 10px;
}

.dish-img{
	width: 216.3px;
	heignt: 58.5px;
	margin-bottom: 10px;
}

.recipe-img{
	width: 149.1px;
	heignt: 58.5px;
	margin-bottom: 10px;
}

.page-img{
	width: 987.6px;
	height:1057.2px;
	display: block;
	margin: 10px auto;
}
	

.contents{
	background:#F4EBDA;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	text-align: center;
	color: #544C40;
	font-size: 24px;
	width: 1000px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'kinari-gothic-mini', sans-serif;
}

.hero {
  background-image: url("../img/タイトル画像.jpg");
  background-size: cover;
  background-position: center;
  width: 1000px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-box {
  background-color: rgba(255, 255, 255, 0.7); /* 白 + 透明度 */
  padding: 30px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 立体感 */
}

.hero .title {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero .subtitle {
  font-size: 20px;
  margin-bottom: 15px;
	font-family: 'kinari-gothic-mini', sans-serif;
}

.hero p {
  font-size: 16px;
  line-height: 1.8;
}

.honmon{
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}

.img{
	border-radius: 20px;
	height: auto;
		
}

.culture-img{
	width: 800px;
	height: auto;
	border-radius: 20px;
	display: block;
	margin: auto;
	border: 1.5px solid #333;
}

.content-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.recipe-container {
  max-width: 1000px;
  margin: 0 auto;
}

.top-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.ingredients ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.6;
}

.ingredients-columns{
	display: flex;
	gap: 40px;
}

.pirojikis-ingredients{
  	list-style-position: inside;
	padding: 0;
	margin: 0;
}

.instructions {
  text-align: left;
}

.items{
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0;
}
.item{
	width: 300px;
	margin: 0 9px 40px 9px;				
}
.item-img{
	width: 150px;
	height: 150px;
	overflow: hidden;
	border-radius: 10px;
}

.dish-caption {
 	font-size: 20px;
	white-space: nowrap;
	font-family: 'kinari-gothic-mini', sans-serif;
}

.tab-text {
  	font-family: monospace;
  	white-space: pre;
	font-size: 16px
}

/* グローバルナビゲーション */
.logo
{
      font-size: 24px;
      font-weight: bold;
    }

.nav-menu{
	list-style: none;
	display: flex;
	gap: 20px;
	padding: 0;
	margin: 0;
}

.nav-item{
	text-align: center;
	position: relative;
}

.nav-item.active .dropdown-menu{
	display: block;
}

.nav-link{
	display: block;
	text-decoration: none;
	background-color:#E4C1B5;
	color: #544C40;
	padding: 8px 12px;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.nav-link:hover{
	background-color: #D7A391;
}

.dropdown-menu{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(215, 163, 145, 0.8);
	list-style: none;
	padding: 0;
	maegin: 0;
	border-radius: 5px;
	min-width: 160px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	z-index: 1000;
}

.dropdown-menu li a{
	display: block;
	padding: 10px 15px;
	color: #544C40;
	text-decoration: none;
}

.dropdown-menu li a:hover{
	background-color: #D7A391;
	border-radius: 5px;
}

.arrow {
  display: inline-block;
  margin:0px 0px 2px 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid white;
}

.nav-item.active .arrow {
  border-top: none;
  border-bottom: 6px solid white;
}

/* リセットCSS */
h1,h2,h3,h4,
div{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

