/*------------------- ヘッダー -------------------*/

header {
	position: absolute;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 0 18px 0;
}
header .h_inbox {
	display: flex;
	justify-content: space-between;
}
header .h_left {
	position: relative;
	width: 35%;
	margin-top: 1em;
}
header .h_left .h_logo {
	margin-bottom: 1em;
}
header .h_left .h_logo img {
	margin-left: 0;
	width: 75%;
}
header .h_left .h_logo span {
	display: block;
	width: 54%;
	margin-bottom: 1em;
}
header h1 {
	font-size: 0.8rem;
	letter-spacing: .14em;
	line-height: 2.5em;
	color:  #644A2F ;
    font-weight: 500;
    z-index: 1;
}
h1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 30%;
  background: rgba(255, 255, 255, 1);
  filter: blur(25px);
  z-index: -1;
  border-radius: 50%;
}
header .h_contact {
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
	text-align: center;
	position: relative;
	color: #fff;
}

header .h_tel dl {
	position: relative;
}
header .h_tel dt {
	text-align: left;
	color: #938068;
	font-size: min(1.4vw,94%);
	letter-spacing: .14em;
	margin-bottom: .2em;
}
header .h_tel dt span {
	font-size: 80%;
	color: #363636;
}
header .h_tel dt,
header .h_tel .phone_num {
	padding-left: 20%;
}
header .h_tel img {
    margin: 0;
}
header .h_tel .phone_num {
	font-size: min(1.8vw,130%);
}
header .h_tel .icon {
    left: 0;
    top: auto;
	bottom: 0;
    transform: none;
}
header .h_tel .h_time {
	margin-top: .8em;
}
header .h_time {
  font-size: 15px;
}
header .h_web a {
	padding: .8em .8em .7em;
}
header .h_web a > div {
	position: relative;
	box-sizing: border-box;
	padding-left: 25%;
}
header .h_web .icon_web {
	position: absolute;
	width: 23%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
header .h_web .com_web_style {
	width: 96%;
    max-width: 154px;
	padding-left: 4%;
	padding-bottom: .6em;
	transition: all .5s;
	overflow: hidden;
}
header .h_web .com_web_style::before {
	position: absolute;
	content: "";
	background-color: #FFF;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
}
header .h_web .com_arrow2 {
	bottom: .5em;
}
header .h_web .h_web_txt {
	width: 84%;
    margin: .7em auto 0;
}






/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

header {
    padding-top: 2%;
}
header .h_left {
	margin-top: .5em;
}
header .h_left .h_logo span {
    margin-bottom: .6em;
}
header .h_right {
	width: 60%;
}
header h1 {
	letter-spacing: .1em;
}

header .h_left .h_logo {
	margin-bottom: 1em;
	z-index: 20;
}
header .h_left .h_logo img {
	margin-left: 0;
    width: 55%;
	z-index: 20;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 768px) {

header {
	padding: 3% 3% 0;
}
header .h_inbox {
	display: block;
	margin-top: -10px;
}
header .h_left {
	width: 65%;
	margin-top: 0;
}
header .h_left .h_logo {
	margin-bottom: .6em;
}
header .h_left .h_logo span {
	margin-bottom: .4em;
}
header .h_contact {
	display: none !important;
}
header h1 {
	font-size: 8px;
	letter-spacing: normal;
}
.spnone {
  display: none;
}

header .h_left .h_logo {
	margin-bottom: 1em;
}
header .h_left .h_logo img {
	margin-left: 0;
    width: 55%;

}


}


/* ============================================================
  1. ヘッダー右側：コンタクトエリア全体 (.h_contact)
  バナー形式を廃止し、背景を透過させます
============================================================ */
header .h_contact {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  align-items: center;
  gap: 15px; /* バナー間の隙間 */
  margin-top: 10px;
  background: transparent; /* 背景を完全に透明に */
}

/* ============================================================
  2. 電話番号エリア (.h_tel) & WEB予約エリア (.h_web) 共通設定
============================================================ */
header .h_tel a,
header .h_web a {
  display: block;
  text-decoration: none;
  /* うっすらと白背景を乗せたい場合は、ここを rgba(255, 255, 255, 0.7) 等に変更 */
}

/* ============================================================
  3. 電話番号とWEB予約の画像調整
  画像に含まれる「白い余白」を無視して配置を整えます
============================================================ */
header .h_tel img,
header .h_web img {
  width: auto;
  max-width: 230px; /* バナーサイズを少しコンパクトに */
  height: auto;
  display: block;
  margin-right: auto;
  margin-left: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  /* 画像そのものが白い背景を持っている場合、それを透過させる手法（限定的） */
/*   mix-blend-mode: multiply;  */
}

/* ============================================================
  4. ホバー（マウスを乗せた時）の動き
============================================================ */
header .h_tel img:hover,
header .h_web img:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} 

/* ============================================================
  5. 既存コードへの上書き（干渉を防ぐ）
============================================================ */
/* 画像自体の幅指定を柔軟にする */
/* header .h_tel a img,
header .h_web a img {
  width: 100% !important;
  height: auto !important;
} */