/* =========================
   メイン画像 PC / SP 切替
========================= */
.pc { display: block; }
.sp { display: none; }

@media (max-width: 768px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
}

@media (min-width: 769px) {
  img.sp {
    display: none !important;
  }
}

.l-main {
    overflow: hidden;
    font-family: Noto Serif JP;
}

.contest{
  width: 1200px;
  margin: auto;
  margin-bottom: 5%;
}

.text_h2{
  text-align: center;
  color: #524b35;
  margin-bottom: 3%;
}

.h2_English{
  font-size: 3.5vw !important;
  font-weight: bold !important;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.h2_Japanese{
  font-size: 0.9vw !important;
  letter-spacing: 0.2em;
  margin-top: 6px;
  margin-bottom: 40px;
  color: #7a6a4f;
}

/*------------------------------------------------------------
ヘッダー PC
------------------------------------------------------------*/
#global_header {
  width: 100%;
  background-color: rgba(255,255,255,0.95);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  font-family: Noto Serif JP;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#global_header .wrapper02 {
  display: flex;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 24px;
  gap: 0;
  box-sizing: border-box;
}

/* ロゴ：画像参考に合わせて小さめ固定 */
#global_header .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
}

#global_header .logo img {
  width: 90px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

#global_header .logo p {
  margin: 4px 0 0;
  font-size: 10px;
  color: #555;
  white-space: nowrap;
  line-height: 1.4;
}

/* 中央エリア：予約テキスト＋電話番号 */
#global_header .header-info {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  padding-left: 24px;
}

.text-info {
  color: #ec5e2c;
  flex-shrink: 0;
  text-align: left;
}

#global_header .text-info p {
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
  line-height: 1.4;
}

#global_header .text-info .tel {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  gap: 4px;
  white-space: nowrap;
  line-height: 1.2;
}

#global_header .text-info .tel img {
  width: 18px;
  height: auto;
}

/* ナビメニュー */
#global_header .bt {
  flex-shrink: 0;
}

#global_header .bt ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: center;
}

#global_header .bt ul li a {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d2e1e;
  text-decoration: none;
  white-space: nowrap;
}

#global_header .bt ul li a:hover {
  color: #ec5e2c;
}

#global_header .bt ul li a img {
  width: 26px;
  height: auto;
}

@media screen and (max-width: 1200px) {
  #global_header .logo { width: 170px; }
  #global_header .text-info .tel { font-size: 20px; }
  #global_header .bt ul { gap: 10px; }
  #global_header .bt ul li a { font-size: 11px; }
}

@media screen and (max-width: 1040px) {
  #global_header .logo { width: 150px; }
  #global_header .logo img { width: 50px; }
  #global_header .logo p { font-size: 9px; }
  #global_header .text-info p { font-size: 11px; }
  #global_header .text-info .tel { font-size: 17px; }
  #global_header .bt ul { gap: 8px; }
  #global_header .bt ul li a { font-size: 10px; }
  #global_header .header-info { gap: 16px; padding-left: 16px; }
}

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

.sp-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 10001;
}

@media (max-width: 768px) {
  .sp-header {
    display: flex !important;
  }
}

.sp-logo {
  flex: 0 0 auto;
}

.sp-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.sp-header-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;   /* 右側ボタン群が縮まないよう固定 */
}

/* アイコンボタン共通 */
.sp-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 46px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  gap: 2px;
  transition: opacity 0.2s;
}

.sp-icon-btn:active {
  opacity: 0.7;
}

.sp-icon-btn__icon {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-icon-btn__label {
  font-size: 9px;
  line-height: 1;
}

.sp-icon-btn--web {
  background-color: #ec5e2c;
  color: #fff;
}

.sp-icon-btn--line {
  background-color: #06C755;
  color: #fff;
}

.sp-icon-btn--tel {
  background-color: #524b35;
  color: #fff;
}

/* ハンバーガーボタン */
.sp-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.sp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #524b35;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.sp-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sp-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.sp-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*------------------------------------------------------------
SPドロワーメニュー
------------------------------------------------------------*/

.sp-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10002;
  padding: 80px 30px 40px;
  box-sizing: border-box;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 20px rgba(0,0,0,0.12);
}

.sp-drawer.is-open {
  right: 0;
}

.sp-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-drawer__list li {
  border-bottom: 1px solid #e8e0d4;
}

.sp-drawer__list li a {
  display: block;
  padding: 16px 4px;
  color: #3d2e1e;
  text-decoration: none;
  font-size: 15px;
  font-family: Noto Serif JP;
  letter-spacing: 0.05em;
  transition: color 0.2s, padding-left 0.2s;
}

.sp-drawer__list li a:hover {
  color: #ec5e2c;
  padding-left: 8px;
}

