@charset "UTF-8";
/* General reset (modern + minimal) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 * 色の設定
 */
/*
 * ブレイクポイント（スマホ優先）
 *
 * ベースの指定は「狭い画面向け」。広い画面用は @include g.mq { ... } などで上書きする。
 *
 * 例:
 *   .block {
 *     padding: 16px;
 *     @include g.mq { padding: 24px; }
 *     @include g.mq_l { padding: 40px; }
 *   }
 *
 * 変数と mixin の対応:
 *   $breakpoint       → g.mq
 *   $breakpoint_m     → g.mq_m
 *   $breakpoint_mm    → g.mq_mm
 *   $breakpoint_l     → g.mq_l
 *   $breakpoint_design → g.mq_design
 *   $breakpoint_ll    → g.mq_ll
 *   $breakpoint_max   → g.mq_max
 */
/* 各 mixin は min-width のみ＝スマホファースト（その幅以上で @content が有効） */
/*
 * BEM関連
 */
/*
 * clearfix
 */
/* ルート：文字サイズの基準（必要なら 62.5% などに変更可） */
html {
  -webkit-text-size-adjust: 100%;
}

/* 本文の土台（reset の line-height 等は維持しつつ、サイト固有を足す） */
body {
  color: #363535;
  background-color: #FFFFFF;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

/* 通常リンク：ホバー／フォーカスで少し淡く */
a {
  transition: opacity 0.2s ease;
}

a:hover,
a:focus-visible {
  opacity: 0.72;
}

/* ナビ・ボタン見ため・カード全体リンクはフェードしない */
.l-header a:hover,
.l-header a:focus-visible,
.l-footer__cta a:hover,
.l-footer__cta a:focus-visible,
.o-cta__btn:hover,
.o-cta__btn:focus-visible,
.o-btn__link:hover,
.o-btn__link:focus-visible,
.o-parts__office-links__item:hover,
.o-parts__office-links__item:focus-visible,
.p-top__worry__box__item:hover,
.p-top__worry__box__item:focus-visible,
.p-top__support__box__item a:hover,
.p-top__support__box__item a:focus-visible,
.p-issues__content__bottom .links a:hover,
.p-issues__content__bottom .links a:focus-visible,
.o-bread_list a:hover,
.o-bread_list a:focus-visible,
.p-office__support__icons__link:hover,
.p-office__support__icons__link:focus-visible,
.p-office__recruit__link:hover,
.p-office__recruit__link:focus-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  a {
    transition: none;
  }
}
.inner__900 {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .inner__900 {
    width: 900px;
  }
}

.inner__1080 {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 1180px) {
  .inner__1080 {
    width: 1080px;
  }
}

.body-text {
  font-size: 16px;
  line-height: 26px;
  color: #363535;
}
.body-text--small {
  font-size: 14px;
  line-height: 20px;
}
.body-text--marginTop {
  margin-top: 10px;
}

.center {
  text-align: center;
}

.sp {
  display: block;
}
@media (min-width: 640px) {
  .sp {
    display: none;
  }
}

.sp-tb {
  display: block;
}
@media (min-width: 1024px) {
  .sp-tb {
    display: none;
  }
}

.tb {
  display: none;
}
@media (min-width: 640px) {
  .tb {
    display: block;
  }
}
@media (min-width: 1024px) {
  .tb {
    display: none;
  }
}

