/* ============================================================
   Common CSS
   ============================================================ */

@import url("favorite.css");

/* Variables */

:root {
  --color-logo: #9a6777;
  --color-primary: #ed5e95;
  --color-cta1:radial-gradient(circle, #ED5E95 20%, #EB4584 100%);
  --color-cta1-border:#EB4584;
  --color-cta1-dark: #EB4584;

  --color-cta2:radial-gradient(circle, #71B5B2 20%, #63ADAA 100%);
  --color-cta2-border:#63ADAA;
  --color-cta2-dark: #63ADAA;

  --color-reserve: #e85219;
  --color-reserve-dark: #c94410;
  --color-text: #333;
  --color-text-light: #666;
  --color-text-muted: #999;
  --color-border: #ddd;
  --color-border-light: #eee;
  --color-bg: #fff;
  --color-bg-gray: #f5f5f5;
  --color-bg-light: #fafafa;
  --color-link: #0068b7;
  --color-coupon-bg: #fff5f9;
  --color-coupon-border: #f0b8d3;
  --color-new: #e4007f;
  --color-all: #ff6600;
  --color-re: #00a0e9;
  --color-up: #ff0000;
  --radius: 4px;
  --shadow: 0 1px 4px rgba(0,0,0,.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; }
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
  font-size: 1.3rem;
  color: var(--color-text);
  background: var(--color-bg-gray);
  line-height: 1.6;
}
a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--color-primary); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

.header-top {
  background: #fff;
  border-bottom: 1px solid var(--color-border-light);
}

.header-top-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-logo a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo-hpb {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-hot {
  font-size: 1.6rem;
  font-weight: 900;
  color: #e4007f;
  letter-spacing: -1px;
}


.header-nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
}
.header-nav-links a { color: var(--color-text-light); }

/* Genre Navigation */
.genre-nav {
  background: #fff;
  border-bottom: 2px solid var(--color-primary);
}
.genre-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.genre-nav-inner::-webkit-scrollbar { display: none; }
.genre-nav-item {
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 1.3rem;
  color: var(--color-text);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.genre-nav-item:hover { color: var(--color-primary); }
.genre-nav-item.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 700;
}
.help-icon{
width:16px;
    border-color: #e74c3c;
    color: #e74c3c;
}
.fav-icon{
width:16px;
    border-color: #e74c3c;
    color: #e74c3c;
}
.att-icon{
width:16px;

    border-color: #f0a500;
    color: #f0a500;
}
.header-nav-links a{
display: flex;
align-items: center;
}
/* ============================================================
   BREADCRUMB
   ============================================================ */
#breadcrumb {
  background: var(--color-bg-gray);
  padding: 6px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  font-size: 1.1rem;
  color: var(--color-text-light);
}
.breadcrumb-list li::after {
  content: '>';
  margin: 0 4px;
  color: #aaa;
}
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--color-link); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-reserve {
display: block;
  color: #fff !important;
  text-align: left;
  padding: 5px 16px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s;
  cursor: pointer;
  border: solid 1px #fff;
  outline-offset: 1px;
  margin: 2px;
  border-radius: var(--radius);
  position: relative;
  min-width: 40%;
}
.btn-reserve:hover { background: var(--color-cta-dark); }

.btn-reserve-sm {
  display: inline-block;
  background: var(--color-cta);
  color: #fff !important;
  text-align: center;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s;
}
.btn-det {
  background: var(--color-cta1);
  outline: solid 1px var(--color-cta1-border);
}
.btn-reserve-sm:hover { background: var(--color-cta-dark); }

