/* 共通：工事中ページ用スタイル */
.under-construction-box {
  max-width: 600px;
  margin: 60px auto 0 auto;
  padding: 40px 24px 48px 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* iPhone Safari専用の中央配置修正 */
@media (max-width: 1080px) {
  .under-construction-box {
    /* 基本は変更せず、iOSでのみ修正 */
    margin-left: auto;
    margin-right: auto;
  }
}

/* iOS Safari専用の対策 */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 1080px) {
    .under-construction-box {
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      margin-left: 0;
      margin-right: 0;
    }
  }
}

.under-construction-box h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.under-construction-box p {
  font-size: 1.1rem;
  color: #444;
}