.tb-pc {
  display: none;
}
@media (min-width: 640px) {
  .tb-pc {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 1024px) {
  .pc {
    display: block;
  }
}

p {
  line-height: 25px;
}

.l-main {
  padding-top: 85px;
}
@media (min-width: 640px) {
  .l-main {
    padding-top: 95px;
  }
}

.bg_green {
  background-color: #EEFFFF;
}

.page-section {
  padding: 20px 0 60px;
}

.inline-link {
  color: #BA0A8E;
  text-decoration: underline;
}
.inline-link:hover {
  opacity: 0.72;
}

/* パンくず（シンプル・1行優先で折り返し可） */
.o-bread_list {
  padding: 10px 16px 12px;
}
@media (min-width: 640px) {
  .o-bread_list {
    padding: 12px 24px 14px;
  }
}
.o-bread_list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (min-width: 1024px) {
  .o-bread_list ul {
    font-size: 13px;
  }
}
.o-bread_list li {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: rgba(54, 53, 53, 0.78);
}
.o-bread_list li:not(:last-child)::after {
  content: "＞";
  margin: 0 0.45em;
  color: #363535;
  font-weight: 400;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.o-bread_list a {
  color: #0ABAB5;
  text-decoration: none;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.o-bread_list a:hover,
.o-bread_list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.o-bread_list li[aria-current=page] {
  color: #363535;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.o-cta {
  background-image: url(../images/cta.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 280px;
  position: relative;
  margin: 45px 0;
}
.o-cta--page {
  margin: 45px 0 0;
}
.o-cta__content {
  width: 95%;
  position: absolute;
  top: 40px;
  left: 2.5%;
  background-color: #FFFFFF;
  padding: 15px;
  border-radius: 10px;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .o-cta__content {
    width: 900px;
    left: calc(50% - 450px);
    display: flex;
    gap: 10px;
    justify-content: space-around;
    padding: 30px;
    border-radius: 20px;
    top: 75px;
  }
}
@media (min-width: 1024px) {
  .o-cta__textarea {
    padding-top: 18px;
  }
}
.o-cta__text {
  font-size: 15px;
  text-align: center;
}
.o-cta__text span {
  display: block;
}
@media (min-width: 1024px) {
  .o-cta__text span {
    display: inline-block;
  }
}
.o-cta__box {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  .o-cta__box {
    margin-top: 0;
  }
}
.o-cta__box p {
  text-align: center;
  color: #078282;
  font-weight: bold;
}
.o-cta__box a {
  display: block;
  width: 250px;
  margin: 0 auto;
  text-align: center;
  background: #BA0A8E;
  padding: 15px 0;
  border-radius: 10px;
  color: #FFFFFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.o-cta__btn {
  display: block;
  width: 250px;
  margin: 0 auto;
  text-align: center;
  background: #BA0A8E;
  color: #FFFFFF;
  padding: 15px;
  border: 1px solid #BA0A8E;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.o-cta__btn:hover, .o-cta__btn:focus-visible {
  background: #FFFFFF;
  color: #BA0A8E;
}
.o-cta__faq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 640px) {
  .o-cta__faq {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.o-cta__faq .o-cta__btn {
  margin: 0;
  width: 100%;
  max-width: 250px;
}
@media (min-width: 640px) {
  .o-cta__faq .o-cta__btn {
    width: 250px;
  }
}
.o-cta__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #363535;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
.o-cta__tel span {
  display: inline-flex;
  flex-shrink: 0;
}
.o-cta__tel img {
  display: block;
  width: 20px;
  height: 20px;
}

.o-title__h2 {
  font-size: 22px;
  font-weight: bold;
  color: #078282;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .o-title__h2 {
    font-size: 28px;
  }
}
.o-title__h2 span {
  display: block;
}
@media (min-width: 640px) {
  .o-title__h2 span {
    display: inline;
  }
}
.o-title__h2 span.basic-text {
  font-size: 16px;
  color: #363535;
}
@media (min-width: 640px) {
  .o-title__h2 span.basic-text {
    display: block;
  }
}
.o-title__h2--main {
  color: #0ABAB5;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .o-title__h2--main {
    font-size: 26px;
  }
}
.o-title__h2--page {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 10px;
}
@media (min-width: 1024px) {
  .o-title__h2--page {
    font-size: 26px;
  }
}
.o-title__h3 {
  font-size: 20px;
  font-weight: bold;
  color: #363535;
  margin-bottom: 20px;
}

.o-parts__faq__text {
  margin-bottom: 24px;
}
.o-parts__faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 0 0;
}
.o-parts__faq__item.is-open .o-parts__faq__toggle::before {
  transform: rotate(90deg);
  opacity: 0;
}
.o-parts__faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #363535;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.o-parts__faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.o-parts__faq__q-text {
  flex: 1;
  min-width: 0;
}
.o-parts__faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.o-parts__faq__toggle::before, .o-parts__faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #078282;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.o-parts__faq__toggle::before {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.o-parts__faq__toggle::after {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.o-parts__faq__answer {
  padding: 16px 16px 16px 60px;
  background: #EEFFFF;
}
.o-parts__faq__answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #363535;
}

.o-mv {
  margin: 30px 0;
  padding: 30px 0;
  position: relative;
}
.o-mv__title {
  font-size: 28px;
  color: #078282;
}
.o-mv__title span {
  display: block;
  font-size: 18px;
  color: #363535;
}
.o-mv__line {
  position: absolute;
  bottom: 15px;
  right: 0;
  width: 97%;
  height: 1px;
  background: #078282;
}

.o-btn__link {
  display: block;
  width: 180px;
  background: #078282;
  padding: 10px;
  margin: 20px 0;
  text-align: center;
  border-radius: 50px;
  color: #FFFFFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.o-btn__link:hover, .o-btn__link:focus-visible {
  opacity: 0.8;
}

