body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ナビゲーション */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-left .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-left .logo img {
    height: 40px;
    width: auto;
}

.nav-left .logo .company-name {
    font-size: 24px;
    font-weight: 700;
    color: #001A43;
    line-height: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* デスクトップナビゲーション */
.desktop-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.desktop-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: #537dea;
}

/* ctaボタンスタイル */
.btn-wrap {
  margin: 80px 0 30px 0;
}

a.btn-c {
  font-size: 0.5rem;

  position: relative;

  padding: 0.1rem 0.9rem 0.2rem 0.9rem;

  color: #fff;
  background: #e94919;
  -webkit-box-shadow: 0 3px 0 #d44114;
  box-shadow: 0 3px 0 #d44114;
  text-align: center;
}

a.btn-c span {
  font-size:0.45rem;
  position: absolute;
  top: -0.75rem;
  left: calc(50% - 60px);
  display: block;

  width: 120px;
  padding: 0.12rem 0;

  color: #d44114;
  border: 1.2px solid #d44114;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 1.8px 1.8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1.8px 1.8px rgba(0, 0, 0, 0.2);
}

a.btn-c span:before,
a.btn-c span:after {
  position: absolute;
  left: calc(50% - 6px);

  content: "";
}

a.btn-c span:before {
  bottom: -6px;

  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}

a.btn-c span:after {
  bottom: -4.2px;

  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

a.btn-c i {
  margin-right: 0.6rem;
}

a.btn-c:hover {
  -webkit-transform: translate(0, 1.8px);
  transform: translate(0, 1.8px);

  color: #fff;
  background: #eb5b30;
  -webkit-box-shadow: 0 1.2px 0 #d44114;
  box-shadow: 0 1.2px 0 #d44114;
}

/* お問い合わせボタンスタイル */
.desktop-nav .contact-button {
    background-color: #537dea;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.desktop-nav .contact-button:hover {
    background-color: #4a6fd1;
    color: #fff !important;
}

/* モバイルナビゲーションコンテナ */
.mobile-nav-container {
    display: none;
    align-items: center;
    gap: 15px;
}

/* コンタクトアイコン */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #537dea;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-icon:hover {
    background-color: #4a6fd1;
}

/* ハンバーガーメニュー */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* 従来のコンタクトボタン（非表示） */
.contact-btn {
    display: none;
}

/* モバイルメニュー */
.mobile-menu {
    display: none;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.nav-links {
    list-style: none;
    padding: 20px;
}

.nav-links li {
    margin-bottom: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #537dea;
}

/* パンくずリスト */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    margin-top: 70px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #999;
}

.breadcrumb a {
    color: #537dea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #4a6fd1;
    text-decoration: underline;
}

/* ページヘッダー */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001A43;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.page-header ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.page-header li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.page-header li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: #999;
}

.page-header a {
    color: #537dea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header a:hover {
    color: #4a6fd1;
    text-decoration: underline;
}

/* ヒーローセクション */
/* ヒーロー全体 */
.hero {
  position: relative;
  min-height: 100dvh;        /* スマホでも安定した高さ */
  padding-top: 70px;         /* ナビゲーションバーの高さ分 */
  display: flex;
  flex-direction: column;    /* すべての端末で縦並びに固定 */
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #ffffff;       /* 白背景 */
  overflow: hidden;
}

/* 背景画像要素は使わないので非表示 */
.hero-bg, .hero-bg1, .hero-bg2, .hero-bg3 {
  display: none !important;
}

/* コンテンツ */
.hero-content {
  position: relative;
  z-index: 1;
  color: #001A43;            /* テキスト色を紺系に */
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

/* 見出しテキスト */
.hero-text {
  font-size: clamp(17px, 4.2vw, 0.7rem);
  font-weight: 700;
  line-height: 1.2;
  margin: -50px 0 0 0;       /* 上に移動 */
  padding: 0 40px;           /* 左右の余白を追加 */
  color: #001A43;            /* 明示的に上書き */
}

/* アニメーション削除 */
.animated-text {
  display: inline-block;
  opacity: 1;
  color: #001A43;            /* 色統一 */
}

/* SVGロゴのサイズと色統一 */
.hero-content svg {
  display: block;
  max-width: min(70vw, 350px) !important;
  width: min(70vw, 350px) !important;
  height: auto;
  margin-inline: auto;
}

/* デスクトップでSVGを大きく */
@media (min-width: 960px) {
  .hero-content svg {
    max-width: min(50vw, 450px) !important;
    width: min(50vw, 450px) !important;
  }
}

/* fill 属性を持つSVG要素の色を上書き */
.hero-content svg [fill] {
  fill: #001A43 !important;
}


/* タブレット・PCも同じ縦並び（横並びにしない） */
@media (min-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 32px;
  }
}

