@charset "UTF-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: var(--c-white);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.header--floating {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-105%);
  pointer-events: none;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  will-change: opacity, transform;
}

.header--floating:not(.header--visible) {
  transition: none;
}

.header--floating.header--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header--menu-open {
  z-index: 1000;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: none;
  will-change: auto;
}

.header-spacer {
  height: var(--header-height, 60px);
  pointer-events: none;
}

.header-spacer--active {
  height: var(--header-height, 0px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: var(--container-max);
  min-height: 60px;
  margin-inline: auto;
  padding-inline: 14px;
}

.header__logo {
  flex: 1 0 0;
  min-width: 0;
  color: var(--c-green);
  font-size: 15px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-base);
  white-space: nowrap;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.944vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav-list .menu-item a {
  position: relative;
  top: -0.1em;
  color: var(--c-text-nav);
  font-size: clamp(13px, 1.389vw, 20px);
  font-weight: var(--fw-regular);
  line-height: normal;
  white-space: nowrap;
}

.header__nav-list .menu-item a::after,
.header__nav-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--c-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .header__nav-list .menu-item a:hover::after,
  .header__nav-link:hover::after {
    transform: scaleX(1);
  }
}

.header__nav-link {
  position: relative;

  top: -0.1em;
  color: var(--c-text-nav);
  font-size: clamp(13px, 1.389vw, 20px);
  font-weight: var(--fw-regular);
  line-height: normal;
  white-space: nowrap;
}

.header__cta {
  flex-shrink: 0;
  border-radius: var(--r-pill);
  background-color: var(--c-orange);
  color: var(--c-white);
  font-size: clamp(12px, 1.111vw, 16px);
  font-weight: var(--fw-bold);

  line-height: 1.1875;
  white-space: nowrap;
  padding-block: clamp(8px, 0.833vw, 12px);
  padding-inline: clamp(14px, 1.528vw, 22px);
}

.header__cta-label {
  position: relative;

  top: -0.125em;
}

.header__menu-button {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 24px;
  height: 24px;
}

.header__menu-icon {
  width: 24px;
  height: 24px;
}

.header__drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--c-white);
  padding: 22px 24px;
  opacity: 1;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.28s;
}

.header__drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.header__drawer--open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.header__drawer-head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--c-green);
}

.header__drawer-title {
  flex: 1 0 0;
  min-width: 0;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: normal;
}

.header__drawer-close {
  position: relative;

  top: 1px;
  flex-shrink: 0;
  width: 19px;
  color: inherit;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: var(--fw-regular);
  line-height: 1.2916;
  text-align: center;
}

.header__drawer-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__drawer-item {

  border-bottom: 1px solid var(--c-divider);
  margin-bottom: 2px;
  padding-top: 15px;
  padding-bottom: 17px;
}

.header__drawer-item:last-child {
  margin-bottom: 0;
}

.header__drawer-link {
  display: block;
  color: var(--c-text-strong);
  font-size: 14px;
  font-weight: var(--fw-bold);

  line-height: 1.2143;
}

.header__drawer-list .menu-item {
  border-bottom: 1px solid var(--c-divider);
  margin-bottom: 2px;
  padding-top: 15px;
  padding-bottom: 17px;
}

.header__drawer-list .menu-item a {
  display: block;
  color: var(--c-text-strong);
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 1.2143;
}

.header__drawer-cta {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  width: calc(100% + 8px);
  min-height: 54px;
  border-radius: 27px;
  background-color: var(--c-orange);
  box-shadow: 0 4px 0 0 var(--c-orange-shadow);
  color: var(--c-white);
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: normal;
  letter-spacing: 1.76px;
  white-space: nowrap;
  padding-inline: 55px;

  --cta-shine-travel: calc(100vw + 113.6px);
}

.header__drawer-cta-label {
  position: relative;

  text-indent: 0.88px;
}

.header__drawer-shine {
  position: absolute;
  left: -136.94px;
  top: -20px;
  width: 60px;
  height: 108px;
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;

  animation:
    cta-shine-move 2s linear 1.5s infinite backwards,
    cta-shine-fade 2s linear 1.5s infinite backwards;
}

@media (prefers-reduced-motion: reduce) {
	.header {
		transition: none;
	}

  .header__drawer-shine {
    animation: none;
  }

  .header__drawer {
    transition: none;
  }
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }

  .header {
    position: relative;
    right: auto;
    left: auto;
    box-shadow: inset 0 -1px 0 0 var(--c-border);
  }

  .header.header--floating {
    position: fixed;
    right: 0;
    left: 0;
  }

  .header-spacer {
    height: 0;
  }

  .header-spacer--active {
    height: var(--header-height, 0px);
  }

  .header__inner {
    min-height: 72px;
    padding-inline: var(--gutter);
  }

  .header__logo {
    font-size: clamp(16px, 1.6667vw, 24px);
  }

  .header__nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.944vw, 28px);
  }

  .header__menu-button,
  .header__drawer {
    display: none;
  }
}

