@charset "UTF-8";
/*!
Theme Name: Sound Port
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.1.3
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a18;
  background: #fff;
  letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }
 
/* ===== CSS VARIABLES ===== */
:root {
  --orange: #FF9D00;
  --orange-light: #FFF8EC;
  --gray-light2: #F7F6F3;
  --orange-pale: #FFF200;
  --orange-dark: #EF7C1B;
  --aqua: #4AB8D8;
  --aqua-light: #DDF3FA;
  --aqua-dark: #1A7A99;
  --dark: #1a1a18;
  --blue: #4AB8D8;
  --dark-blue: #2FA8CC;
  --gray: #666;
  --gray-light: #f0e8e0;
  --gray-pale: #fdf0e8;
  --white: #fff;
  --nav-h: 60px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-pill: 20px;
  --container: 1200px;
  --pad-x: clamp(16px, 5vw, 48px);
  --pad-sec: clamp(36px, 6vw, 64px);
}
 
/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
 
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); opacity: 1; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-outline { background: var(--white); color: var(--orange); border: 1.5px solid var(--orange); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.65); }
 
/* ===== SECTION LABEL ===== */
.sec-head { margin-bottom: clamp(20px, 3vw, 28px); }
.sec-en {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.sec-ja { font-size: 12px; color: #999; margin-left: 10px; }
 
/* ===== DIVIDER ===== */
hr.divider { border: none; border-top: 1px solid var(--gray-light); }
 
/* ===========================
   HEADER / NAV
   =========================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  height: var(--nav-h);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: .06em;
  flex-shrink: 0;
  margin-right: 32px;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}
 
/* ハンバーガー */
.nav-hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* モバイルメニュー */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 20px var(--pad-x) 28px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  flex-direction: column;
  gap: 16px;
}
.nav-drawer.open { display: flex; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-drawer ul a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-light);
  transition: color .2s;
}
.nav-drawer ul a:hover { color: var(--orange); }
.nav-drawer .btn { width: 100%; justify-content: center; margin-top: 4px; }
 
/* ===========================
   HERO
   =========================== */
.hero {
  margin-top: var(--nav-h);
  background: var(--gray-light2);
  padding: clamp(40px, 7vw, 64px) 0 clamp(36px, 6vw, 64px);
  border-bottom: 1px solid #f0e0d0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-catch {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 5.5vw, 46px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 17px;
	letter-spacing: 3px;
}
.hero-catch span { color: var(--orange); }
.hero-sub {
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-img {
  background: #e8d4b8;
  border-radius: var(--radius);
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
  overflow: hidden;
}

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

.slick-img img {
	width: 100%;
	height: 100%;
    object-fit: cover;
	aspect-ratio: 5 / 3;
}


@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

 
/* ===========================
   SERVICE
   =========================== */
.sec { padding: var(--pad-sec) 0; }
.sec.bg { background: var(--gray-light2); }
 
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 16px);
}
.service-card {
  background: var(--white);
  border: 1px solid #f0e0d0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,157,0,.15); }
.service-card-bar { height: 5px; background: var(--orange); }
.service-card-img {
  background: var(--gray-pale);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 12px;
}
.service-card-img img {

}
.service-card-body { padding: clamp(10px, 2vw, 14px) clamp(12px, 2vw, 16px); }
.service-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.service-card-txt { font-size: 12px; color: #888; line-height: 1.6; }
.service-card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  transition: gap .2s;
}
 
/* ===========================
   ABOUT
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.about-img {
  background: #e8d4b8;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
}

.about-img img {
	border-radius: var(--radius);
}
.about-title { font-size: clamp(14px, 2vw, 17px); font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.about-txt { font-size: 13px; color: var(--gray); line-height: 1.9; margin-bottom: 14px; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  font-size: 11px;
  background: var(--orange-pale);
  color: var(--orange-dark);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-weight: 700;
}
 
/* ===========================
   FAQ
   =========================== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid #f0e0d0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  transition: background .15s;
}
.faq-btn:hover { background: #fffbf5; }
.faq-icon {
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: 12px;
  color: #777;
  padding: 0 16px;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 16px 14px; }
 
/* ===========================
   INSTAGRAM
   =========================== */
.ig-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}
.ig-grid-wrap {
}
.ig-grid {
	padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.ig-item {
  aspect-ratio: 1;
  background: var(--gray-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 11px;
  overflow: hidden;
  transition: opacity .2s;
  position: relative;
  cursor: pointer;
}


.ig-item:hover { opacity: .85; }
.ig-more { margin-top: 12px; text-align: center; }
.ig-more a {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  border: 1px solid var(--orange);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: background .2s, color .2s;
}
.ig-more a:hover { background: var(--orange); color: var(--white); }
 
.sbi_item { border-radius: var(--radius-sm); }


.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .3s ease;
}
.ig-item:hover img { transform: scale(1.06); }
.ig-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
  pointer-events: none;
}
.ig-item:hover .ig-item-overlay { background: rgba(26,26,24,.42); }
.ig-item-overlay-icon {
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .25s, transform .25s;
}
.ig-item:hover .ig-item-overlay-icon { opacity: 1; transform: scale(1); }
 
