

@font-face {
  font-family: "Canter";
  src: url("FONTS/CanterBold.otf") format("opentype");
}

@font-face {
  font-family: "poppins.extralight";
  src: url("FONTS/poppins.extralight.ttf") format("truetype");
}

@font-face {
  font-family: "poppins.light";
  src: url("FONTS/poppins.light.ttf") format("truetype");
}

@font-face {
  font-family: "poppins.medium";
  src: url("FONTS/poppins.medium.ttf") format("truetype");
}

/* base styles from earlier */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  color: white;
  font-family: "poppins.extralight";
  text-align: center;
}

.main-header {
  align-items: flex-end;
  padding: 0 16px 15px 16px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  background: black;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 16px;
  font-weight: bold;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  font-family: "Canter";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 90px 20px 40px;
  transition: transform 0.4s ease-in-out;
  transform: translateY(-100%);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.show {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu a {
  color: white;
  font-size: 2em;
  text-decoration: none;
}

/* Submenu styling */
.submenu {
  display: none;
  background-color: black;
  border-radius: 10px;
  margin-top: 5px;            /* submenu自体の位置は最小限に */
  box-sizing: border-box;
  padding: 0;                 /* padding-top は使わないようにする */
}

.submenu li {
  margin-left: 20px;        /* ← 上下に余白を入れる。テキストだけが下がる */
}

/* 最初の項目だけ余白を多くしたい場合 */
.submenu li:first-child {
  padding-top: 20px;
}

.submenu li:last-child {
  padding-bottom: 20px;
}

.submenu a {
  font-size: 1.1em;
}

.has-submenu.open .submenu {
  display: block;
}

.small-arrow {
  font-size: 0.6em;
  margin-left: 10px;
}


.hero {
  position: relative;
  margin: 93px auto 10px;
  width: 91%;         /*画像サイズ*/
  max-width: 1400px;
}

.image-frame {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.image-frame::before,
.image-frame::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -2;
}

.image-frame::before {  /*グレーの枠*/
  background: #7d7d7d;
  top: -5%;
  left: -1.5%;
  width: 50%;
  height: 95%;
  z-index: -2;
}

.image-frame::after {  /*ピンクの枠*/
  background: pink;
  top: 7%;
  left: 18%;
  width: 85%;
  height: 99%;
  z-index: -1;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border: none;
}


.cta-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-right: 20px;
  margin-top: 20px;
}

.btn {
  text-decoration: none;
  color: white;
  font-size: 26px;
  padding: 15px 5px;
  margin-top: 20px;
  background: none;
  border: none;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.7;
}

.cta-group {
  position: relative;
　z-index: 20;
}

.sub-cta {
  display: none;
  position: absolute;
  background:#4B4B4B;
  border-radius: 5px;
  padding: 10px;
  top: 50%;  /* ボタンの真下に表示 */
  right: 0;
  text-align: left;
　z-index: 30; 
}

.sub-cta a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
  font-size: 16px;
}

.sub-cta a:hover {
  color: #ccc;
}

.service-btn {
  display: inline-block;
  width: 38vw;              /* 画面幅の30%（調整可能） */
  max-width: 400px;         /* 最大幅制限（大画面で大きくなりすぎない） */
  min-width: 140px;   /* 最小幅制限（スマホでも小さくなりすぎない） */
  height: auto;             /* 高さはテキストに合わせるか、調整可能 */
  padding: 1.5vw 0;           /* 上下に余白（画面に比例） */
  font-size: 4vw; 
  letter-spacing: 3px;/* テキストも画面幅に比例して変化 */
  text-align: center;
  color: white;
  border: 1px solid white;
  border-radius: 50px;
  background: none;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.3s ease;
  margin: 60px 0 30px 0;
}


.service-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}



/*.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 20%;
}

/*.service-item img {
  width: 100%;
  height: auto;
  max-width: 300px;
  transition: transform 0.3s;
}

/*.service-item img:hover {
  transform: scale(1.05);
}

/* --- NEW STYLES FOR REQUEST --- */
.clickable-service-map {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.clickable-service-map img.service-image {
  width: 100%;
  height: auto;
  display: block;
}

.clickable-service-map .link-area {
  position: absolute;
  display: block;
  width: 45%;
  height: 10%;
  cursor: pointer;
  z-index: 10;
}


.clickable-service-map .link-area {
  position: absolute;
  display: block;
  width: 40%;
  height: 15%;
  cursor: pointer;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2); /* temporary visual for debugging */
}

.hair-design       { top: 2%; left: 5%;  }
.massage           { top: 2%; left: 55%; }
.hair-extensions   { top: 20%; left: 5%;  }
.facials           { top: 20%; left: 55%; }
.headspa           { top: 40%; left: 5%;  }
.waxing            { top: 40%; left: 55%; }
.male-beauty       { top: 60%; left: 5%;  }
.eyelash           { top: 60%; left: 55%; }
.makeup            { top: 80%; left: 5%;  }
.skin              { top: 80%; left: 55%; }

/* Table same size as hero */
table {
  width: 95%;
  max-width: 1400px;
  margin: 20px auto;
  border-collapse: collapse;
  table-layout: fixed;
}

table img {
  width: 100%;
  height: auto;
  display: block;
}



footer {
  text-align: center;
}


footer a {
  color: white; /* リンクも白色にする */
  text-decoration: none; /* 下線を削除する */
}

footer a:hover {
  color: white; /* ホバー時も白色のまま */
  text-decoration: none; /* ホバー時の下線を消す */
}


i {
  color: white;
  font-size: 2em;
}
/* ソーシャルアイコンのスタイル */
.social-icons2 {
  margin-top: 10px; /* 上部との間に余白を追加 */
}

.social-icons2 a {
  text-decoration: none;
  color: white; /* 必要に応じて色を変更 */
  font-size: 0.9em; /* アイコンのサイズ */
  margin: 0 2px; /* アイコン間の距離を調整 */
}

.social-icons2 a:hover {
  color: #808080; /* ホバー時の色 */
}

.bi-instagram {
  font-size: 1.2em; 
}

.bi-facebook {
  font-size: 1.2em; 
}


.fsm{
	 font-size: 0.7em;
	 line-height:1.3em;
	 margin: 60px 0 10px;
  }

.fsxm{
	 font-size: 0.6em;
	 line-height:1.3em;
  }

.fmm{
	 font-size: 0.9em;
	 margin: 5px 0 30px;
  }