.fv {
  position: relative;
  overflow: hidden;
  background-color: var(--c-green-mid);

  background-image: url("../img/fv/bg-sp@2x.png");
  background-image: image-set(url("../img/fv/bg-sp@2x.webp") type("image/webp"),
                              url("../img/fv/bg-sp@2x.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center top;

  background-size: cover;
}

.fv__stage {
  width: 100%;
  container-type: inline-size;

  --fv-u: min(1px, calc(100cqw / 390));

  --fv-pu: min(1.8px, calc(100cqw / 390));

  --fv-x: max(0px, calc((100% - 212 * var(--fv-pu) - 390 * var(--fv-u)) / 2));
}

.fv__inner {
  position: relative;
  overflow: hidden;
  min-height: calc(593 * var(--fv-u));
}

.fv__person {
  position: absolute;
  z-index: 2;
  left: auto;
  right: calc(-285 * var(--fv-pu));
  top: calc(-46 * var(--fv-pu));
  overflow: hidden;
  width: calc(729 * var(--fv-pu));
  max-width: none;
  height: calc(1093 * var(--fv-pu));
}

.fv__person-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.fv__heading {
  position: absolute;
  z-index: 1;
  left: calc(var(--fv-x) + 20 * var(--fv-u));
  top: calc(37.1 * var(--fv-u));
  color: var(--c-white);
  font-size: calc(26.846 * var(--fv-u));
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  white-space: nowrap;
}

.fv__highlight {
  position: absolute;
  left: 0;
  top: calc(48.9 * var(--fv-u));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  width: calc(273 * var(--fv-u));
  min-height: calc(67 * var(--fv-u));
  background-color: var(--c-white);
  padding: calc(5.801 * var(--fv-u)) calc(13.922 * var(--fv-u))
           calc(9.281 * var(--fv-u)) calc(10 * var(--fv-u));
}

.fv__highlight-text {
  color: var(--c-green-dark);
  font-size: calc(34.805 * var(--fv-u));
  line-height: normal;
  white-space: nowrap;
}

.fv__highlight-underline {
  width: calc(70.77 * var(--fv-u));
  height: calc(3.48 * var(--fv-u));
  background-color: var(--c-orange);

  margin-top: calc(-3.48 * var(--fv-u));
}

.fv__heading-lead {
  position: relative;
  top: calc(1 * var(--fv-u));
  letter-spacing: calc(0.1 * var(--fv-u));
}

.fv__char {

  display: inline-block;

  margin-left: var(--fv-char-kern, 0);
  animation:
    fv-char-fade 190ms ease-out var(--fv-char-delay, 0ms) both,
    fv-char-rise 490ms cubic-bezier(0.34, 1.56, 0.64, 1) var(--fv-char-delay, 0ms) both;
}

@keyframes fv-char-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fv-char-rise {
  from { transform: translateY(calc(20 * var(--fv-u))) scale(0.5); }
  to   { transform: none; }
}

.fv__highlight-underline {
  transform-origin: left center;
  animation: fv-underline-grow 550ms cubic-bezier(0.22, 1, 0.36, 1) var(--fv-underline-delay, 670ms) both;
}

@keyframes fv-underline-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .fv__char {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fv__highlight {
    animation: none;
    background-color: var(--c-white);
  }

  .fv__highlight-underline {
    animation: none;
    background-color: var(--c-orange);
  }
}

.fv__subtitle {
  position: absolute;
  z-index: 1;
  left: calc(var(--fv-x) + 20 * var(--fv-u));
  top: calc(169 * var(--fv-u));

  margin-top: calc(-1 * var(--fv-u));
  color: var(--c-white);
  font-size: calc(24 * var(--fv-u));
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  white-space: nowrap;
}

.fv__card {
  position: absolute;
  z-index: 4;
  left: var(--fv-x);
  top: 0;
  width: calc(390 * var(--fv-u));
  min-height: calc(593 * var(--fv-u));
}

.fv__card-divider {
  display: none;
}

.fv__circle {
  position: absolute;
  border-radius: 50%;
  font-weight: var(--fw-bold);
  line-height: normal;
}

.fv__circle-dots,
.fv__circle-label,
.fv__circle-number,
.fv__circle-approx,
.fv__circle-unit,
.fv__circle-suffix {
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.fv__circle--period {
  left: calc(22 * var(--fv-u));
  top: calc(242 * var(--fv-u));
  width: calc(135.811 * var(--fv-u));
  height: calc(135.811 * var(--fv-u));
  box-shadow: inset 0 0 0 calc(2 * var(--fv-u)) var(--c-orange);
  background-color: var(--c-white);
  color: var(--c-orange);
}

.fv__circle--period .fv__circle-dots {
  left: calc(42.44 * var(--fv-u));
  top: 0;
  width: calc(51 * var(--fv-u));
  font-size: calc(24.252 * var(--fv-u));
  letter-spacing: calc(2.4252 * var(--fv-u));
}

.fv__circle--period .fv__circle-label {
  left: calc(42.44 * var(--fv-u));
  top: calc(20.61 * var(--fv-u));
  width: calc(51 * var(--fv-u));
  font-size: calc(24.252 * var(--fv-u));
  letter-spacing: calc(2.4252 * var(--fv-u));
}

.fv__circle--period .fv__circle-number {
  left: calc(44.26 * var(--fv-u));
  top: calc(35.17 * var(--fv-u));
  width: calc(45 * var(--fv-u));
  font-size: calc(75.911 * var(--fv-u));
}

.fv__circle--period .fv__circle-approx {
  left: calc(29 * var(--fv-u));
  top: calc(72 * var(--fv-u));
  width: calc(15 * var(--fv-u));
  font-size: calc(14.551 * var(--fv-u));
}

.fv__circle--period .fv__circle-unit {
  left: calc(89 * var(--fv-u));
  top: calc(59 * var(--fv-u));
  width: calc(16 * var(--fv-u));
  font-size: calc(15.764 * var(--fv-u));
  letter-spacing: calc(-0.9458 * var(--fv-u));
  line-height: normal;
}

.fv__circle--amount {
  left: calc(131.13 * var(--fv-u));
  top: calc(288.08 * var(--fv-u));
  width: calc(107.921 * var(--fv-u));
  height: calc(107.921 * var(--fv-u));
  background-color: var(--c-green);
  color: var(--c-white);
}

.fv__circle--amount .fv__circle-dots {
  left: calc(35.17 * var(--fv-u));
  top: calc(2.42 * var(--fv-u));
  width: calc(38 * var(--fv-u));
  font-size: calc(17.838 * var(--fv-u));
  letter-spacing: calc(1.7838 * var(--fv-u));
}

.fv__circle--amount .fv__circle-label {
  left: calc(35.17 * var(--fv-u));
  top: calc(17.59 * var(--fv-u));
  width: calc(38 * var(--fv-u));
  font-size: calc(17.838 * var(--fv-u));
  letter-spacing: calc(1.7838 * var(--fv-u));
}

.fv__circle--amount .fv__circle-number {
  left: calc(18.19 * var(--fv-u));
  top: calc(36.38 * var(--fv-u));
  width: calc(60 * var(--fv-u));
  font-size: calc(33.675 * var(--fv-u));
}

.fv__circle--amount .fv__circle-unit {
  left: calc(80.04 * var(--fv-u));
  top: calc(42.44 * var(--fv-u));
  width: calc(12 * var(--fv-u));
  font-size: calc(11.647 * var(--fv-u));
  line-height: normal;
}

.fv__circle--amount .fv__circle-suffix {
  left: calc(24.26 * var(--fv-u));
  top: calc(76.394 * var(--fv-u));
  width: calc(58 * var(--fv-u));
  font-size: calc(13.339 * var(--fv-u));

  letter-spacing: calc(1.667 * var(--fv-u));
}

@media (max-width: 1023px) {

  .fv__circle--period .fv__circle-dots {
    line-height: 1.1958;
  }

  .fv__circle--period .fv__circle-label {
    margin-top: calc(-0.6 * var(--fv-u));
    line-height: 1.1958;
  }

  .fv__circle--period .fv__circle-number {
    margin-top: calc(-1.82 * var(--fv-u));
    line-height: 1.1988;
  }

  .fv__circle--period .fv__circle-approx {
    margin-top: calc(-1 * var(--fv-u));
    line-height: 1.1683;
  }

  .fv__circle--period .fv__circle-unit {
    line-height: 1.2053;
  }

  .fv__circle--period {
    box-shadow: inset 0 0 0 2px var(--c-orange);
  }

  .fv__circle--amount .fv__circle-dots,
  .fv__circle--amount .fv__circle-label {
    margin-top: calc(0.25 * var(--fv-u));
    line-height: 1.1773;
  }

  .fv__circle--amount .fv__circle-number {
    margin-top: calc(-0.8 * var(--fv-u));
    line-height: 1.1878;
  }

  .fv__circle--amount .fv__circle-unit {
    margin-top: calc(-0.8 * var(--fv-u));
    line-height: 1.202;
  }

  .fv__circle--amount .fv__circle-suffix {
    margin-top: calc(0.5 * var(--fv-u));
    line-height: 1.1995;
  }
}

.fv__action {
  position: absolute;
  left: calc(20 * var(--fv-u));
  top: calc(407 * var(--fv-u));
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(350 * var(--fv-u));
  gap: calc(6.8 * var(--fv-u));
}

.fv__action-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  padding-left: calc(5 * var(--fv-u));
  padding-right: calc(4 * var(--fv-u));
  color: var(--c-white);
  font-size: calc(14 * var(--fv-u));
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: calc(1.26 * var(--fv-u));
  white-space: nowrap;
}

.fv__action-line {
  position: relative;
  top: calc(-0.6 * var(--fv-u));
  flex-shrink: 0;
  width: calc(44 * var(--fv-u));
  height: 1px;
  background-color: var(--c-white);
}

.fv__action-rule {
  display: none;
}

.fv__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  min-height: calc(54 * var(--fv-u));
  border-radius: calc(27 * var(--fv-u));
  background-color: var(--c-orange);
  box-shadow: 0 calc(4 * var(--fv-u)) 0 0 var(--c-orange-shadow);
  color: var(--c-white);
  font-size: calc(22 * var(--fv-u));
  font-weight: var(--fw-bold);
  line-height: normal;
  letter-spacing: calc(1.76 * var(--fv-u));
  white-space: nowrap;

  padding: 0 calc(55 * var(--fv-u));

  --cta-shine-travel: calc(503.6 * var(--fv-u));
}

.fv__cta-label {
  position: relative;

  top: 0;

  text-indent: calc(0.88 * var(--fv-u));
}

.fv__cta-shine {
  position: absolute;
  left: calc(-136.94 * var(--fv-u));
  top: calc(-20 * var(--fv-u));
  width: calc(60 * var(--fv-u));
  height: calc(108 * var(--fv-u));
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;

  animation:
    cta-shine-move 2s linear 1.5s infinite backwards,
    cta-shine-fade 2s linear 1.5s infinite backwards;
}

@keyframes cta-shine-move {
  0% {
    transform: translateX(0) rotate(20deg);
    animation-timing-function: ease-in-out;
  }
  15% {
    transform: translateX(0) rotate(20deg);
    animation-timing-function: ease-in-out;
  }
  45% {
    transform: translateX(var(--cta-shine-travel)) rotate(20deg);
  }
  100% {
    transform: translateX(var(--cta-shine-travel)) rotate(20deg);
  }
}

@keyframes cta-shine-fade {
  0% {
    opacity: 0.3;
    animation-timing-function: ease-in;
  }
  15% {
    opacity: 0.3;
    animation-timing-function: ease-out;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fv__cta-shine {
    animation: none;
  }
}

.fv__note {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: calc(495 * var(--fv-u));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: calc(98 * var(--fv-u));
  background-color: rgba(67, 178, 135, 0.6);
  color: var(--c-white);
  font-size: calc(8 * var(--fv-u));
  line-height: var(--lh-snug);
  padding-block: calc(11 * var(--fv-u));
  padding-inline: calc(var(--fv-x) + 14 * var(--fv-u));
}

@media (min-width: 768px) {
  .fv {

    background-image: url("../img/fv/bg-pc@2x.png");
    background-image: image-set(url("../img/fv/bg-pc@2x.webp") type("image/webp"),
                                url("../img/fv/bg-pc@2x.png") type("image/png"));
  }
}

@media (min-width: 1024px) {
  .fv {

    background-image: url("../img/fv/bg-pc@2x.png");
    background-image: image-set(url("../img/fv/bg-pc@2x.webp") type("image/webp"),
                                url("../img/fv/bg-pc@2x.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center top;

    background-size: cover;
  }

  .fv__stage {
    --fv-u: min(1px, calc(100cqw / 1440));
    --fv-pu: var(--fv-u);
    --fv-x: calc((100cqw - 1440 * var(--fv-u)) / 2);
  }

  .fv__inner {
    min-height: calc(708 * var(--fv-u));
  }

  .fv__person {
    z-index: 0;
    left: calc(var(--fv-x) + 807 * var(--fv-u));
    right: auto;
    top: calc(-13 * var(--fv-u));
    width: calc(519 * var(--fv-u));
    height: calc(751 * var(--fv-u));
  }

  .fv__person-image {
    inset: auto;
    left: 2.9%;
    top: 2.15%;
    width: 100%;
    height: 100.01%;
  }

  .fv__heading {
    left: calc(var(--fv-x) + 137 * var(--fv-u));
    top: calc(53 * var(--fv-u));
    font-size: calc(70.577 * var(--fv-u));
  }

  .fv__heading-lead {
    top: 0;
    letter-spacing: normal;
  }

  .fv__highlight {
    top: calc(103 * var(--fv-u));
    width: calc(611 * var(--fv-u));
    min-height: 0;
    padding: calc(16.135 * var(--fv-u)) calc(32.269 * var(--fv-u))
             calc(20 * var(--fv-u));
  }

  .fv__highlight-text {
    position: relative;

    top: calc(-3 * var(--fv-u));
    font-size: calc(86.052 * var(--fv-u));
    line-height: var(--lh-tight);
  }

  .fv__highlight-underline {
    width: calc(175.192 * var(--fv-u));
    height: calc(8.185 * var(--fv-u));

    margin-top: calc(-3.99 * var(--fv-u));
    margin-bottom: calc(-4.195 * var(--fv-u));
  }

  .fv__subtitle {

    margin-top: 0;
    left: calc(var(--fv-x) + 140 * var(--fv-u));
    top: calc(301 * var(--fv-u));
    font-size: calc(33.76 * var(--fv-u));
    line-height: var(--lh-relaxed);
  }

  .fv__subtitle-break {
    display: none;
  }

  .fv__card {
    left: calc(var(--fv-x) + 137 * var(--fv-u));
    top: calc(401 * var(--fv-u));
    width: calc(795 * var(--fv-u));
    min-height: calc(204 * var(--fv-u));
    border-radius: calc(25 * var(--fv-u));
    background-color: var(--c-white);
  }

  .fv__card-divider {
    display: block;
    position: absolute;
    left: calc(208 * var(--fv-u));
    top: calc(44 * var(--fv-u));
    width: 1px;
    height: calc(121 * var(--fv-u));
    background-color: var(--c-hairline);
  }

  .fv__circle--period {
    left: calc(33 * var(--fv-u));
    top: calc(26 * var(--fv-u));
    width: calc(151.013 * var(--fv-u));
    height: calc(151.013 * var(--fv-u));
    box-shadow: inset 0 0 0 calc(1.77759 * var(--fv-u)) var(--c-orange-line);
  }

  .fv__circle--period .fv__circle-dots {
    left: calc(47.19 * var(--fv-u));
    top: 0;
    width: calc(57 * var(--fv-u));
    font-size: calc(26.967 * var(--fv-u));
    letter-spacing: calc(2.6967 * var(--fv-u));
  }

  .fv__circle--period .fv__circle-label {
    left: calc(47.19 * var(--fv-u));
    top: calc(22.92 * var(--fv-u));
    width: calc(57 * var(--fv-u));
    font-size: calc(26.967 * var(--fv-u));
    letter-spacing: calc(2.6967 * var(--fv-u));
  }

  .fv__circle--period .fv__circle-number {
    left: calc(49.21 * var(--fv-u));
    top: calc(29.19 * var(--fv-u));
    width: calc(50 * var(--fv-u));
    font-size: calc(84.408 * var(--fv-u));
  }

  .fv__circle--period .fv__circle-approx {
    left: calc(32.25 * var(--fv-u));
    top: calc(83.02 * var(--fv-u));
    width: calc(17 * var(--fv-u));
    font-size: calc(16.18 * var(--fv-u));
  }

  .fv__circle--period .fv__circle-unit {
    left: calc(98.96 * var(--fv-u));
    top: calc(75.24 * var(--fv-u));
    width: calc(18 * var(--fv-u));
    font-size: calc(17.528 * var(--fv-u));
    letter-spacing: calc(-1.0517 * var(--fv-u));
    line-height: calc(19.459 * var(--fv-u));
  }

  .fv__circle--amount {
    left: calc(232 * var(--fv-u));
    top: calc(26 * var(--fv-u));
    width: calc(151.13 * var(--fv-u));
    height: calc(151.13 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-dots {
    left: calc(49.24 * var(--fv-u));
    top: calc(3.4 * var(--fv-u));
    width: calc(53 * var(--fv-u));
    font-size: calc(24.98 * var(--fv-u));
    letter-spacing: calc(2.498 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-label {
    left: calc(49.24 * var(--fv-u));
    top: calc(24.63 * var(--fv-u));
    width: calc(53 * var(--fv-u));
    font-size: calc(24.98 * var(--fv-u));
    letter-spacing: calc(2.498 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-number {
    left: calc(25.47 * var(--fv-u));
    top: calc(44.11 * var(--fv-u));
    width: calc(84 * var(--fv-u));
    font-size: calc(47.158 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-unit {
    left: calc(112.07 * var(--fv-u));
    top: calc(61.62 * var(--fv-u));
    width: calc(17 * var(--fv-u));
    font-size: calc(16.31 * var(--fv-u));
    line-height: calc(19.459 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-suffix {
    left: calc(35.67 * var(--fv-u));
    top: calc(101.83 * var(--fv-u));
    width: calc(81 * var(--fv-u));
    font-size: calc(18.679 * var(--fv-u));
    letter-spacing: calc(1.8679 * var(--fv-u));
  }

  .fv__action {
    left: calc(425 * var(--fv-u));
    top: calc(36 * var(--fv-u));
    width: calc(333 * var(--fv-u));
    gap: calc(18 * var(--fv-u));
  }

  .fv__action-lead {
    display: block;

    padding: 0;
    color: var(--c-green);
    font-size: calc(16 * var(--fv-u));
    letter-spacing: calc(1.44 * var(--fv-u));
    text-align: center;

    text-indent: calc(1.44 * var(--fv-u));
  }

  .fv__action-line {
    display: none;
  }

  .fv__action-rule {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--c-hairline);
  }

  .fv__cta {
    min-height: calc(81 * var(--fv-u));
    border-radius: calc(15 * var(--fv-u));

    --cta-shine-travel: calc(486.6 * var(--fv-u));
  }

  .fv__cta-label {
    top: calc(-2 * var(--fv-u));
    text-indent: calc(1.76 * var(--fv-u));
  }

  .fv__note {
    display: block;
    left: calc(var(--fv-x) + 26 * var(--fv-u));
    right: auto;
    top: calc(658 * var(--fv-u));
    width: calc(896 * var(--fv-u));
    min-height: 0;
    background-color: transparent;
    padding: 0;
  }
}

/* Large phones and tablets keep the mobile composition while using the
   additional width for a larger, bottom-aligned full-body portrait. */
@media (min-width: 426px) and (max-width: 1023px) {
  .fv {
    background-image: url("../img/fv/bg-sp@2x.png");
    background-image: image-set(url("../img/fv/bg-sp@2x.webp") type("image/webp"),
                                url("../img/fv/bg-sp@2x.png") type("image/png"));
    background-position: center top;
    background-size: cover;
  }

  .fv__stage {
    --fv-u: clamp(1px, calc(100cqw / 760), 1.32px);
    --fv-pu: var(--fv-u);
    --fv-x: 0px;
  }

  .fv__inner {
    min-height: clamp(620px, 78vw, 760px);
  }

  .fv__person {
    z-index: 2;
    left: auto;
    right: calc(-13.23vw - 254.64px);
    top: calc(-13.4vw + 7.1px);
    bottom: auto;
    width: calc(84.4vw + 436.5px);
    height: calc(126.63vw + 654.6px);
    overflow: hidden;
  }

  .fv__person-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .fv__heading {
    z-index: 1;
    left: clamp(24px, 6vw, 64px);
    top: clamp(38px, 5vw, 54px);
    font-size: clamp(27px, calc(4.52vw + 7.7px), 54px);
    line-height: 1.05;
  }

  .fv__highlight {
    top: calc(3.85vw + 34.6px);
    width: calc(38.02vw + 111px);
  }

  .fv__highlight-text {
    font-size: clamp(35px, calc(4.52vw + 15.7px), 62px);
    line-height: 1.05;
  }

  .fv__subtitle {
    z-index: 3;
    left: clamp(24px, 6vw, 64px);
    top: calc(10.55vw + 127.1px);
    font-size: clamp(14px, calc(1.84vw + 6.2px), 25px);
  }

  .fv__subtitle-break {
    display: none;
  }

  .fv__card {
    left: 0;
    width: 100%;
    min-height: clamp(620px, 78vw, 760px);
  }

  .fv__circle--period {
    left: calc(8.04vw - 12.25px);
    top: calc(12.56vw + 171.5px);
  }

  .fv__circle--amount {
    left: calc(23.28vw + 31.8px);
    top: calc(6.53vw + 243.2px);
  }

  .fv__action {
    left: calc(8.375vw - 15.68px);
    top: calc(18.09vw + 329.9px);
    width: calc(15.08vw + 285.8px);
  }

  .fv__note {
    top: auto;
    bottom: 0;
    min-height: clamp(100px, 13vw, 120px);
    padding-inline: clamp(24px, 4vw, 42px);
  }
}

@media (min-width: 490px) and (max-width: 1023px) {
  .fv__circle--amount {
    left: calc(16.14vw + 104.9px);
    top: calc(12.56vw + 171.5px);
    width: calc(135.811 * var(--fv-u));
    height: calc(135.811 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-dots {
    left: calc(44.25 * var(--fv-u));
    top: calc(3.05 * var(--fv-u));
    width: calc(47.65 * var(--fv-u));
    font-size: calc(22.47 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-label {
    left: calc(44.25 * var(--fv-u));
    top: calc(22.15 * var(--fv-u));
    width: calc(47.65 * var(--fv-u));
    font-size: calc(22.47 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-number {
    left: calc(22.89 * var(--fv-u));
    top: calc(39.64 * var(--fv-u));
    width: calc(75.46 * var(--fv-u));
    font-size: calc(42.38 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-unit {
    left: calc(100.7 * var(--fv-u));
    top: calc(55.36 * var(--fv-u));
    width: calc(15.27 * var(--fv-u));
    font-size: calc(14.66 * var(--fv-u));
  }

  .fv__circle--amount .fv__circle-suffix {
    left: calc(32.04 * var(--fv-u));
    top: calc(91.48 * var(--fv-u));
    width: calc(72.75 * var(--fv-u));
    font-size: calc(16.78 * var(--fv-u));
  }
}

@media (max-width: 425px) {
  .fv__action {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* FV responsive interpolation: canonical values at 426 / 490 / 1023px. */
@media (min-width: 426px) and (max-width: 1023px) {
  .fv__stage,
  .fv__card {
    width: 100%;
  }

  .fv__heading {
    line-height: 1.05;
  }

  .fv__highlight {
    min-height: 0;
    padding: 0;
  }

  .fv__highlight-text {
    top: 0;
    line-height: 1.05;
  }

  /* Keep the underline at its authored thickness. As a flex child it was
     shrinking inside the fixed-height white highlight box. */
  .fv__highlight-underline {
    position: absolute;
    flex: 0 0 auto;
  }

  .fv__circle {
    container-type: inline-size;
  }

  .fv__circle--period .fv__circle-dots {
    left: 31.249%; top: 0; width: 37.552%;
    font-size: 17.857cqw; letter-spacing: 1.786cqw;
  }
  .fv__circle--period .fv__circle-label {
    left: 31.249%; top: 15.175%; width: 37.552%;
    margin-top: -0.442cqw;
    font-size: 17.857cqw; letter-spacing: 1.786cqw;
  }
  .fv__circle--period .fv__circle-number {
    left: 32.589%; top: 25.897%; width: 33.134%;
    margin-top: -1.340cqw;
    font-size: 55.895cqw;
  }
  .fv__circle--period .fv__circle-approx {
    left: 21.353%; top: 53.015%; width: 11.045%;
    margin-top: -0.736cqw;
    font-size: 10.714cqw;
  }
  .fv__circle--period .fv__circle-unit {
    left: 65.532%; top: 43.443%; width: 11.781%;
    font-size: 11.607cqw; letter-spacing: -0.696cqw;
  }

  .fv__circle--amount .fv__circle-dots {
    left: 32.588%; top: 2.242%; width: 35.211%;
    margin-top: 0.232cqw;
    font-size: 16.529cqw; letter-spacing: 1.653cqw;
  }
  .fv__circle--amount .fv__circle-label {
    left: 32.588%; top: 16.299%; width: 35.211%;
    margin-top: 0.232cqw;
    font-size: 16.529cqw; letter-spacing: 1.653cqw;
  }
  .fv__circle--amount .fv__circle-number {
    left: 16.855%; top: 33.710%; width: 55.596%;
    margin-top: -0.741cqw;
    font-size: 31.204cqw;
  }
  .fv__circle--amount .fv__circle-unit {
    left: 74.165%; top: 39.325%; width: 11.119%;
    margin-top: -0.741cqw;
    font-size: 10.792cqw;
  }
  .fv__circle--amount .fv__circle-suffix {
    left: 22.479%; top: 70.786%; width: 53.743%;
    margin-top: 0.463cqw;
    font-size: 12.360cqw; letter-spacing: 1.545cqw;
  }

  .fv__action {
    transform: none;
    text-align: center;
  }

  .fv__action-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    gap: 8px;
    font-size: inherit;
  }

  .fv__action-line {
    display: block;
    position: static;
    flex: 1;
    width: auto;
  }

  .fv__action-rule {
    display: none;
  }
}

@media (min-width: 426px) and (max-width: 490px) {
  .fv__inner,
  .fv__card { min-height: 620px; }

  .fv__heading {
    left: calc(4.687500vw + 6.0313px);
    top: calc(34.375000vw - 108.4375px);
    font-size: 30px;
  }
  .fv__highlight {
    top: calc(-3.125000vw + 58.3125px);
    width: calc(84.375000vw - 86.4375px);
    height: 67px;
    padding: calc(-1.562500vw + 16.6563px) 14px 9px 10px;
  }
  .fv__highlight-text {
    font-size: calc(7.812500vw + 4.7188px);
  }
  .fv__highlight-underline {
    left: 10px;
    bottom: calc(-4.687500vw + 28.9688px);
    width: calc(21.875000vw - 22.1875px);
    height: 4px;
    margin-top: 0;
  }
  .fv__subtitle {
    margin: 0;
    left: calc(4.687500vw + 6.0313px);
    top: calc(31.250000vw + 26.8750px);
    font-size: calc(1.562500vw + 17.3438px);
    line-height: 1.2;
  }
  .fv__subtitle-break { display: inline; }

  .fv__circle--period {
    left: calc(7.812500vw - 11.2813px);
    top: calc(23.437500vw + 148.1563px);
    width: 136px; height: 136px;
  }
  .fv__circle--amount {
    left: calc(53.125000vw - 90.3125px);
    top: calc(-17.187500vw + 347.2188px);
    width: calc(43.750000vw - 78.3750px);
    height: calc(43.750000vw - 78.3750px);
  }
  .fv__action {
    left: calc(-20.312500vw + 124.5313px);
    top: calc(18.750000vw + 327.1250px);
    width: calc(15.625000vw + 283.4375px);
    gap: 0;
  }
  .fv__action-lead {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: normal;
    text-indent: 0;
  }
  .fv__cta {
    min-height: 54px;
    border-radius: 27px;
    padding: 0;
    box-shadow: 0 5px 0 var(--c-orange-shadow);
    font-size: 22px;
    letter-spacing: normal;
  }
  .fv__note {
    min-height: 100px;
    padding: 16px 24px;
    font-size: 8px;
    line-height: 1.45;
  }
}

@media (min-width: 491px) and (max-width: 1023px) {
  .fv__inner,
  .fv__card {
    min-height: calc(26.266417vw + 491.2871px);
  }
  .fv__heading {
    left: calc(6.003752vw - 0.4184px);
    top: calc(-1.688555vw + 68.2739px);
    font-size: calc(4.502814vw + 7.9362px);
  }
  .fv__highlight {
    top: calc(5.816135vw + 14.5009px);
    width: calc(30.581614vw + 177.1501px);
    height: calc(6.003752vw + 37.5816px);
    padding-top: calc(-0.187617vw + 9.9193px);
    padding-right: calc(0.750469vw + 10.3227px);
    padding-bottom: calc(0.562852vw + 6.2420px);
    padding-left: calc(0.562852vw + 7.2420px);
  }
  .fv__highlight-text {
    font-size: calc(5.065666vw + 18.1782px);
  }
  .fv__highlight-underline {
    left: calc(0.562852vw + 7.2420px);
    bottom: 6px;
    width: calc(10.318949vw + 34.4371px);
    height: calc(0.375235vw + 2.1614px);
    margin-top: 0;
  }
  .fv__subtitle {
    margin: 0;
    left: calc(6.003752vw - 0.4184px);
    top: calc(10.318949vw + 129.4371px);
    font-size: calc(1.125704vw + 19.4841px);
    line-height: 1.2;
  }
  .fv__subtitle-break { display: none; }

  .fv__circle--period {
    left: calc(8.067542vw - 12.5310px);
    top: calc(6.941839vw + 228.9850px);
    width: calc(8.067542vw + 96.4690px);
    height: calc(8.067542vw + 96.4690px);
  }
  .fv__circle--amount {
    left: calc(18.761726vw + 78.0675px);
    top: calc(6.941839vw + 228.9850px);
    width: calc(8.067542vw + 96.4690px);
    height: calc(8.067542vw + 96.4690px);
  }
  .fv__action {
    left: calc(8.442777vw - 16.3696px);
    top: calc(18.011257vw + 330.7448px);
    width: calc(15.009381vw + 286.4540px);
    gap: 0;
  }
  .fv__action-lead {
    gap: calc(0.375235vw + 6.1614px);
    margin: 0 0 calc(0.938086vw + 2.4034px);
    line-height: normal;
    letter-spacing: normal;
    text-indent: 0;
  }
  .fv__action-lead {
    font-size: calc(0.750469vw + 10.3227px);
  }
  .fv__cta {
    min-height: calc(3.377111vw + 37.4522px);
    border-radius: calc(1.688556vw + 18.7261px);
    padding: 0;
    box-shadow: 0 calc(0.187617vw + 4.0807px) 0 var(--c-orange-shadow);
    font-size: calc(1.500938vw + 14.6454px);
    letter-spacing: normal;
  }
  .fv__note {
    min-height: calc(3.752345vw + 81.6135px);
    padding-block: calc(1.125704vw + 10.4841px);
    padding-inline: calc(3.001876vw + 9.2908px);
    font-size: calc(0.375235vw + 6.1614px);
    line-height: 1.45;
  }
}

@media (min-width: 426px) and (max-width: 599px) {
  .fv__subtitle {
    font-size: calc(2.312139vw + 14.1503px);
  }

  .fv__subtitle-break {
    display: inline;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .fv__subtitle {
    font-size: calc(2.600473vw + 4.3972px);
  }

  .fv__subtitle-break {
    display: none;
  }
}

.news {
  background-color: var(--c-white);

  padding-block: 30px 20px;
}

.news__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.news__head {
  display: none;
}

.news__list {
  width: calc(100% - 22px);
  margin-inline: auto;
}

.news__item {
  margin-bottom: 2px;
}

.news__item:last-child {
  margin-bottom: 0;
}

.news__link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news__date {

  flex: 0 0 22.5%;
  max-width: 72px;
  color: var(--c-green-mid);
  font-size: 10px;
  line-height: 17px;
  white-space: nowrap;
}

.news__title {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--c-text-ink);
  font-size: 12px;

  line-height: 21px;
}

.news__more {
  display: block;
  margin-top: 12px;
  color: var(--c-green-mid);
  font-size: 10px;
  line-height: 20px;
  text-align: right;
}

@media (min-width: 391px) and (max-width: 767px) {
  .news__date {
    font-size: clamp(10px, 2.5641vw, 13px);
    line-height: 1.7;
  }

  .news__title {
    font-size: clamp(12px, 3.0769vw, 16px);
    line-height: 1.75;
  }

  .news__more {
    font-size: clamp(10px, 2.5641vw, 13px);
    line-height: 2;
  }
}

@media (min-width: 768px) {

  .news {
    padding-block: min(4.0278vw, 58px) min(4.375vw, 63px);
  }

  .news__inner {
    display: grid;

    grid-template-columns: 21.6667% 1fr;
    max-width: var(--container-max);
    padding-inline: var(--gutter);
  }

  .news__head {
    display: block;
  }

  .news__label {
    position: relative;
    top: -1px;
    color: var(--c-green);
    font-size: clamp(10px, 1.25vw, 18px);
    font-weight: var(--fw-bold);
    line-height: 1.2222;
  }

  .news__rule {
    display: block;
    width: 18.4615%;
    height: 2px;
    background-color: var(--c-green);

    margin-top: min(1.25vw, 18px);
  }

  .news__heading {
    position: relative;
    top: -1px;
    color: var(--c-green);
    font-size: clamp(10px, 2.2222vw, 32px);
    font-weight: var(--fw-bold);
    line-height: 1.1875;

    margin-top: min(1.3889vw, 20px);
  }

  .news__list {
    width: 100%;
  }

  .news__item {

    border-bottom: 1px solid var(--c-rule);
    margin-bottom: min(1.5972vw, 23px);
    padding-bottom: min(1.5278vw, 22px);
  }

  .news__link {
    align-items: flex-start;
    gap: 0;
  }

  .news__date {
    position: relative;
    top: -1px;

    flex: 0 0 15.426%;
    max-width: none;

    margin-top: 0.2222em;
    font-size: clamp(10px, 1.25vw, 18px);
    line-height: 1.2222;
  }

  .news__title {
    color: var(--c-text);
    font-size: clamp(10px, 1.389vw, 20px);
    line-height: 1.2;
  }

  .news__more {
    position: relative;
    top: -1px;
    margin-top: min(1.6667vw, 24px);
    font-size: clamp(10px, 1.25vw, 18px);
    line-height: 1.2222;

    padding-right: 0.8333em;
  }
}

.benefit {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-mint-100);
  padding-block: calc(17 * var(--u)) calc(18.6 * var(--u));
}

.benefit__inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.benefit__badge {
  display: flex;
  align-items: center;

  justify-content: flex-start;
  width: calc(297 * var(--u));
  min-height: calc(35 * var(--u));

  margin-inline: calc(18 * var(--u)) auto;

  padding-bottom: calc(2 * var(--u));
  padding-left: calc(10.03 * var(--u));
  border-radius: calc(5 * var(--u));
  background-color: var(--c-green);
}

.benefit__badge-text {
  color: var(--c-white);
  font-size: calc(22 * var(--u));
  font-weight: var(--fw-bold);

  letter-spacing: 0.15em;
  line-height: 1.5;
  white-space: nowrap;
}

.benefit__lines {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: calc(21 * var(--u));

  row-gap: calc(18.083 * var(--u));

  margin-top: calc(34.897 * var(--u));
  padding-left: calc(27 * var(--u));
  padding-right: calc(176 * var(--u));
}

.benefit__line {
  display: flex;
  align-items: center;
}

.benefit__label {
  position: relative;
  color: var(--c-green);
  font-size: calc(19.123 * var(--u));
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  line-height: 1.5;
  white-space: nowrap;

  margin-right: -0.08em;
}

.benefit__line--amount .benefit__label {
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

.benefit__dots {
  position: absolute;
  left: calc(1.037 * var(--u));
  top: calc(-14.523 * var(--u));
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.benefit__line--amount .benefit__dots {
  left: 0;
  top: calc(-15.26 * var(--u));
}

.benefit__number {
  position: relative;
  top: calc(-8 * var(--u));
  margin-left: calc(4.364 * var(--u));
  color: var(--c-orange);
  font-size: calc(44.974 * var(--u));
  font-weight: var(--fw-bold);
  letter-spacing: -0.06em;
  line-height: 0;
  white-space: nowrap;
  transform: skewX(-8deg) scaleY(0.99);
}

.benefit__line--amount .benefit__number {
  top: calc(-1 * var(--u));
  margin-left: calc(5.02 * var(--u));
  letter-spacing: 0.06em;
}

.benefit__unit {
  font-size: calc(26.741 * var(--u));
  letter-spacing: 0.06em;
}

.benefit__conj {
  margin-left: calc(0.89 * var(--u));
  color: var(--c-green);
  font-size: calc(19.123 * var(--u));
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  line-height: 1.5;
  white-space: nowrap;
}

.benefit__note {

  margin-top: calc(23.66 * var(--u));
  margin-left: calc(27 * var(--u));
  color: var(--c-text-faint);
  font-size: calc(8 * var(--u));
  line-height: 1.4;
}

.benefit__photo {
  position: absolute;

  right: calc(-27 * var(--u));
  top: calc(-17 * var(--u));
  width: calc(216 * var(--u));
  height: calc(323 * var(--u));
  object-fit: cover;
  max-width: none;
}

@media (min-width: 768px) {
  .benefit {

    padding-block: calc(58 * var(--u)) calc(69.016 * var(--u));
  }

  .benefit__inner {
    max-width: calc(1440 * var(--u));
  }

  .benefit__badge {
    justify-content: flex-start;
    width: calc(1075 * var(--u));
    min-height: calc(95.723 * var(--u));
    margin-inline: calc(83 * var(--u)) auto;
    border-radius: calc(7.038 * var(--u));

    padding-bottom: calc(5.723 * var(--u));
    padding-left: calc(35 * var(--u));
  }

  .benefit__badge-text {
    font-size: calc(56.308 * var(--u));

    letter-spacing: 0.2em;
  }

  .benefit__lines {
    flex-wrap: nowrap;
    column-gap: calc(17 * var(--u));

    margin-top: calc(57.777 * var(--u));
    padding-left: calc(83 * var(--u));
    padding-right: 0;
  }

  .benefit__line--amount {
    position: relative;
    top: calc(1.5 * var(--u));
  }

  .benefit__label {
    font-size: calc(58 * var(--u));
  }

  .benefit__dots {
    left: calc(3 * var(--u));
    top: calc(-48 * var(--u));
  }

  .benefit__line--amount .benefit__dots {
    left: 0;
    top: calc(-49 * var(--u));
  }

  .benefit__number {
    top: calc(-12 * var(--u));
    margin-left: calc(12.02 * var(--u));
    font-size: calc(93 * var(--u));
  }

  .benefit__line--amount .benefit__number {
    top: calc(-2 * var(--u));
    margin-left: calc(6.86 * var(--u));
  }

  .benefit__unit {
    font-size: calc(48 * var(--u));
  }

  .benefit__conj {
    position: relative;
    top: calc(6 * var(--u));
    margin-left: calc(13.33 * var(--u));
    font-size: calc(48 * var(--u));
  }

  .benefit__note {

    margin-top: calc(43.5 * var(--u));
    margin-left: calc(83 * var(--u));
    font-size: calc(20 * var(--u));
  }

  .benefit__note-break {
    display: none;
  }

  .benefit__photo {
    right: auto;
    left: calc(931 * var(--u));

    top: calc(-68 * var(--u));
    width: calc(471 * var(--u));

    height: calc(707 * var(--u));
  }
}

.reason {

  background-color: var(--bg-mint-300);
  padding-block: calc(32 * var(--u));
}

.reason__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: calc(24 * var(--u));
}

.reason__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));
}

.reason__heading {
  position: relative;
  top: calc(-1 * var(--u));
  color: var(--c-green);
  font-size: calc(26 * var(--u));
  font-weight: var(--fw-bold);
  line-height: 1.4615;
  text-align: center;
}

.reason__rule {
  display: block;
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  border-radius: calc(1.5 * var(--u));
  background-color: var(--c-green);
}

.reason__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(46 * var(--u));
  margin-top: calc(15 * var(--u));
  color: var(--c-text);
  font-size: calc(14 * var(--u));
  line-height: 1.45;
  text-align: center;
}

.reason__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: calc(14 * var(--u));
  row-gap: calc(24 * var(--u));
  margin-top: calc(15 * var(--u));
}

.reason__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: calc(165 * var(--u));
  border-radius: calc(9 * var(--u));
  background-color: var(--c-white);
  padding: calc(12 * var(--u));
}

.reason__card--lawyer {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  min-height: calc(181 * var(--u));
  border-radius: calc(10 * var(--u));
  padding: 0;
}

.reason__group {
  display: flex;
  align-items: flex-start;
  width: calc(342 * var(--u));
}

.reason__body {
  width: calc(188 * var(--u));
  margin: calc(26 * var(--u)) calc(14 * var(--u)) 0 calc(12 * var(--u));
}

.reason__badge {
  position: absolute;
  top: calc(-10 * var(--u));
  right: calc(-7 * var(--u));
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(49 * var(--u));
  height: calc(49 * var(--u));
  border-radius: 50%;
  background-color: var(--c-green);
  color: var(--c-white);
  font-size: calc(20.92 * var(--u));
  font-weight: var(--fw-bold);
  line-height: 1.195;
}

.reason__card--lawyer .reason__badge {
  top: calc(-14 * var(--u));
  right: calc(-10 * var(--u));
  width: calc(64 * var(--u));
  height: calc(64 * var(--u));
  font-size: calc(20.923 * var(--u));
}

.reason__card-title {
  min-height: calc(56 * var(--u));
  color: var(--c-green);
  font-size: calc(16 * var(--u));
  font-weight: var(--fw-bold);
  line-height: 1.45;

  padding-top: calc(4.8 * var(--u));
}

.reason__card--lawyer .reason__card-title {
  font-size: calc(18 * var(--u));
  padding-top: calc(0.45 * var(--u));
}

.reason__card--staff .reason__card-title {
  font-size: calc(15 * var(--u));
  padding-top: calc(5.525 * var(--u));
}

.reason__card--lawyer .reason__card-title-lead {
  position: relative;
  top: calc(-1 * var(--u));
}

.reason__card--lawyer .reason__card-title-em {
  font-size: calc(20 * var(--u));
}

.reason__card--staff .reason__card-title-em {
  font-size: calc(16 * var(--u));
}

.reason__line {
  display: block;
  width: min(95.74%, calc(180 * var(--u)));
  height: 1px;
  margin-top: calc(6 * var(--u));
  background-color: var(--c-green);
}

.reason__profile {
  position: relative;
  top: calc(1 * var(--u));
  margin-top: calc(6 * var(--u));
  color: var(--c-text);
  white-space: nowrap;
}

.reason__role {
  font-size: calc(11 * var(--u));
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.reason__name {

  position: relative;
  top: calc(-1 * var(--u));
  margin-top: calc(-2.95 * var(--u));
  font-size: calc(20 * var(--u));
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.reason__office {
  margin-top: calc(3.03 * var(--u));
  font-size: calc(11 * var(--u));
  font-weight: var(--fw-medium);
  line-height: 1.45;
}

.reason__photo {
  flex-shrink: 0;
  width: calc(113 * var(--u));
  height: calc(144 * var(--u));
  margin: calc(17 * var(--u)) 0 0 calc(15 * var(--u));
}

.reason__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, calc(23 * var(--u)));
  width: 100%;
  margin-top: calc(12 * var(--u));
}

.reason__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason__logo-image--nhk {
  width: calc(40.667 * var(--u));
  height: calc(12 * var(--u));
}

.reason__logo-image--ntv {
  width: calc(34.667 * var(--u));
  height: calc(15.947 * var(--u));
}

.reason__logo-image--tbs {
  width: calc(31 * var(--u));
  height: calc(15 * var(--u));
}

.reason__logo-image--tvasahi {
  width: calc(46.667 * var(--u));
  height: calc(7 * var(--u));
}

.reason__logo-image--fujitv {
  width: calc(17 * var(--u));
  height: calc(17 * var(--u));
}

.reason__logo-image--yomiuri {
  width: calc(42.44 * var(--u));
  height: calc(7.633 * var(--u));
}

.reason__logo-image--mainichi {
  width: calc(44.67 * var(--u));
  height: calc(8.054 * var(--u));
}

.reason__logo-image--chugoku {
  width: calc(43 * var(--u));
  height: calc(8 * var(--u));
}

.reason__logo-image--abema {
  width: calc(35 * var(--u));
  height: calc(7 * var(--u));
}

.reason__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(78 * var(--u));
  margin-top: calc(7 * var(--u));
  border-radius: calc(5 * var(--u));
  background-color: var(--bg-gray-050);
  color: var(--c-text-gray-light);
  font-size: calc(9 * var(--u));
  font-weight: var(--fw-bold);
  line-height: 1.45;
  text-align: center;
}

.reason__staff-photo {
  display: block;
  height: calc(78 * var(--u));
  min-height: 0;
  object-fit: cover;
  object-position: 58% center;
  padding: 0;
}

.reason__wording--pc {
  display: none;
}

@media (min-width: 768px) {
  .reason {

    --profile-wall: max(calc(161 * var(--u)), calc(11.6 * max(10px, calc(13 * var(--u)))));

    background-color: var(--c-white);
    padding-block: 0 calc(64 * var(--u));
  }

  .reason__stage {
    overflow: hidden;
    background-color: var(--bg-mint-300);
    padding-block: calc(79 * var(--u));
  }

  .reason__inner {
    max-width: calc(1316 * var(--u));
    padding-inline: 0;
  }

  .reason__heading {
    top: calc(-2 * var(--u));
    font-size: calc(60 * var(--u));
    line-height: 1.2;
  }

  .reason__rule {
    width: calc(60 * var(--u));
    height: calc(5 * var(--u));
    border-radius: 0;
  }

  .reason__subtitle {

    position: relative;
    top: calc(-1 * var(--u));
    display: block;
    min-height: 0;
    margin-top: calc(34 * var(--u));
    font-size: calc(24 * var(--u));
    line-height: 1.2083;
  }

  .reason__cards {
    grid-template-columns: minmax(0, 400fr) minmax(0, 402fr) minmax(0, 402fr);
    column-gap: calc(56 * var(--u));
    row-gap: 0;
    margin-top: calc(34 * var(--u));
    padding-top: calc(30 * var(--u));
  }

  .reason__card {
    min-height: calc(326 * var(--u));
    border-radius: calc(12 * var(--u));
    padding: 0;
  }

  .reason__card--lawyer {
    grid-column: auto;
    flex-direction: column;
    justify-content: flex-start;
    min-height: calc(326 * var(--u));
    border-radius: calc(12 * var(--u));
    padding: 0;
  }

  .reason__group {
    display: block;
    width: 100%;
  }

  .reason__body {
    width: 100%;
    margin: 0;
  }

  .reason__badge,
  .reason__card--lawyer .reason__badge {
    top: calc(-27.872 * var(--u));
    right: auto;
    left: calc(-36.872 * var(--u));
    width: calc(101.872 * var(--u));
    height: calc(101.872 * var(--u));
    font-size: calc(34 * var(--u));

    line-height: 1.1812;
  }

  .reason__card-title,
  .reason__card--lawyer .reason__card-title,
  .reason__card--staff .reason__card-title {
    width: calc(312 * var(--u));
    min-height: 0;
    margin-top: calc(23 * var(--u));
    padding-top: 0;
    font-size: calc(34 * var(--u));
    line-height: calc(42 * var(--u));
  }

  .reason__card--lawyer .reason__card-title {
    margin-left: calc(75 * var(--u));
  }

  .reason__card--media .reason__card-title {
    margin-left: calc(70 * var(--u));
  }

  .reason__card--staff .reason__card-title {
    margin-left: calc(80 * var(--u));
  }

  .reason__card--lawyer .reason__card-title-em,
  .reason__card--staff .reason__card-title-em {
    font-size: inherit;
  }

  .reason__card--lawyer .reason__card-title-lead {
    top: 0;
  }

  .reason__line {
    width: calc(96 * var(--u));
    margin-top: calc(56 * var(--u));
    margin-left: calc(41 * var(--u));
  }

  .reason__profile {

    top: calc(1 * var(--u));
    max-width: var(--profile-wall);
    margin-top: calc(28 * var(--u));
    margin-left: calc(41 * var(--u));
    white-space: normal;
  }

  .reason__role {
    font-size: max(10px, calc(13 * var(--u)));
  }

  .reason__name {

    top: 0;
    margin-top: calc(-5.75 * var(--u));
    font-size: calc(25 * var(--u));
  }

  .reason__office {
    margin-top: calc(7.8 * var(--u));
    font-size: max(10px, calc(13 * var(--u)));
    text-wrap: pretty;
  }

  .reason__photo {
    --photo-left: max(calc(210 * var(--u)), calc(41 * var(--u) + var(--profile-wall) + 8 * var(--u)));
    position: absolute;
    left: var(--photo-left);
    top: calc(116 * var(--u));
    width: min(calc(140 * var(--u)), calc(360 * var(--u) - var(--photo-left)));
    height: auto;
    aspect-ratio: 140 / 179;
    margin: 0;
  }

  .reason__logos {
    grid-template-rows: repeat(3, calc(49.333 * var(--u)));
    width: calc(394.667 * var(--u));
    margin-top: calc(30 * var(--u));
    margin-left: calc(4 * var(--u));
  }

  .reason__logo-image--nhk {
    width: calc(87.207 * var(--u));
    height: calc(25.739 * var(--u));
  }

  .reason__logo-image--ntv {
    width: calc(75.747 * var(--u));
    height: calc(34.205 * var(--u));
  }

  .reason__logo-image--tbs {
    width: calc(66.493 * var(--u));
    height: calc(32.174 * var(--u));
  }

  .reason__logo-image--tvasahi {
    width: calc(100.097 * var(--u));
    height: calc(15.014 * var(--u));
  }

  .reason__logo-image--fujitv {
    width: calc(36.464 * var(--u));
    height: calc(36.464 * var(--u));
  }

  .reason__logo-image--yomiuri {
    width: calc(90.499 * var(--u));
    height: calc(16.278 * var(--u));
  }

  .reason__logo-image--mainichi {
    width: calc(95.814 * var(--u));
    height: calc(17.276 * var(--u));
  }

  .reason__logo-image--chugoku {
    width: calc(92.232 * var(--u));
    height: calc(17.159 * var(--u));
  }

  .reason__logo-image--abema {
    width: calc(93.029 * var(--u));
    height: calc(21.143 * var(--u));
  }

  .reason__placeholder {
    width: calc(312 * var(--u));
    min-height: calc(182 * var(--u));
    margin-top: calc(15 * var(--u));
    margin-left: calc(45 * var(--u));
    border-radius: calc(6 * var(--u));
    background-color: var(--bg-gray-075);
    color: var(--c-text-gray);
    padding-top: calc(3 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));
    font-weight: var(--fw-regular);
    line-height: 1.1875;
  }

  .reason__staff-photo {
    height: calc(182 * var(--u));
    min-height: 0;
    object-position: 58% center;
    padding-top: 0;
  }

  .reason__wording--sp {
    display: none;
  }

  .reason__wording--pc {
    display: inline;
  }
}

.message {
  background-color: var(--c-white);
}

.message__stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1440px;
  min-height: calc(368 * var(--u));
  margin-inline: auto;
  background-color: var(--c-white);
}

.message__photo {
  position: absolute;
  left: calc(-9.555 * var(--u));
  bottom: calc(-0.49 * var(--u));
  width: calc(196.755 * var(--u));
  height: auto;
}

.message__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: calc(34 * var(--u)) calc(24 * var(--u)) 0;
}

.message__heading {
  color: var(--c-green);
  font-size: calc(26 * var(--u));
  font-weight: var(--fw-bold);
  line-height: 1.5;
  text-align: center;
}

.message__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  margin: calc(5 * var(--u)) auto 0;
  background-color: var(--c-green);
}

.message__label {
  align-self: flex-end;
  width: calc(192 * var(--u));
  margin-top: calc(30 * var(--u));
  color: var(--c-green);
  font-size: calc(10 * var(--u));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}

.message__body {
  align-self: flex-end;
  width: calc(192 * var(--u));

  margin-top: calc(9.75 * var(--u));
  color: var(--c-text-soft);
  font-size: calc(12 * var(--u));
  line-height: 1.5;
}

.message__text + .message__text {
  margin-top: calc(18.75 * var(--u));
}

.message__text + .message__text--closing {
  margin-top: calc(18 * var(--u));
}

.message__break--pc {
  display: none;
}

@media (min-width: 768px) {

  .message__stage {
    min-height: calc(700 * var(--u));
  }

  .message__photo {
    left: calc(36 * var(--u));
    top: calc(-16 * var(--u));
    bottom: auto;
    width: calc(596 * var(--u));
  }

  .message__content {
    align-items: flex-start;
    padding: calc(126 * var(--u)) calc(24 * var(--u)) 0 calc(632 * var(--u));
  }

  .message__label {
    order: -1;
    position: relative;

    top: calc(-1 * var(--u));
    align-self: flex-start;
    width: auto;
    margin-top: 0;

    font-size: max(10px, calc(18 * var(--u)));

    line-height: calc(22 * var(--u));
  }

  .message__heading {
    position: relative;

    top: calc(-2 * var(--u));
    margin-top: calc(23 * var(--u));
    font-size: calc(50 * var(--u));

    line-height: 1.2;
    text-align: left;
  }

  .message__rule {
    width: calc(60 * var(--u));
    height: calc(5 * var(--u));
    margin: calc(10 * var(--u)) 0 0;
  }

  .message__body {
    align-self: flex-start;
    width: auto;
    margin-top: calc(44 * var(--u));
    color: var(--c-text);
    font-size: calc(24 * var(--u));
    letter-spacing: calc(1.2 * var(--u));

    line-height: 1.875;
  }

  .message__text + .message__text {
    margin-top: calc(29 * var(--u));
  }

  .message__text + .message__text--closing {
    margin-top: calc(13 * var(--u));
  }

  .message__break--pc {
    display: inline;
  }

  .message__break--sp {
    display: none;
  }
}

.worries {
  background-color: var(--bg-gray-200);

  padding-block: calc(80 * var(--u)) calc(22 * var(--u));
}

.worries__stage {
  position: relative;
  width: calc(368 * var(--u));
  min-height: calc(258.584 * var(--u));
  margin-inline: auto;
}

.worries__head {
  position: absolute;
  top: calc(-58 * var(--u));
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: calc(4 * var(--u));
}

.worries__heading {
  color: var(--c-green);
  font-size: calc(24 * var(--u));
  font-weight: var(--fw-bold);
  line-height: 1.5;
  text-align: center;
}

.worries__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.worries__balloon {
  position: absolute;
}

.worries__balloon--1 {
  top: 0;
  left: calc(23 * var(--u));
  width: calc(131 * var(--u));
  height: calc(109 * var(--u));
}

.worries__balloon--2 {
  top: 0;
  left: calc(222 * var(--u));
  width: calc(131 * var(--u));
  height: calc(105 * var(--u));
}

.worries__balloon--3 {
  top: calc(119 * var(--u));
  left: calc(237 * var(--u));
  width: calc(131 * var(--u));
  height: calc(107.819 * var(--u));
}

.worries__balloon--4 {
  top: calc(166 * var(--u));
  left: 0;
  width: calc(143.962 * var(--u));
  height: calc(91.962 * var(--u));
}

.worries__text {
  position: absolute;

  margin-top: calc(-1 * var(--u));
  color: var(--c-text);
  font-size: calc(12 * var(--u));
  font-weight: var(--fw-bold);

  line-height: 1.45;
  text-align: center;
}

.worries__text--1 {
  top: calc(27 * var(--u));
  left: calc(40 * var(--u));
  width: calc(97 * var(--u));
}

.worries__text--2 {
  top: calc(28 * var(--u));
  left: calc(251 * var(--u));
  width: calc(73 * var(--u));
}

.worries__text--3 {
  top: calc(147 * var(--u));
  left: calc(248 * var(--u));
  width: calc(109 * var(--u));
}

.worries__text--4 {
  top: calc(193 * var(--u));
  left: calc(23 * var(--u));
  width: calc(85 * var(--u));
}

.worries__squiggle {
  position: absolute;
  top: calc(122.92 * var(--u));
  left: calc(215.252 * var(--u));
  width: calc(22.579 * var(--u));
  height: calc(24.852 * var(--u));
}

.worries__person {
  position: absolute;
  top: calc(74 * var(--u));
  left: calc(108 * var(--u));
  width: calc(154 * var(--u));
  height: calc(184.584 * var(--u));
}

@media (min-width: 768px) {
  .worries {

    padding-block: calc(88 * var(--u)) calc(15.56 * var(--u));
  }

  .worries__stage {
    width: calc(1200 * var(--u));
    min-height: calc(497.44 * var(--u));
  }

  .worries__head {
    top: 0;
    gap: calc(5 * var(--u));
  }

  .worries__heading {
    position: relative;

    top: calc(-1 * var(--u));
    font-size: calc(40 * var(--u));
  }

  .worries__text {
    margin-top: 0;
  }

  .worries__balloon--1 {
    top: calc(107 * var(--u));
    left: calc(253 * var(--u));
    width: calc(205.755 * var(--u));
    height: calc(171.201 * var(--u));
  }

  .worries__balloon--2 {
    top: calc(107 * var(--u));
    left: calc(747 * var(--u));
    width: calc(205.755 * var(--u));
    height: calc(164.918 * var(--u));
  }

  .worries__balloon--3 {
    top: calc(299 * var(--u));
    left: calc(716 * var(--u));
    width: calc(205.755 * var(--u));
    height: calc(169.345 * var(--u));
  }

  .worries__balloon--4 {
    top: calc(353 * var(--u));
    left: calc(273 * var(--u));
    width: calc(226.114 * var(--u));
    height: calc(144.44 * var(--u));
  }

  .worries__text {
    font-size: calc(20 * var(--u));
  }

  .worries__text--1 {
    top: calc(148 * var(--u));
    left: calc(266 * var(--u));
    width: calc(179 * var(--u));
  }

  .worries__text--2 {
    top: calc(144 * var(--u));
    left: calc(777 * var(--u));
    width: calc(145 * var(--u));
  }

  .worries__text--3 {
    top: calc(340 * var(--u));
    left: calc(725 * var(--u));
    width: calc(188 * var(--u));
  }

  .worries__text--4 {
    top: calc(396 * var(--u));
    left: calc(297 * var(--u));
    width: calc(157 * var(--u));
  }

  .worries__squiggle {
    top: calc(236.399 * var(--u));
    left: calc(652.763 * var(--u));
    width: calc(38.121 * var(--u));
    height: calc(41.958 * var(--u));
  }

  .worries__person {
    top: calc(164 * var(--u));
    left: calc(470 * var(--u));
    width: calc(260 * var(--u));
    height: calc(311.368 * var(--u));
  }
}

.supportcenter {
  position: relative;
  background-color: var(--bg-mint-300);

  padding-block: calc(91 * var(--u)) calc(39 * var(--u));
}

.supportcenter__notch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(53.5 * var(--u));
  background-color: var(--bg-gray-200);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.supportcenter__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--u));
  width: 100%;
  max-width: calc(342 * var(--u));
  margin-inline: auto;
}

.supportcenter__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--u));
  width: 100%;
}

.supportcenter__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));
  width: 100%;
}

.supportcenter__heading {
  color: var(--c-green);
  font-size: calc(25 * var(--u));
  font-weight: var(--fw-bold);

  line-height: calc(38 * var(--u));
  text-align: center;
}

.supportcenter__accent {
  color: var(--c-orange);
}

.supportcenter__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.supportcenter__note {
  display: none;
}

.supportcenter__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--u));
  width: 100%;
}

