@charset "UTF-8";
/* ============================================
   和の美 トップページ スタイル
   （kyoto-kinone.jp のレイアウトを参考にした自作CSS）
============================================ */

/* ---------- 基本設定 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Sawarabi Mincho", serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; border: 0; vertical-align: bottom; }

p { line-height: 1.5; font-size: clamp(1rem, 0.833rem + 0.83vw, 1.25rem); text-align: justify; }

a { text-decoration: none; transition: 0.3s; color: #799e1f; }
a:hover { color: #c1272d; }

ul { list-style: none; }

button { font-family: inherit; background: none; border: none; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

#wrapper { position: relative; width: 100%; }
#wrapper_inner { position: relative; width: 100%; overflow: hidden; }

/* ---------- ローディング ---------- */
#fade {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fdffed;
  z-index: 9999;
  animation: fadeOut 1s 2s forwards;
}

#loader {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  animation: fadeOut 1s 1.5s forwards;
}

.loader_mark {
  width: 120px; height: auto;
  animation: loader-yura 2s ease-in-out infinite;
}

@keyframes loader-yura {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-12deg) translateY(-6px); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* ---------- フェードイン（スクロール表示） ---------- */
.wow {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.wow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ドロワーメニュー ---------- */
#drawer_menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100%;
  background: #ede8e1;
  z-index: 3000;
  overflow-y: auto;
  transition: right 0.4s ease;
  padding: 40px 0;
}
#drawer_menu.is-open { right: 0; }

#drawer_menu ul li a,
#drawer_menu .drawer_close {
  display: block;
  font-size: 0.875rem;
  height: 40px;
  line-height: 40px;
  padding-left: 20px;
  color: #4b3131;
  border-bottom: 1px solid #fff;
}
#drawer_menu ul ul li a { padding-left: 40px; }
#drawer_menu ul li a:hover { background: #b9adab; color: #fff; }
#drawer_menu .drawer_close {
  background: #b9adab;
  color: #fff;
  cursor: pointer;
}
#drawer_menu .drawer_close:hover { background: #fff; color: #740f06; }

#drawer_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 2900;
}
#drawer_overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- ヘッダー ---------- */
#header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background:
    radial-gradient(circle at 85% 90%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 45%),
    #e0f7bd;
  overflow: hidden;
}

/* 左上の装飾（円弧） */
#header_bak {
  position: absolute;
  top: -160px; left: -160px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.35) 60%, rgba(255, 255, 255, 0) 72%);
  z-index: 2;
  pointer-events: none;
}

/* ヘッダーメニューバー */
#header_menu {
  position: relative;
  width: 100%;
  height: 60px;
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  z-index: 100;
  transition: 0.3s;
}

#sub_header_logo {
  display: none;
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}
.logo_mark_s {
  display: inline-block;
  font-size: 1.25rem;
  color: #683044;
  font-weight: bold;
  letter-spacing: 2px;
}

#header_menu_inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header_menu_list { display: flex; }

