@charset "UTF-8";
#pageTop {
  min-height: 100vh;
}

/* --- デザイン変数 --- */
:root {
  /* 指定背景色 */
  --color-bg-pale: #EEF7FF;
  /* 既存カラー */
  --color-main-blue: #5586BD;
  --color-accent-orange: #F79F55;
  --color-accent-orange-hover: #e08e48;
  --color-white: #FFFFFF;
  --color-text-main: #333333;
  --color-text-sub: #6E7B85;
  /* フォント */
  --font-jp: "M PLUS 1p", sans-serif;
  --font-en: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: var(--font-jp);
  color: var(--color-text-main);
  background-color: var(--color-bg-pale);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.en-font {
  font-family: var(--font-en);
}

/* --- レイアウトコンテナ --- */
.main-wrapper {
  width: 100%;
  min-height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 縦方向中央揃え */
  align-items: center;
  position: relative;
}

/* --- 上部エリア (ロゴ + タイトル) --- */
.top-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4vh;
}

/* ロゴ */
.logo-area {
  margin-bottom: 2vh;
}

.logo-img {
  height: auto;
  width: 100%;
  max-width: 330px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    max-width: 420px;
  }
}
/* COMING SOON エリア */
.info-area {
  text-align: center;
}

.coming-soon {
  color: var(--color-main-blue);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.15em;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.main-title-group {
  line-height: 1.2;
}

/* サイズ設定 */
.date-year {
  font-size: 2rem;
  font-weight: 800;
}

.date-month {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-main-blue);
  font-family: var(--font-en);
  line-height: 1;
}

.date-suffix {
  font-size: 1.75rem;
  font-weight: 800;
}

.status-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
}

/* PCサイズでのフォントサイズ */
@media (min-width: 768px) {
  .coming-soon {
    font-size: 2rem;
  }
  .date-year {
    font-size: 3rem;
  }
  .date-month {
    font-size: 5.5rem;
  }
  .date-suffix {
    font-size: 2.5rem;
  }
  .status-text {
    font-size: 3rem;
  }
}
/* 区切り線 */
.divider {
  width: 80px;
  border: 0;
  height: 3px;
  background-color: var(--color-main-blue);
  opacity: 0.3;
  margin: 0 auto 4vh auto;
}

/* --- 下部エリア (2カラム: 住所 + パース画像) --- */
.bottom-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bottom-section {
    grid-template-columns: 1fr 1fr;
    /* 左:右 = 1:1 */
    /* 修正: 間隔を狭めるためにmax-widthを縮小 (900px -> 780px) */
    max-width: 780px;
    margin: 0 auto;
    /* 修正: gapも少し調整 */
    gap: 2.5rem;
  }
}
/* 左カラム: 住所 & ボタン */
.address-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .address-col {
    text-align: left;
    align-items: flex-start;
  }
}
.address-label {
  font-family: var(--font-en);
  color: var(--color-text-sub);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
}

.address-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ボタン */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  background-color: var(--color-accent-orange);
  color: var(--color-white);
  padding: 1.2rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(247, 159, 85, 0.3);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .primary-btn {
    margin: 0;
  }
}
.primary-btn:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(247, 159, 85, 0.4);
}

.btn-icon {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.primary-btn:hover .btn-icon {
  transform: translate(4px, -4px);
}

/* 右カラム: パース画像 */
.image-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.perspective-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(85, 134, 189, 0.2);
}

@media (min-width: 768px) {
  .perspective-img {
    max-height: 40vh;
  }
}
/* --- フッター --- */
.footer {
  /* 修正: 絶対配置にしてメインコンテンツの垂直中央配置を確実にする */
  width: 100%;
  font-size: 0.75rem;
  color: var(--color-text-sub);
  font-family: var(--font-en);
  font-weight: 500;
  text-align: center;
}

/* --- アニメーション --- */
.animate-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .main-wrapper {
    height: inherit;
  }
  .image-col {
    max-width: 360px;
    margin: 0 auto;
  }
  /* --- フッター --- */
  .footer {
    position: relative;
    padding: 80px 0 0 0;
  }
}
@media print, screen and (min-width: 768px) {
  .main-wrapper {
    height: 100vh;
    min-height: 840px;
  }
  .footer {
    position: absolute;
    bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */