@charset "UTF-8";
/* Tailwind Breakpoints */
:root {
  font-size: 16px;
  --color-text: #333;
  --color-main: #182260;
  --color-accent:#2FB8C6;
  --color-bg1:#F5F7FB;
  --color-bg2:#E6ECFF;
}

.c-lp-heading {
  text-align: center;
  margin-bottom: 48px;
}
.c-lp-heading__title {
  font-weight: 700;
  font-size: 42px;
  color: var(--color-main);
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .c-lp-heading__title {
    font-size: clamp(2.953rem, 3.375vw, 4.219rem); /* 54px */
  }
}
.c-lp-heading__sub {
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.c-lp-heading__line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto;
}

.c-lp-heading-2 {
  text-align: center;
  margin-bottom: 48px;
}
.c-lp-heading-2__sub {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
}
.c-lp-heading-2__line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto 24px;
}
.c-lp-heading-2__title {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .c-lp-heading-2__title {
    font-size: clamp(2.297rem, 2.625vw, 3.281rem); /* 42px */
  }
}

@keyframes reveal-text {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.hero {
  position: relative;
  width: 100%;
}
.hero__bg {
  display: block;
  width: 100%;
}
.hero__bg img {
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .hero__bg img {
    min-height: 600px;
    max-height: none;
  }
}
.hero__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (min-width: 1024px) {
  .hero__copy {
    flex-direction: row;
    gap: 80px;
    padding: 0 20px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .hero__copy {
    gap: 120px;
    width: 90%;
    max-width: 1680px;
  }
}
.hero__text {
  color: #fff;
  line-height: 1.6;
  text-align: center;
  font-size: 24px;
  height: 80px;
}
@media screen and (min-width: 1024px) {
  .hero__text {
    text-align: left;
    width: clamp(23.516rem, 26.875vw, 33.594rem); /* 430px */
    height: 105px;
    font-size: clamp(1.75rem, 2vw, 2.5rem); /* 32px */
  }
}
@media screen and (min-width: 1280px) {
  .hero__text {
    font-size: clamp(2.297rem, 2.625vw, 3.281rem); /* 42px */
    width: clamp(30.625rem, 35vw, 43.75rem); /* 560px */
    height: 136px;
  }
}
.hero__text-line {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .hero__text-line {
    margin: 0;
  }
}
.hero__text-line::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform-origin: right;
  transform: scaleX(1);
}
.hero__text.is-visible .hero__text-line::before {
  animation: reveal-text 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.hero__text.is-visible .hero__text-line:nth-child(1)::before {
  animation-delay: 0s;
}
.hero__text.is-visible .hero__text-line:nth-child(2)::before {
  animation-delay: 0.2s;
}
.hero__logo {
  width: 60%;
  max-width: 250px;
  height: 80px;
  display: flex;
  align-items: center;
}
.hero__logo img {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .hero__logo {
    max-width: none;
    width: 390px;
    height: 105px;
  }
  .hero__logo img {
    width: clamp(20rem, 25vw, 32rem);
  }
}
@media screen and (min-width: 1280px) {
  .hero__logo {
    width: 504px;
    height: 136px;
  }
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .lp-header__inner {
    height: 100px;
  }
}
.lp-header__logo {
  flex-shrink: 0;
}
.lp-header__logo a {
  display: block;
}
.lp-header__logo img {
  width: 140px;
  height: auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .lp-header__logo img {
    width: 160px;
  }
}
.lp-header__nav {
  display: none;
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .lp-header__nav {
    display: flex;
    justify-content: flex-end;
  }
}
.lp-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-header__nav-link {
  font-size: clamp(0.766rem, 0.875vw, 1.094rem); /* 14px */
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.lp-header__nav-link:hover {
  color: var(--color-main);
}
.lp-header__actions {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .lp-header__actions {
    display: flex;
  }
}
.lp-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.lp-header__btn:hover {
  opacity: 0.85;
  color: #fff;
}
.lp-header__btn--contact {
  background: var(--color-main);
  color: #fff;
}
.lp-header__btn-icon {
  width: 16px;
  height: auto;
  flex-shrink: 0;
}
.lp-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .lp-header__hamburger {
    display: none;
  }
}
.lp-header__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.lp-header__hamburger.is-active .lp-header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-header__hamburger.is-active .lp-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.lp-header__hamburger.is-active .lp-header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lp-drawer {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
@media screen and (min-width: 1024px) {
  .lp-drawer {
    display: none;
  }
}
.lp-drawer.is-open {
  transform: translateX(0);
}
.lp-drawer__inner {
  padding: 32px 24px 48px;
}
.lp-drawer__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.lp-drawer__link {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}
.lp-drawer__link:hover {
  color: var(--color-main);
}
.lp-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.lp-drawer__actions .lp-header__btn {
  padding: 14px 20px;
}

.lp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lp-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pb-background {
  padding: 80px 0;
}
@media screen and (min-width: 1024px) {
  .pb-background {
    padding: 120px 0;
  }
}
.pb-background__lead {
  text-align: left;
  margin: 0 auto 60px;
}
@media screen and (min-width: 1024px) {
  .pb-background__lead {
    margin-bottom: 80px;
    text-align: center;
  }
}
.pb-background__lead p + p {
  margin-top: 1.2em;
}
.pb-background__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .pb-background__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pb-background__card {
  border: 1px solid #dce3ef;
  border-radius: 2px;
  padding: 32px 28px 36px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}
.pb-background__card-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.pb-background__card-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pb-background__card-icon img {
  width: 100%;
  height: auto;
}
.pb-background__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.4;
  padding-bottom: 10px;
  position: relative;
}
.pb-background__card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--color-accent);
}
.pb-background__card-text {
  line-height: 1.9;
  color: var(--color-text);
}