.header_menu_list > li {
  position: relative;
  padding: 0 14px;
  font-size: 0.875rem;
  height: 60px;
  line-height: 60px;
}
.header_menu_list > li > a { color: #000; }
.header_menu_list > li > a:hover { color: #ff7bac; }

/* ドロップダウン */
.header_menu_list > li > ul {
  position: absolute;
  top: 48px; left: 0;
  width: 160px;
  display: none;
}
.header_menu_list > li:hover > ul { display: block; }
.header_menu_list > li > ul > li {
  height: 28px;
  line-height: 28px;
  background: #ede8e1;
  border-bottom: 1px solid #fff;
  animation: dropFadeIn 0.2s ease;
}
.header_menu_list > li > ul > li a {
  display: block;
  color: #000;
  font-size: 0.8125rem;
  padding-left: 12px;
}
.header_menu_list > li > ul > li:hover { background: #b8adaa; }
.header_menu_list > li > ul > li:hover a { color: #fff; }

@keyframes dropFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 丸アイコン */
.header_icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.svg_waku {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
}
.svg_waku svg { width: 24px; height: 24px; }

.svg_waku_1 { color: #ff1d25; }
.svg_waku_2 { color: #7ac943; }
.svg_waku_3 { color: #3fa9f5; }
.svg_waku_1:hover { background: #ff1d25; color: #fff; }
.svg_waku_2:hover { background: #7ac943; color: #fff; }
.svg_waku_3:hover { background: #3fa9f5; color: #fff; }

/* ハンバーガー */
#icon-animation {
  position: relative;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
}
#icon-animation .bar {
  position: absolute;
  left: 10px;
  width: 30px; height: 4px;
  border-radius: 4px;
  background: #4b3131;
  transition: 0.4s;
}
#icon-animation .top { top: 12px; }
#icon-animation .middle { top: 21px; }
#icon-animation .bottom { top: 30px; }

#icon-animation .icon-animation_text {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: #4b3131;
  white-space: nowrap;
}

#icon-animation:hover { background: #951205; }
#icon-animation:hover .bar { background: #fff; }

#icon-animation.is-active .top { top: 21px; transform: rotate(45deg); }
#icon-animation.is-active .middle { opacity: 0; }
#icon-animation.is-active .bottom { top: 21px; transform: rotate(-45deg); }

/* スクロールで固定されるヘッダー */
#header_menu.fixed {
  position: fixed;
  top: 0; left: 0;
  margin: 0;
  height: 70px;
  padding: 5px 10px 0 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}
#header_menu.fixed #sub_header_logo { display: block; }
#header_menu.fixed .svg_waku { background: none; border: 1px dotted #fff; }
#header_menu.fixed .svg_waku:hover { border-color: #999; }

/* ---------- ロゴ＋スライダー ---------- */
#header_slider {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin: 60px auto 0;
  max-width: 1400px;
  padding: 0 40px;
  z-index: 10;
}

.hs_logo_col { flex: 0 0 38%; }
.hs_slider_col { flex: 0 0 52%; }

#header_logo {
  text-align: center;
  margin-top: 60px;
}

.logo_main {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

#sub_header_logo img { width: 100px; height: auto; }

.top_text {
  margin-top: 30px;
  text-align: center;
}
.top_text p {
  display: inline-block;
  font-size: 1.375rem;
  letter-spacing: 3px;
}

/* ヘッダースライダー（クロスフェード） */
.h_slider_1 {
  position: relative;
  height: 500px;
  margin-top: -20px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 10;
}
.h_slider_1 .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
}
.h_slider_1 .slide.is-active { opacity: 1; }

/* 波の装飾 */
.wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave svg { width: 100%; height: 60px; }

.wave_path1 { animation: waveMove 6s linear infinite alternate; }
.wave_path2 { animation: waveMove 9s linear infinite alternate-reverse; }

@keyframes waveMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-40px); }
}

/* Scrollインジケーター */
#scroll {
  position: absolute;
  left: 5%; bottom: 20%;
  width: 100px; height: 10px;
  font-size: 0.875rem;
  text-indent: 20px;
  transform: rotate(90deg);
  animation: move_eye 4s linear 0s infinite alternate;
}
#scroll_inner {
  height: 15px;
  margin-top: -10px;
  border-bottom: 1px solid #ff7bac;
  border-right: 1px solid #ff7bac;
  transform: skew(60deg);
}
@keyframes move_eye {
  from { margin-bottom: 5%; }
  to   { margin-bottom: 10%; }
}

/* ---------- 区切り飾り ---------- */
.kinone_line {
  display: block;
  height: 10px;
  width: 51px;
  margin: 40px auto;
  background:
    radial-gradient(circle 3px at 5px 5px, #9db87a 3px, transparent 3.5px),
    radial-gradient(circle 3px at 25px 5px, #e8a0b4 3px, transparent 3.5px),
    radial-gradient(circle 3px at 45px 5px, #9db87a 3px, transparent 3.5px);
}

/* ---------- セクションタイトル ---------- */
.t_title { display: block; margin: 0 0 30px 0; }

.top_title {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  line-height: 0.8;
  letter-spacing: 4px;
  color: #bdccd4;
  padding-left: 50px;
  margin-bottom: 50px;
}
.top_title::first-letter { color: #2bc798; }
.top_title::after {
  position: absolute;
  content: "";
  top: 30px; left: 0;
  height: 1px; width: 30px;
  background: #bdccd4;
}
.top_title span {
  display: block;
  text-align: right;
  font-size: 0.9375rem;
  letter-spacing: 1px;
  color: #2bc798;
  margin-top: 14px;
  line-height: 1.4;
}

/* ---------- News ---------- */
#sub_about { margin: 30px 0; }

#sub_about .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#sub_about .news_col {
  flex: 1 1 500px;
  margin-left: auto;
  max-width: 700px;
}

#about_news { width: 100%; margin: 10px auto 20px; }

#about_news h5 {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 10px 0 15px;
  color: #672f44;
}
#about_news h5 span a { font-size: 0.875rem; color: #c1272d; }
#about_news h5 span a:hover { color: #f00; }

#about_news p {
  display: table;
  border-bottom: 1px dotted #c7b299;
  line-height: 25px;
  margin-bottom: 8px;
}
#about_news .news_title {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 15px;
  font-size: 1rem;
}
#about_news .news_title::after {
  position: absolute;
  content: "";
  left: 4px; top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #f90;
}
#about_news a { color: #222; }
#about_news a:hover { color: #c1272d; }

/* ---------- About ---------- */
#top_about { padding: 50px 0 20px; }

