@charset "utf-8";

/* ================================
   01. SP共通ルール
================================ */

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4,
.section-label,
.logo-en,
.network-number {
  font-family: 'Montserrat', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}


.innerWrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Section Header */
.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
  color: #999;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
}

.section-title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.section-description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 16px 0;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  cursor: pointer;
}

/* Header */
#header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

#header .innerWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-ja {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-en {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #666;
}

.global-nav {
  display: none;
}

/* Footer */
#footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-company {
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 5px;
  margin-bottom: 30px;
}



.footer-info dl {
  margin-bottom: 25px;
}

.footer-info dt {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.footer-info dd {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
}

.footer-copyright {
  text-align: center;
  font-size: 11px;
  color: #666;
  padding-top: 30px;
  border-top: 1px solid #333;
}

/* Breadcrumb (Detail Page Only) */
.breadcrumb {
  background: #fafafa;
  padding: 15px 0;
  margin-top: 64px;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 12px;
  color: #666;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #ccc;
}

.breadcrumb a {
  color: #667eea;
}



/* ロゴ画像のサイズ調整例 */
.logo img {
  height: 40px; /* ヘッダーの高さに合わせて調整 */
  width: auto;
  display: block;
}

.footer-logo img {
  height: 50px; /* フッターロゴのサイズ */
  width: auto;
  display: block;
  margin-bottom: 20px;
}


/* ================================
   02. PC共通ルール
================================ */

@media (min-width: 1280px) {
  .innerWrap {
    max-width: 1280px;

  }

  section {
    padding: 120px 0;
  }

  .section-header {
    margin-bottom: 80px;
  }

  .section-title {
    font-size: 48px;
    margin-bottom: 25px;
  }

  .btn-primary {
    width: 250px;
    height: 65px;
    padding: 0;
    line-height: 65px;
    font-size: 15px;
  }

  /* Header PC */
  #header .innerWrap {
    height: 80px;
  }

  .logo-ja { font-size: 16px; }
  .logo-en { font-size: 10px; }

  .global-nav {
    display: block;
  }

  .global-nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
  }

  .global-nav a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
  }

  .global-nav a:hover {
    background: #c94465;
    color: #fff;
  }

  /* Footer PC */
  #footer {
    padding: 80px 50px 40px;
  }

  .footer-content {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-logo .logo-ja { font-size: 20px; }
  .footer-logo .logo-en { font-size: 12px; }

  .footer-copyright {
    padding-top: 40px;
  }

  .breadcrumb {
    margin-top: 80px;
    padding: 20px 0;
  }
}