/* アニメーション削除済み */

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn.primary {
    background-color: #fff;
    color: #001A43;
}

.btn.primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn.secondary:hover {
    background-color: #fff;
    color: #001A43;
}

/* セクションタイトル */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #537dea;
    border-radius: 2px;
}

/* サービスセクション */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.business-link-container {
    text-align: center;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.service-image img {
    width: 30%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.service-image i {
    font-size: 4rem;
    color: #001A43;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #001A43;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #4a6fd1;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* About Usセクション / Informationセクション */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.info-list {
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-date {
    font-weight: 600;
    color: #001A43;
    min-width: 120px;
}

.info-text {
    color: #666;
    flex: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #537dea;
    border-radius: 2px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 20px;
    background-color: #001A43;
    color: #fff;
}

.about-text .btn:hover {
    background-color: #001A43;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* フッター */
.footer {
    background-color: #001A43;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-info {
    flex: 1;
}

.footer-info p {
    margin: 5px 0;
    color: #fff;
    line-height: 1.6;
}

.footer-info .company-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-info .company-address {
    font-size: 0.95rem;
    color: #ddd;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #537dea;
}

.footer-privacy {
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

.footer-privacy a {
    color: #999;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #537dea;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #537dea;
    text-decoration: underline;
}

/* 会社概要セクション */
.company-overview {
    padding: 80px 0;
    background-color: #fff;
}

/* About Logoセクション */
.about-logo {
    padding: 80px 0;
    background-color: #fff;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.logo-image {
    flex: 0 0 200px;
}

.logo-image img {
    width: 100%;
    height: auto;
}

.logo-description {
    flex: 1;
}

.logo-description p {
    color: #666;
    text-align: left;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}


/* ミッションステートメントセクション */
.company-philosophy {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.philosophy-item {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #537dea;
    transition: border-color 0.3s ease;
}


.philosophy-item h3 {
    color: #001A43;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.philosophy-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Corporate philosophy（シンプル・大きく） */
.company-philosophy.corporate-philosophy-section {
    background-color: #fff;
    padding: 100px 0;
}

.company-philosophy.corporate-philosophy-section .philosophy-item {
    border: none;
    border-bottom: 3px solid #537dea;
    border-radius: 0;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: none;
}

.company-philosophy.corporate-philosophy-section .philosophy-item h2 {
    color: #001A43;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-philosophy.corporate-philosophy-section .philosophy-item p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Mission（横長バナー風） */
.company-philosophy.mission-section {
    background: #f0f4f8;
    padding: 80px 0;
}

.company-philosophy.mission-section h2 {
    color: #333;
    text-align: left;
}

.company-philosophy.mission-section h2::after {
    background-color: #537dea;
}

.company-philosophy.mission-section .philosophy-item {
    background: #fff;
    border: 2px solid #537dea;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.company-philosophy.mission-section .philosophy-item h2 {
    color: #001A43;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.company-philosophy.mission-section .philosophy-item p {
    color: #666;
    font-size: 1.3rem;
    text-align: center;
}

/* Core Values（小さなカードグリッド） */
.company-philosophy.core-values-section {
    background-color: #fff;
}

.company-philosophy.core-values-section .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.company-philosophy.core-values-section .philosophy-item {
    padding: 30px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.company-philosophy.core-values-section .philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.company-philosophy.core-values-section .philosophy-item h2 {
    color: #001A43;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.company-philosophy.core-values-section .philosophy-item p {
    color: #666;
    font-size: 1rem;
}

.philosophy-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #666;
}

.philosophy-item ul li {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.philosophy-item ul li:last-child {
    border-bottom: none;
}

/* ロゴについてセクション */
.logo-story {
    padding: 80px 0;
    background-color: #fff;
}

.logo-story .logo-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.logo-story .logo-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.company-info .info-grid {
    max-width: 800px;
    margin: 0 auto;
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row dt {
    font-weight: 600;
    color: #001A43;
    font-size: 1rem;
    margin: 0;
}

.info-row dd {
    color: #333;
    font-size: 1rem;
    margin: 0;
}

/* 代表者名の強調 */
.ceo-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #001A43;
    margin: 0;
}

/* 代表者経歴セクション */
.profile-content {
    max-width: 800px;
    margin: 30px auto 0;
}

.profile-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: left;
}

.career-timeline {
    margin-top: 20px;
}

.career-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.career-item .year {
    font-weight: normal;
    color: #001A43;
    font-size: 0.95rem;
}

.career-item .company {
    color: #666;
    font-size: 0.95rem;
}


/* レスポンシブデザイン */
/* PC表示（960px以上） */
@media (min-width: 960px) {
    .desktop-nav {
        display: flex !important;
    }

    .mobile-nav-container {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* タブレット・スマホ表示（960px未満） */
@media (max-width: 959px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-nav-container {
        display: flex !important;
    }

    .mobile-menu .nav-links li:last-child {
        margin-bottom: 0;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .mobile-menu .nav-links li:last-child a {
        background-color: #537dea;
        color: #fff;
        padding: 12px 24px;
        border-radius: 5px;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    /* ロゴ */
    .logo-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .logo-image {
        flex: 0 0 150px;
    }

    /* ヒーロー */
    .hero-text {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 8px 20px;
        font-size: 12px;
        text-align: center;
    }

    /* サービス */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* About Us */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* 会社情報 */
    .info-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }

    .info-row dt {
        font-size: 0.9rem;
        padding-bottom: 4px;
    }

    .info-row dd {
        font-size: 0.95rem;
    }

    .ceo-name {
        font-size: 1rem;
    }

    .career-item {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 12px 0;
    }

    .subsection-title {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social {
        justify-content: center;
    }

    /* 企業理念のh2を改行可能に */
    .philosophy-item h2 {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    /* Core Valuesのh2フォントサイズを小さく */
    .company-philosophy.core-values-section .philosophy-item h2 {
        font-size: 0.9rem;
    }

    /* Corporate philosophyのh2を1行に */
    .company-philosophy.corporate-philosophy-section .philosophy-item h2 {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    /* Missionのh2を1行に */
    .company-philosophy.mission-section .philosophy-item h2 {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    /* Partner Banner */
    .partner-banner__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .partner-banner__textblock {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text {
        font-size: 0.91rem;
        padding: 0 20px;       /* モバイルは20pxに調整 */
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 20px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    /* Core Valuesを1列に */
    .company-philosophy.core-values-section .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
}
/* プライバシーポリシーページ */
.privacy-policy {
    padding: 80px 0;
    background-color: #fff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001A43;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: disc;
    padding-left: 30px;
    color: #666;
    line-height: 1.8;
}

.policy-section ul li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #537dea;
}

.contact-info a {
    color: #537dea;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.policy-date {
    text-align: right;
    color: #999;
    font-size: 0.95rem;
    margin-top: 40px;
}

/* Partner Banner */
.partner-banner{
  --brand:#d44114;
  --bg:#d44114;
  --fg:#fff;

  display:block;
  background:var(--bg);
  color:var(--fg);
  text-decoration:none;
  border-radius:16px;
  max-width:min(1100px, 92vw);
  margin:clamp(16px,4vw,32px) auto;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.partner-banner__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:clamp(16px,4vw,32px);
  padding:clamp(16px,4vw,32px);
}

.partner-banner__textblock{
  flex:1 1 auto;
  min-width:0;
}

.partner-banner__title{
  font-weight:800;
  font-size:clamp(18px, 3.8vw, 28px);
  line-height:1.25;
  margin:0 0 .4em;
  color:#fff;
}

.partner-banner__desc{
  margin:0;
  font-size:clamp(14px, 2.6vw, 16px);
  line-height:1.6;
  color:#fff;
  opacity:.95;
  text-align: center;
}

.partner-banner__cta{
  flex:0 0 auto;
  display:inline-block;
  white-space:nowrap;
  border-radius:999px;
  padding:.7em 1.2em;
  background:#fff;
  color:var(--brand);
  font-weight:700;
  font-size:clamp(13px, 2.4vw, 15px);
  box-shadow:0 2px 0 rgba(0,0,0,.05) inset;
}

/* Hover/Focus（アクセシビリティ） */
.partner-banner:focus-visible,
.partner-banner:hover{
  outline:none;
  filter:brightness(1.02);
}
.partner-banner__cta:hover{
  transform:translateY(-1px);
}