#kinonenokoto { margin: 40px 0; }

#siki_img_text p,
#kinonenokoto_inner p,
#kinonenokoto_inner2 p {
  font-size: 1.125rem;
  line-height: 2.14;
}
#siki_img_text span { color: #ff7bac; }

#siki_img_text { max-width: 950px; margin: 0 auto; }

#kinonenokoto_inner { max-width: 760px; margin: 50px auto 30px 0; }
#kinonenokoto_inner2 { max-width: 700px; margin: 30px 0 30px auto; }

/* 四季グリッド */
#siki_img { margin: 80px auto 0; width: 90%; }

.siki_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.siki_cell img { border-radius: 12px; display: block; width: 100%; }

.siki_img_title { grid-column: 1 / -1; text-align: center; margin: 20px auto; }

.siki_img_title p {
  font-family: "Charis SIL", "Sawarabi Mincho", serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 10px;
  text-align: center;
}
.siki_img_title p span:nth-child(1) { color: #e8a0b4; } /* 四：桜色 */
.siki_img_title p span:nth-child(2) { color: #7a955a; } /* 季：若葉色 */
.siki_img_title p span:nth-child(3) { color: #2bc798; } /* 折：翡翠色 */
.siki_img_title p span:nth-child(4) { color: #683044; } /* 々：臙脂色 */
.siki_img_title .sub_siki_img_title {
  font-size: 1rem;
  letter-spacing: 4px;
  color: #8a8272;
  margin-top: 10px;
}

/* ギャラリー */
.kinonenokoto_img { max-width: 950px; margin: 0 auto; }

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.kinone_img {
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
}
.kinone_img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.kinone_img img:hover { transform: scale(1.05); }

.kinonenokoto_img_setu {
  display: block;
  text-align: center;
  width: 80%;
  margin: 15px auto;
  padding: 5px;
  background: #f2fff3;
  border: 1px solid #bef1c1;
  font-size: 0.875rem;
}

/* ---------- Menu ---------- */
#top_menu { padding: 50px 0 20px; overflow: hidden; }

#t_menu_text {
  max-width: 760px;
  margin: 0 0 40px;
}
#t_menu_text p { font-size: 1.125rem; line-height: 2.14; text-indent: 1em; }

.kobetu_next_waku {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px 25px;
  padding: 40px 20px 25px;
  border: 1px dotted #006266;
}
.kobetu_next_waku::after {
  position: absolute;
  content: "和の美のメニュー";
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  font-size: 1.125rem;
  text-align: center;
  background: #fff;
}
.menu_item {
  display: block;
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
}
.menu_item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
  transition: 0.3s;
}
.menu_item:hover img { filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.35)); }
.menu_item_name {
  display: block;
  margin-top: 12px;
  font-size: 1.0625rem;
  color: #333;
  letter-spacing: 1px;
}
.menu_item_price {
  display: block;
  margin-top: 4px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #006266;
}
.menu_item:hover .menu_item_name { color: #c1272d; }

.next_waku_wrap { text-align: right; margin-top: 20px; }

.next_waku {
  display: inline-block;
  border-radius: 30px;
  background: #00b894;
  border: 2px solid #fff;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
  transition: 0.3s;
}
.next_waku a {
  display: inline-block;
  color: #fff;
  padding: 12px 40px;
}
.next_waku a:hover { color: #fff; }
.next_waku .arrow { margin-left: 15px; }
.next_waku:hover { filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4)); }

/* ---------- 写真スライダー（自動流れ） ---------- */
#top_img {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
  border-top: 6px double #d9e4c8;
  border-bottom: 6px double #d9e4c8;
}

.top_img_inner { width: 100%; overflow: hidden; }

.top_img_track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: stripScroll 60s linear infinite;
}
.top_img_track > div { flex: 0 0 auto; }
.top_img_track img {
  height: 240px;
  width: auto;
  border-radius: 6px;
}

/* ---------- Access（Googleマップ） ---------- */
#top_access { padding: 50px 0 30px; }

#access_text { margin: 0 0 30px; }
#access_text p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.map_embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e3e0d5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.map_embed iframe, .map_embed #map { display: block; height: 450px; }

.map_link_wrap { text-align: center; margin: 25px 0; }

@media (max-width: 865px) {
  .map_embed iframe, .map_embed #map { height: 320px; }
  #access_text p { font-size: 1rem; }
}

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- フッター ---------- */
#footer {
  padding: 30px 0 10px;
  border-top: 1px solid #eee;
}

#footer_inner { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

.footer_grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.footer_logo_img { width: 130px; height: auto; margin: 6px 0; }

.footer_logo_text {
  font-size: 1.375rem;
  color: #6f8b4e;
  font-weight: bold;
  margin: 4px 0 8px;
}
.footer_logo_text span { font-size: 1.25rem; letter-spacing: 1px; }

