.page2 {
  width: 100%;
  min-height: 100vh;
  background-color: #0E1E2F;
  overflow-x: hidden;
  overflow-y: visible;
  line-height: normal;
  letter-spacing: normal;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.about-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 共通画像スタイル */
.about-section img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

/* 各画像の個別調整 */
.heading-image {
  margin-bottom: clamp(20px, 4vw, 60px);
}

.message-image {
  margin-bottom: clamp(20px, 4vw, 60px);
}

.profile-image {
  margin-bottom: clamp(20px, 4vw, 60px);
}

.brand-identity-image {
  margin-bottom: clamp(20px, 4vw, 60px);
}

.company-profile-image {
  margin-bottom: clamp(30px, 5vw, 80px);
}

/* Footer Styles (from index.css) */
.footer-container-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
  text-align: left;
  font-size: 68px;
  color: #858585;
  font-family: 'Roboto Condensed', sans-serif;
}

.footer-container {
  width: 100%;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 114px;
}

.footer-top {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-inline: calc(50% - 50vw);
  background: #FFFF74; /* デザイン指定の黄色 */
  padding: clamp(28px, 6vw, 48px) 0 !important; /* 上下余白 */
  border-bottom: 2px solid #858585;
  text-decoration: none; /* アンカーによる下線を無効化 */
  color: #858585; /* リンク色のブルー化を防止 */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.contact-top-parent {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center; /* タイトルと丸アイコンを縦位置中央 */
  justify-content: center; /* 全体を中央寄せ */
  gap: clamp(16px, 4vw, 40px);
}

.viewing-the-era-of-100-year-li-parent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.first-conect {
  position: relative;
  z-index: 4;
  font-size: clamp(40px, 6vw, 68px);
  color: #0e1e2f; /* indexページと同じダークブルー */
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

.div53 {
  position: relative;
  z-index: 4;
  font-size: 18px;
  color: #0e1e2f; /* indexページと同じダークブルー */
  font-family: 'Roboto Condensed', sans-serif;
  margin-top: 8px;
}

.contact-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16.5px 0 0;
}

.icon15 {
  width: clamp(52px, 5.2vw, 80px);
  height: auto;
  position: relative;
  z-index: 4;
}

.footer-middle {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  font-size: 15px;
  color: white;
}

.footer-main-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1px 0 0;
}

.logo-wc-icon2 {
  height: 24.2px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  z-index: 3;
}

.footer-columns {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
}

.footer-column-content {
  font-size: 15px;
  color: white;
  line-height: 1.4;
}

.footer-bottom {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.footer-bottom-left {
  display: flex;
  gap: 20px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 0 0;
}

.copyright {
  font-size: 11px;
  color: white;
}

/* PC/iPad版: 固定ヘッダー分の上余白を確保 */
body.has-site-header { 
  padding-top: var(--header-h) !important; 
}

/* レスポンシブ対応 */

/* タブレット以下 */
@media (max-width: 1024px) {
  .about-section {
    padding: 0 clamp(16px, 4vw, 40px);
  }
  
  .heading-image,
  .message-image,
  .profile-image,
  .brand-identity-image {
    margin-bottom: clamp(15px, 3vw, 40px);
  }
  
  .company-profile-image {
    margin-bottom: clamp(25px, 4vw, 60px);
  }
  
  .contact-section {
    margin-bottom: clamp(30px, 5vw, 80px);
  }
}

/* スマートフォン */
@media (max-width: 640px) {
  /* header.html 読み込み後に付くクラスを利用して、上余白を確保 */
  body.has-site-header { 
    padding-top: var(--header-h) !important; 
  }
  
  .about-section {
    padding: clamp(20px, 5vw, 30px) clamp(12px, 3vw, 20px);
  }
  
  .heading-image,
  .message-image,
  .profile-image,
  .brand-identity-image {
    margin-bottom: clamp(10px, 2.5vw, 20px);
  }
  
  .company-profile-image {
    margin-bottom: clamp(20px, 4vw, 40px);
  }
  
  /* Footer responsive styles */
  .footer-container {
    gap: 60px;
  }
  
  .first-conect {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .div53 {
    font-size: 16px;
  }
  
  .contact-top-parent {
    gap: 30px;
  }
  
  .icon15 {
    width: 50px;
    height: 50px;
  }
  
  .footer-main-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-columns {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-bottom-left {
    flex-direction: column;
    gap: 10px;
  }
}

/* 極小画面対応 */
@media (max-width: 360px) {
  .about-section {
    padding: 15px 10px;
  }
  
  .heading-image,
  .message-image,
  .profile-image,
  .brand-identity-image {
    margin-bottom: 10px;
  }
  
  .company-profile-image {
    margin-bottom: 20px;
  }
  
  /* Footer for very small screens */
  .first-conect {
    font-size: 28px;
  }
  
  .contact-top-parent {
    gap: 20px;
  }
  
  .icon15 {
    width: 40px;
    height: 40px;
  }
  
  .footer-container {
    gap: 40px;
  }
}