/* Smart Pay Badge */
.smart-pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e8f4ff;
  color: #0068b7;
  border: 1px solid #b0d4f0;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 700;
}
.btn-reserve span {
  display: inline;
  position: absolute;
  top: 25%;
  left: 10px;
}
.btn-reserve div:nth-child(2) {
  font-size: 120%;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.btn-reserve div:nth-child(2), .btn-reserve div:nth-child(3) {
  margin: 0 0 0 30px;
  border-radius: var(--radius);
}
.btn-reserve div:nth-child(3) {
  background: #fff;
  color: #333;
  text-align: center;
}
.btn-tel {
  background: var(--color-cta2);
  outline: solid 1px var(--color-cta2-border);
}
/* UP badge */
.badge-up {
  display: inline-flex;
  align-items: center;
  background: var(--color-up);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 4px;
}

/* Coupon target badges */
.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  background: var(--color-new);
  flex-shrink: 0;
}
.badge-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  background: var(--color-all);
  flex-shrink: 0;
}
.badge-re {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  background: var(--color-re);
  flex-shrink: 0;
}

/* Genre tags */
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.genre-tag {
  font-size: 1.1rem;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  background: #fff;
}
.genre-tag.nail { border-color: #f06292; color: #e91e63; background: #fce4ec; }
.genre-tag.hair { border-color: #9575cd; color: #673ab7; background: #ede7f6; }
.genre-tag.esthe { border-color: #81c784; color: #388e3c; background: #e8f5e9; }
.genre-tag.relax { border-color: #64b5f6; color: #1565c0; background: #e3f2fd; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  text-align:center;
  position:relative;
}
footer a{
margin:0 2%;
}
footer div{
width:100%;

}
footer hr{
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #EFD8E1, #A8426A, #EFD8E1);
  background-image: -moz-linear-gradient(left, #EFD8E1, #A8426A, #EFD8E1);
  background-image: -ms-linear-gradient(left,#EFD8E1, #A8426A, #EFD8E1);
  background-image: -o-linear-gradient(left, #EFD8E1, #A8426A, #EFD8E1); 
  margin:3px;
}
footer .copyright{
font-size:120%;
}
footer img{
height:15px;
  position:relative;
  top:-7px;
  margin:0 3px;
}
footer img { display: inline; }
@media (max-width: 600px) {
footer .links{
font-size: 1.1rem;
}
}

/* ============================================================
   PAGE TOP BTN
   ============================================================ */
.page-top-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin: 20px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  html { font-size: 58%; }

  .header-top-inner {
    padding: 6px 12px;
    flex-wrap: wrap;
  }


  .genre-nav-inner { padding: 0 8px; gap: 0; }
  .genre-nav-item { padding: 8px 10px; font-size: 1.2rem; }
}
#con{
background:#fff;
margin:5px auto;

}
#con-inner{
padding:10px 20px 20px 20px;
}
.c_title{
  background: linear-gradient(180deg, #FEFCDC 0%, #FFFEF0 100%);
  width: 100%;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  padding: 15px 5px;
  border: 0;
  font-size: 100%;
  font: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.c_title h2 {
  font-family: "??S?V?b?N??", "YuGothic", "??S?V?b?N", "Yu Gothic", "Meiryo", "MS PGothic", "sans-serif" !important;
  font-size: 2.5rem;
  font-weight: 100;
  line-height: 1.2;
  color: #433417;
}
.c_title p {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #6a6356;

}
@media (max-width: 700px) {
.related-section {
    padding-bottom: 80px;
    position: relative;
  }
  h1 {
    position: absolute;
    bottom: 5px;
    border: 0;
    width: 100%;
    height: 3em;
    font-size: 14px;
    font-weight: normal;
    display: block;
    vertical-align: top;
    padding: 10px 10px 0;
    margin: 0 auto;
    color: #666666;
    text-align: center;
    -webkit-box-sizing: border-box;
  }
.bottomSummary {
    height: 40px;
    overflow-x: auto;
    white-space: nowrap;
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 10px;
    font-size: 12px;
  }
  #con-inner{
padding:10px 10px;
}
}

#con-inner h2{
border-bottom: 3px solid #e1e4e6;
  position: relative;
  font-size: 2rem;
  padding: 0.5rem 0;
  font-weight: 400;
  position: relative;
  margin:25px 0 15px 0;
  line-height: 2.75rem;

}
#con-inner h2::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 3px;
  background: #e60012;
  display: block;
  bottom: -3px;
  left: 0;
}
