@charset "UTF-8";

:root {
  --cs-blue: #155cb0;
  --cs-blue-deep: #0d427f;
  --cs-blue-light: #eaf4ff;
  --cs-orange: #fe7005;
  --cs-orange-light: #fff1e5;
  --cs-ink: #17202b;
  --cs-muted: #566273;
  --cs-line: #dce4ec;
  --cs-bg: #f5f8fb;
}

html {
  scroll-behavior: smooth;
}

body.cancer-support-page {
  margin: 0;
  background: #fff;
}

.cancer-support-page #wpadminbar {
  opacity: .75;
}

.l-cancer-support,
.l-cancer-support * {
  box-sizing: border-box;
}

.l-cancer-support {
  min-width: 1200px;
  overflow: hidden;
  background: #fff;
  color: var(--cs-ink);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.l-cancer-support h1,
.l-cancer-support h2,
.l-cancer-support h3,
.l-cancer-support p,
.l-cancer-support ul,
.l-cancer-support dl,
.l-cancer-support dt,
.l-cancer-support dd {
  margin: 0;
  padding: 0;
}

.l-cancer-support ul {
  list-style: none;
}

.l-cancer-support a {
  color: inherit;
  text-decoration: none;
}

.cs-shell {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}

.cs-shell--wide {
  width: min(1320px, calc(100% - 64px));
}

.cs-shell--narrow {
  width: min(920px, calc(100% - 64px));
}

.cs-sp {
  display: none;
}

.cs-section {
  position: relative;
  padding: 112px 0;
}

.cs-heading {
  position: relative;
  color: var(--cs-blue-deep);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .04em;
  text-align: center;
}

.cs-heading::after {
  display: block;
  width: 52px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cs-blue), #55b7f0, var(--cs-orange));
  content: "";
}

.cs-section__lead {
  margin-top: 42px !important;
  color: var(--cs-muted);
  font-size: 17px;
  line-height: 2;
  letter-spacing: .04em;
  text-align: center;
}

/* Hero */
.cs-hero {
  position: relative;
  min-height: 760px;
  background:
    radial-gradient(circle at 7% 22%, rgba(254, 112, 5, .14) 0 100px, transparent 101px),
    radial-gradient(circle at 91% 18%, rgba(85, 183, 240, .18) 0 190px, transparent 191px),
    linear-gradient(135deg, #fff 0%, #f5faff 53%, #eef7ff 100%);
  isolation: isolate;
}

.cs-hero::before,
.cs-hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(21, 92, 176, .12);
  border-radius: 50%;
  content: "";
}

.cs-hero::before {
  top: 145px;
  right: -120px;
  width: 430px;
  height: 430px;
}

.cs-hero::after {
  bottom: -250px;
  left: -160px;
  width: 460px;
  height: 460px;
}

.cs-hero__header {
  padding-top: 30px;
}

.cs-logo {
  display: inline-block;
}

.cs-logo img {
  display: block;
  width: 269px;
  height: auto;
}

.cs-hero__body {
  display: flex;
  min-height: 645px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0 88px;
  text-align: center;
}

.cs-hero__eyebrow {
  margin-bottom: 18px !important;
  color: var(--cs-blue);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .14em;
}

.cs-hero h1 {
  color: var(--cs-ink);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .06em;
}

.cs-hero h1::before {
  display: block;
  width: 68px;
  height: 6px;
  margin: 0 auto 32px;
  border-radius: 6px;
  background: var(--cs-orange);
  content: "";
}

.cs-hero__lead {
  margin-top: 54px !important;
  color: var(--cs-blue-deep);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.75;
}

.cs-scroll {
  display: grid;
  width: 68px;
  height: 68px;
  margin-top: 42px;
  border-radius: 50%;
  background: var(--cs-blue);
  box-shadow: 0 12px 30px rgba(21, 92, 176, .22);
  place-items: center;
  transition: transform .25s ease, background-color .25s ease;
}

.cs-scroll:hover {
  background: var(--cs-orange);
  transform: translateY(4px);
}