.supportcenter__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--u));
  width: 100%;
}

.supportcenter__card-title {
  color: var(--c-green);
  font-size: calc(17 * var(--u));
  font-weight: var(--fw-bold);

  line-height: calc(26 * var(--u));
  text-align: center;
}

.supportcenter__card-text {
  color: var(--c-text);
  font-size: calc(13 * var(--u));

  line-height: calc(20 * var(--u));
  text-align: center;
}

.supportcenter__photo {
  display: none;
}

.supportcenter__steps {
  display: flex;
  align-items: flex-start;
  gap: calc(8 * var(--u));
  width: 100%;
}

.supportcenter__step {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: calc(6 * var(--u));
  min-width: 0;

  min-height: calc(57 * var(--u));
  border: calc(1 * var(--u)) solid var(--c-green);
  border-radius: calc(6 * var(--u));
  background-color: var(--c-white);

  padding: calc(10 * var(--u)) calc(5 * var(--u));
}

.supportcenter__step-num {
  display: none;
}

.supportcenter__step-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(6 * var(--u));
}

.supportcenter__step-icon {
  width: calc(18 * var(--u));
  height: calc(18 * var(--u));
}

.supportcenter__step-label {
  color: var(--c-green);
  font-size: calc(14 * var(--u));
  font-weight: var(--fw-bold);

  line-height: calc(17 * var(--u));
}