.sp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.45);
  z-index: 10001;
}

.sp-overlay.is-open {
  display: block;
}

/*------------------------------------------------------------
メイン画像
------------------------------------------------------------*/

/*------------------------------------------------------------
ヒーロースライダー（クロスフェード）
------------------------------------------------------------*/
.main_img {
  margin-top: 110px;
  margin-bottom: 5%;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* スライダーコンテナ：PC時は画像のアスペクト比に合わせる */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;  /* PC画像の比率に合わせて変更可 */
}

/* 各スライド */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* 中央オーバーレイ：削除済み */

/* 左下テキスト（PC）：ひし形のデザインを踏襲 */
.hero-caption {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 11;
  pointer-events: none;
  text-align: left;
  font-family: "游明朝", "Yu Mincho", "Noto Serif JP", serif;
}

/* 小さいテキスト：一人でも多くの方に／なっていただくために */
.hero-caption__small {
  font-size: 18px;
  color: #524b35;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 1px 6px rgba(255,255,255,0.8));
}

/* 大きいテキスト：美しく、幸せに */
.hero-caption__main {
  font-size: 52px;
  font-weight: bold;
  color: #ec5e2c;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.9), 0 0 32px rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.7));
}

/* SP：中央揃え・サイズ調整 */
@media (max-width: 768px) {
  .hero-caption {
    bottom: 32px;
    left: 0;
    right: 0;
    text-align: center;
  }

  .hero-caption__small {
    font-size: 13px;
  }

  .hero-caption__main {
    font-size: 34px;
  }
}

/* SP */
@media (max-width: 768px) {
  .main_img {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-slider {
    aspect-ratio: 3 / 4;
  }
}


/*------------------------------------------------------------
お知らせ
------------------------------------------------------------*/

.notice{ display:flex }

.notice_left{ padding-right: 10%; }

/* PC：英語大・日本語小（他セクションと統一） */
.text_NOTICE{
  font-size: 3.5vw !important;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #524b35;
}

.text_NOTICE_under{
  font-size: 0.9vw !important;
  letter-spacing: 0.2em;
  margin-top: 6px;
  margin-bottom: 40px;
  color: #7a6a4f;
}

.viewall{
  border-bottom: 2px solid #7a6a4f;
  padding-bottom: 5%;
  position: relative;
  display: inline-block;
  padding-right: 100px;
}

.viewall::after  {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 8px solid #3d2e1e;
}

.scroll_parent{ width: 70%; }

.scroll{
  height: 200px;
  overflow: auto;
}

.scroll_dl{
  margin-bottom: 4%;
  position: relative;
  padding-right: 20px;
}

.scroll_dl::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 8px solid #3d2e1e;
}

.NOTICE_date{ margin-bottom: 3%; }

.NOTICE_text{
  border-bottom: 2px solid #7a6a4f;
  padding-bottom: 1%
}

