/* ============================================================
   SOLT RESORT — Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Lato:wght@300;400;700;900&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:   #1a3d52;
  --color-accent:    #2e7fa8;
  --color-light:     #e8f3f8;
  --color-sand:      #f7f4ef;
  --color-text:      #2d2d2d;
  --color-muted:     #6b7280;
  --color-white:     #ffffff;
  --color-border:    #e5e7eb;
  --font-en:         'Lato', sans-serif;
  --font-ja:         'Noto Sans JP', sans-serif;
  --max-width:       1100px;
  --radius:          6px;
  --transition:      0.3s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  line-height: 1.8;
  background: var(--color-white);
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo img {
  height: 36px;
  width: auto;
}
.logo-text {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--color-text);
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--color-accent); }
.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.8rem !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--color-accent) !important; color: var(--color-white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-primary);
}

/* ============================================================
   Hero — Video対応
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0d2535 0%, #1a3d52 40%, #2e7fa8 100%) center/cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 37, 53, 0.72) 0%,
    rgba(26, 61, 82, 0.55) 60%,
    rgba(46, 127, 168, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 60px;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: 100px;
}

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  line-height: 1.9;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 500;
}
.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn-white:hover { background: rgba(255,255,255,0.88); }
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-accent); }

.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--color-white);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 2;
}

/* ============================================================
   Section Common
   ============================================================ */
.section { padding: 88px 0; }
.section-alt { background: var(--color-sand); }
.section-blue { background: var(--color-light); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 2;
}

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 40px 28px;
  text-align: center;
}

.service-icon {
  width: 64px; height: 64px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}
.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.service-text {
  font-size: 0.87rem;
  color: var(--color-muted);
  line-height: 2;
}

/* ============================================================
   Profile / About（トップページ）
   ============================================================ */
.profile-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.profile-img-box {
  position: relative;
}
.profile-img-box::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  background: var(--color-light);
  border-radius: 10px;
  z-index: 0;
}
.profile-img-box img {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}
.profile-img-placeholder {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #c8dce8, #e8f3f8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.85rem;
}
.profile-img-placeholder span { font-size: 3rem; }

.profile-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.profile-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.profile-name-en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.profile-body {
  font-size: 0.93rem;
  color: var(--color-text);
  line-height: 2.1;
  margin-bottom: 28px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.profile-tag {
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   経歴リスト
   ============================================================ */
.career-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--color-accent);
  margin: 8px 0;
}

.career-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}

.career-item:last-child { border-bottom: none; }

.career-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  font-family: var(--font-en);
}

.career-desc {
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ============================================================
   強み・数字
   ============================================================ */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.strength-item {
  background: var(--color-white);
  padding: 36px 24px;
  text-align: center;
}
.strength-num {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.strength-num span { font-size: 1.2rem; font-weight: 400; }
.strength-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   SNS
   ============================================================ */
.sns-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sns-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  min-width: 200px;
  justify-content: center;
}
.sns-card svg { width: 22px; height: 22px; flex-shrink: 0; }

.sns-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
}
.sns-instagram:hover { opacity: 0.88; transform: translateY(-2px); }

.sns-line {
  background: #06C755;
  color: var(--color-white);
}
.sns-line:hover { opacity: 0.88; transform: translateY(-2px); }

.sns-note {
  background: #41c9b4;
  color: var(--color-white);
}
.sns-note:hover { opacity: 0.88; transform: translateY(-2px); }

/* ============================================================
   Page Hero (subpages)
   ============================================================ */
.page-hero {
  padding: 130px 24px 64px;
  background: linear-gradient(160deg, #0d2535 0%, #1a3d52 50%, #2e7fa8 100%);
  text-align: center;
}
.page-hero-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 10px;
}
.page-hero-subtitle {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

/* ============================================================
   About / Company content
   ============================================================ */
.content-block {
  max-width: 780px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-light);
  letter-spacing: 0.03em;
}
.content-block p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 2.1;
  margin-bottom: 36px;
}

/* Company table */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.company-table th,
.company-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}
.company-table th {
  width: 28%;
  color: var(--color-primary);
  font-weight: 500;
  background: var(--color-light);
  white-space: nowrap;
}
.company-table td { color: var(--color-text); }

/* ============================================================
   Contact
   ============================================================ */
.contact-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-box p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 2;
  margin-bottom: 40px;
}
.contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #06C755;
  color: var(--color-white);
  padding: 18px 52px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.contact-line-btn:hover {
  background: #04a847;
  transform: translateY(-2px);
}
.contact-line-btn svg { width: 26px; height: 26px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 36px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-white);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-white); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .profile-wrap { grid-template-columns: 1fr; gap: 40px; }
  .profile-img-box { max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .strengths-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .sns-grid { flex-direction: column; align-items: center; }
  .sns-card { width: 100%; max-width: 320px; }
  .company-table th { width: 38%; }
}
