@charset "utf-8";
/* CSS Document */

:root {
  --base-bg: #f5f7fb;
  --card-bg: #ffffff;
  --text-main: #222222;
  --text-sub: #555555;
  --line: #d9e1ec;
  --main-color: #1976cc;
  --main-color-dark: #125ea3;
  --accent-bg: #eaf4ff;
  --accent-border: #b9d8f5;
  --tel-color: #0b63b6;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.page-wrap {
  width: 100%;
  overflow: hidden;
}

/* ==============================================
   レイアウト
============================================== */
.manifest-page {
  width: 100%;
}

.manifest-hero {
  background: linear-gradient(135deg, #1976cc 0%, #4aa7f0 100%);
  color: #ffffff;
  padding: 5.6rem 2rem 4.8rem;
}

.manifest-hero__inner,
.manifest-main__inner {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.manifest-hero__title {
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.manifest-hero__lead {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 1.2rem;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.manifest-main {
  padding: 4rem 2rem 6rem;
}

.manifest-main__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

/* ==============================================
   共通カード
============================================== */
.manifest-image-block,
.manifest-info-card,
.manifest-contact-card,
.manifest-agreement-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.manifest-info-card,
.manifest-contact-card,
.manifest-agreement-card {
  padding: 2.8rem;
}

.manifest-section-title {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 2.5rem;
    border-left: 6px solid var(--main-color);
    padding-left: 1.2rem;
    text-align: left;
}

/* ==============================================
   画像
============================================== */
.manifest-image-block {
  padding: 2rem;
  text-align: center;
}

.manifest-image-block__image {
    width: 100%;
    max-width: 585px;
    border-radius: 8px;
    height: auto;
}
.manifest-image-block__image2 {
    width: auto;
    border-radius: 8px;
    height: 100%;
    max-height: 250px;
    margin-right: auto;
    margin-left: auto;
    display: block;
}
@media screen and (max-width: 600px) {
	.manifest-image-block__image,
	.manifest-image-block__image2 {
		 max-width: 90%;
	}
}
/* ==============================================
   価格
============================================== */
.manifest-note {
    font-size: 1.5rem;
    color: var(--text-sub);
    margin-bottom: 2rem;
    text-align: left;
}

.manifest-price-list {
  display: grid;
  gap: 1.2rem;
}

.manifest-price-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 1.8rem;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
}

.manifest-price-list__name {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-main);
}

.manifest-price-list__price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main-color-dark);
  white-space: nowrap;
}

/* ==============================================
   お問い合わせ
============================================== */
.manifest-contact-card {
  text-align: center;
  background: #ffffff;
}

.manifest-contact-card__text {
  font-size: 1.7rem;
  color: var(--text-sub);
  margin-bottom: 1rem;
}

.manifest-contact-card__tel {
    font-size: 3.8rem;
    line-height: 1;
    font-weight: bold;
    padding: 0;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.manifest-contact-card__tel a {
  color: var(--tel-color);
	text-decoration: none;
}

.manifest-contact-card__tel a:hover {
    opacity: 0.8;
    text-decoration: underline;    
}

/* ==============================================
   同意書
============================================== */
.manifest-agreement-card__text {
    font-size: 1.6rem;
    color: var(--text-main);
    text-align: left;
}

.manifest-agreement-card__link-wrap {
    margin-top: 2rem;
    text-align: center;
}

a.manifest-button {
  display: inline-block;
  background-color: #1976cc;
  color: #ffffff !important;
  text-decoration: none;
}
.manifest-button {
    display: block;
    min-width: 500px;
    text-align: center;
    padding: 1.4rem 2rem;
    background-color: #1976cc;
    color: #ffffff !important;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.4;
    border-radius: 999px;
    transition: background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(25, 118, 204, 0.25);
    margin-right: auto;
    margin-left: auto;
}
.manifest-button:hover {
  background: var(--main-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(25, 118, 204, 0.3);
}

/* ==============================================
   レスポンシブ
============================================== */
@media screen and (max-width: 767px) {
  .manifest-hero {
    padding: 4.2rem 1.6rem 3.6rem;
  }

  .manifest-main {
    padding: 2.8rem 1.6rem 4rem;
  }

  .manifest-hero__title {
    font-size: 2.5rem;
  }

  .manifest-hero__lead {
    font-size: 1.6rem;
  }

  .manifest-section-title {
    font-size: 2rem;
  }

  .manifest-info-card,
  .manifest-contact-card,
  .manifest-agreement-card {
    padding: 2rem 1.6rem;
  }

  .manifest-price-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .manifest-price-list__name,
  .manifest-price-list__price {
    font-size: 1.7rem;
  }

  .manifest-contact-card__tel {
    font-size: 2.8rem;
  }

  .manifest-button {
    width: 100%;
    min-width: auto;
  }
}