.cs-scroll span {
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -7px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

/* Anxiety */
.cs-anxiety {
  background:
    radial-gradient(circle at 12% 18%, rgba(74, 173, 241, .24), transparent 27%),
    radial-gradient(circle at 88% 72%, rgba(21, 92, 176, .3), transparent 30%),
    repeating-linear-gradient(125deg, transparent 0 86px, rgba(255, 255, 255, .025) 86px 87px),
    linear-gradient(145deg, #04162e 0%, #082e5b 48%, #061d3e 100%);
}

.cs-anxiety .cs-heading {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 16, 42, .3);
}

.cs-anxiety .cs-heading::after {
  background: linear-gradient(90deg, #4aadf1, #8bd5ff, var(--cs-orange));
}

.cs-anxiety::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 28px solid #eef7ff;
  border-right: 44px solid transparent;
  border-left: 44px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.cs-anxiety__list {
  display: grid;
  gap: 23px;
  margin-top: 58px !important;
}

.cs-anxiety__list li {
  position: relative;
  width: 84%;
  padding: 20px 32px 20px 62px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(232, 245, 255, .94));
  box-shadow: 0 14px 34px rgba(0, 17, 45, .22);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 700;
}

.cs-anxiety__list li::before {
  position: absolute;
  top: 50%;
  left: 26px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--cs-orange);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.cs-anxiety__list li:nth-child(even) {
  margin-left: auto;
}

.cs-anxiety__message {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  overflow: hidden;
  margin-top: 72px !important;
  padding: 52px 58px 52px 52px;
  border: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 94% 8%, rgba(74, 173, 241, .28), transparent 28%),
    radial-gradient(circle at 8% 96%, rgba(254, 112, 5, .13), transparent 24%),
    linear-gradient(135deg, #082c57 0%, #124d88 58%, #0b376c 100%);
  box-shadow: 0 28px 65px rgba(0, 13, 36, .34), inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.cs-anxiety__message::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, #ffb34d 0%, var(--cs-orange) 55%, #ffdd82 100%);
  content: "";
}

.cs-anxiety__message::after {
  position: absolute;
  z-index: -1;
  right: 24px;
  bottom: -52px;
  color: rgba(255, 255, 255, .075);
  content: "“";
  font-family: Georgia, serif;
  font-size: 220px;
  line-height: 1;
}

.cs-anxiety__message-label {
  width: 92px;
  height: 92px;
  display: grid;
  color: var(--cs-blue-deep);
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .09), 0 0 0 9px rgba(254, 112, 5, .72), 0 14px 32px rgba(0, 20, 48, .25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  place-items: center;
}

.cs-anxiety__message p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 500;
  line-height: 2.15;
}

.cs-anxiety__message-lead {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.7;
}

.cs-anxiety__message strong {
  display: inline;
  color: #fff;
  background: linear-gradient(transparent 58%, rgba(254, 147, 62, .58) 58%);
  font-weight: 700;
}

/* Experts */
.cs-experts {
  background: #fff;
}

.cs-expert-list {
  display: grid;
  gap: 64px;
  margin-top: 72px;
}

.cs-expert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #dce7f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(13, 66, 127, .09);
}

.cs-expert--reverse .cs-placeholder,
.cs-expert--reverse .cs-expert__media {
  order: 2;
}

.cs-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px dashed #9fb7cc;
  background:
    linear-gradient(135deg, rgba(21, 92, 176, .06), rgba(254, 112, 5, .08)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(21, 92, 176, .035) 18px 19px);
  color: #7891a8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  place-items: center;
}

.cs-placeholder::before,
.cs-placeholder::after {
  position: absolute;
  border: 1px solid rgba(21, 92, 176, .14);
  border-radius: 50%;
  content: "";
}

.cs-placeholder::before {
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
}

.cs-placeholder::after {
  bottom: -38px;
  left: -38px;
  width: 140px;
  height: 140px;
}

.cs-placeholder small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}