.pb-about {
  background-color: var(--color-bg1);
  position: relative;
  padding: 80px 0 100px;
}
@media screen and (min-width: 1024px) {
  .pb-about {
    padding: 100px 0 120px;
  }
}
.pb-about::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/142;
  background: url("../img/nananme- light.svg") center/100% 100% no-repeat;
  pointer-events: none;
  transform: translateY(-100%);
}
.pb-about__catch {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .pb-about__catch {
    font-size: clamp(2.297rem, 2.625vw, 3.281rem); /* 42px */
  }
}
.pb-about__catch-deco {
  text-align: center;
  margin-bottom: 60px;
}
.pb-about__catch-deco img {
  width: 100%;
  max-width: 372px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .pb-about__catch-deco {
    margin-bottom: 80px;
  }
}
.pb-about__lead {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .pb-about__lead {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.pb-about__diagram {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram {
    flex-direction: row;
    align-items: stretch;
    min-width: 760px;
  }
}
.pb-about__diagram-box {
  width: 100%;
  border-radius: 2px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-box {
    flex-shrink: 0;
    width: 280px;
    padding: 28px 24px;
  }
}
.pb-about__diagram-box--outline {
  border: 1px solid var(--color-main);
  background: #fff;
}
.pb-about__diagram-box--filled {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--color-main);
  gap: 10px;
  position: relative;
  min-height: 120px;
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-box--filled {
    width: 300px;
    min-height: unset;
  }
}
.pb-about__diagram-box--filled::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid #fff;
  border-radius: 0;
  pointer-events: none;
}
.pb-about__diagram-icon {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}
.pb-about__diagram-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 4px;
  line-height: 1.3;
}
.pb-about__diagram-box--filled .pb-about__diagram-title {
  font-size: 22px;
  color: #fff;
  margin-bottom: 0;
}
.pb-about__diagram-sub {
  color: var(--color-text);
  line-height: 1.6;
}
.pb-about__diagram-box--filled .pb-about__diagram-sub {
  color: #fff;
}
.pb-about__diagram-connector {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 12px 0;
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-connector {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 25px 12px 0;
  }
}
.pb-about__diagram-connector--single {
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-connector--single {
    justify-content: flex-start;
  }
}
.pb-about__diagram-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-arrow {
    width: 100%;
  }
}
.pb-about__diagram-arrow-label {
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
  margin-bottom: 0;
}
.pb-about__diagram-arrow-label--teal {
  color: var(--color-accent);
}
.pb-about__diagram-arrow-line {
  display: block;
  position: relative;
  width: 1px;
  height: 36px;
  background: var(--color-main);
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-arrow-line {
    width: 100%;
    height: 2px;
  }
}
.pb-about__diagram-arrow-line--right::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--color-main);
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-arrow-line--right::after {
    bottom: auto;
    left: auto;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--color-main);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: none;
  }
}
.pb-about__diagram-arrow-line--left-dotted {
  background: none;
  border-left: 1.5px dashed var(--color-accent);
}
.pb-about__diagram-arrow-line--left-dotted::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--color-accent);
}
@media screen and (min-width: 1024px) {
  .pb-about__diagram-arrow-line--left-dotted {
    border-left: none;
    border-top: 2.5px dashed var(--color-accent);
  }
  .pb-about__diagram-arrow-line--left-dotted::before {
    top: auto;
    left: -1px;
    bottom: 50%;
    transform: translateY(50%);
    border-left: none;
    border-right: 8px solid var(--color-accent);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
}

.pb-features {
  padding: 80px 0;
  background: url("../img/img01.jpg") center/cover no-repeat;
}
@media screen and (min-width: 1024px) {
  .pb-features {
    padding: 100px 0;
  }
}
.pb-features__list {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1024px) {
  .pb-features__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pb-features__item {
  padding: 40px 0;
  border-bottom: 1px solid #d0d5e0;
}
.pb-features__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  .pb-features__item {
    position: relative;
    padding: 48px 48px 48px 0;
    border-bottom: none;
  }
  .pb-features__item:not(:first-child) {
    padding-left: 48px;
  }
  .pb-features__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5%;
    width: 1px;
    height: 75%;
    background: #d0d5e0;
  }
}
.pb-features__num {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--color-main);
  line-height: 1;
  margin-bottom: 12px;
}
.pb-features__accent-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 24px;
}
.pb-features__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.5;
  margin-bottom: 16px;
}
.pb-features__text {
  line-height: 1.9;
  color: var(--color-text);
}