.supportcenter__step-rule {
  display: none;
}

.supportcenter__step-text {
  width: 100%;
  color: var(--c-text);

  font-size: max(9px, calc(9 * var(--u)));

  line-height: calc(11 * var(--u));
  text-align: center;
}

.supportcenter__arrow {
  display: none;
}

@media (min-width: 768px) {
  .supportcenter {

    padding-block: calc(141 * var(--u)) calc(40 * var(--u));
  }

  .supportcenter__notch {
    height: calc(91 * var(--u));
  }

  .supportcenter__inner {
    gap: calc(36 * var(--u));
    max-width: calc(1356 * var(--u));
  }

  .supportcenter__intro {
    flex-direction: row;
    align-items: center;
    gap: calc(40 * var(--u));
    width: calc(1220 * var(--u));
    min-height: calc(259 * var(--u));
  }

  .supportcenter__lead {
    flex: 0 0 auto;
    align-items: flex-start;
    gap: calc(24 * var(--u));
    width: calc(536 * var(--u));
  }

  .supportcenter__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: calc(40 * var(--u));

    line-height: calc(58 * var(--u));
    text-align: left;
  }

  .supportcenter__note {

    position: relative;
    top: calc(-1 * var(--u));
    display: block;
    color: var(--c-green);

    font-size: max(10px, calc(18 * var(--u)));
    font-weight: var(--fw-bold);

    line-height: calc(22 * var(--u));
    white-space: nowrap;
  }

  .supportcenter__card {
    display: block;
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    width: calc(652 * var(--u));
    min-height: calc(257 * var(--u));
    border-radius: calc(12 * var(--u));
    background-color: var(--c-white);
  }

  .supportcenter__card-body {
    position: absolute;
    top: calc(50 * var(--u));
    left: calc(24 * var(--u));
    align-items: flex-start;
    gap: calc(14 * var(--u));
    width: calc(406 * var(--u));
  }

  .supportcenter__card-title {

    color: var(--c-green);
    font-size: calc(32 * var(--u));

    line-height: calc(46.4 * var(--u));
    letter-spacing: 0.15em;
    text-align: left;
  }

  .supportcenter__card-text {
    font-size: calc(20 * var(--u));

    line-height: calc(35 * var(--u));
    text-align: left;
  }

  .supportcenter__photo {
    display: block;
    position: absolute;
    top: calc(-16 * var(--u));
    left: calc(411 * var(--u));
    overflow: hidden;
    width: calc(265 * var(--u));
    height: calc(288 * var(--u));
  }

  .supportcenter__photo-img {
    position: absolute;
    top: -0.17%;
    left: -4.31%;
    width: 104.28%;
    height: 144.31%;
    max-width: none;
  }

  .supportcenter__steps {
    align-items: center;
    gap: calc(14 * var(--u));
    width: calc(1200 * var(--u));
    min-height: calc(230 * var(--u));
  }

  .supportcenter__step {
    justify-content: center;
    gap: calc(12 * var(--u));
    min-height: calc(186 * var(--u));
    border-width: calc(2 * var(--u));
    border-radius: calc(10 * var(--u));
    background-color: var(--bg-gray-025);

    padding: calc(13.5 * var(--u)) calc(22 * var(--u));
  }

  .supportcenter__step-num {

    position: relative;
    top: calc(-1 * var(--u));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(56 * var(--u));
    color: var(--c-green);
    font-size: calc(44 * var(--u));
    font-weight: var(--fw-bold);

    line-height: calc(53 * var(--u));
  }

  .supportcenter__step-title {
    width: 100%;
  }

  .supportcenter__step-icon {
    display: none;
  }

  .supportcenter__step-label {
    font-size: calc(24 * var(--u));

    line-height: calc(29 * var(--u));
  }

  .supportcenter__step-rule {
    display: block;
    width: calc(72 * var(--u));
    height: calc(2 * var(--u));
    background-color: var(--c-text);
  }

  .supportcenter__step-text {
    font-size: calc(20 * var(--u));

    line-height: calc(32 * var(--u));
  }

  .supportcenter__arrow {
    display: block;
    flex: 0 0 auto;
    width: calc(15 * var(--u));
    color: var(--c-green);
    font-size: calc(44 * var(--u));
    font-weight: var(--fw-bold);
    line-height: calc(53 * var(--u));
    text-align: center;
  }
}