@media (max-width: 768px) {
  .notice {
    width: 100%;
    padding: 0 16px;
    display: revert;
  }
  /* SP：英語大・日本語小（他セクションと統一） */
  .text_NOTICE{ font-size: 8vw !important; }
  .text_NOTICE_under{
    font-size: 3vw !important;
    margin-bottom: 24px;
  }
  .notice_left{
    padding-right:0;
    text-align: center;
  }
  .contest{ width: 100%; }
  .scroll_parent{ width: 100%; }
  .scroll_dl{ padding-right: 0px; }
  .NOTICE_text{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .scroll_dl::before{ display: none; }
  .viewall{ padding-bottom: 2%; }
  .sp_notice{
    text-align: center;
    margin-top: 5%;
  }
}

/*------------------------------------------------------------
おすすめプラン
------------------------------------------------------------*/

.RECOMMENDATION{
  padding-top: 5%;
  padding-bottom: 2%;
}

.recommend-wrap {
  width: 100%;
  overflow: hidden;
}

.scroll-box {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.scroll-list {
  display: flex;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: scroll 20s linear infinite;
}

.recommend-wrap:hover .scroll-list {
  animation-play-state: paused !important;
}

.scroll-list img {
  height: 200px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}

.scroll-list li {
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.scroll-list li:hover {
  transform: translateY(-20px);
  box-shadow: 0 3px 10px 0 rgba(61,46,30,0.4);
  opacity: 0.8;
  cursor: pointer;
}

.wrap{ display: flex; }

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .scroll-list {
    flex-direction: column;
    animation: none;
    width: 100%;
  }
  .scroll-list li {
    width: 100%;
    margin-bottom: 20px;
  }
  .scroll-list img {
    width: 100%;
    height: auto;
  }
  .text_h2{ margin-bottom: 0%; }
  .h2_English{ font-size: 8vw !important; }
  .h2_Japanese{ font-size: 3vw !important; margin-bottom: 24px; }
}

/*------------------------------------------------------------
人気の施術
------------------------------------------------------------*/

.PICKUP{
  padding-top: 5%;
  padding-bottom: 2%;
}

.css-slider,
.slider-viewport  {
  width: 1225px;
  overflow: visible;
  margin: auto;
  padding-bottom: 40px;
  position: relative;
}

.slider-viewport {
  width: 1250px;
  overflow: hidden;
}

.r2-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.r2-slide {
  width: 229px;
  flex-shrink: 0;
}

.r2-slide img {
  width: 100%;
  height: 194px;
  display: block;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.dots span.active {
  background: #3d2e1e;
  transform: scale(1.2);
}

@media (max-width:768px){
  .css-slider,
  .slider-viewport{ max-width: 100%; }
  .r2-slide{ width: 53%; }
}

/*------------------------------------------------------------
施術内容
------------------------------------------------------------*/

.MENU{
  padding-top: 5%;
  padding-bottom: 2%;
}

.MENU_contest{ text-align: center; }

.MENU_left{
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: auto;
  padding: 80px 0 0 0;
  opacity: 0;
  transform: translateX(-40px);
  transition: none;
}

.menu_skin_bt{
  position: absolute;
  right: clamp(-40px, -6vw, -80px);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 25px;
}

.MENU_contest > .MENU_left:nth-child(even){
  flex-direction: row-reverse;
  transform: translateX(40px);
}

.MENU_left .menu_skin_bt{
  position: absolute;
  top: 50%;
  right: 25%;
  left: auto;
  transform: translateY(-30%);
}

.MENU_contest > .MENU_left:nth-child(even) .menu_skin_bt{
  right: auto;
  left: 25%;
}

.MENU_left.is-show{
  opacity: 1;
  transform: translateX(0);
}

.menu_skin_bt a{
  display: inline-block;
  transition: transform .3s ease, box-shadow .3s ease;
}

.menu_skin_bt a:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
}

.menu_skin_bt li{ margin-bottom: 3%; }

@media (max-width: 768px){
  .MENU_left{
    flex-direction: column;
    transform: translateY(40px);
    padding: 0;
    text-align: center;
  }
  .MENU_left .menu_skin_bt{
    position: static;
    transform: none;
    margin: 0 auto;
    background: transparent;
  }
  .MENU_contest > .MENU_left:nth-child(even){
    flex-direction: column;
    transform: translateY(40px);
  }
  .menu_skin_bt{
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

/*------------------------------------------------------------
インスタグラム
------------------------------------------------------------*/

.Instagram{
  padding-top: 5%;
  padding-bottom: 2%;
  width: 100%;
}

.r2-track-2{ gap: 120px; }

.Instagram iframe,
.Instagram img {
  width: 100%;
  height: auto;
  min-height: 300px;
  display: block;
}

@media (max-width: 768px) {
  .Instagram iframe,
  .Instagram img { min-height: 360px; }
}

/*------------------------------------------------------------
アクセス
------------------------------------------------------------*/

.Access{
  padding-top: 5%;
  padding-bottom: 2%;
}

.Access_group{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Access_contest{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.Access_img{ margin-bottom: 5%; }

@media (max-width:768px){
  .wrap{ flex-direction: column; }
  .Access_group{ display: block; }
  .Access_img{ text-align: center; }
  .Access_group dl{ margin: auto 10px; }
  .Access_group p{ margin: 10px auto; }
}

/*------------------------------------------------------------
フッター
------------------------------------------------------------*/

.footer {
  padding: 2rem;
  font-size: 15px;
  color: #3d2e1e;
}

.footer ul{
  padding: 0;
  list-style: none;
  font-size: 1.3vw;
}

.footer__navi-heading a{
  color: #3d2e1e;
  text-decoration: none;
}

.footer hr{
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-items: start;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 2rem;
}

.footer__navi li { margin-bottom: 0.75rem; }

.copyright { text-align: center; }

.footer__navi { display: block; }

.footer__navi2{ display: flex; }

.footer_right{
  border-right: 1px solid #B88F51;
  padding-right: 25%;
}

@media (min-width: 769px) {
  .footer .grid {
    grid-template-columns: 1fr 2fr;
    gap: 60px;
  }
  .footer_right {
    border-right: 1px solid #B88F51;
    padding-right: 40%;
  }
  .footer__navi2 {
    display: flex;
    gap: 40px;
  }
  .footer__navi-heading {
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 3vw;
  }
}

@media (max-width:768px){
  .footer ul{ font-size: 4.1vw; }
  .footer__navi-heading{
    font-size: 8vw;
    margin-bottom: 10px;
  }
  .md-justify-between{ text-align: center; }
}

/*------------------------------------------------------------
ページトップ
------------------------------------------------------------*/

.page-top {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 60px;
  right: -60px;
  z-index: 3;
  transition: .3s ease all;
}

.page-top.is-view { right: 60px; }

@media (max-width: 768px) {
  .page-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: -44px;
  }

  .page-top.is-view {
    right: 12px;
  }

  .page-top a:before {
    width: 14px;
    height: 14px;
  }
}

.page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ed5d2b;
  position: relative;
}

.page-top a:before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: calc(50% + 5px);
  left: 50%;
  transition: .3s ease all;
}

.page-top a:hover:before { top: 50%; }

/*------------------------------------------------------------
フローティングバナー
------------------------------------------------------------*/

.fixed_banner {
  position: fixed;
  z-index: 99999;
  top: 250px;
  right: 0px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.fixed_banner_pc {
  width: 100%;
  display: block;
}

.floating-banner:hover { opacity: .8; }

.fixed_banner_sp { display: none; }

.bt-mail{ margin-bottom: 5%; }

/*------------------------------------------------------------
休診日カレンダー（PHP工房 iframe埋め込み）
------------------------------------------------------------*/

.CalendarSection {
  background-color: #faf7f2;
  padding-top: 5%;
  padding-bottom: 4%;
}

.calendar-iframe-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 2列横並び */
.calendar-iframe-row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.cal-iframe {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(82,75,53,0.08);
  background: #fff;
  display: block;
  height: 380px;     /* 5行月の標準高さ */
  min-height: 380px;
}

/* SP：縦積み */
@media (max-width: 768px) {
  .calendar-iframe-row {
    flex-direction: column;
    gap: 20px;
  }

  .calendar-iframe-wrap {
    padding: 0 16px;
  }

  .cal-iframe {
    height: 380px !important;
    min-height: 380px !important;
    width: 100% !important;
  }
}


/*------------------------------------------------------------
ロゴ横テキスト（PC）
------------------------------------------------------------*/
.logo-text {
  margin-top: 2px;
}
/* 美容外科・美容整形（小さめ） */
.logo-text__sub {
  font-size: 9px;
  color: #7a6a4f;
  white-space: nowrap;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
/* 神戸元町ビューティークリニック（大きめ） */
.logo-text__ja {
  font-size: 13px;
  font-weight: bold;
  color: #3d2e1e;
  white-space: nowrap;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
/* kobe motomachi beauty clinic（大きめ） */
.logo-text__en {
  font-size: 10px;
  color: #7a6a4f;
  white-space: nowrap;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/*------------------------------------------------------------
ロゴ横テキスト（SP）
------------------------------------------------------------*/
.sp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
}
/* SPロゴ画像：縮まないよう固定 */
.sp-logo > a {
  flex-shrink: 0;
}
.sp-logo > a img,
.sp-logo img {
  height: 36px !important;
  width: auto !important;
  flex-shrink: 0;
}
.sp-logo-text {
  line-height: 1.4;
  min-width: 0;
}
/* 美容外科・美容整形（小さめ） */
.sp-logo-text__sub {
  font-size: 7px;
  color: #7a6a4f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.03em;
}
/* 神戸元町ビューティークリニック（大きめ） */
.sp-logo-text__ja {
  font-size: 10px;
  font-weight: bold;
  color: #3d2e1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.03em;
}
/* kobe motomachi beauty clinic（大きめ） */
.sp-logo-text__en {
  font-size: 8px;
  color: #7a6a4f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.05em;
}

/*------------------------------------------------------------
セクション背景
  お知らせ        → ベージュ
  おすすめプラン  → 背景画像
  人気の施術      → ベージュ
  施術内容        → 背景画像
  Instagram       → ベージュ
  Calendar        → 背景画像
  Access          → ベージュ
  Footer          → 背景画像
------------------------------------------------------------*/

/* 背景画像セクション */
.RECOMMENDATION,
.MENU,
.CalendarSection,
.footer {
  background-image: url(../images/background-image.png);
  background-color: transparent;
}

/* ベージュセクション */
.PICKUP,
.Instagram,
.Access {
  background-image: none;
  background-color: #faf7f2;
}

/*------------------------------------------------------------
アクセス：ロゴ横テキスト
------------------------------------------------------------*/
.access-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.access-logo-wrap img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.access-logo-text__ja {
  font-size: 16px;
  font-weight: bold;
  color: #3d2e1e;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.access-logo-text__en {
  font-size: 11px;
  color: #7a6a4f;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .access-logo-wrap {
    justify-content: center;
    gap: 10px;
  }
  .access-logo-text__ja { font-size: 14px; }
  .access-logo-text__en { font-size: 10px; }
}
