body {
	padding: 0;
	margin: 0;
	font-family: serif;
	font-size: 14px;
	color: #fff;
	background-image: url("../images/header_blue.jpg");
	background-position: top center;
	background-repeat: repeat-x;
	background-color: #000;
}

#top_img {
	width:100%;
}

#head_title {
	width:75%;
	margin-left:20px;
	float:left;
}

#header_area {
	background-color: #2d3452;
	height: 55px;
	background-position: top center;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 20px;
//border:1px solid #e00;
}


/* ハンバーガーアイコン */
#hamburger {
  display: none;
  position: fixed; /* ← 固定表示に変更 */
  top: 20px;
  right: 20px;
  width: 40px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

#hamburger span {
  display: block;
  height: 4px;
  margin: 5px 0;
  background: #fff;
  transition: 0.3s;
  border:1px solid #000;
  border-radius:5px;
}

/* メニュー本体 */
#nav_and_flags {
  display: none;
  position: fixed; /* ← 固定表示に変更 */
  top: 0px;
  right: 0;
  width: 50%;
  background-color: #600;
//border: 1px solid #ccc;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-height: 70vh;
  overflow-y: auto;
}

#nav_and_flags ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}

#nav_and_flags ul li {
  border-bottom: 1px solid #ccc;
}

#nav_and_flags ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #fff;
}

/* 多言語アイコン */
#country {
  padding: 10px;
}

/* メニュー表示用クラス */
#nav_and_flags.show {
  display: block;
}

/* スマホ表示時のみ表示 */
@media screen and (max-width: 1415px) {
  #hamburger {
	display: block;
  }

  #nav_and_flags {
	width: 100%;
  }
}









.image-overlay-container {
	position: relative;
	width: fit-content; /* または必要に応じて100%など */
}

.image-overlay-container img {
	display: block;
	max-width: 100%;
	height: auto;
}




#b_btn {
	position: static; /* ← これで通常のレイアウトフローに従うように */
	width: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	padding: 10px 0;
	overflow: hidden;
	margin-top: 0px; /* 画像との間に余白を入れる */
}

#b_btn ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* 複数段にするため */
  justify-content: center;
  gap: 10px;
}

#b_btn ul li {
  width: calc(50% - 10px);
  text-align: center;
}

#b_btn ul li a {
  display: block;
}

#b_btn ul li a img {
  display: block;
  margin: 0 auto;
}


#footer_area {
	background-image: url("../images/footer_blue.png");
	background-repeat: repeat-x;
	margin-top: 20px;
	padding-top: 30px;
	text-align: center;
	overflow: hidden;
	/* height: 153px; ← これを削除することで要素の高さに応じて伸縮します */
}

#footer_area > img {
	width: 80%;
	display: block;
	margin: 0 auto 30px auto; /* 下に十分な余白を確保 */
}

#footer_area > div {
	width: 95%;
	margin: 0 auto;
	padding: 10px 0; /* 上下に余白を入れて視認性UP */
	box-sizing: border-box;
}

#footer_area li {
	font-size: 14px;
	line-height: 2em;
	text-align: left; /* ← 明示的に左揃えにする */
}

address {
	text-align:center;
	font-style: normal;
	margin-top:10px;
	margin-bottom:20px;
	font-size:16px;
	letter-spacing: 1px;
	overflow:hidden;
	background-color: #2d3452;
	padding-top:5px;
	padding-bottom:5px;
}

.cb {
	clear:both;
}

/* 多言語アイコン全体 */
#country {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
}

.flag-row {
  display: flex;
  gap: 20px;
}

.flag-row a:nth-child(3) {
  margin-right: 20px; /* ← KOREA の右に空間追加 */
}

.flag-row img {
  width: 50px;
  height: auto;
  display: block;
}
.sbr {
	display:block;
}