.footer_access {
  padding-left: 20px;
  margin-bottom: 30px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer_notice_nowrap {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .footer_notice_nowrap {
    display: inline-block;
    font-size: 0.8125rem;
  }
}

.footer_contact {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.footer_contact_inner { text-align: center; }
.footer_contact_inner p {
  display: inline-block;
  text-align: center;
  width: 240px;
  height: 45px;
  line-height: 45px;
  margin: 40px auto 5px;
  font-size: 1rem;
  border-radius: 20px;
}
.footer_contact_inner p.tel { background: #ffe6cc; }
.footer_contact_inner p.mail { background: #ebefef; }
.footer_contact_inner p.tel_no {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  margin: 0;
  height: auto;
  line-height: 1.2;
}
.footer_contact_inner p.tel_no a { color: #ff8100; }
.footer_contact_inner p.tel_no.mail_addr {
  font-family: inherit;
  font-weight: normal;
  font-size: 1.0625rem;
}
.footer_contact_inner p.tel_no.mail_addr a { color: #557a44; }
.footer_contact_inner a p { color: #000; }
.footer_contact_inner a:hover p { color: #c1272d; }

.footer_yoyaku {
  text-align: center;
  padding: 2px 6px;
  margin: 10px auto;
  font-size: 0.875rem;
  color: #16a085;
}

.footer_link { margin: 20px 0 30px; }
.footer_link ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.footer_link li {
  position: relative;
  padding-left: 10px;
}
.footer_link a { font-size: 0.875rem; color: #000; }
.footer_link a:hover { color: #c1272d; }
.footer_link .footer_san {
  position: absolute;
  top: 7px; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 2px 0 2px 4px;
  border-color: transparent transparent transparent #ff000d;
}

.footer_copy {
  text-align: center;
  width: 100%;
  height: 35px;
  line-height: 35px;
  font-size: 0.875rem;
  color: #fff;
  background: #006266;
}

/* ---------- ページトップへ ---------- */
#top_navi {
  position: fixed;
  bottom: 45px; right: 30px;
  height: 50px; width: 50px;
  border-radius: 4px;
  background: #006266;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 300;
}
#top_navi.is-show { opacity: 0.9; visibility: visible; }
#top_navi:hover { opacity: 0.7; }
#top_navi a {
  position: relative;
  display: block;
  height: 100%; width: 100%;
}
#top_navi a::after {
  position: absolute;
  content: "";
  top: 20px; left: 17px;
  width: 14px; height: 14px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(45deg);
}

/* ============================================
   レスポンシブ
============================================ */
@media (max-width: 1140px) {
  #header { height: auto; min-height: 700px; padding-bottom: 80px; }

  #header_menu {
    position: fixed;
    top: 0; left: 0;
    margin: 0;
    height: 70px;
    padding: 10px 10px 0 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  }
  #sub_header_logo { display: block; }
  .header_menu_list { display: none; }
  .svg_waku_1, .svg_waku_2, .svg_waku_3 { display: none; }
  #icon-animation { background: transparent; }

  #header_slider {
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    gap: 0;
  }
  .hs_logo_col, .hs_slider_col { flex: none; width: 100%; }
  #header_logo { margin-top: 0; }
  .logo_circle { display: none; }
  .top_text { margin-top: 20px; }
  .top_text p { font-size: 1.125rem; }

  .h_slider_1 {
    width: 70%;
    height: 400px;
    margin: 20px auto 0;
  }
}

@media (max-width: 992px) {
  .top_title { font-size: 1.875rem; padding-left: 30px; margin-bottom: 20px; }
  .top_title::after { top: 20px; width: 20px; }

  .h_slider_1 { width: 80%; height: 300px; }

  .gallery_grid { grid-template-columns: repeat(2, 1fr); }

  .footer_grid { grid-template-columns: 1fr; }
  .footer_link ul { flex-direction: column; gap: 8px; }

  #top_navi { display: none; }
  #scroll { display: none; }
}

@media (max-width: 865px) {
  .kobetu_next_waku {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 25px 15px 15px;
  }
  .menu_item { flex: 1 1 45%; }
  .menu_item img { height: 180px; }

  #t_menu_text p,
  #siki_img_text p,
  #kinonenokoto_inner p,
  #kinonenokoto_inner2 p { font-size: 1rem; line-height: 2; }

  .footer_contact { display: block; }
  .footer_contact_inner p { display: block; width: 80%; margin: 10px auto 5px; }

  .next_waku a { font-size: 0.875rem; padding: 8px 30px; }
}

@media (max-width: 576px) {
  #header { min-height: 500px; }
  .h_slider_1 { width: 100%; height: 220px; }
  .top_img_track img { height: 160px; }
}