.support {
  background-color: var(--c-green);

  padding: calc(44 * var(--u)) calc(20 * var(--u)) calc(14 * var(--u));
}

.support__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--u));
}

.support__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));
  width: 100%;
}

.support__heading {
  color: var(--c-white);
  font-size: max(10px, calc(25 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(38 * var(--u));
  text-align: center;
}

.support__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-white);
}

.support__lead {
  width: 100%;
  color: var(--c-white);
  font-size: max(10px, calc(12 * var(--u)));
  line-height: calc(18 * var(--u));
  text-align: center;
}

.support__note {

  position: relative;
  top: calc(1 * var(--u));
  order: 4;
  width: 100%;
  color: var(--c-white);

  font-size: max(9px, calc(9 * var(--u)));
  line-height: calc(14 * var(--u));
  text-align: center;
}

.support__cards {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--u));
  width: 100%;
}

.support-card {
  width: 100%;
  border-radius: calc(12 * var(--u));
  background-color: var(--c-white);
  box-shadow: var(--shadow-float);
  padding: calc(18 * var(--u)) calc(16 * var(--u));
}

.support-card__row {
  display: flex;
  flex-direction: column;
  gap: calc(13 * var(--u));
}

.support-card__copy {
  display: contents;
}

.support-card__header {
  order: 1;
  display: flex;
  align-items: center;
  gap: calc(12 * var(--u));
}

.support-card__num {
  flex: 0 0 auto;
  width: calc(36 * var(--u));
  color: var(--c-orange);
  font-size: max(10px, calc(30 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(45 * var(--u));
}

.support-card__catch {
  flex: 1 1 0;
  min-width: 0;
  color: var(--c-orange);
  font-size: max(10px, calc(15 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(23 * var(--u));
}

.support-visual {
  order: 2;
  width: 100%;
  border-radius: calc(8 * var(--u));
  background-color: var(--bg-mint-200);
  overflow: hidden;
}

.support-visual--chat {
  background-color: var(--bg-line);
}

.support-card__title {
  order: 3;
  width: 100%;
  color: var(--c-green-accent);
  font-size: max(10px, calc(18 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(27 * var(--u));
  text-align: center;
}

.support-card__title--alt {
  color: #048866;
}

.support-card__title--brand {
  color: var(--c-green);
}

.support-card__text {
  order: 4;
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(11 * var(--u)));
  line-height: calc(17 * var(--u));
  text-align: center;
}

.support-card__divider {
  order: 5;
  display: none;
}

.support-card__benefit {
  order: 6;
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--u));
  width: 100%;
  border-radius: calc(6 * var(--u));
  background-color: var(--c-green-accent);
  padding: calc(11 * var(--u)) calc(12 * var(--u));
}

.support-card__benefit--alt {
  background-color: #048866;
}

.support-card__benefit--brand {
  background-color: var(--c-green);
}

.support-card__benefit-label {

  position: relative;
  top: calc(1 * var(--u));
  width: 100%;
  color: var(--c-white);

  font-size: max(9px, calc(9 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(14 * var(--u));
  text-align: center;
}

.support-card__benefit-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.support-card__check {
  display: none;
}

.support-card__benefit-text {
  flex: 1 1 0;
  min-width: 0;
  color: var(--c-white);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(17 * var(--u));
  text-align: center;
}

.support-cond {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(20 * var(--u)) 0 calc(11 * var(--u));
}

.support-cond__chips {
  display: flex;
  align-items: center;
  gap: calc(4 * var(--u));
}

.support-cond__chip {
  flex: 0 0 auto;
  width: calc(68 * var(--u));
  border-radius: calc(3 * var(--u));
  background-color: var(--c-green-accent);
  color: var(--c-white);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(17 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.support-cond__plus {
  flex: 0 0 auto;
  width: calc(11 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(17 * var(--u));
  text-align: center;
}

.support-cond__arrow--sp {
  width: calc(31.6241 * var(--u));
  height: calc(18.8516 * var(--u));
  margin-top: calc(13 * var(--u));
}

.support-cond__arrow--pc {
  width: calc(41.5092 * var(--u));
  height: calc(23.8965 * var(--u));
}

.support-cond__caption {
  width: 100%;
  margin-top: calc(2.148 * var(--u));
  color: var(--c-green-accent);
  font-size: max(10px, calc(18 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(27 * var(--u));
  text-align: center;
}

.support-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 * var(--u));
  padding: calc(14 * var(--u)) calc(12 * var(--u));
}

.support-timeline__label {
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(11 * var(--u)));
  line-height: calc(17 * var(--u));
  text-align: center;
}

.support-timeline__summary {
  display: flex;
  gap: calc(8 * var(--u));
}

.support-timeline__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(130 * var(--u));
  min-height: calc(51 * var(--u));
  border: calc(1 * var(--u)) solid var(--c-green-accent);
  border-radius: calc(8 * var(--u));
  background-color: var(--c-white);

  padding: calc(7 * var(--u)) calc(11 * var(--u)) calc(4 * var(--u));
}

.support-timeline__box-label {
  width: 100%;
  color: var(--c-green-accent);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(13 * var(--u));
  text-align: center;
}

.support-timeline__box-value {
  width: 100%;
  color: var(--c-green-accent);
  font-size: max(10px, calc(17 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(25 * var(--u));
  text-align: center;
  white-space: nowrap;
}

.support-timeline__steps {
  display: flex;
  align-items: center;
  gap: calc(4 * var(--u));
  width: 100%;
}

.support-timeline__step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(5 * var(--u));
  min-height: calc(108 * var(--u));
  padding: calc(8 * var(--u)) calc(3 * var(--u));
}

.support-timeline__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: calc(30 * var(--u));
  height: calc(30 * var(--u));
  border-radius: var(--r-pill);
  background-color: var(--c-green-step);
  color: var(--c-white);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(13 * var(--u));
}

.support-timeline__num--dim {
  background-color: var(--c-green-step-2);
}

.support-timeline__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(17 * var(--u));
  border-radius: calc(3 * var(--u));
  background-color: var(--c-green-step);
  color: var(--c-white);
  font-size: max(10px, calc(14 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(17 * var(--u));
  text-align: center;
}

.support-timeline__chip--dim {
  background-color: var(--c-green-step-2);
}

.support-timeline__note {
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(10 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(12 * var(--u));
  text-align: center;
}

.support-timeline__arrow {
  position: relative;
  flex: 0 0 auto;
  width: calc(11.9224 * var(--u));
  height: calc(19.9996 * var(--u));
}

.support-timeline__arrow-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(19.9996 * var(--u));
  height: calc(11.9224 * var(--u));
  max-width: none;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.support-todo {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--u));
  padding: calc(12 * var(--u)) calc(10 * var(--u));
}

.support-todo__groups {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--u));
}

.support-todo__group {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--u));
  min-height: calc(50 * var(--u));
  border: calc(1 * var(--u)) solid var(--c-green-accent);
  border-radius: calc(4 * var(--u));
  background-color: var(--c-white);

  padding: calc(9 * var(--u));
}

.support-todo__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: calc(92 * var(--u));
  min-height: calc(30 * var(--u));
  border-radius: calc(3 * var(--u));
  background-color: #038766;
  padding: calc(5 * var(--u)) calc(6 * var(--u));
  color: var(--c-white);

  font-size: max(9px, calc(9 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(13 * var(--u));
  text-align: center;
}

.support-todo__tag--b {
  background-color: var(--c-green-accent);
}

.support-todo__tag--c {
  background-color: #038b69;
}

.support-todo__items {
  flex: 1 1 0;
  min-width: 0;
  color: var(--c-text);
  font-size: max(10px, calc(10 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(15 * var(--u));
}

.support-todo__complex {
  display: flex;
  flex-direction: column;
  gap: calc(5 * var(--u));
  border-radius: calc(4 * var(--u));
  background-color: var(--c-white);
  padding: calc(11 * var(--u)) calc(10 * var(--u));
  text-align: center;
}

.support-todo__complex-label {
  width: 100%;
  color: #038b69;
  font-size: max(10px, calc(10 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(15 * var(--u));
}

.support-todo__complex-text {
  position: relative;
  top: calc(-1 * var(--u));
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(16 * var(--u));
}

.support-todo__value {
  display: flex;
  flex-direction: column;
  gap: calc(3 * var(--u));
  border-radius: calc(5 * var(--u));
  background-color: #048866;
  padding: calc(12 * var(--u)) calc(10 * var(--u));
  color: var(--c-white);
  text-align: center;
}

.support-todo__value-lead {

  position: relative;
  top: calc(-1 * var(--u));
  width: 100%;
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(16 * var(--u));
}

.support-todo__value-text {

  position: relative;
  top: calc(-1 * var(--u));
  width: 100%;
  font-size: max(10px, calc(12 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(17 * var(--u));
}

.support-todo__note {
  width: 100%;
  color: var(--c-text);

  font-size: max(8px, calc(8 * var(--u)));
  line-height: calc(12 * var(--u));
  text-align: center;
}

.support-chat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(7 * var(--u));
  padding: calc(14 * var(--u)) calc(12 * var(--u));
}

.support-chat__row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(33 * var(--u));
}

.support-chat__row--out {
  justify-content: flex-end;
}

.support-chat__row--in {
  gap: calc(5.542 * var(--u));
}

.support-chat__spacer {
  display: none;
}

.support-chat__avatar {
  flex: 0 0 auto;
  width: calc(29 * var(--u));
  height: calc(29 * var(--u));
  border-radius: var(--r-pill);
  object-fit: cover;
}

.support-chat__bubble {
  position: relative;
  align-self: flex-end;
  max-width: 100%;
  border-radius: calc(14 * var(--u));
  padding: calc(8 * var(--u)) calc(11 * var(--u));
}

.support-chat__bubble--out {
  margin-right: calc(4 * var(--u));
  background-color: var(--c-line-bubble);
}

.support-chat__bubble--in {
  background-color: var(--c-white);
}

.support-chat__text {
  color: var(--c-text);
  font-size: max(10px, calc(10 * var(--u)));
  font-weight: var(--fw-medium);

  line-height: calc(12 * var(--u));
}

.support-chat__tail {
  position: absolute;
  width: calc(8.50176 * var(--u));
  height: calc(10.5993 * var(--u));
  max-width: none;
}

.support-chat__tail--out {
  top: calc(-3.569 * var(--u));
  right: calc(-1.48 * var(--u));
  transform: rotate(-133.42deg) scaleY(-1);
}

.support-chat__tail--in {
  top: calc(-3.569 * var(--u));
  left: calc(-3.022 * var(--u));
  transform: rotate(-46.58deg);
}

@media (min-width: 768px) {
  .support {
    padding: calc(80 * var(--u)) 0;
  }

  .support__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .support__head {
    width: calc(1024 * var(--u));
  }

  .support__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));
    line-height: calc(60 * var(--u));
  }

  .support__lead {
    font-size: max(10px, calc(20 * var(--u)));
    line-height: calc(30 * var(--u));
  }

  .support__note {

    top: 0;
    order: 0;
    font-size: max(10px, calc(12 * var(--u)));
    line-height: calc(18 * var(--u));
  }

  .support__cards {
    order: 0;
    gap: calc(32 * var(--u));
  }

  .support-card {
    border-radius: calc(12 * var(--u));
    padding: calc(40 * var(--u));
  }

  .support-card__row {
    flex-direction: row;
    align-items: center;
    gap: calc(40 * var(--u));
  }

  .support-card__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(22 * var(--u));
    flex: 0 0 auto;
    width: calc(390 * var(--u));
  }

  .support-card__header {
    order: 0;
    width: 100%;
    gap: calc(16 * var(--u));
  }

  .support-card__num {

    position: relative;
    top: calc(-2 * var(--u));
    width: auto;
    font-size: max(10px, calc(48 * var(--u)));

    line-height: calc(48 * var(--u));
  }

  .support-card__catch {
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(25 * var(--u));
  }

  .support-visual {
    order: 0;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    border-radius: calc(10 * var(--u));
  }

  .support-card__title {
    order: 0;
    color: var(--c-green-accent);
    font-size: max(10px, calc(24 * var(--u)));
    line-height: calc(36 * var(--u));
    text-align: left;
  }

  .support-card__text {
    order: 0;
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
    text-align: left;
  }

  .support-card__divider {
    order: 0;
    display: block;
    width: 100%;
    height: calc(1 * var(--u));
    background-color: var(--c-text);
  }

  .support-card__benefit {
    order: 0;
    gap: 0;
    justify-content: center;
    border-radius: calc(10 * var(--u));
    background-color: var(--c-green-accent);
    padding: calc(16 * var(--u)) calc(16 * var(--u)) calc(18 * var(--u));
  }

  .support-card__benefit-row {
    gap: calc(12 * var(--u));
  }

  .support-card__check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: calc(28 * var(--u));
    height: calc(28 * var(--u));
    border-radius: var(--r-pill);
    background-color: var(--c-white);
    color: var(--c-green-accent);
    font-family: var(--font-en);
    font-size: max(10px, calc(15 * var(--u)));
    font-weight: 600;

    line-height: calc(18 * var(--u));
  }

  .support-card__benefit-text {
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(26 * var(--u));
    text-align: left;
  }

  .support-cond {
    justify-content: center;
    gap: calc(19 * var(--u));

    min-height: calc(230 * var(--u));
    padding: calc(14 * var(--u)) calc(12 * var(--u));
  }

  .support-cond__chips {
    gap: calc(4.3125 * var(--u));
  }

  .support-cond__chip {
    width: calc(94 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));
    line-height: calc(24 * var(--u));
  }

  .support-cond__plus {

    position: relative;
    top: calc(-1 * var(--u));
    width: calc(29 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));
    line-height: calc(24 * var(--u));
  }

  .support-cond__caption {

    position: relative;
    top: calc(-1 * var(--u));
    margin-top: 0;
    font-size: max(10px, calc(35 * var(--u)));
    line-height: calc(53 * var(--u));
  }

  .support-timeline {
    justify-content: center;
    gap: calc(14 * var(--u));

    height: calc(230 * var(--u));
    padding: calc(16 * var(--u));
  }

  .support-timeline__label {
    font-size: max(10px, calc(13 * var(--u)));
    line-height: calc(20 * var(--u));
  }

  .support-timeline__summary {
    gap: calc(12 * var(--u));
    width: 100%;
  }

  .support-timeline__box {
    flex: 1 1 0;
    min-width: 0;
    gap: calc(4 * var(--u));
    width: auto;
    min-height: calc(58 * var(--u));

    padding: calc(7 * var(--u)) calc(11 * var(--u)) calc(5 * var(--u));
  }

  .support-timeline__box-label {
    font-size: max(10px, calc(13 * var(--u)));
    line-height: calc(16 * var(--u));
  }

  .support-timeline__box-value {
    font-size: max(10px, calc(20 * var(--u)));
    line-height: calc(24 * var(--u));
  }

  .support-timeline__steps {
    gap: calc(10 * var(--u));
  }

  .support-timeline__chip {
    width: calc(80 * var(--u));
    min-height: calc(22 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));
    line-height: calc(19 * var(--u));
  }

  .support-timeline__note {
    font-size: max(10px, calc(12 * var(--u)));
    line-height: calc(14 * var(--u));
  }

  .support-todo {
    gap: calc(10 * var(--u));

    min-height: calc(330 * var(--u));

    padding: calc(14 * var(--u)) calc(14 * var(--u)) calc(7 * var(--u));
  }

  .support-todo__groups {
    flex-direction: row;
    gap: calc(10 * var(--u));
  }

  .support-todo__group {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(10 * var(--u));
    min-height: calc(138 * var(--u));
    border: 0;
    padding: calc(12 * var(--u));
  }

  .support-todo__tag {
    justify-content: flex-start;
    width: calc(180 * var(--u));
    min-height: calc(44 * var(--u));
    background-color: var(--c-green-accent);
    padding: calc(10 * var(--u)) calc(12 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));
    line-height: calc(23 * var(--u));
    text-align: left;
  }

  .support-todo__items {
    flex: 0 0 auto;
    width: 100%;
    font-size: max(10px, calc(14 * var(--u)));
    line-height: calc(20 * var(--u));
  }

  .support-todo__complex {
    gap: calc(5 * var(--u));

    padding: calc(8 * var(--u)) calc(10 * var(--u)) calc(1 * var(--u));
  }

  .support-todo__complex-label {
    color: #048866;
    font-size: max(10px, calc(16 * var(--u)));
    line-height: calc(23 * var(--u));
  }

  .support-todo__complex-text {

    top: 0;
    font-size: max(10px, calc(16 * var(--u)));
    line-height: calc(23 * var(--u));
  }

  .support-todo__value {
    gap: calc(3 * var(--u));
    background-color: var(--c-green-accent);

    padding: calc(8 * var(--u)) calc(10 * var(--u)) calc(7 * var(--u));
  }

  .support-todo__value-lead,
  .support-todo__value-text {

    top: 0;
    font-size: max(10px, calc(16 * var(--u)));
    line-height: calc(23 * var(--u));
  }

  .support-todo__note {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(12 * var(--u)));
    line-height: calc(17 * var(--u));
  }

  .support-chat {
    justify-content: center;
    gap: calc(7 * var(--u));
    min-height: calc(230 * var(--u));
    padding: calc(14 * var(--u)) calc(12 * var(--u));
  }

  .support-chat__row--out {
    min-height: calc(35 * var(--u));
  }

  .support-chat__row--in {
    gap: calc(5.683 * var(--u));
    min-height: calc(29.697 * var(--u));
  }

  .support-chat__spacer {
    display: block;
    flex: 0 0 auto;
    width: calc(36 * var(--u));
    height: calc(12 * var(--u));
  }

  .support-chat__bubble--out {
    margin-right: 0;
  }

  .support-chat__bubble--in {
    flex: 0 0 auto;
    width: fit-content;
    max-width: calc(426.3172 * var(--u));
    min-height: calc(29.697 * var(--u));

    padding: calc(5.348 * var(--u)) calc(11 * var(--u));
  }

  .support-chat__text {
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(19 * var(--u));
  }

  .support-chat__text--out {
    font-weight: var(--fw-regular);
  }

  .support-chat__tail--in {
    top: calc(1.781 * var(--u));
    left: calc(-3.163 * var(--u));
  }
}