/* ===== LIGHTBOX ===== */
.lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,10,10,.88);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lb-fade-in .2s ease;
}
.lb-backdrop.open { display: flex; }
@keyframes lb-fade-in { from { opacity: 0; } to { opacity: 1; } }
 
.lb-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  animation: lb-zoom-in .25s ease;
}
@keyframes lb-zoom-in { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
 
.lb-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
 
.lb-caption {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}
 
/* 閉じるボタン */
.lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  font-family: inherit;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
 
/* 前後ナビ */
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  font-family: inherit;
  z-index: 1;
}
.lb-nav:hover { background: rgba(255,255,255,.24); }
.lb-prev { left: -56px; }
.lb-next { right: -56px; }
 
/* カウンター */
.lb-counter {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-family: 'Outfit', sans-serif;
}
 
/* SP対応: 前後ボタンを下に移動 */
@media (max-width: 600px) {
  .lb-prev, .lb-next { display: none; }
  .lb-inner { touch-action: pan-y; }
}



/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--orange);
  padding: clamp(36px, 6vw, 60px) 0;
  text-align: center;
}
.cta-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-body {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
 
/* ===========================
   ACCESS
   =========================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}
.access-info-title { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.info-row { display: flex; gap: 10px; font-size: 13px; margin-bottom: 10px; align-items: flex-start; }
.info-label { min-width: 76px; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.info-val { color: var(--gray); }
.map-wrap { width: 100%; max-width: 100%;}
.map-frame {
width: 100%;
  background: #e8d4b8;
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
  overflow: hidden;
}
 


/* ===========================
   SECTIONS
   =========================== */
.sec { padding: var(--pad-sec) 0; }
.sec.bg { background: var(--orange-light); }
.sec.bg2 { background: #FFFBF0; }
 
/* ===========================
   INTRO (導入文)
   =========================== */
.intro-lead {
  font-size: clamp(16px, 2vw, 20px); font-weight: 700;
  color: var(--dark); margin-bottom: 14px;
}
.intro-body {
  font-size: 14px; color: var(--gray); line-height: 1.9;
  border-left: 4px solid var(--aqua);
  padding-left: 16px; max-width: 680px;
}
 
/* ===========================
   MENU CARDS (施工メニュー)
   =========================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 16px);
}
.menu-card {
  background: var(--white);
  border: 1px solid #f0e0d0;
  border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 22px);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: 8px;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,157,0,.12); }
.menu-card-icon { font-size: 24px; line-height: 1; }
.menu-card-title { font-size: 15px; font-weight: 700; color: var(--dark); }
.menu-card-body  { font-size: 13px; color: var(--gray); line-height: 1.8; flex: 1; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--radius-pill);
  width: fit-content;
}
.badge-orange { background: var(--orange-pale); color: var(--orange-dark); }
.badge-aqua   { background: var(--aqua-light);  color: var(--aqua-dark); }
.menu-note {
  margin-top: 16px; padding: 12px 16px;
  background: var(--white); border: 1px dashed #d0c8b4;
  border-radius: var(--radius-sm);
  font-size: 13px; color: var(--gray); line-height: 1.8;
}
 
/* ===========================
   STRENGTH CARDS (選ばれる理由)
   =========================== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 16px);
}
.strength-card {
  background: var(--white); border: 1px solid #f0e0d0;
  border-radius: var(--radius); padding: clamp(18px, 2.5vw, 24px);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.strength-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(74,184,216,.12); }
.strength-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
}
.strength-icon.orange { background: var(--orange-pale); }
.strength-icon.aqua   { background: var(--aqua-light); }
.strength-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.strength-body  { font-size: 12px; color: var(--gray-mid); line-height: 1.7; }
 
/* ===========================
   RELATED LINKS
   =========================== */
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.related-card {
  background: var(--white); border: 1px solid #f0e0d0;
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: border-color .2s, transform .2s;
}
.related-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.related-card-icon { font-size: 22px; flex-shrink: 0; }
.related-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.related-card-sub   { font-size: 12px; color: var(--gray-mid); }
.related-card-arrow { font-size: 18px; color: var(--orange); flex-shrink: 0; font-weight: 700; }




/* ===========================
   VEHICLE TAGS
   =========================== */
.vehicle-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.vehicle-tag {
  font-size: 12px; font-weight: 500;
  background: var(--white); border: 1px solid #e0d4b8;
  border-radius: var(--radius-pill); padding: 5px 14px; color: var(--dark);
  transition: background .2s, border-color .2s;
}
.vehicle-tag:hover { background: var(--orange-pale); border-color: var(--orange); }
 
/* ===========================
   STRENGTH CARDS
   =========================== */
.strength-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 16px);
}
.strength-card {
  background: var(--white); border: 1px solid #f0e0d0;
  border-radius: var(--radius); padding: clamp(18px, 2.5vw, 24px); text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.strength-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,157,0,.12); }