/* 汎用表（項目 / 内容） */
.o-table {
  width: 100%;
  border: 1px solid #69A7DF;
  font-size: 14px;
  line-height: 1.8;
  color: #363535;
  background: #FFFFFF;
}
.o-table thead th {
  background: #FAFAFA;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}
.o-table th,
.o-table td {
  padding: 14px 16px;
  border: 1px solid #69A7DF;
  vertical-align: top;
}
@media (min-width: 640px) {
  .o-table th,
  .o-table td {
    padding: 16px 20px;
  }
}
.o-table th {
  width: 32%;
  font-weight: 700;
  background: #FAFAFA;
}
@media (min-width: 640px) {
  .o-table th {
    width: 28%;
    white-space: nowrap;
  }
}
.o-table td {
  width: auto;
}
.o-table a {
  color: #0ABAB5;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.o-table ul {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}
.o-table ul li + li {
  margin-top: 4px;
}
.o-table p {
  margin: 0;
}
.o-table p + p {
  margin-top: 0.75em;
}
.o-table .o-table__label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.o-table .o-table__note {
  display: block;
  margin-top: 0.5em;
  font-size: 13px;
}
.o-table {
  /* スマホ：1項目ずつ縦積み */
}
@media (max-width: 639px) {
  .o-table thead {
    display: none;
  }
  .o-table,
  .o-table tbody,
  .o-table tr,
  .o-table th,
  .o-table td {
    display: block;
    width: 100%;
  }
  .o-table tr {
    border-bottom: 1px solid #69A7DF;
  }
  .o-table tr:last-child {
    border-bottom: none;
  }
  .o-table th,
  .o-table td {
    border: none;
    border-bottom: 1px solid rgba(105, 167, 223, 0.35);
  }
  .o-table th {
    padding-bottom: 6px;
  }
  .o-table td {
    padding-top: 0;
    padding-bottom: 16px;
  }
}

.l-header {
  width: calc(100% - 32px);
  margin: 0 auto;
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 10;
  height: 64px;
  background-color: #FFFFFF;
  transition: 0.4s;
  border-radius: 1000px;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.15), 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}
@media (min-width: 640px) {
  .l-header {
    height: 72px;
    width: calc(100% - 64px);
  }
}
@media (min-width: 1280px) {
  .l-header {
    height: 80px;
    width: calc(100% - 80px);
  }
}
.l-header.is-open {
  top: 0;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
}
.l-header.is-open .innerBox {
  align-items: flex-start;
}
.l-header__btn {
  display: none;
}
@media (min-width: 640px) {
  .l-header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0ABAB5;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 80px;
    transition: 0.3s;
  }
  .is-open .l-header__btn {
    top: 19px;
  }
}
@media (min-width: 1280px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__content {
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.is-open .l-header__content {
  background-color: #FFFFFF;
}
@media (min-width: 1280px) {
  .l-header__content {
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.l-header__logo {
  padding: 14px 0 0px 32px;
}
@media (min-width: 640px) {
  .l-header__logo {
    padding: 15px 0 0px 32px;
  }
}
@media (min-width: 1280px) {
  .l-header__logo {
    padding: 0px 0 0 32px;
  }
}
.l-header__logo a img {
  width: 112px;
}
@media (min-width: 640px) {
  .l-header__logo a img {
    width: 136px;
  }
}
@media (min-width: 1280px) {
  .l-header__logo a img {
    width: 159px;
  }
}
.l-header__logo a:hover {
  opacity: 1;
  cursor: pointer;
}
.l-header__list {
  display: none;
  height: calc(100% - 21px);
  background-color: #0ABAB5;
  padding: 24px 16px;
  overflow-y: auto;
  position: relative;
  margin-top: 21px;
}
.is-open .l-header__list {
  display: block;
}
@media (min-width: 1280px) {
  .l-header__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background-color: transparent;
    margin-top: 0;
    flex: 1;
    padding-right: 32px;
    overflow-y: visible;
    height: auto;
    height: 100%;
  }
}
.l-header__list .parent {
  margin-bottom: 40px;
}
@media (min-width: 1280px) {
  .l-header__list .parent {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
}
.l-header__list .parent li {
  position: relative;
}
.l-header__list .parent li.is-open .parent_name:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__list .parent li.is-open .parent_name:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header__list .parent li.is-open .child {
  display: block;
  opacity: 1;
}
@media (min-width: 1024px) {
  .l-header__list .parent li.is-sp {
    display: none;
  }
}
@media (min-width: 1280px) {
  .l-header__list .parent li:not(:first-child) {
    margin-left: 80px;
  }
}
.l-header__list .parent li.contact {
  width: 144px;
  height: 40px;
  border-radius: 1000px;
  background-color: #BA0A8E;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (min-width: 1280px) {
  .l-header__list .parent li.contact {
    background-color: #BA0A8E;
    border: solid 1px #BA0A8E;
    margin-left: 40px;
  }
  .l-header__list .parent li.contact:hover {
    background-color: #FFFFFF;
  }
  .l-header__list .parent li.contact:hover a {
    color: #BA0A8E;
  }
}
.l-header__list .parent li.contact a {
  color: #FFFFFF;
  transition: 0.3s;
}
@media (min-width: 1280px) {
  .l-header__list .parent li.contact a:hover {
    cursor: pointer;
  }
  .l-header__list .parent li.contact a:hover:before {
    content: none;
  }
}
.l-header__list .parent li a {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
}
@media (min-width: 1280px) {
  .l-header__list .parent li a {
    font-size: 16px;
    color: #363535;
  }
}
.l-header__list .parent li a:hover {
  opacity: 1;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .l-header__list .parent li a:hover {
    cursor: pointer;
  }
  .l-header__list .parent li a:hover:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    border-bottom: solid 2px #363535;
    animation: border_anim 0.3s linear forwards;
  }
}
.l-header__list .parent li:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .l-header__list .parent li:not(:last-child) {
    margin-bottom: 0;
  }
}
.l-header__list .parent li .parent_name {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
}
.l-header__list .parent li .parent_name:hover {
  cursor: pointer;
}
@media (min-width: 1280px) {
  .l-header__list .parent li .parent_name {
    color: #363535;
    font-size: 16px;
  }
  .l-header__list .parent li .parent_name:before, .l-header__list .parent li .parent_name:after {
    content: "";
    position: absolute;
    top: 52%;
    right: -20px;
    width: 2px;
    height: 12px;
    background: #6E7379;
    transition: 0.3s;
  }
  .l-header__list .parent li .parent_name:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .is-open .l-header__list .parent li .parent_name:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__list .parent li .parent_name:after {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .is-open .l-header__list .parent li .parent_name:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.l-header__list .parent li .child {
  margin-top: 16px;
  display: none;
  flex-wrap: wrap;
  transition: 0.3s;
  background-color: #FFFFFF;
  gap: 8px;
  padding: 16px;
}
@media (min-width: 1280px) {
  .l-header__list .parent li .child {
    display: none;
    opacity: 0;
    margin-top: 0;
    position: absolute;
    top: 40px;
    left: 0;
    width: 200px;
    background-color: #FFFFFF;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    padding: 16px;
    border-radius: 8px;
  }
  .is-open .l-header__list .parent li .child {
    display: block;
  }
}
.l-header__list .parent li .child li {
  margin-bottom: 0px;
  width: 100%;
}
@media (min-width: 1280px) {
  .l-header__list .parent li .child li {
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media (min-width: 1280px) {
  .l-header__list .parent li .child li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.l-header__list .parent li .child li a {
  color: #363535;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0 8px 20px;
  display: block;
  border-radius: 4px;
  position: relative;
}
@media (min-width: 1280px) {
  .l-header__list .parent li .child li a {
    margin-right: 0;
    transition: 0.3s;
    text-align: center;
    padding: 8px 0;
    border: solid 1px #0ABAB5;
  }
}
.l-header__list .parent li .child li a:hover {
  color: #FFFFFF;
  background-color: #0ABAB5;
}
.l-header__list .parent li .child li a:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #0ABAB5;
  border-radius: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
}
@media (min-width: 1024px) {
  .l-header__list .parent li .child li a:before {
    content: none;
  }
}
.l-header__list__btn {
  width: 100%;
  max-width: 247px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 44px;
  background-color: #fff000;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .l-header__list__btn {
    display: none;
  }
}
.l-header__list__btn span:nth-child(1) {
  display: inline-block;
  margin-right: 8px;
}
.l-header__ham {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  margin: auto;
  right: 32px;
  z-index: 3;
}
@media (min-width: 640px) {
  .l-header__ham {
    top: 15px;
  }
}
@media (min-width: 1280px) {
  .l-header__ham {
    display: none;
  }
}
.l-header__ham span {
  width: 24px;
  height: 2px;
  background-color: #0ABAB5;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition-duration: 0.8s;
}
.l-header__ham span:nth-child(1) {
  top: 14px;
}
.l-header__ham span:nth-child(2) {
  top: 20px;
}
.l-header__ham span:nth-child(3) {
  top: 26px;
}

.active_line1 {
  transform: rotate(45deg);
  transition-duration: 1s;
  top: 23px !important;
  border-radius: 3px;
  right: -16px !important;
}

.active_line2 {
  opacity: 0;
}

.active_line3 {
  transform: rotate(135deg);
  top: 23px !important;
  right: -1px;
  border-radius: 3px;
  right: -16px !important;
}

.l-footer {
  background: #0ABAB5;
  padding: 20px 0 65px;
}
@media (min-width: 1024px) {
  .l-footer {
    padding: 30px 0 10px;
  }
}
@media (min-width: 1024px) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .l-footer__left {
    width: calc((100% - 20px) / 2);
  }
}
.l-footer__logo {
  width: 120px;
}
@media (min-width: 1024px) {
  .l-footer__logo {
    width: 180px;
  }
}
.l-footer__add {
  margin-top: 10px;
}
.l-footer__add p {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 18px;
}
@media (min-width: 1024px) {
  .l-footer__add p {
    font-size: 14px;
    line-height: 23px;
  }
}
.l-footer__list {
  margin-top: 20px;
  border-top: solid 1px #FFFFFF;
}
@media (min-width: 1024px) {
  .l-footer__list {
    width: calc((100% - 20px) / 2);
    border-top: none;
    margin-top: 0;
    display: flex;
    gap: 10px;
  }
}
.l-footer__list ul {
  padding-left: 0;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .l-footer__list ul {
    width: calc((100% - 10px) / 2);
  }
}
.l-footer__list ul li {
  font-size: 14px;
  color: #FFFFFF;
}
.l-footer__list ul li a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 25px;
}
.l-footer__list ul.has-child {
  margin-top: 5px;
  padding-left: 10px;
}
@media (min-width: 1024px) {
  .l-footer__list ul.has-child {
    width: 100%;
  }
}
.l-footer__copyright {
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  margin-top: 20px;
}
.l-footer__cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__cta a {
  display: block;
  width: 50%;
  padding: 15px 0;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
}
.l-footer__cta__tel {
  background-color: #078282;
}
.l-footer__cta__contact {
  background-color: #BA0A8E;
}
@media (min-width: 640px) {
  .l-footer__cta {
    display: none;
  }
}

.p-top__hero {
  margin-bottom: 150px;
  position: relative;
}
@media (min-width: 640px) {
  .p-top__hero {
    padding-top: 20px;
  }
}
@media (min-width: 1024px) {
  .p-top__hero {
    margin-bottom: 120px;
  }
}
.p-top__hero__visual {
  background-image: url(../images/top/kv.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 50px;
  border-radius: 30px;
}
.p-top__hero__content {
  padding-top: 90px;
}
@media (min-width: 640px) {
  .p-top__hero__content {
    padding-top: 110px;
  }
}
.p-top__hero__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
@media (min-width: 640px) {
  .p-top__hero__title {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__title {
    font-size: 38px;
  }
}
@media (min-width: 640px) {
  .p-top__hero__title__main {
    display: block;
  }
}
@media (min-width: 640px) {
  .p-top__hero__title__sub {
    display: none;
  }
}
.p-top__hero__lead {
  background-color: #0ABAB5;
  color: #FFFFFF;
  width: 90%;
  margin: 10px auto;
  padding: 5px 10px;
  text-align: center;
}
@media (min-width: 640px) {
  .p-top__hero__lead {
    margin: 20px auto;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__lead {
    font-size: 20px;
    width: 600px;
  }
}
.p-top__hero__lead span {
  display: block;
}
@media (min-width: 640px) {
  .p-top__hero__lead span {
    display: inline-block;
  }
}
.p-top__hero__brand {
  position: relative;
  height: 195px;
  margin-bottom: 90px;
}
@media (min-width: 640px) {
  .p-top__hero__brand {
    height: 280px;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__brand {
    width: 900px;
    margin: 0 auto 90px;
  }
}
.p-top__hero__logo {
  width: 35%;
  position: absolute;
  left: 30%;
  top: 0;
}
.p-top__hero__logo img {
  width: 100%;
}
@media (min-width: 640px) {
  .p-top__hero__logo {
    top: 40%;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__logo {
    width: 350px;
    left: 245px;
    top: 10px;
  }
}
@media (min-width: 1180px) {
  .p-top__hero__logo {
    width: 280px;
    left: 280px;
  }
}
.p-top__hero__char {
  width: 130px;
}
@media (min-width: 640px) {
  .p-top__hero__char {
    width: 180px;
  }
}
@media (min-width: 1180px) {
  .p-top__hero__char {
    width: 220px;
  }
}
.p-top__hero__char--left {
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 640px) {
  .p-top__hero__char--left {
    left: 25px;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__char--left {
    left: 55px;
  }
}
.p-top__hero__char--right {
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 640px) {
  .p-top__hero__char--right {
    right: 45px;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__char--right {
    right: 55px;
  }
}
.p-top__hero__cta {
  width: 90%;
  background: #FFFFFF;
  position: absolute;
  bottom: -120px;
  left: 5%;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 640px) {
  .p-top__hero__cta {
    bottom: -110px;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__cta {
    width: 900px;
    left: calc(50% - 450px);
    display: flex;
    gap: 10px;
    justify-content: space-around;
    padding: 30px;
    border-radius: 20px;
    bottom: -80px;
  }
}
.p-top__hero__cta__text {
  font-size: 14px;
}
@media (min-width: 640px) {
  .p-top__hero__cta__text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .p-top__hero__cta__text {
    margin: 0 0 0 0;
    padding-top: 18px;
  }
}
.p-top__hero__cta__note {
  font-size: 14px;
  text-align: center;
  color: #078282;
  font-weight: bold;
}
.p-top__hero__cta__btn {
  display: block;
  width: 250px;
  margin: 0 auto;
  text-align: center;
  background: #BA0A8E;
  color: #FFFFFF;
  padding: 15px;
  border: 1px solid #BA0A8E;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.p-top__hero__cta__btn:hover, .p-top__hero__cta__btn:focus-visible {
  background: #FFFFFF;
  color: #BA0A8E;
}
.p-top__strength {
  padding: 35px 0 80px;
}
.p-top__strength__inner {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-top__strength__inner {
    margin-bottom: 80px;
  }
}
.p-top__strength__btn {
  margin-top: 24px;
}
.p-top__strength__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .p-top__strength__box {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}
@media (min-width: 1024px) {
  .p-top__strength__box {
    gap: 30px 20px;
  }
}
.p-top__strength__box__item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  background-color: #F5FFFF;
}
.p-top__strength__box__media {
  margin: 0;
  flex-shrink: 0;
  width: 38%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.p-top__strength__box__media img {
  flex: 1 1 0;
  width: 100%;
  height: 0;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__strength__box__label {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  background-color: #0ABAB5;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}
.p-top__strength__box__label span {
  display: block;
  margin-top: 2px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.p-top__strength__box__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
}
.p-top__strength__box__title {
  color: #078282;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .p-top__strength__box__title {
    font-size: 20px;
  }
}
.p-top__strength__box__text {
  color: #363535;
  font-size: 13px;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .p-top__strength__box__text {
    font-size: 16px;
  }
}
.p-top__support__card {
  width: 98%;
  margin: 20px auto;
  padding: 15px;
  border: solid 2px #078282;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .p-top__support__card {
    width: 900px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 20px;
    border: solid 3px #078282;
  }
}
.p-top__support__card__item {
  border-bottom: solid 1px #078282;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .p-top__support__card__item {
    position: relative;
    padding-bottom: 13px;
  }
}
@media (min-width: 1024px) {
  .p-top__support__card__textarea {
    width: 600px;
  }
}
.p-top__support__card__title {
  font-size: 18px;
  color: #078282;
}
@media (min-width: 1024px) {
  .p-top__support__card__title {
    font-size: 20px;
  }
}
.p-top__support__card__text {
  font-weight: bold;
}
@media (min-width: 1024px) {
  .p-top__support__card__btn {
    position: absolute;
    top: -20px;
    right: 0;
  }
}
.p-top__info {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .p-top__info {
    margin-bottom: 110px;
  }
}
.p-top__info__list {
  padding: 0 0 0 0;
}
@media (min-width: 1024px) {
  .p-top__info__list {
    margin-top: 30px;
  }
}
.p-top__info__item {
  margin-bottom: 10px;
  border-bottom: solid 1px #707070;
}
.p-top__info__title {
  padding-left: 10px;
}
.p-top__group {
  background: #F8F9FA;
  padding: 35px 0;
}
@media (min-width: 1024px) {
  .p-top__group {
    padding: 50px 0;
  }
}
.p-top__group__card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .p-top__group__card {
    width: 600px;
    margin: 30px auto 0;
  }
}
.p-top__group__card a {
  flex: 1;
  width: calc((100% - 10px) / 2);
}
.p-top__group__card img {
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .p-top__group p {
    text-align: center;
  }
}

.p-support__hero {
  margin-bottom: 60px;
  padding-top: 30px;
}
.p-support__hero__back {
  width: 90%;
  margin: 0 0 0 auto;
  background: linear-gradient(180deg, #7AD0CE 0%, #0AA9A9 100%);
  border-radius: 20px 0 0 20px;
  padding: 30px 10px;
}
@media (min-width: 1024px) {
  .p-support__hero__back {
    padding: 60px 40px;
  }
}
@media (min-width: 1336px) {
  .p-support__hero__back {
    width: 1200px;
    padding: 60px;
  }
}
@media (min-width: 1728px) {
  .p-support__hero__back {
    width: 1400px;
  }
}
@media (min-width: 1336px) {
  .p-support__hero__inner {
    margin: 0 0 0 0;
  }
}
.p-support__hero__title {
  font-size: 28px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
@media (min-width: 1024px) {
  .p-support__hero__title {
    font-size: 38px;
  }
}
.p-support__hero__lead {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.5;
}
.p-support__hero__cta {
  margin-top: 20px;
  width: 250px;
}
@media (min-width: 1024px) {
  .p-support__hero__cta {
    margin-top: 50px;
  }
}
.p-support__hero__cta__text {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 10px;
}
.p-support__content__subsidy {
  margin: 40px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 640px) {
  .p-support__content__subsidy {
    flex-direction: row;
  }
}
.p-support__content__subsidy__item {
  background-color: #EEFFFF;
}
@media (min-width: 640px) {
  .p-support__content__subsidy__item {
    flex: 1;
    min-width: 0;
  }
}
.p-support__content__subsidy__item__title {
  background: #078282;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.p-support__content__subsidy__item__text {
  width: 95%;
  margin: 0 auto 20px;
}
.p-support__content__subsidy__item__subtitle {
  color: #078282;
  padding-left: 55px;
  margin: 25px 0 20px;
  position: relative;
}
.p-support__content__subsidy__item__subtitle::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/icon/icon-buil.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -12px;
  left: 10px;
}
.p-support__content__subsidy__item__list {
  padding: 0 0 0 0;
  width: 95%;
  margin: 0 auto;
}
.p-support__content__subsidy__item__list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}
.p-support__content__subsidy__item__list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/icon/ic_check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 2px;
}
.p-support__content__note__text {
  font-size: 14px;
  color: #363535;
  line-height: 1.5;
  margin-bottom: 10px;
}
.p-support__price {
  margin: 30px 0;
  padding: 30px 0;
}
.p-support__price__text {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
}
.p-support__flow__content {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (min-width: 640px) {
  .p-support__flow__content {
    overflow-x: visible;
    gap: 16px;
  }
}
.p-support__flow__content__item {
  position: relative;
  flex: 0 0 220px;
  padding: 20px 14px;
  background: #FFFFFF;
  border: 1px solid #078282;
  border-radius: 10px;
  text-align: center;
}
@media (min-width: 640px) {
  .p-support__flow__content__item {
    flex: 1 1 0;
    min-width: 0;
    padding: 20px 12px;
  }
}
.p-support__flow__content__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 2px);
  width: 16px;
  border-top: 2px dotted #078282;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (min-width: 640px) {
  .p-support__flow__content__item:not(:last-child)::after {
    width: 12px;
  }
}
.p-support__flow__content__item__title {
  color: #078282;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .p-support__flow__content__item__title {
    font-size: 15px;
  }
}
.p-support__flow__content__item__title span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.p-support__flow__content__item__text {
  margin: 0;
  color: #363535;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 400;
}
.p-support__faq {
  margin: 30px 0;
  padding: 30px 0;
}
.p-support__faq__text {
  margin-bottom: 20px;
}

.p-about__hero {
  position: relative;
  padding: 80px 0;
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  .p-about__hero {
    padding: 120px 0;
  }
}
@media (min-width: 1024px) {
  .p-about__hero {
    padding: 170px 0;
    margin-bottom: 80px;
  }
}
.p-about__hero__mv {
  width: 70%;
  height: 200px;
  position: absolute;
  right: 0;
  top: 15px;
  background-image: url(../images/about-mv.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (min-width: 640px) {
  .p-about__hero__mv {
    height: 280px;
  }
}
@media (min-width: 1024px) {
  .p-about__hero__mv {
    height: 480px;
    top: -90px;
  }
}
@media (min-width: 1180px) {
  .p-about__hero__mv {
    height: 530px;
    width: 65%;
  }
}
@media (min-width: 1280px) {
  .p-about__hero__mv {
    width: 55%;
  }
}
.p-about__hero__title {
  position: relative;
  z-index: 2;
  color: #0ABAB5;
}
@media (min-width: 1024px) {
  .p-about__hero__title {
    font-size: 40px;
  }
}
.p-about__hero__title span {
  color: #363535;
  display: block;
  font-size: 18px;
}
@media (min-width: 640px) {
  .p-about__content__inner {
    display: flex;
    gap: 10px;
  }
}
@media (min-width: 640px) {
  .p-about__content__left {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .p-about__content__left {
    width: 470px;
    padding-top: 70px;
  }
}
@media (min-width: 640px) {
  .p-about__content__right {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .p-about__content__right {
    width: calc(100% - 470px - 10px);
  }
}
.p-about__content__right__img {
  width: 70%;
  margin: 30px auto;
}
@media (min-width: 640px) {
  .p-about__content__right__img {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .p-about__content__right__img {
    width: 90%;
  }
}
.p-about__message {
  padding: 40px 0;
  background-color: #EEFFFF;
}
@media (min-width: 640px) {
  .p-about__message {
    margin: 40px 0;
  }
}
@media (min-width: 640px) {
  .p-about__message__content {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .p-about__message__content {
    gap: 10px;
    margin: 50px 0;
  }
}
.p-about__message__content__left {
  margin-bottom: 30px;
}
@media (min-width: 640px) {
  .p-about__message__content__left {
    margin-bottom: 0;
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .p-about__message__content__left {
    width: 310px;
  }
}
.p-about__message__content__left__img {
  width: 75%;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .p-about__message__content__left__img {
    width: 100%;
  }
}
.p-about__message__content__left__name {
  font-size: 14px;
  text-align: center;
  line-height: 18px;
}
@media (min-width: 640px) {
  .p-about__message__content__left__name {
    text-align: left;
    margin-top: 10px;
  }
}
.p-about__message__content__left__name span {
  display: block;
  font-size: 16px;
}
@media (min-width: 640px) {
  .p-about__message__content__right {
    width: 58%;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1024px) {
  .p-about__message__content__right {
    width: calc(100% - 310px - 10px);
  }
}
.p-about__campany {
  padding: 40px 0;
}
.p-about__campany__textarea p {
  margin-bottom: 15px;
}
.p-about__campany__card {
  display: flex;
  gap: 0;
  margin: 30px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.p-about__campany__card__item {
  flex: 0 0 80%;
  text-align: center;
  padding: 20px 16px;
  border-left: 1px solid #707070;
}
.p-about__campany__card__item:first-child {
  border-left: none;
}
.p-about__campany__card__item__title {
  font-size: 18px;
  font-weight: 700;
  color: #363535;
  line-height: 1.4;
  margin-bottom: 16px;
}
.p-about__campany__card__item__title span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}
.p-about__campany__card__item__text {
  color: #0ABAB5;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .p-about__campany__card {
    overflow-x: visible;
  }
  .p-about__campany__card__item {
    flex: 1 1 0;
    min-width: 0;
    padding: 24px 20px;
  }
}
.p-about__campany__info {
  margin-top: 40px;
}
.p-about__campany__info__list {
  border-top: 1px dotted #707070;
}
.p-about__campany__info__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px dotted #707070;
}
@media (min-width: 640px) {
  .p-about__campany__info__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 16px 0;
  }
}
.p-about__campany__info dt {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #363535;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .p-about__campany__info dt {
    width: 140px;
  }
}
.p-about__campany__info dd {
  margin: 0;
  font-size: 14px;
  color: #363535;
  line-height: 1.6;
}

.p-policy {
  font-size: 14px;
  line-height: 1.8;
  color: #363535;
}
.p-policy .o-title__h2--page {
  margin-top: 0;
}
.p-policy__lead {
  margin-bottom: 32px;
}
.p-policy__block {
  margin-bottom: 32px;
}
.p-policy__heading {
  font-size: 16px;
  font-weight: 700;
  color: #078282;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .p-policy__heading {
    font-size: 18px;
  }
}
.p-policy__subheading {
  font-size: 14px;
  font-weight: 700;
  margin: 16px 0 8px;
}
.p-policy__list {
  margin: 8px 0 0;
  padding-left: 1.4em;
  list-style: disc;
}
.p-policy__list--numbered {
  list-style: decimal;
  padding-left: 1.6em;
}
.p-policy__list li {
  margin-bottom: 6px;
}
.p-policy__list a {
  color: #0ABAB5;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.p-policy__office {
  margin: 12px 0 0;
  font-weight: 700;
}
.p-policy__date {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(54, 53, 53, 0.78);
}
.p-policy p {
  margin: 0;
}