.expert {
  background-color: var(--c-white);

  padding: calc(36 * var(--u)) calc(24 * var(--u)) calc(17 * var(--u));
}

.expert__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(18 * var(--u));
}

.expert__heading {
  width: 100%;
  color: var(--c-green);
  font-size: max(10px, calc(24 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(36 * var(--u));
  text-align: center;
}

.expert__lead {
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(13 * var(--u)));

  line-height: calc(20 * var(--u));
  text-align: center;
}

.expert-profile {
  display: flex;

  align-items: flex-start;
  gap: calc(16 * var(--u));
  width: 100%;
  border: calc(1 * var(--u)) solid var(--c-green);
  border-radius: calc(8 * var(--u));
  background-color: var(--c-white);

  padding: calc(15 * var(--u));
  overflow: hidden;
}

.expert-profile__photo {
  flex: 0 0 auto;
  width: calc(104 * var(--u));
  height: calc(143 * var(--u));
  object-fit: cover;
}

.expert-profile__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expert-profile__role {
  color: var(--c-text);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-medium);

  line-height: calc(16 * var(--u));
  letter-spacing: calc(1.1 * var(--u));
}

.expert-profile__name {

  margin-top: calc(-3 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(20 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(29 * var(--u));
  letter-spacing: calc(2 * var(--u));
}

.expert-profile__org {
  margin-top: calc(3 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-medium);
  line-height: calc(16 * var(--u));
}

.expert-profile__rule {

  margin-top: calc(6 * var(--u));
  width: calc(189 * var(--u));
  height: calc(1 * var(--u));
  background-color: var(--c-hairline);
}

.expert-profile__quote {
  margin-top: calc(7 * var(--u));
  width: 100%;
  color: var(--c-text);

  line-break: strict;
  text-spacing-trim: space-all;
  font-size: max(10px, calc(12 * var(--u)));

  line-height: calc(18 * var(--u));
}

@media (min-width: 768px) {
  .expert {

    padding: calc(96 * var(--u)) 0;
  }

  .expert__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .expert__heading {

    position: relative;
    top: calc(-1 * var(--u));
    width: calc(1000 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .expert__lead {
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(30 * var(--u));
  }

  .expert-profile {

    align-items: center;
    gap: calc(16 * var(--u));
    width: calc(758 * var(--u));

    border-color: var(--c-green-accent);
    padding: calc(15 * var(--u));
  }

  .expert-profile__photo {
    width: calc(164 * var(--u));
    height: calc(226 * var(--u));
  }

  .expert-profile__role {
    font-size: max(10px, calc(18 * var(--u)));
    font-weight: var(--fw-bold);

    line-height: calc(27 * var(--u));
    letter-spacing: 0;
  }

  .expert-profile__name {

    margin-top: calc(-5.672 * var(--u));
    font-size: max(10px, calc(30 * var(--u)));

    line-height: calc(45 * var(--u));
    letter-spacing: 0;
  }

  .expert-profile__org {

    margin-top: calc(2 * var(--u));
    font-size: max(10px, calc(18 * var(--u)));
    font-weight: var(--fw-bold);

    line-height: calc(30 * var(--u));
  }

  .expert-profile__quote {
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }
}

.comparison {
  background-color: var(--bg-mint-250);

  padding: calc(40 * var(--u)) calc(24 * var(--u)) calc(55 * var(--u));
}

.comparison__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(16 * var(--u));
}

.comparison__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));
}