.pb-support {
  padding: 80px 0;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .pb-support {
    padding: 100px 0;
  }
}
.pb-support__lead {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 56px;
}
@media screen and (min-width: 1024px) {
  .pb-support__lead {
    margin-bottom: 64px;
  }
}
.pb-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .pb-support__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.pb-support__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-bg1);
  border-radius: 4px;
  padding: 25px 20px;
}
@media screen and (min-width: 1024px) {
  .pb-support__card {
    flex-direction: row;
    gap: 32px;
    padding: 40px 36px;
  }
}
.pb-support__card-icon {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .pb-support__card-icon {
    width: 96px;
  }
}
.pb-support__card-body {
  flex: 1;
  min-width: 0;
}
.pb-support__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .pb-support__card-title {
    font-size: clamp(1.203rem, 1.375vw, 1.719rem); /* 22px */
  }
}
.pb-support__card-line {
  display: block;
  width: 85px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 20px;
}
.pb-support__card-text {
  font-size: clamp(0.875rem, 1vw, 1.25rem); /* 16px */
  line-height: 1.9;
  color: var(--color-text);
}

.pb-scope {
  padding: 80px 0;
}
@media screen and (min-width: 1024px) {
  .pb-scope {
    padding: 100px 0;
  }
}
.pb-scope__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-main);
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
  line-height: 1.3;
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .pb-scope__heading {
    font-size: clamp(1.422rem, 1.625vw, 2.031rem); /* 26px */
    margin-bottom: 56px;
  }
}
.pb-scope__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .pb-scope__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.pb-scope__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 20px;
  text-align: left;
  align-items: start;
  padding: 0 12px;
}
@media screen and (min-width: 1024px) {
  .pb-scope__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 24px 48px;
  }
  .pb-scope__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 75%;
    background: #d0d5e0;
  }
}
.pb-scope__icon {
  width: 100px;
  height: auto;
  grid-row: 1/4;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .pb-scope__icon {
    width: 190px;
    grid-row: unset;
    margin-bottom: 28px;
  }
}
.pb-scope__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 16px;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  .pb-scope__title {
    font-size: clamp(1.422rem, 1.625vw, 2.031rem); /* 26px */
  }
}
.pb-scope__text {
  line-height: 1.9;
  color: var(--color-text);
}