.cs-placeholder--portrait {
  min-height: 355px;
  border: 0;
  border-radius: 0;
}

.cs-expert__media {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.cs-expert__media--portrait {
  min-height: 355px;
}

.cs-expert__media--portrait img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cs-expert__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
}

.cs-expert__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(21, 92, 176, .1);
  font-family: "Shippori Mincho", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.cs-expert--reverse .cs-expert__number {
  right: auto;
  left: 28px;
}

.cs-expert h3 {
  position: relative;
  z-index: 1;
  color: var(--cs-blue-deep);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}

.cs-expert h3::after {
  display: block;
  width: 42px;
  height: 3px;
  margin: 18px 0 22px;
  background: var(--cs-orange);
  content: "";
}

.cs-expert h3 small {
  display: inline-block;
  margin-left: .35em;
  padding: .2em .7em .25em;
  color: var(--cs-blue);
  background: #edf6ff;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: .12em;
  white-space: nowrap;
}

.cs-expert__content > p:last-child {
  color: var(--cs-muted);
  font-size: 17px;
  line-height: 2;
}

.cs-expert--compact {
  margin-inline: 40px;
  grid-template-columns: 36% 64%;
}

.cs-expert--compact .cs-placeholder--portrait {
  min-height: 300px;
}

.cs-experts__note {
  margin-top: 72px !important;
  color: #34465b;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

.cs-button {
  display: flex;
  width: 340px;
  min-height: 86px;
  margin: 40px auto 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #155cb0, #0d427f);
  box-shadow: 0 12px 28px rgba(21, 92, 176, .24);
  color: #fff !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cs-button:hover {
  box-shadow: 0 16px 34px rgba(21, 92, 176, .32);
  opacity: 1 !important;
  transform: translateY(-3px);
}

.cs-button span {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 600;
}

.cs-button[href="#line"] {
  background: linear-gradient(135deg, #06c755, #049c42);
  box-shadow: 0 12px 28px rgba(6, 199, 85, .28);
}

.cs-button[href="#line"]:hover {
  box-shadow: 0 16px 34px rgba(6, 199, 85, .36);
}

/* Book */
.cs-book {
  background:
    linear-gradient(174deg, #f4f8fc 0 9%, transparent 9.1%),
    var(--cs-bg);
  text-align: center;
}

.cs-placeholder--book {
  width: min(760px, 100%);
  aspect-ratio: 16 / 8.3;
  margin: 54px auto 38px;
  border-style: solid;
  border-color: #dce7f1;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 18px 45px rgba(13, 66, 127, .08);
}

.cs-book__visual {
  position: relative;
  overflow: hidden;
  width: min(760px, 100%);
  margin: 54px auto 38px;
  border: 1px solid #dce7f1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 66, 127, .08);
}

.cs-book__banner {
  display: block;
  width: 100%;
  height: auto;
}

.cs-book__cover {
  position: absolute;
  top: 10.4%;
  left: 3.6%;
  display: block;
  width: auto;
  height: 81.2%;
  box-shadow: 0 10px 18px rgba(16, 57, 92, .22);
}

.cs-book p {
  color: var(--cs-muted);
  font-size: 17px;
  line-height: 2;
}

.cs-button--amazon {
  min-height: 70px;
  background: #17202b;
  box-shadow: 0 12px 28px rgba(23, 32, 43, .2);
}

/* Reasons */
.cs-reasons {
  padding-top: 128px;
}

.cs-reasons__subheading {
  margin-top: 88px !important;
  color: var(--cs-blue);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.cs-reason-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cs-reason-card {
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(13, 66, 127, .08);
}

.cs-reason-card h3 {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--cs-blue-deep);
  color: #fff;
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.cs-placeholder--card {
  height: 225px;
  border: 0;
  border-radius: 0;
}

.cs-reason-card__image {
  display: block;
  width: 100%;
  height: 225px;
  object-fit: cover;
}

.cs-reason-card p {
  padding: 28px 26px 32px;
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.9;
}

/* FAQ */
.cs-faq {
  background: var(--cs-bg);
}

.cs-faq__list {
  display: grid;
  gap: 18px;
  margin-top: 56px !important;
}

.cs-faq__item {
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(25, 48, 78, .045);
}

.cs-faq__item dt {
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #e6ebf0;
  color: var(--cs-blue-deep);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.cs-faq__item dt span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-right: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cs-blue);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  place-items: center;
}

.cs-faq__item dd {
  padding: 24px 30px 27px 86px;
  color: var(--cs-muted);
  font-size: 16px;
  line-height: 1.9;
}

/* LINE */
.cs-line {
  padding-block: 120px;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 185, 0, .08), transparent 28%),
    #fff;
}

.cs-line__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.cs-line-card {
  width: 460px;
  margin: 0 auto;
  padding: 38px 36px 36px;
  border: 13px solid #08bd2c;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 155, 32, .15);
  text-align: center;
}

.cs-line-card__lead {
  color: #3f4743;
  font-size: 17px;
  font-weight: 700;
}

.cs-line-card__button {
  display: flex;
  width: 100%;
  min-height: 64px;
  margin-top: 12px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #06c755;
  box-shadow: 0 5px 0 #049c42;
  color: #fff !important;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  transition: box-shadow .2s ease, transform .2s ease;
}

.cs-line-card__button:hover {
  box-shadow: 0 7px 0 #049c42;
  opacity: 1 !important;
  transform: translateY(-2px);
}

.cs-line-card__button:focus-visible {
  outline: 4px solid #17202b;
  outline-offset: 4px;
}

.cs-button[href="#line"],
.cs-line-card__button {
  position: relative;
  padding-right: 68px;
  padding-left: 68px;
}

.cs-tap-icon {
  position: absolute;
  right: 24px;
  width: 32px;
  height: 32px;
  fill: currentColor;
  filter: drop-shadow(0 2px 2px rgba(0, 80, 32, .22));
  pointer-events: none;
  transform-origin: center;
  animation: cs-tap-prompt 1.8s ease-in-out infinite;
}

.cs-line-card__button .cs-tap-icon {
  right: 22px;
  width: 34px;
  height: 34px;
}

@keyframes cs-tap-prompt {
  0%,
  28%,
  55%,
  100% {
    transform: scale(1);
  }

  40% {
    transform: scale(.84);
  }
}

.cs-line-card__divider {
  display: flex;
  margin-top: 38px !important;
  align-items: center;
  color: #3f4743;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  gap: 12px;
}

.cs-line-card__divider::before,
.cs-line-card__divider::after {
  height: 1px;
  flex: 1;
  background: #555;
  content: "";
}

.l-cancer-support .cs-line-card__label {
  display: flex;
  width: 100%;
  margin-top: 30px !important;
  padding: 12px 20px 12px 24px;
  align-items: center;
  border-left: 6px solid #06a947;
  border-radius: 6px;
  background: #ecf9f1;
  color: #174e2e;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.cs-placeholder--qr {
  width: 152px;
  height: 152px;
  margin: 17px auto 12px;
  border: 8px solid #06c755;
  border-radius: 8px;
  background:
    repeating-linear-gradient(45deg, #06c755 0 4px, #fff 4px 8px),
    repeating-linear-gradient(-45deg, transparent 0 5px, #06c755 5px 9px);
  color: #fff;
  font-size: 18px;
  letter-spacing: .04em;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 80, 20, .8);
}

.cs-placeholder--qr::before,
.cs-placeholder--qr::after {
  display: none;
}

.cs-placeholder--qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cs-line-card__annotation {
  margin-top: 14px !important;
  color: #4f5954;
  font-size: 16px;
  line-height: 1.8;
}

.cs-line-card__search {
  display: flex;
  min-height: 48px;
  margin-top: 18px;
  border: 2px solid #77847d;
  border-radius: 4px;
  overflow: hidden;
  align-items: stretch;
  font-size: 16px;
}

.cs-line-card__search span {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 8px 12px;
  color: #606b65;
}

.cs-line-card__copy {
  display: flex;
  width: 72px;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  background: #06c755;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}

.cs-line-card__copy:hover,
.cs-line-card__copy:focus-visible {
  background: #05a847;
}

.cs-line-card__copy:focus-visible {
  outline: 3px solid rgba(6, 199, 85, .3);
  outline-offset: -3px;
}

.cs-line-card__copy:active {
  transform: scale(.97);
}

.cs-line-card__copy.is-copied {
  background: #048a3b;
}

/* Footer */
.cs-footer {
  padding: 44px 24px 18px;
  background: #eef1f4;
  color: #66717c;
  text-align: center;
}

.cs-footer ul {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.cs-footer a {
  color: #66717c;
  font-size: 15px;
}

.cs-footer p {
  margin: 34px -24px -18px !important;
  padding: 10px;
  background: #17202b;
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
}

@media screen and (max-width: 768px) {
  .l-cancer-support {
    min-width: 0;
    font-size: 16px;
    line-height: 1.85;
  }

  .cs-shell,
  .cs-shell--wide,
  .cs-shell--narrow {
    width: min(100% - 40px, 560px);
  }

  .cs-pc {
    display: none;
  }

  .cs-sp {
    display: block;
  }

  .cs-section {
    padding: 76px 0;
  }

  .cs-heading {
    font-size: 26px;
    line-height: 1.55;
  }

  .cs-heading::after {
    width: 42px;
    height: 3px;
    margin-top: 16px;
  }

  .cs-section__lead {
    margin-top: 28px !important;
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .cs-hero {
    min-height: 660px;
    background:
      radial-gradient(circle at 100% 25%, rgba(85, 183, 240, .18) 0 110px, transparent 111px),
      linear-gradient(145deg, #fff 0%, #f4faff 100%);
  }

  .cs-hero__header {
    padding-top: 17px;
  }

  .cs-logo img {
    width: 190px;
  }

  .cs-hero__body {
    min-height: 585px;
    padding: 44px 0 66px;
  }

  .cs-hero__eyebrow {
    margin-bottom: 12px !important;
    font-size: 15px;
    letter-spacing: .08em;
  }

  .cs-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.5;
    letter-spacing: .035em;
  }

  .cs-hero h1::before {
    width: 48px;
    height: 4px;
    margin-bottom: 23px;
  }

  .cs-hero__lead {
    margin-top: 34px !important;
    font-size: 17px;
    line-height: 1.8;
  }

  .cs-scroll {
    width: 54px;
    height: 54px;
    margin-top: 34px;
  }

  .cs-anxiety::before {
    border-top-width: 18px;
    border-right-width: 28px;
    border-left-width: 28px;
  }

  .cs-anxiety__list {
    gap: 15px;
    margin-top: 40px !important;
  }

  .cs-anxiety__list li,
  .cs-anxiety__list li:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 17px 18px 17px calc(45px + 1em);
    font-size: 16px;
    line-height: 1.75;
    text-indent: -1em;
  }

  .cs-anxiety__list li::before {
    left: 18px;
    width: 9px;
    height: 9px;
    border-width: 2px;
  }

  .cs-anxiety__message {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 42px !important;
    padding: 32px 24px 29px 29px;
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(8, 44, 87, .2);
  }

  .cs-anxiety__message::before {
    width: 5px;
    height: 100%;
  }

  .cs-anxiety__message::after {
    right: 8px;
    bottom: -29px;
    font-size: 128px;
  }

  .cs-anxiety__message-label {
    width: fit-content;
    height: auto;
    padding: 6px 14px 6px 16px;
    color: var(--cs-blue-deep);
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(254, 112, 5, .78);
    font-size: 9px;
  }

  .cs-anxiety__message p {
    font-size: 16px;
    line-height: 2;
  }

  .cs-anxiety__message-lead {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.75;
    white-space: nowrap;
  }

  .cs-expert-list {
    gap: 32px;
    margin-top: 44px;
  }

  .cs-expert,
  .cs-expert--compact {
    margin-inline: 0;
    grid-template-columns: 1fr;
  }

  .cs-expert--reverse .cs-placeholder,
  .cs-expert--reverse .cs-expert__media {
    order: 0;
  }

  .cs-placeholder--portrait,
  .cs-expert--compact .cs-placeholder--portrait,
  .cs-expert__media--portrait {
    min-height: 240px;
  }

  .cs-expert__content {
    padding: 34px 26px 36px;
  }

  .cs-expert__number,
  .cs-expert--reverse .cs-expert__number {
    top: 18px;
    right: 20px;
    left: auto;
    font-size: 52px;
  }

  .cs-expert h3 {
    padding-right: 0;
    font-size: clamp(16px, 5.1vw, 21px);
    white-space: normal;
  }

  .cs-expert h3 small {
    display: inline-block;
    margin-top: 0;
    margin-left: .35em;
    font-size: 14px;
    white-space: nowrap;
  }

  .cs-expert h3::after {
    margin: 14px 0 18px;
  }

  .cs-expert__content > p:last-child {
    font-size: 16px;
    line-height: 1.9;
  }

  .cs-experts__note {
    margin-top: 42px !important;
    font-size: 16px;
    line-height: 1.9;
  }

  .cs-button {
    width: min(100%, 320px);
    min-height: 76px;
    margin-top: 30px;
    font-size: 18px;
  }

  .cs-placeholder--book {
    aspect-ratio: 4 / 3;
    margin: 38px auto 28px;
    border-radius: 14px;
  }

  .cs-book__visual {
    margin: 38px auto 28px;
    border-radius: 14px;
  }

  .cs-book p {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .cs-button--amazon {
    min-height: 64px;
  }

  .cs-reasons {
    padding-top: 82px;
  }

  .cs-reasons__subheading {
    margin-top: 52px !important;
    font-size: 19px;
  }

  .cs-reason-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cs-reason-card {
    display: grid;
    grid-template-columns: 44% 56%;
  }

  .cs-reason-card h3 {
    min-height: 76px;
    padding: 18px 14px;
    grid-column: 1 / -1;
    font-size: 17px;
  }

  .cs-placeholder--card {
    height: auto;
    min-height: 180px;
  }

  .cs-reason-card__image {
    height: 100%;
    min-height: 180px;
  }

  .cs-reason-card p {
    display: flex;
    align-items: center;
    padding: 22px 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .cs-faq__list {
    gap: 14px;
    margin-top: 40px !important;
  }

  .cs-faq__item dt {
    min-height: 0;
    padding: 17px 18px;
    align-items: flex-start;
    font-size: 16px;
  }

  .cs-faq__item dt span {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    font-size: 16px;
  }

  .cs-faq__item dd {
    padding: 18px 20px 21px;
    font-size: 16px;
    line-height: 1.8;
  }

  .cs-line {
    padding-block: 76px;
  }

  .cs-line-card {
    width: min(calc(100% - 32px), 420px);
    padding: 30px 22px 28px;
    border-width: 10px;
  }

  .cs-line-card__lead {
    font-size: 16px;
  }

  .cs-line-card__button {
    min-height: 62px;
    font-size: 21px;
  }

  .cs-button[href="#line"],
  .cs-line-card__button {
    padding-right: 58px;
    padding-left: 58px;
  }

  .cs-tap-icon,
  .cs-line-card__button .cs-tap-icon {
    right: 18px;
    width: 30px;
    height: 30px;
  }

  .cs-line-card__label {
    font-size: 18px;
  }

  .cs-line-card__annotation {
    font-size: 16px;
  }

  .cs-footer {
    padding-top: 34px;
  }

  .cs-footer ul {
    flex-direction: column;
    gap: 8px;
  }

  .cs-footer p {
    margin-top: 26px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cs-scroll,
  .cs-button,
  .cs-line-card__button {
    transition: none;
  }

  .cs-tap-icon {
    animation: none;
  }
}