.strength-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
}
.strength-icon.orange { background: var(--orange-pale); }
.strength-icon.aqua   { background: var(--aqua-light); }
.strength-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.strength-body  { font-size: 12px; color: var(--gray-mid); line-height: 1.7; }
 

/* ===========================
   PAGE HERO (シンプル)
   =========================== */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--orange-light);
  padding: clamp(40px, 7vw, 64px) 0 clamp(36px, 6vw, 64px);
  border-bottom: 1px solid #f0e0d0;
	text-align: center;
}
.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900; color: var(--dark); margin-bottom: 10px;
}
.page-hero-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--gray); line-height: 1.9;
}

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.container-narrow { width: 100%; max-width: 680px; margin: 0 auto; padding: 0 var(--pad-x); }
 
 
/* ===========================
   SECTIONS
   =========================== */
.sec     { padding: var(--pad-sec) 0; }
.sec.bg  { background: var(--orange-light); }
.sec.bg2 { background: #FFFBF0; }
 
/* ===========================
   CONTACT CARDS (3導線)
   =========================== */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 20px);
}
.contact-card {
  background: var(--white); border: 1.5px solid #f0e0d0;
  border-radius: var(--radius); padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  text-align: center; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(255,157,0,.13); border-color: var(--orange); }
.contact-card-icon { font-size: 36px; line-height: 1; }
.contact-card-title { font-size: 15px; font-weight: 700; color: var(--dark); }
.contact-card-body  { font-size: 13px; color: var(--gray); line-height: 1.8; flex: 1; }
.contact-card-tel   { font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: .04em; }
.contact-card-hours { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }
.contact-card .btn  { width: 100%; justify-content: center; margin-top: 4px; }
 
/* ===========================
   NOTICE BOX
   =========================== */