.pb-worry {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .pb-worry {
    padding: 100px 0;
  }
}
.pb-worry__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 48px;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .pb-worry__title {
    font-size: clamp(2.188rem, 2.5vw, 3.125rem); /* 40px */
  }
}
.pb-worry__title em {
  font-style: normal;
  color: #b30000;
  font-size: 30px;
}
@media screen and (min-width: 1024px) {
  .pb-worry__title em {
    font-size: clamp(2.734rem, 3.125vw, 3.906rem); /* 50px */
  }
}
.pb-worry__box {
  background: #f2f2f2;
  padding: 36px 32px 40px;
}
@media screen and (min-width: 1024px) {
  .pb-worry__box {
    padding: 48px 60px 56px;
  }
}
.pb-worry__box-label {
  font-size: 18px;
  color: var(--color-text);
  padding-bottom: 12px;
  border-bottom: 1px solid #999;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .pb-worry__box-label {
    font-size: clamp(1.312rem, 1.5vw, 1.875rem); /* 24px */
  }
}
.pb-worry__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media screen and (min-width: 1024px) {
  .pb-worry__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
}
.pb-worry__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px dotted #999;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}
@media screen and (min-width: 1024px) {
  .pb-worry__item {
    font-size: clamp(1.203rem, 1.375vw, 1.719rem); /* 22px */
  }
}
.pb-worry__item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.terms-of-service {
  padding: 60px 0 100px;
}
@media screen and (min-width: 1024px) {
  .terms-of-service {
    padding: 80px 0 120px;
  }
}
.terms-of-service__block {
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .terms-of-service__block {
    margin-bottom: 80px;
  }
}
.terms-of-service__block p {
  margin-bottom: 1em;
  line-height: 1.9;
}
.terms-of-service__block p:last-child {
  margin-bottom: 0;
}
.terms-of-service__h2 {
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color-main);
}
.terms-of-service__h3 {
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.terms-of-service__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5em;
}
.terms-of-service__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  line-height: 1.8;
}
.terms-of-service__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-main);
}
.terms-of-service__contact {
  background: #f2f4f7;
  border-left: 4px solid var(--color-main);
  padding: 24px 28px;
  margin: 24px 0 32px;
  line-height: 2;
}
.terms-of-service__contact p {
  margin-bottom: 0.3em;
}
.terms-of-service__contact p:last-child {
  margin-bottom: 0;
}
.terms-of-service__contact-name {
  font-weight: 700;
  margin-bottom: 0.8em !important;
}
.terms-of-service__contact-icon {
  color: var(--color-main);
  margin-right: 4px;
}
.terms-of-service__sign {
  text-align: right;
  margin-top: 40px;
  line-height: 2.2;
}
.terms-of-service__sign p {
  margin-bottom: 0;
}
.terms-of-service .section-ttl {
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color-main);
}
.terms-of-service .section-ttl-en {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--color-main);
  font-family: "Arimo", sans-serif;
  letter-spacing: 0.08em;
}
.terms-of-service .text_align_right {
  text-align: right;
}
.terms-of-service .text_align_center {
  text-align: center;
}
.terms-of-service .font_bold {
  font-weight: 700;
}
.terms-of-service .ma_t_1rem {
  margin-top: 1rem;
}
.terms-of-service .ma_t_2rem {
  margin-top: 2rem;
}
.terms-of-service .ma_b_1rem {
  margin-bottom: 1rem;
}
.terms-of-service .ma_l_1rem {
  margin-left: 1rem;
}
.terms-of-service .ma_l_2rem {
  margin-left: 2rem;
}
.terms-of-service .pc-ma_l_1rem {
  margin-left: 1rem;
}
.terms-of-service p {
  line-height: 1.9;
  margin-bottom: 1em;
}
.terms-of-service p:last-child {
  margin-bottom: 0;
}
.terms-of-service h3.text_align_center {
  font-weight: 700;
  padding-bottom: 12px;
  margin: 40px 0 24px;
}
.terms-of-service .title-small-bold {
  font-weight: 700;
  padding-bottom: 12px;
  margin: 32px 0 16px;
}
.terms-of-service ol {
  margin-bottom: 1.5em;
  padding-left: 1.4em;
}
.terms-of-service ol li {
  margin-bottom: 0.5em;
  line-height: 1.8;
}
.terms-of-service ol li:last-child {
  margin-bottom: 0;
}
.terms-of-service .number-list__second {
  margin-top: 0.6em;
  padding-left: 1.2em;
}
.terms-of-service .number-list__third {
  list-style: none;
  padding-left: 0;
  margin-top: 0.6em;
}
.terms-of-service .number-list__third li {
  display: flex;
  gap: 0.6em;
}
.terms-of-service .number-list__third-span {
  min-width: 1.4em;
  color: var(--color-main);
  font-weight: 700;
}

.pb-option {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  padding: 25px 20px;
  background: var(--color-bg1);
  margin-top: 57px;
}
@media screen and (min-width: 1024px) {
  .pb-option {
    display: block;
    padding: 60px 100px;
  }
}
.pb-option .l-container--wide {
  position: relative;
  z-index: 1;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .pb-option .l-container--wide {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .pb-option__content {
    max-width: 50%;
  }
}
.pb-option__heading {
  margin-bottom: 16px;
}
.pb-option__heading-sub {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: var(--color-main);
  line-height: 1;
  margin-bottom: 8px;
}
.pb-option__heading-line {
  display: block;
  width: 85px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .pb-option__heading-line {
    height: 1px;
  }
}
.pb-option__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .pb-option__title {
    font-size: clamp(1.203rem, 1.375vw, 1.719rem); /* 22px */
  }
}
.pb-option__text {
  font-size: clamp(0.875rem, 1vw, 1.25rem); /* 16px */
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 28px;
}
.pb-option__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pb-option__tag {
  font-size: 14px;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  background: #fff;
  padding: 5px 14px;
  line-height: 1.4;
  white-space: nowrap;
}
.pb-option__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 1024px) {
  .pb-option__img {
    position: absolute;
    bottom: 0px;
    right: 100px;
    width: 40%;
    height: auto;
  }
  .pb-option__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}

