/* がん専門相談サービス LP - Responsive CSS */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* リセット・ベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #1d1d1d;
  background-color: #f5faff;
}

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

/* ヒーローセクション */
.hero-section {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 408' preserveAspectRatio='none'><g transform='matrix(11.8 25.309 -60.763 14.577 673 168.73)'><foreignObject x='-256.02' y='-256.02' width='512.03' height='512.03'><div xmlns='http://www.w3.org/1999/xhtml' style='background-image: conic-gradient(from 90deg, rgb(245, 250, 255) -1.8664%, rgb(204, 230, 252) 20.468%, rgb(245, 250, 255) 46.334%, rgb(204, 230, 252) 80.63%, rgb(245, 250, 255) 98.134%, rgb(204, 230, 252) 120.47%); opacity:1; height: 100%25; width: 100%25;'></div></foreignObject></g></svg>");
  padding: 64px 0;
  text-align: center;
}

.hero-main-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 52px;
  color: #00203c;
  margin-bottom: 32px;
}

.hero-service-labels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 0 auto 24px;
}

.hero-service-label {
  width: 440px;
  height: 64px;
  border-radius: 24px;
  font-size: 24px;
  line-height: 32px;
  color: #033e70;
  box-shadow: 0 4px 16px rgba(12, 116, 204, 0.08);
  z-index: 1;
  background: #f5faff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-service-label span {
  position: relative;
}

.hero-service-label span::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 8px;
  background: #faf6cd;
  border-radius: 999px;
  z-index: -1;
}

.hero-subtitle {
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #00203c;
}

/* お知らせセクション */
.notice-section {
  margin-top: 40px;
}

.notice-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  margin: 0 auto;
}

.notice-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.notice-line {
  width: 32px;
  height: 2px;
  background: #0c74cc;
  border-radius: 999px;
}

.notice-title {
  font-weight: 400;
  line-height: 32px;
}

.notice-text {
  line-height: 24px;
  letter-spacing: 0.5px;
}

.notice-text a {
  color: #0c74cc;
  font-weight: 700;
}

.notice-text a:hover {
  text-decoration: none;
}

/* サービスカードセクション */
.services-section {
  padding: 40px 0;
}

.service-cards {
  display: flex;
  gap: 40px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 16px;
  width: 100%;
  height: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* クリック可能なカード */
.service-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.service-image {
  width: 100%;
  height: 298px;
  background: #e0e0e0;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card-link:hover .service-image img {
  transform: scale(1.05);
}

.service-card-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  color: #033e70;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 0 16px;
}

.btn-primary {
  background: #0c74cc;
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 24px;
  font-weight: 700;
  line-height: 1.1;
  transition: all 0.3s;
  min-height: 48px;
  width: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.btn-primary:hover {
  background: #5c9dd6;
}

.terms-link {
  font-weight: 700;
  color: #0c74cc;
  text-decoration: none;
  margin-top: 24px;
}

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

.service-provider {
  font-size: 14px;
  line-height: 1.6;
  color: #858585;
  margin-top: 8px;
  letter-spacing: 0.25px;
}

/* ご利用についてセクション */
.usage-section {
  background: #ffffff;
  padding: 40px 0;
}

.usage-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  margin-bottom: 32px;
  color: #00203c;
}

.usage-text {
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 40px;
}

.usage-cta {
  text-align: center;
}

.first-time-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.first-time-line {
  width: 20px;
  height: 1px;
  background: #1d1d1d;
  border-radius: 999px;
}

.first-time-text {
  line-height: 24px;
  letter-spacing: 0.5px;
}

.btn-pink {
  background: #f54e93;
  color: #ffffff;
  border-radius: 999px;
  padding: 0px 24px;
  font-size: 20px;
  font-weight: 700;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-pink:hover {
  background: #f890bd;
}

/* フッター */
.footer {
  padding: 32px;
  text-align: right;
}

.copyright {
  font-size: 14px;
  color: #5b758c;
}

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

  /* ヒーローセクション */
  .hero-section {
    padding: 48px 0 24px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 390 364' preserveAspectRatio='none'><g transform='matrix(1.9229 19.433 -14.556 10.601 195 182)'><foreignObject x='-295.5' y='-295.5' width='590.99' height='590.99'><div xmlns='http://www.w3.org/1999/xhtml' style='background-image: conic-gradient(from 90deg, rgb(245, 250, 255) -1.8664%, rgb(204, 230, 252) 20.468%, rgb(245, 250, 255) 46.334%, rgb(204, 230, 252) 80.63%, rgb(245, 250, 255) 98.134%, rgb(204, 230, 252) 120.47%); opacity:1; height: 100%25; width: 100%25;'></div></foreignObject></g></svg>");
  }

  .hero-main-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }

  .hero-service-labels {
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-service-label {
    max-width: 328px;
    width: 100%;
    font-size: 18px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-service-label span::after {
    bottom: 10%;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
  }

  /* お知らせ */
  .notice-section {
    margin-top: 24px;
    padding: 0 0 24px;
  }

  .notice-content {
    padding: 24px 16px;
    width: 358px;
    max-width: 100%;
  }

  .notice-title {
    font-size: 20px;
    line-height: 28px;
  }

  .notice-text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    text-align: justify;
  }

  .notice-text a {
    word-break: break-all;
  }

  /* サービスカード */
  .services-section {
    padding: 0 0 24px;
  }

  .service-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .service-card {
    height: auto;
    padding-bottom: 24px;
  }

  .service-image {
    height: 200px;
  }

  .service-card-title {
    font-size: 20px;
    line-height: 28px;
    height: auto;
    min-height: 64px;
  }

  .service-provider {
    font-size: 12px;
  }

  /* ご利用について */
  .usage-section {
    padding: 32px 0;
  }

  .usage-section .container {
    max-width: 390px;
    padding: 0 20px;
  }

  .usage-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .usage-text {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    margin-bottom: 24px;
  }

  .first-time-label {
    margin-bottom: 8px;
  }

  .first-time-text {
    font-size: 14px;
    letter-spacing: 0.25px;
  }

  .btn-pink {
    font-size: 16px;
    height: 48px;
    width: 100%;
    white-space: nowrap;
  }

  /* フッター */
  .footer {
    padding: 16px 24px;
    text-align: center;
  }

  .copyright {
    font-size: 12px;
  }
}