.notice-box {
  background: var(--aqua-light);
  border: 1px solid #b8dff0;
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px; color: var(--aqua-dark); line-height: 1.9;
}
.notice-box strong { font-weight: 700; }
 
/* ===========================
   FORM
   =========================== */
.form-wrap {
  background: var(--white); border: 1px solid #f0e0d0;
  border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
}
.form-row { margin-bottom: 20px; }
.form-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px;
}
.req {
  font-size: 10px; background: #e04444; color: var(--white);
  border-radius: 3px; padding: 1px 5px; font-weight: 700; letter-spacing: .02em;
}
.opt {
  font-size: 10px; background: var(--gray-light); color: var(--gray);
  border-radius: 3px; padding: 1px 5px; font-weight: 500;
}
input,select,
textarea {
  width: 100%; border: 1.5px solid #e0d4b8; border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 14px; color: var(--dark);
  background: #fff; font-family: inherit; line-height: 1.6;
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,157,0,.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #bbb; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 11px; color: var(--gray-mid); margin-top: 5px; line-height: 1.6; }
.form-privacy {
  font-size: 12px; color: var(--gray-mid); line-height: 1.8;
  padding: 14px 0; border-top: 1px solid var(--gray-light);
  margin-top: 8px; margin-bottom: 20px;
}
.form-privacy a { color: var(--orange); text-decoration: underline; }

.form-submit {
  width: 100%; padding: 14px; font-size: 15px; font-weight: 700;
  background: var(--orange); color: var(--white); border: none;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: opacity .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover  { opacity: .88; transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
 

/* 送信ボタン */
input.sub-btn {
	width: 100%;
	padding: 10px 0;
	background: var(--orange);
	color: #FFF;
	border: none;
	margin: 0 auto !important;
    display: block;
	border-radius: 50vh;
    font-weight: 600;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	cursor:pointer;
}

input.sub-btn::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}


/* 送信ボタンホバー */
input.sub-btn:hover{
	background: #ccc;

}



/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--dark);
  padding: clamp(28px, 5vw, 48px) 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding-bottom: clamp(24px, 4vw, 40px);
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-info { font-size: 11px; color: #fff; line-height: 2; }
.footer-sns { display: flex; gap: 10px; margin-top: 10px; }
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  transition: border-color .2s, color .2s;
}
.footer-sns a:hover { border-color: var(--orange); color: var(--orange); }
.footer-nav { display: flex; gap: clamp(20px, 4vw, 40px); flex-wrap: wrap; }
.footer-nav-col { min-width: 80px; }
.footer-nav-title { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-nav-item a {
  display: block;
  font-size: 11px;
  color: #999;
  line-height: 2.4;
  transition: color .2s;
}
.footer-nav-item a:hover { color: var(--orange); }
.footer-copy {
  background: #111;
  text-align: center;
  padding: 12px;
  font-size: 11px;
  color: #fff;
}
 
/* ===========================
   RESPONSIVE — TABLET (≤768px)
   =========================== */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
 
  /* nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
 
  /* hero */
  .hero-inner {
    grid-template-columns: 1fr;
  }

  /* service */
  .service-grid { grid-template-columns: 1fr 1fr; }
 
  /* about */
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/7; }
 
  /* access */
  .access-grid { grid-template-columns: 1fr; }
 
  /* footer */
  .footer-inner { flex-direction: column; gap: 24px; }
}
 
/* ===========================
   RESPONSIVE — SP (≤480px)
   =========================== */
@media (max-width: 480px) {
  :root { --nav-h: 52px; }
 
  .hero-catch { font-size: clamp(24px, 8vw, 32px); }
 
  /* service: 1列 */
  .service-grid { grid-template-columns: 1fr; }
 
  /* instagram: 2列 */
  .ig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 
  /* cta btns */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
 
  /* hero cta */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
 
/* ===========================
   SCROLL ANIMATION
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ===========================
   etc.
   =========================== */

.center {
	text-align: center;
}
.ft14 {
	font-size: 14px;
}