.pb-cases {
  padding: 80px 0;
}
@media screen and (min-width: 1024px) {
  .pb-cases {
    padding: 100px 0;
  }
}
.pb-cases__wrapper {
  background: #fff;
  overflow: hidden;
}
.pb-cases__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .pb-cases__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pb-cases__img img {
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .pb-cases__img img {
    height: 240px;
  }
}
.pb-cases__body {
  padding: 24px 0 32px;
}
@media screen and (min-width: 1024px) {
  .pb-cases__body {
    padding: 28px 0 36px;
  }
}
.pb-cases__num {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-main);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.pb-cases__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .pb-cases__title {
    font-size: clamp(1.203rem, 1.375vw, 1.719rem); /* 22px */
  }
}
.pb-cases__dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pb-cases__dl-row {
  display: grid;
  grid-template-columns: 2.5em 1fr;
  gap: 0 16px;
  padding: 12px 0;
  border-top: 1px solid #e5e7eb;
  align-items: baseline;
}
.pb-cases__dt {
  font-size: clamp(0.875rem, 1vw, 1.25rem); /* 16px */
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.7;
}
.pb-cases__dd {
  font-size: clamp(0.875rem, 1vw, 1.25rem); /* 16px */
  line-height: 1.7;
  color: var(--color-text);
}

.pb-voice {
  padding: 80px 0;
  background: var(--color-bg1);
}
@media screen and (min-width: 1024px) {
  .pb-voice {
    padding: 100px 0;
  }
}
.pb-voice__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .pb-voice__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.pb-voice__card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px 36px;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .pb-voice__card {
    padding: 36px 32px 40px;
  }
}
.pb-voice__card::before {
  content: "";
  position: absolute;
  top: -44px;
  right: -12px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #a2a2a2;
  pointer-events: none;
  z-index: 0;
}
.pb-voice__card-category {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.pb-voice__card-title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .pb-voice__card-title {
    font-size: clamp(1.203rem, 1.375vw, 1.719rem); /* 22px */
  }
}
.pb-voice__card-text {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text);
}

.contact--psupo {
  margin-top: 0;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .contact--psupo {
    align-items: stretch;
  }
  .contact--psupo .contact__img {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 60%;
    height: auto;
    flex-shrink: 0;
  }
  .contact--psupo .contact__img::before {
    content: none;
  }
  .contact--psupo .contact__img picture {
    display: block;
    height: 100%;
  }
  .contact--psupo .contact__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contact--psupo .contact__body {
    margin-left: 0;
    flex: 1;
  }
}

.pb-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.pb-footer__main {
  padding: 48px 0;
}
@media screen and (min-width: 1024px) {
  .pb-footer__main {
    padding: 64px 0;
  }
}
.pb-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .pb-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
}
.pb-footer__left {
  flex-shrink: 0;
}
.pb-footer__logo {
  display: inline-block;
  margin-bottom: 28px;
}
.pb-footer__logo img {
  width: 160px;
  height: auto;
  display: block;
}
.pb-footer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pb-footer__info-row {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 0 12px;
  font-size: clamp(0.711rem, 0.8125vw, 1.016rem); /* 13px */
  line-height: 1.7;
}
.pb-footer__info-row dt {
  color: #888;
  white-space: nowrap;
}
.pb-footer__info-row dd {
  color: var(--color-text);
}
.pb-footer__info-row dd a {
  color: var(--color-accent);
  text-decoration: none;
}
.pb-footer__info-row dd a:hover {
  text-decoration: underline;
}
.pb-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .pb-footer__nav {
    flex-direction: row;
    gap: 48px;
  }
}
.pb-footer__nav-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pb-footer__nav-link {
  font-size: clamp(0.766rem, 0.875vw, 1.094rem); /* 14px */
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}
.pb-footer__nav-link:hover {
  color: var(--color-main);
}
.pb-footer__bottom {
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
  text-align: center;
}
.pb-footer__copyright {
  font-size: 12px;
  color: #999;
}