.comparison__heading {
  color: var(--c-green);
  font-size: max(10px, calc(26 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(39 * var(--u));
  text-align: center;
}

.comparison__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.comparison__lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: calc(48 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(12 * var(--u)));
  line-height: calc(18 * var(--u));
  text-align: center;
}

.comparison__table {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: calc(340 * var(--u));
}

.compare-col {
  overflow: hidden;
  background-color: var(--c-white);
}

.compare-col--self,
.compare-col--other {
  width: calc(104 * var(--u));

  height: calc(398 * var(--u));

  margin-top: calc(14 * var(--u));
  border-radius: 0 0 calc(3 * var(--u)) calc(3 * var(--u));
}

.compare-col--ours {

  position: relative;
  z-index: 1;
  width: calc(134 * var(--u));
  height: calc(414 * var(--u));

  margin-left: calc(-2 * var(--u));

  padding: calc(5 * var(--u));
  border-radius: calc(15 * var(--u)) calc(15 * var(--u)) calc(3 * var(--u)) calc(3 * var(--u));
  background-color: var(--c-orange);
}

.compare-col__body {
  width: 100%;
}

.compare-col--ours .compare-col__body {

  width: calc(122 * var(--u));
  margin-top: calc(9 * var(--u));
  margin-left: calc(1 * var(--u));
}

.compare-col__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(70 * var(--u));
  border-top: calc(1 * var(--u)) solid var(--c-rule-gray);
  border-right: calc(1 * var(--u)) solid var(--c-rule-gray);

  padding-bottom: calc(1 * var(--u));
  background-color: var(--bg-gray-070);
  color: var(--c-text);
  font-size: max(10px, calc(12 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(18 * var(--u));
  text-align: center;
}

.compare-col__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(82 * var(--u));
  border-top: calc(1 * var(--u)) solid var(--c-rule-gray);
  border-right: calc(1 * var(--u)) solid var(--c-rule-gray);
  padding-bottom: calc(1 * var(--u));
  background-color: var(--c-white);
  color: var(--c-text);
  font-size: max(10px, calc(10.5 * var(--u)));

  line-height: calc(15.75 * var(--u));
  text-align: center;
}

.compare-col--self .compare-col__head,
.compare-col--self .compare-col__cell {
  border-left: calc(1 * var(--u)) solid var(--c-rule-gray);
}

.compare-col--self .compare-col__cell--last,
.compare-col--other .compare-col__cell--last {
  border-bottom: calc(1 * var(--u)) solid var(--c-rule-gray);
  padding-bottom: 0;
}

.compare-col--ours .compare-col__head {
  border: 0;
  padding-bottom: 0;
  background-color: transparent;
  color: var(--c-white);
  font-size: max(10px, calc(13 * var(--u)));

  line-height: calc(19.5 * var(--u));
}

.compare-col--ours .compare-col__cell {
  border-top: calc(3 * var(--u)) solid var(--c-orange);
  border-right: 0;
  border-bottom: calc(2 * var(--u)) solid var(--c-orange);

  padding-bottom: calc(1 * var(--u));
  font-size: max(10px, calc(12 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: calc(18 * var(--u));
}

.compare-col--ours .compare-col__cell--first {
  border-top: 0;
  padding-top: calc(2 * var(--u));
  padding-bottom: 0;
}

.compare-col--ours .compare-col__cell--last {
  min-height: calc(79 * var(--u));
  border-bottom: calc(1 * var(--u)) solid var(--c-orange);
  padding-bottom: calc(2 * var(--u));
}

.comparison__note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: calc(50 * var(--u));
  background-color: var(--c-green-band);
}

.comparison__note-text {
  color: var(--c-white);
  font-size: max(10px, calc(10 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(15 * var(--u));
  text-align: center;
}

@media (min-width: 768px) {
  .comparison {
    background-color: var(--bg-mint-200);

    padding: calc(85 * var(--u)) 0 calc(104.2 * var(--u));
  }

  .comparison__inner {
    gap: calc(24.8 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
    padding-inline: calc(37.2 * var(--u));
  }

  .comparison__heading {
    position: relative;

    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .comparison__lead {
    width: calc(530.1 * var(--u));

    min-height: calc(74.4 * var(--u));
    font-size: max(10px, calc(18.6 * var(--u)));

    line-height: calc(27.9 * var(--u));
  }

  .comparison__table {
    width: calc(1100 * var(--u));
  }

  .compare-col--self,
  .compare-col--other {
    position: relative;
    width: calc(358.837 * var(--u));

    min-height: calc(617 * var(--u));
    margin-top: calc(23.65 * var(--u));

    border: 0;
    border-radius: 0;
    padding-top: calc(1.55 * var(--u));
  }

  .compare-col--self::after,
  .compare-col--other::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 calc(1.55 * var(--u)) var(--c-rule-gray);
  }

  .compare-col--other {
    background-color: var(--bg-mint-350);
  }

  .compare-col--ours {
    width: calc(382.651 * var(--u));
    height: calc(654 * var(--u));
    margin-left: calc(-0.327 * var(--u));
    border-radius: calc(15 * var(--u)) calc(15 * var(--u)) 0 0;
  }

  .compare-col__body {
    width: calc(366.667 * var(--u));
    margin-left: 0;
  }

  .compare-col--ours .compare-col__body {
    width: calc(366.667 * var(--u));
    margin-top: 0;
    margin-left: calc(3.65 * var(--u));
  }

  .compare-col__head {
    min-height: calc(106.95 * var(--u));
    border: 0;
    padding-bottom: 0;
    background-color: transparent;
    font-size: max(10px, calc(18.6 * var(--u)));
    line-height: calc(27.9 * var(--u));
  }

  .compare-col__cell {
    min-height: calc(127.1 * var(--u));
    border-top: calc(0.775 * var(--u)) solid var(--c-rule-gray-dark);
    border-right: 0;
    border-bottom: calc(0.775 * var(--u)) solid var(--c-rule-gray-dark);
    padding-bottom: 0;
    font-size: max(10px, calc(16.275 * var(--u)));
    font-weight: var(--fw-regular);

    line-height: calc(24.4125 * var(--u));
  }

  .compare-col--self .compare-col__head,
  .compare-col--self .compare-col__cell {
    border-left: 0;
  }

  .compare-col--self .compare-col__cell--last,
  .compare-col--other .compare-col__cell--last {
    border-bottom: calc(0.775 * var(--u)) solid var(--c-rule-gray-dark);
  }

  .compare-col--ours .compare-col__head {

    min-height: calc(128.35 * var(--u));
    padding: calc(26.35 * var(--u)) 0 calc(5.9 * var(--u));
    font-size: max(10px, calc(18.6 * var(--u)));
    line-height: calc(27.9 * var(--u));
  }

  .compare-col--ours .compare-col__cell,
  .compare-col--ours .compare-col__cell--first,
  .compare-col--ours .compare-col__cell--last {
    min-height: calc(127.1 * var(--u));
    border: calc(0.775 * var(--u)) solid var(--c-rule-gray-dark);
    padding: 0;
    font-size: max(10px, calc(16.275 * var(--u)));
    font-weight: var(--fw-bold);
    line-height: calc(24.4125 * var(--u));
  }

  .comparison__note {
    width: calc(1100 * var(--u));
    min-height: calc(120 * var(--u));
    border: calc(1 * var(--u)) solid var(--c-white);

    padding-top: calc(9.1 * var(--u));
  }

  .comparison__note-text {
    font-size: max(10px, calc(15.5 * var(--u)));

    line-height: calc(23.25 * var(--u));
  }
}

.reason-trust {

  background-image: linear-gradient(180deg, #fefffe 0%, #f7fffb 100%);
  padding-top: calc(39.1 * var(--u));
  padding-bottom: calc(19.5 * var(--u));
}

.reason-trust__inner {
  width: calc(342 * var(--u));
  margin-inline: auto;
}

.reason-trust__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reason-trust__heading {

  position: relative;
  top: calc(-1 * var(--u));
  color: var(--c-green);
  font-size: max(10px, calc(24 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(36 * var(--u));
  text-align: center;
}

.reason-trust__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  margin-top: calc(4.6 * var(--u));
  background-color: var(--c-green);
}

.reason-trust__list {
  display: flex;
  flex-direction: column;
}

.reason-trust__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(21.8 * var(--u));
  padding-bottom: calc(30.94 * var(--u));
  text-align: center;
}

.reason-trust__item + .reason-trust__item {
  padding-top: calc(22.8 * var(--u));
  padding-bottom: calc(30.9 * var(--u));
  background-image: linear-gradient(var(--c-green), var(--c-green));
  background-repeat: no-repeat;
  background-size: 100% calc(1 * var(--u));
}

.reason-trust__badge {
  display: none;
}

.reason-trust__title {
  color: var(--c-orange);
  font-size: max(10px, calc(30 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(45 * var(--u));
}

.reason-trust__subtitle {

  position: relative;
  top: calc(-1 * var(--u));
  margin-top: calc(4.6 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(15 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(22.5 * var(--u));
}

.reason-trust__text {
  margin-top: calc(1.7 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(11 * var(--u)));

  line-height: calc(16.5 * var(--u));
}

.reason-trust__item + .reason-trust__item--media {
  padding-top: calc(23.8 * var(--u));
  padding-bottom: 0;
}

.reason-trust__item--media .reason-trust__subtitle {
  margin-top: calc(7.6 * var(--u));
}

.reason-trust__logos {
  display: grid;
  grid-template-columns: repeat(3, calc(93.5 * var(--u)));
  grid-template-rows: repeat(3, calc(35 * var(--u)));
  margin-top: calc(5.93 * var(--u));
}

.reason-trust__logo {
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.reason-trust__logo-image {

  max-width: none;
  flex-shrink: 0;
}

.reason-trust__logo-image--nhk {
  width: calc(61.57 * var(--u));
  height: calc(18.17 * var(--u));
}

.reason-trust__logo-image--ntv {
  width: calc(53.47 * var(--u));
  height: calc(24.15 * var(--u));
}

.reason-trust__logo-image--tbs {
  width: calc(46.94 * var(--u));
  height: calc(22.71 * var(--u));
}

.reason-trust__logo-image--tvasahi {
  width: calc(70.67 * var(--u));
  height: calc(10.59 * var(--u));
}

.reason-trust__logo-image--fujitv {
  width: calc(25.74 * var(--u));
  height: calc(25.74 * var(--u));
}

.reason-trust__logo-image--yomiuri {
  width: calc(63.88 * var(--u));
  height: calc(11.48 * var(--u));
}

.reason-trust__logo-image--mainichi {
  width: calc(67.64 * var(--u));
  height: calc(12.19 * var(--u));
}

.reason-trust__logo-image--chugoku {
  width: calc(65.11 * var(--u));
  height: calc(12.11 * var(--u));
}

.reason-trust__logo-image--abema {
  width: calc(65.67 * var(--u));
  height: calc(14.93 * var(--u));
}

@media (min-width: 768px) {
  .reason-trust {
    background-image: linear-gradient(180deg, #fefffe 0%, #f7fffb 100%);
    padding-top: calc(87.8 * var(--u));
    padding-bottom: calc(104 * var(--u));
  }

  .reason-trust__inner {
    width: calc(1200 * var(--u));
  }

  .reason-trust__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .reason-trust__rule {
    margin-top: calc(5.2 * var(--u));
  }

  .reason-trust__list {
    flex-direction: row;

    align-items: flex-start;

    justify-content: flex-start;
    gap: calc(24 * var(--u));
    margin-top: calc(56 * var(--u));
  }

  .reason-trust__item,
  .reason-trust__item + .reason-trust__item,
  .reason-trust__item + .reason-trust__item--media {
    position: relative;
    justify-content: flex-start;
    width: calc(276 * var(--u));
    min-height: calc(184 * var(--u));
    border-radius: calc(12 * var(--u));

    padding: calc(22.3 * var(--u)) calc(2 * var(--u)) calc(2 * var(--u));
    background-color: var(--c-white);
    background-image: none;
    box-shadow: inset 0 0 0 calc(2 * var(--u)) var(--c-green);
  }

  .reason-trust__badge {
    position: absolute;
    top: calc(-24 * var(--u));
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(48 * var(--u));
    height: calc(48 * var(--u));
    margin-left: calc(-24 * var(--u));
    border-radius: 50%;
    background-color: var(--c-green);
    color: var(--c-white);
    font-size: max(10px, calc(16 * var(--u)));
    font-weight: var(--fw-bold);
    line-height: 1;
  }

  .reason-trust__title {
    font-size: max(10px, calc(30 * var(--u)));
    line-height: calc(45 * var(--u));
  }

  .reason-trust__subtitle {

    top: 0;
    margin-top: calc(5.35 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(30 * var(--u));
  }

  .reason-trust__text {
    margin-top: calc(2.35 * var(--u));
    font-size: max(10px, calc(18 * var(--u)));

    line-height: calc(30 * var(--u));
  }

  .reason-trust__item--media .reason-trust__title,
  .reason-trust__item--media .reason-trust__subtitle {
    width: 100%;
    padding-right: calc(8 * var(--u));
  }

  .reason-trust__item--media .reason-trust__badge {
    top: calc(-25 * var(--u));
    margin-left: calc(-28 * var(--u));
  }

  .reason-trust__item + .reason-trust__item--media {
    margin-top: calc(1 * var(--u));
    min-height: calc(183 * var(--u));
  }

  .reason-trust__item--media .reason-trust__subtitle {
    margin-top: calc(5.35 * var(--u));
  }

  .reason-trust__logos {
    grid-template-columns: repeat(5, calc(52.25 * var(--u)));
    grid-template-rows: repeat(2, calc(26.5 * var(--u)));
    margin-top: calc(9.63 * var(--u));
    margin-left: auto;
    margin-right: calc(0.875 * var(--u));
  }

  .reason-trust__logo-image--nhk {
    width: calc(47.13 * var(--u));
    height: calc(13.91 * var(--u));
  }

  .reason-trust__logo-image--ntv {
    width: calc(40.93 * var(--u));
    height: calc(18.49 * var(--u));
  }

  .reason-trust__logo-image--tbs {
    width: calc(35.94 * var(--u));
    height: calc(17.39 * var(--u));
  }

  .reason-trust__logo-image--tvasahi {
    width: calc(54.108 * var(--u));
    height: calc(8.11 * var(--u));
  }

  .reason-trust__logo-image--fujitv {
    width: calc(19.7 * var(--u));
    height: calc(19.7 * var(--u));
  }

  .reason-trust__logo-image--yomiuri {
    width: calc(48.91 * var(--u));
    height: calc(8.79 * var(--u));
  }

  .reason-trust__logo-image--mainichi {
    width: calc(51.79 * var(--u));
    height: calc(9.33 * var(--u));
  }

  .reason-trust__logo-image--chugoku {
    width: calc(49.84 * var(--u));
    height: calc(9.27 * var(--u));
  }

  .reason-trust__logo-image--abema {
    width: calc(50.27 * var(--u));
    height: calc(11.43 * var(--u));
  }
}

.mid-cta {
  background-color: var(--c-green-mid);
  padding: calc(26 * var(--u)) calc(24 * var(--u));
}

.mid-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10 * var(--u));
}

.mid-cta__heading {
  width: 100%;
  color: var(--c-white);
  font-size: max(10px, calc(18 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(27 * var(--u));
  text-align: center;
}

.mid-cta__lead {
  width: 100%;
  color: var(--c-white);
  font-size: max(10px, calc(11 * var(--u)));

  line-height: calc(17 * var(--u));
  text-align: center;
}

.mid-cta__cta {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  width: calc(350 * var(--u));
  min-height: calc(54 * var(--u));
  border-radius: calc(27 * var(--u));
  background-color: var(--c-orange);
  box-shadow: 0 calc(4 * var(--u)) 0 0 var(--c-orange-shadow);
  color: var(--c-white);
  font-size: max(10px, calc(22 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: normal;
  letter-spacing: calc(1.76 * var(--u));
  white-space: nowrap;

  padding: 0 calc(55 * var(--u));

  --cta-shine-travel: calc(503.6 * var(--u));
}

.mid-cta__cta-label {
  position: relative;

  text-indent: calc(0.88 * var(--u));
}

.mid-cta__shine {
  position: absolute;
  left: calc(-136.94 * var(--u));
  top: calc(-20 * var(--u));
  width: calc(60 * var(--u));
  height: calc(108 * var(--u));
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;

  animation:
    cta-shine-move 2s linear 1.5s infinite backwards,
    cta-shine-fade 2s linear 1.5s infinite backwards;
}

@media (prefers-reduced-motion: reduce) {
  .mid-cta__shine {
    animation: none;
  }
}

@media (min-width: 768px) {
  .mid-cta {

    padding: calc(72 * var(--u)) 0 calc(71 * var(--u));
  }

  .mid-cta__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .mid-cta__heading {
    position: relative;

    top: calc(-1 * var(--u));
    width: calc(900 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(66 * var(--u));
  }

  .mid-cta__lead {
    width: calc(900 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }

  .mid-cta__cta {
    width: calc(600 * var(--u));
    min-height: calc(59 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));
    letter-spacing: calc(1.6 * var(--u));

    --cta-shine-travel: calc(753.6 * var(--u));
  }

  .mid-cta__cta-label {
    text-indent: calc(0.8 * var(--u));
  }
}

.voice {
  background-color: var(--bg-mint-150);

  padding: calc(35.4165 * var(--u)) calc(24 * var(--u)) calc(34.5835 * var(--u));
}

.voice__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(18 * var(--u));
}

.voice__head {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));

  width: calc(350 * var(--u));
}

.voice__heading {
  color: var(--c-green);
  font-size: max(10px, calc(24 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(37 * var(--u));
  text-align: center;
}

.voice__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.voice__body {
  position: relative;
  width: calc(310 * var(--u));

  min-width: calc(25.8333 * max(10px, calc(12 * var(--u))));
  max-width: 100%;
}

.voice__list {
  display: flex;

  align-items: flex-start;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  gap: calc(24 * var(--u));

  margin: calc(-16 * var(--u));
  padding: calc(16 * var(--u));

  scrollbar-width: none;
}

.voice__list::-webkit-scrollbar {
  display: none;
}

.voice__item {
  display: flex;

  flex: 0 0 100%;
  scroll-snap-align: center;
  flex-direction: column;
  align-items: center;
  gap: calc(14 * var(--u));
  overflow: hidden;
  padding: calc(16 * var(--u)) calc(16 * var(--u)) calc(18 * var(--u));
  border-radius: calc(10 * var(--u));
  background-color: var(--c-white);

  box-shadow: inset 0 0 0 calc(1 * var(--u)) var(--c-green), var(--shadow-soft);
}

.voice__profile {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: calc(14 * var(--u));

  overflow: hidden;
  width: 100%;
}

.voice__photo {
  flex-shrink: 0;
  overflow: hidden;
  width: calc(120 * var(--u));
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.voice__photo-image {
  max-width: none;
}

.voice__photo-image--01 {
  width: calc(278 * var(--u));
  height: calc(186 * var(--u));
  margin: calc(-19 * var(--u)) 0 0 calc(-56 * var(--u));
}

.voice__item--02,
.voice__item--03 {
  height: auto;
}

.voice__photo-image--02 {
	width: calc(240 * var(--u));
	height: calc(160 * var(--u));
	margin: calc(-1 * var(--u)) 0 0 calc(-60 * var(--u));
}

.voice__photo-image--03 {
  width: calc(283.6937 * var(--u));
  height: calc(189.204 * var(--u));
  margin: calc(-6 * var(--u)) 0 0 calc(-88.9997 * var(--u));
}

.voice__meta {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: calc(7 * var(--u));

  width: calc(164 * var(--u));
}

.voice__item--02 .voice__meta,
.voice__item--03 .voice__meta {
  width: calc(144 * var(--u));
}

.voice__age {
  color: var(--c-text);
  font-size: max(10px, calc(14 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(21 * var(--u));
}

.voice__reason {
  color: var(--c-text);
  font-size: max(10px, calc(10 * var(--u)));

  line-height: calc(15 * var(--u));
}

.voice__meta-rule {
  width: 100%;
  height: calc(1 * var(--u));
  background-color: var(--c-text);
}

.voice__quote {

  position: relative;
  top: calc(-1 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(16 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(1.5 * max(10px, calc(16 * var(--u))));
}

.voice__text {
  flex-shrink: 0;
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(12 * var(--u)));

  line-height: calc(1.5 * max(10px, calc(12 * var(--u))));
}

.voice__movie {
  position: relative;
  width: 100%;

  flex-shrink: 1;
  height: calc(157 * var(--u));
  min-height: 0;
  background-color: var(--bg-gray-300);
  overflow: hidden;
}

.voice__video,
.voice__embed,
.voice__embed iframe,
.voice__video-link {
  display: block;
  width: 100%;
  height: 100%;
}

.voice__video,
.voice__embed iframe {
  border: 0;
  object-fit: cover;
}

.voice__video-link {
  position: relative;
}

.voice__poster,
.voice__start {
  position: absolute;
  inset: 0;
}

.voice__poster {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__start {
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.voice__start-icon {
  position: relative;
  display: block;
  width: calc(48 * var(--u));
  height: calc(48 * var(--u));
  border: calc(1 * var(--u)) solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 calc(3 * var(--u)) calc(12 * var(--u)) rgba(0, 0, 0, 0.15);
}

.voice__start-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: calc(7 * var(--u)) solid transparent;
  border-bottom: calc(7 * var(--u)) solid transparent;
  border-left: calc(11 * var(--u)) solid #d7e5db;
  transform: translate(-42%, -50%);
}

.voice__movie--playing .voice__poster,
.voice__movie--playing .voice__start {
  display: none;
}

.voice__play {
  position: absolute;
  left: calc(116.5354 * var(--u));
  top: calc(56.4072 * var(--u));
  width: calc(44.9293 * var(--u));
  height: calc(45.1257 * var(--u));
  max-width: none;
}

.voice__arrow {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);
  width: calc(15.75 * var(--u));
  height: calc(30.3109 * var(--u));
}

.voice__arrow-icon {
  width: 100%;
  height: 100%;
}

.voice__arrow--disabled {
  opacity: 0.3;
  cursor: default;
}

.voice__arrow--prev {

  left: calc(-31 * var(--u));
}

.voice__arrow--next {

  left: calc(325.25 * var(--u));
}

@media (min-width: 768px) {
  .voice {

    padding: calc(88 * var(--u)) 0;
  }

  .voice__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .voice__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .voice__body {
    width: 100%;
  }

  .voice__list {
    flex-direction: row;
    align-items: stretch;
    gap: calc(24 * var(--u));

    overflow: hidden;

    scroll-snap-type: none;
    margin: 0;
    padding: 0;
  }

  .voice__item {

    flex: 1 1 0;
    align-items: flex-start;
    min-width: 0;
    scroll-snap-align: none;
  }

  .voice__item--02,
  .voice__item--03 {
    height: auto;
  }

  .voice__profile {

    min-height: calc(140 * var(--u));
  }

  .voice__photo {
    width: calc(140 * var(--u));

    flex-shrink: 1;
    min-width: 0;
  }

  .voice__photo-image--01 {
    width: calc(324.897 * var(--u));
    height: calc(216.624 * var(--u));
    margin: calc(-22.167 * var(--u)) 0 0 calc(-65.333 * var(--u));
  }

  .voice__photo-image--02 {
	width: calc(280 * var(--u));
	height: calc(186.667 * var(--u));
	margin: calc(-1.167 * var(--u)) 0 0 calc(-70 * var(--u));
  }

  .voice__photo-image--03 {
    width: calc(330.976 * var(--u));
    height: calc(220.738 * var(--u));
    margin: calc(-7 * var(--u)) 0 0 calc(-103.833 * var(--u));
  }

  .voice__meta {

    flex: 1 1 0;
    width: auto;

    min-width: calc(12.375 * max(10px, calc(16 * var(--u))));
  }

  .voice__item--02 .voice__meta,
  .voice__item--03 .voice__meta {
    width: auto;
  }

  .voice__age {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(24 * var(--u));
  }

  .voice__reason {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(24 * var(--u));
  }

  .voice__quote {

    position: relative;
    top: calc(-1 * var(--u));
  }

  .voice__text {
    align-self: center;
    width: calc(339 * var(--u));
    max-width: 100%;
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(1.65 * max(10px, calc(20 * var(--u))));
  }

  .voice__movie {

    align-self: center;
    width: calc(339 * var(--u));

    flex-shrink: 0;
    height: auto;
    min-height: calc(157 * var(--u));
  }

  .voice__play {
    left: calc(148 * var(--u));
    top: calc(56 * var(--u));
  }
}

.line {

  --pu: var(--u);
  background-color: var(--c-white);

  padding: calc(38 * var(--u)) calc(24 * var(--u)) calc(45.519 * var(--u));
}

.line__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(18 * var(--u));
}

.line__head {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));

  width: calc(350 * var(--u));
}

.line__heading {
  color: var(--c-green);
  font-size: max(10px, calc(26 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(1.5 * max(10px, calc(26 * var(--u))));
  text-align: center;
}

.line__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.line__lead {
  flex-shrink: 0;
  width: 100%;
  padding-block: calc(4 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(12 * var(--u)));

  line-height: calc(1.5 * max(10px, calc(12 * var(--u))));
  text-align: center;
}

.line__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(18 * var(--pu));
}

.line__item {
  position: relative;
  flex-shrink: 0;
}

.line__item--01 {
  width: calc(342 * var(--pu));
  min-height: calc(306.519 * var(--pu));
}

.line__item--02 {
  width: calc(342 * var(--pu));
  min-height: calc(317.36 * var(--pu));
}

.line__item--03 {
  width: calc(347 * var(--pu));
  min-height: calc(204 * var(--pu));
}

.line__frame {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: calc(20 * var(--pu));
}

.line__frame--01 {
  height: calc(306.519 * var(--pu));
}

.line__frame--02 {
  height: calc(317.36 * var(--pu));
}

.line__frame--03 {
  height: calc(204 * var(--pu));
}

.line__shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .line {

    padding: calc(98 * var(--u)) 0 calc(142.64 * var(--u));
  }

  .line__inner {
    gap: 0;
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .line__head {

    width: calc(497 * var(--u));
    margin-left: calc(1 * var(--u));
  }

  .line__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(1.5 * max(10px, calc(40 * var(--u))));
  }

  .line__lead {

    margin-top: calc(23 * var(--u));
    padding-block: 0;
    width: calc(496 * var(--u));
    max-width: 100%;

    min-width: calc(28.5057 * max(10px, calc(17.4 * var(--u))));
    font-size: max(10px, calc(17.4 * var(--u)));

    line-height: calc(26.1 * var(--u));
  }

  .line__list {

    margin-top: calc(80.9 * var(--u));

    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: calc(64 * var(--pu));

    margin-right: calc(1 * var(--u));
  }

}

.flow {
  background-color: var(--bg-mint-300);

  padding: calc(38 * var(--u)) calc(24 * var(--u)) calc(30 * var(--u));
}

.flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow__head {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));

  width: calc(350 * var(--u));

  padding-bottom: calc(15 * var(--u));
}

.flow__heading {
  color: var(--c-green);
  font-size: max(10px, calc(24 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(36 * var(--u));
  text-align: center;
}

.flow__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.flow__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.flow__card {
  display: flex;
  align-items: flex-start;
  gap: calc(13 * var(--u));
  overflow: hidden;
  padding: calc(18 * var(--u)) calc(14 * var(--u));
  border-radius: calc(8 * var(--u));
  background-color: var(--c-white);

  box-shadow: inset 0 0 0 calc(1 * var(--u)) var(--c-green);
}

.flow__card--goal {
  background-color: var(--c-green);
  box-shadow: none;
}

.flow__dots {
  display: block;
  width: 100%;
  color: var(--c-green);
  font-size: max(10px, calc(22 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(33 * var(--u));
  text-align: center;
}

.flow__number {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(2 * var(--u));
  width: calc(49 * var(--u));
}

.flow__step {
  display: block;
  width: calc(21 * var(--u));
  color: var(--c-green-mid);

  font-size: calc(8 * var(--u));
  font-weight: var(--fw-bold);

  line-height: calc(12 * var(--u));
  text-align: center;
}

.flow__count {

  position: relative;
  top: calc(-1 * var(--u));
  display: block;
  width: calc(34 * var(--u));
  color: var(--c-green);
  font-size: max(10px, calc(28 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(42 * var(--u));
  text-align: center;
}

.flow__card--goal .flow__step,
.flow__card--goal .flow__count {
  color: var(--c-white);
}

.flow__body {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: calc(5 * var(--u));
  overflow: hidden;
  min-width: 0;
}

.flow__title {
  color: var(--c-green);
  font-size: max(10px, calc(14 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(21 * var(--u));
}

.flow__text {
  color: var(--c-text);
  font-size: max(10px, calc(10 * var(--u)));

  line-height: calc(1.5 * max(10px, calc(10 * var(--u))));
}

.flow__card--goal .flow__title,
.flow__card--goal .flow__text {
  color: var(--c-white);
}

.flow__icon {
  flex-shrink: 0;
  width: calc(58 * var(--u));
  height: auto;
}

.flow__note {
  width: 100%;
  padding-top: calc(10 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(10 * var(--u)));

  line-height: calc(1.5 * max(10px, calc(10 * var(--u))));
  text-align: center;
}

@media (min-width: 768px) {
  .flow {

    padding: calc(96 * var(--u)) 0 calc(129 * var(--u));

    background-image: linear-gradient(var(--c-white), var(--c-white));
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% calc(33 * var(--u));
  }

  .flow__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .flow__head {
    padding-bottom: 0;
  }

  .flow__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .flow__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: calc(20 * var(--u));
  }

  .flow__item {
    grid-column: span 2;
  }

  .flow__item--wide {
    grid-column: span 3;
  }

  .flow__dots {
    display: none;
  }

  .flow__card {
    align-items: center;
    min-height: calc(164 * var(--u));
  }

  .flow__number {
    width: calc(60 * var(--u));

    min-width: calc(3.75 * max(10px, calc(16 * var(--u))));
  }

  .flow__step,
  .flow__count {

    position: relative;
    top: calc(-1 * var(--u));
    width: calc(44 * var(--u));
    min-width: calc(2.75 * max(10px, calc(16 * var(--u))));
  }

  .flow__step {
    color: var(--c-green);
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(24 * var(--u));
  }

  .flow__title {
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(24 * var(--u));
  }

  .flow__text {
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(1.5 * max(10px, calc(16 * var(--u))));
  }

  .flow__icon {
    width: calc(68 * var(--u));
  }

  .flow__icon--sm {
    width: calc(58 * var(--u));
  }

  .flow__note {
    width: calc(1000 * var(--u));
    padding-top: 0;
    font-size: max(10px, calc(12 * var(--u)));

    line-height: calc(18 * var(--u));
  }
}

.column {

  margin-top: calc(-0.98 * var(--u));

  min-height: calc(943.98 * var(--u));
  padding: calc(38 * var(--u)) calc(20 * var(--u)) 0;
  background-color: var(--bg-mint-25);
}

.column__inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: calc(18 * var(--u));
  width: 100%;
}

.column__head {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));
  width: calc(350 * var(--u));
}

.column__heading {
  color: var(--c-green);
  font-size: max(10px, calc(24 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(36 * var(--u));
  text-align: center;
}

.column__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.column__lead {
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(13 * var(--u)));

  line-height: calc(1.5384615 * max(10px, calc(13 * var(--u))));
  text-align: center;
}

.column__list {
  display: flex;
  flex-direction: column;
  gap: calc(18 * var(--u));
  width: 100%;
}

.column__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: calc(12 * var(--u));
  overflow: hidden;
  padding: calc(14 * var(--u)) calc(14 * var(--u)) calc(16 * var(--u));
  border-radius: calc(12 * var(--u));
  background-color: var(--c-white);
  box-shadow: var(--shadow-card);
}

.column__thumb {
  display: block;
  position: relative;
  width: 100%;
}

.column__photo {
  width: 100%;

  height: calc(160 * var(--u));
  border-radius: calc(8 * var(--u));
  object-fit: cover;
}

.column__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: calc(160 * var(--u));
  border-radius: calc(8 * var(--u));
  background: var(--bg-mint-150);
  color: rgba(3, 142, 107, 0.55);
  font-size: max(10px, calc(16 * var(--u)));
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
}

.column__meta {
  display: flex;
  position: absolute;
  left: 0;
  bottom: calc(12 * var(--u));
  align-items: flex-start;
  overflow: hidden;
  max-width: 100%;
  background-color: var(--c-green);
  color: var(--c-white);
  text-align: center;
}

.column__category {
  width: auto;
  min-width: max-content;
  padding-inline: calc(10 * var(--u));
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(17 * var(--u));
  white-space: nowrap;
}

.column__date {
  width: auto;
  min-width: max-content;
  padding-inline: calc(10 * var(--u));
  font-size: max(10px, calc(10 * var(--u)));

  line-height: calc(15 * var(--u));

  letter-spacing: 0.05em;

  text-indent: 0.05em;
  white-space: nowrap;
}

.column__title {
  display: block;
  width: 100%;
  color: var(--c-green);
  font-size: max(10px, calc(15 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(23 * var(--u));
}

.column__more {
  display: block;
  align-self: flex-end;
  margin-top: auto;
  color: var(--c-green);
  font-size: max(10px, calc(13 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: 1.5;
}

.column__cta {
  display: block;
  width: 100%;
  padding: calc(15 * var(--u)) calc(28 * var(--u));
  border-radius: var(--r-pill);
  background-color: var(--c-green);
  color: var(--c-white);
  font-size: max(10px, calc(14 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(21 * var(--u));
  text-align: center;

  white-space: nowrap;
}

@media (min-width: 768px) {
  .column {

    margin-top: 0;
    min-height: 0;

    padding: calc(96 * var(--u)) 0 calc(211 * var(--u));

    background-color: var(--bg-mint-50);
    background-image: linear-gradient(var(--c-white), var(--c-white));
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% calc(115 * var(--u));
  }

  .column__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .column__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .column__lead {
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }

  .column__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(24 * var(--u));
  }

  .column__list--count-1 {
    grid-template-columns: calc(384 * var(--u));
    justify-content: center;
  }

  .column__list--count-2 {
    grid-template-columns: repeat(2, calc(384 * var(--u)));
    justify-content: center;
  }

  .column__card {

    min-height: calc(292 * var(--u));
    gap: calc(12 * var(--u));
    padding: calc(16 * var(--u)) calc(16 * var(--u)) calc(18 * var(--u));

    box-shadow: inset 0 0 0 calc(1 * var(--u)) var(--c-divider), var(--shadow-card-wide);
  }

  .column__photo {
    height: calc(180 * var(--u));
  }

  .column__placeholder {
    height: calc(180 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));
  }

  .column__meta {
    bottom: calc(9 * var(--u));
    align-items: center;

    min-height: calc(24 * var(--u));
  }

  .column__meta--raised {
    bottom: calc(10 * var(--u));
  }

  .column__category {
    width: auto;
    min-width: max-content;
    padding-inline: calc(18 * var(--u));
    font-size: max(10px, calc(16 * var(--u)));

    line-height: calc(24 * var(--u));
  }

  .column__date {
    width: auto;
    min-width: max-content;
    padding-inline: calc(18 * var(--u));
    font-size: max(10px, calc(15 * var(--u)));

    line-height: calc(23 * var(--u));

    letter-spacing: 0.05em;
  }

  .column__title {
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(1.65 * max(10px, calc(20 * var(--u))));
  }

  .column__more {
    font-size: max(10px, calc(15 * var(--u)));
  }

  .column__cta {
    width: calc(256 * var(--u));
    color: var(--bg-mint-50);
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }
}

.column.column--coming-soon {
  min-height: 0;
  padding-bottom: calc(64 * var(--u));
}

.column__coming-soon {
  color: var(--c-green);
  font-size: max(18px, calc(28 * var(--u)));
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 768px) {
  .column.column--coming-soon {
    min-height: 0;
    padding-bottom: calc(100 * var(--u));
    background-image: none;
  }

  .column__coming-soon {
    font-size: max(24px, calc(36 * var(--u)));
  }
}

.faq {

  min-height: calc(675 * var(--u));
  padding: calc(38 * var(--u)) calc(34 * var(--u)) calc(27 * var(--u));
  background-color: var(--c-white);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: calc(14 * var(--u));
  width: 100%;
}

.faq__head {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));
  width: calc(350 * var(--u));
}

.faq__heading {
  color: var(--c-green);
  font-size: max(10px, calc(24 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(36 * var(--u));
  text-align: center;
}

.faq__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.faq__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(14 * var(--u));
  width: 100%;
}

.faq__item {
  overflow: hidden;
  width: 100%;
  border-radius: calc(12 * var(--u));
  background-color: var(--c-white);
  box-shadow: var(--shadow-card);
}

.faq__box {
  display: flex;
  align-items: center;
  overflow: hidden;

  height: calc(62 * var(--u));
  width: 100%;
  padding: calc(18 * var(--u));

  background-color: transparent;

  transition: height 0.32s ease;

  text-align: left;
  appearance: none;
}

.faq__item--open .faq__box {
  height: calc(58 * var(--u));
}

.faq__q {
  flex-shrink: 0;

  width: calc(11 * var(--u));

  min-width: calc(0.8461538 * max(10px, calc(13 * var(--u))));
  margin-right: calc(9 * var(--u));
  color: var(--c-green-mid);
  font-size: max(10px, calc(13 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(19.5 * var(--u));
}

.faq__question {
  display: flex;

  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  width: calc(241 * var(--u));

  min-width: calc(18.5384615 * max(10px, calc(13 * var(--u))));

  min-height: calc(41 * var(--u));
  color: var(--c-text);
  font-size: max(10px, calc(13 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(1.5 * max(10px, calc(13 * var(--u))));
}

.faq__mark {
  flex-shrink: 0;
  margin-left: calc(9 * var(--u));

  width: max(10px, calc(18 * var(--u)));
  color: var(--c-text-muted);
  font-size: max(10px, calc(18 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(22 * var(--u));
  text-align: center;

  position: relative;
  top: calc(-1 * var(--u));

  transition: color 0.32s ease;
}

.faq__mark::after {
  content: "－";
  position: absolute;
  left: 0;

  top: calc(2 * var(--u));
  width: 100%;
  height: max(10px, calc(18 * var(--u)));
  line-height: max(10px, calc(18 * var(--u)));

  overflow: hidden;
  color: var(--c-text-muted);
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.faq__item--open .faq__mark {
  color: transparent;
}

.faq__item--open .faq__mark::after {
  opacity: 1;
  transform: rotate(0deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  width: 100%;
  transition: grid-template-rows 0.32s ease, visibility 0s linear 0.32s;
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.32s ease, visibility 0s linear 0s;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__answer-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(10 * var(--u));
  padding: calc(18 * var(--u)) calc(18 * var(--u)) calc(20 * var(--u));
}

.faq__answer-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(11 * var(--u));
  left: calc(11 * var(--u));

  height: 1px;
  background-color: var(--c-hairline);
}

.faq__a {
  color: var(--c-green-mid);
  font-family: var(--font-en);
  font-size: max(10px, calc(13 * var(--u)));

  font-weight: 600;
  line-height: 1.2308;
}

.faq__answer-text {
  width: 100%;
  color: var(--c-text-strong);
  font-size: max(10px, calc(14 * var(--u)));

  line-height: calc(1.65 * max(10px, calc(14 * var(--u))));
}

@media (prefers-reduced-motion: reduce) {
  .faq__box,
  .faq__answer,
  .faq__item--open .faq__answer,
  .faq__mark,
  .faq__mark::after {
    transition: none;
  }
}

.faq__more {
  width: 100%;
  color: var(--c-green-mid);
  font-size: max(10px, calc(13 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(20 * var(--u));
  text-align: center;
}

@media (min-width: 768px) {
  .faq {
    min-height: 0;

    padding: calc(96 * var(--u)) 0 calc(94 * var(--u));
  }

  .faq__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .faq__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .faq__list {
    gap: calc(32 * var(--u));
  }

  .faq__item {

    width: calc(1000 * var(--u));
    margin-inline: auto;
  }

  .faq__box {

    height: auto;
    min-height: calc(69 * var(--u));
  }

  .faq__item--open .faq__box {
    height: auto;
  }

  .faq__q {

    width: auto;
    min-width: 0;

    margin-right: calc(20 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }

  .faq__question {

    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 0;
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(1.65 * max(10px, calc(20 * var(--u))));
  }

  .faq__mark {

    margin-left: 0;
  }

  .faq__a {
    font-size: max(10px, calc(18 * var(--u)));
  }

  .faq__answer-text {
    font-size: max(10px, calc(18 * var(--u)));

    line-height: calc(1.65 * max(10px, calc(18 * var(--u))));
  }

  .faq__more {
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }
}

.company {

  padding: calc(36 * var(--u)) calc(24 * var(--u)) calc(45 * var(--u));
  background-color: var(--bg-mint-50);

  background-image: linear-gradient(var(--c-white), var(--c-white));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% calc(9 * var(--u));
}

.company__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(14 * var(--u));
  width: 100%;
}

.company__head {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--u));
  width: calc(350 * var(--u));
}

.company__heading {
  color: var(--c-green);
  font-size: max(10px, calc(24 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(36 * var(--u));
  text-align: center;
}

.company__rule {
  width: calc(56 * var(--u));
  height: calc(3 * var(--u));
  background-color: var(--c-green);
}

.company__table {
  overflow: hidden;
  width: calc(308 * var(--u));

  min-width: calc(25.6666667 * max(10px, calc(12 * var(--u))));
  position: relative;
  background-color: var(--c-white);
}

.company__table::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 calc(1 * var(--u)) var(--c-green-mid);
  pointer-events: none;
}

.company__row {
  display: flex;

  align-items: stretch;
  overflow: hidden;
  width: 100%;
  background-color: var(--c-white);
}

.company__label {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  overflow: hidden;
  width: calc(96 * var(--u));

  min-width: calc(8.7272727 * max(10px, calc(11 * var(--u))));
  padding: calc(15 * var(--u)) calc(10 * var(--u)) calc(15 * var(--u)) calc(12 * var(--u));
  background-color: var(--c-green-mid);
  color: var(--c-white);
  font-size: max(10px, calc(11 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(17 * var(--u));
  text-align: center;

  box-shadow: inset 0 calc(-1 * var(--u)) 0 0 var(--c-white);
}

.company__value {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
  padding: calc(15 * var(--u)) calc(12 * var(--u)) calc(15 * var(--u)) calc(14 * var(--u));
  background-color: var(--c-white);

  box-shadow: inset 0 calc(-1 * var(--u)) 0 0 var(--c-green-mid);
}

.company__text {
  display: block;
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(12 * var(--u)));
  font-weight: var(--fw-medium);

  line-height: calc(18 * var(--u));
}

.company__text--multiline {
  line-height: calc(1.5 * max(10px, calc(12 * var(--u))));
}

.company__row:last-child .company__label,
.company__row:last-child .company__value {
  box-shadow: none;
}

@media (min-width: 768px) {
  .company {

    padding: calc(96 * var(--u)) 0;
    background-image: none;
  }

  .company__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .company__heading {

    position: relative;
    top: calc(-1 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(60 * var(--u));
  }

  .company__table {
    width: calc(1000 * var(--u));
    min-width: 0;
  }

  .company__label {
    width: calc(248 * var(--u));
    min-width: 0;
    font-size: max(10px, calc(20 * var(--u)));
    font-weight: var(--fw-regular);

    line-height: calc(33 * var(--u));
  }

  .company__value {
    align-items: center;
  }

  .company__text {
    width: calc(664 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));
    font-weight: var(--fw-regular);

    line-height: calc(33 * var(--u));
  }

  .company__text--multiline {

    line-height: calc(1.65 * max(10px, calc(20 * var(--u))));
  }
}

.last-cta {
  padding: calc(30 * var(--u)) calc(30 * var(--u)) calc(33 * var(--u));
  background-color: var(--c-green-mid);
}

.last-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(14 * var(--u));
  width: 100%;
}

.last-cta__heading {
  width: 100%;
  color: var(--c-white);
  font-size: max(10px, calc(23 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(1.5217391 * max(10px, calc(23 * var(--u))));
  text-align: center;
}

.last-cta__lead {
  width: 100%;
  color: var(--c-white);
  font-size: max(10px, calc(13 * var(--u)));

  line-height: calc(20 * var(--u));
  text-align: center;
}

.last-cta__cta {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  width: calc(350 * var(--u));
  min-height: calc(54 * var(--u));

  padding: 0 calc(55 * var(--u));
  border-radius: calc(27 * var(--u));
  background-color: var(--c-orange);
  box-shadow: 0 calc(4 * var(--u)) 0 0 var(--c-orange-shadow);
  color: var(--c-white);
  font-size: max(10px, calc(22 * var(--u)));
  font-weight: var(--fw-bold);
  line-height: normal;
  letter-spacing: calc(1.76 * var(--u));
  white-space: nowrap;

  --cta-shine-travel: calc(503.6 * var(--u));
}

.last-cta__cta-label {
  position: relative;

  text-indent: calc(0.88 * var(--u));
}

.last-cta__shine {
  position: absolute;
  left: calc(-136.94 * var(--u));
  top: calc(-20 * var(--u));
  width: calc(60 * var(--u));
  height: calc(108 * var(--u));
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none;

  animation:
    cta-shine-move 2s linear 1.5s infinite backwards,
    cta-shine-fade 2s linear 1.5s infinite backwards;
}

@media (prefers-reduced-motion: reduce) {
  .last-cta__shine {
    animation: none;
  }
}

@media (min-width: 768px) {
  .last-cta {

    padding: calc(80 * var(--u)) 0;
  }

  .last-cta__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .last-cta__heading {

    position: relative;
    top: calc(-1 * var(--u));
    width: calc(900 * var(--u));
    font-size: max(10px, calc(40 * var(--u)));

    line-height: calc(1.65 * max(10px, calc(40 * var(--u))));
  }

  .last-cta__lead {
    width: calc(900 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }

  .last-cta__cta {
    width: calc(600 * var(--u));
    min-height: calc(59 * var(--u));
    font-size: max(10px, calc(20 * var(--u)));
    letter-spacing: calc(1.6 * var(--u));

    --cta-shine-travel: calc(753.6 * var(--u));
  }

  .last-cta__cta-label {
    text-indent: calc(0.8 * var(--u));
  }
}

.footer {
  padding: calc(24 * var(--u));
  background-color: var(--c-white);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10 * var(--u));
  width: 100%;
}

.footer__company {
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(15 * var(--u)));
  font-weight: var(--fw-bold);

  line-height: calc(23 * var(--u));
  text-align: center;
}

.footer__links {
  width: 100%;
  color: var(--c-text);
  font-size: max(10px, calc(10 * var(--u)));

  line-height: calc(1.5 * max(10px, calc(10 * var(--u))));
  text-align: center;
}

.footer__link {
  white-space: nowrap;
}

.footer__copyright {
  width: 100%;
  color: var(--c-text-muted);
  font-size: max(10px, calc(10 * var(--u)));
  line-height: 1.5;
  text-align: center;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu-item:not(:last-child)::after,
.footer__menu > .menu-item:not(:last-child)::after {
  content: "｜";
}

@media (min-width: 768px) {
  .footer {

    padding: calc(48 * var(--u)) 0 calc(84 * var(--u));
  }

  .footer__inner {
    gap: calc(32 * var(--u));
    width: calc(1200 * var(--u));
    margin-inline: auto;
  }

  .footer__company {
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }

  .footer__links {
    font-size: max(10px, calc(20 * var(--u)));

    line-height: calc(33 * var(--u));
  }

  .footer__copyright {
    font-size: max(11px, calc(14 * var(--u)));
  }
}
