/* base
--------------------------------------------------*/
:root {
  --color-text: #1F2937;
  --color-text2: #4B5563;
  --color-green: #10B981;
  --color-orange: #F59E0B;
  --color-white: #ffffff;
  --color-bg-gray: #F3F4F6;
  --color-bg-card: #E5E7EB;
  --color-bg-navy: #111827;
  --color-bg-green-light: #CDEAE1;
}
html {
  font-size: 0.808vw;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
}
*, *::before, *::after {
  box-sizing: border-box;
}
h1,h2,h3,h4,
p,ul,ol,dl,img {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3.5vw;
  }
}


/* common
--------------------------------------------------*/
.l-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2em;
  box-sizing: border-box;
}
.bg-green { background: var(--color-green); }
.text-center { text-align: center; }
.text-green { color: var(--color-green); }
.text-orange { color: var(--color-orange); }
.text-white { color: var(--color-white); }
.font-bold { font-weight: 700; }
.p-section {
  padding: 5rem 0;
}

/* コンポーネント: ボタン */
.c-btn {
  display: inline-block;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  padding: 15px 40px;
  border-radius: 9999px;
  font-size: 1.125rem;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn--large {
  padding: 1.25rem 5rem;
  font-size: 1.5rem;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    padding: 0 1em;
  }
  .c-btn {
    font-size: 1rem;
  }
  .c-btn--large {
    padding: 1em;
    font-size: 1.5rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/* header
--------------------------------------------------*/
.l-header {
  height: 80px;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.l-header__inner {
  width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  display: flex;
  align-items: center;
}
.l-header__btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 1em;
  }
  .l-header__logo {
    max-width: 50%; 
  }
  .l-header__btn {
    max-width: 45%;
  }
}


/* fv
--------------------------------------------------*/
.p-fv {
  position: relative;
  background-image: url(../img/fv_bg.jpg);
  background-size: cover;
  background-position: center;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  color: var(--color-white);
}
.p-fv__content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2em 2.5em;
  gap: 1em;
  z-index: 10;
}
.p-fv__tag span {
  display: inline-block;
  background-color: var(--color-green);
  padding: 5px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.25rem;
}
.p-fv__lead {
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-fv__lead .text-orange {
  font-size: 1.25em;
}
.p-fv__sub {
  font-weight: 700;
  font-size: 2em;
}
.p-fv__title-small {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
.p-fv__title-small .bg-green {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 8px;
  border-radius: 5px;
  font-size: 2.5rem;
}
.p-fv__title-large {
  font-size: 16rem;
  font-weight: 900;
  margin: 0;
  line-height: 0.75em;
}
.p-fv__badge {
  position: absolute;
  bottom: -1px;
  right: 0;
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 20px 60px;
  text-align: center;
  z-index: 20;
}
.p-fv__badge-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.p-fv__badge-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-green);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}
.p-fv__badge-num span {
  font-size: 1.5rem;
  color: var(--color-text);
}
.p-fv__badge-date {
  font-size: 1rem;
  margin-top: 5px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-fv {
    flex-direction: column;
    justify-content: space-between;
  }
  .p-fv__content {
    align-items: normal;
    width: 100%;
    margin: auto 0;
    padding: 1em;
    text-align: center;
  }
  .p-fv__tag span {
    font-size: 1.125rem;
  }
  .p-fv__lead {
    font-size: 1.125rem;
  }
  .p-fv__sub {
    font-size: 1.5rem;
  }
  .p-fv__title-small {
    font-size: 1.5rem;
  }
  .p-fv__title-small .bg-green {
    font-size: 1.5rem;
  }
  .p-fv__title-large {
    font-size: 9rem;
  }
  .p-fv__badge {
    position: relative;
    width: 100%;
    padding: 1em;
    align-items: center;
    border-bottom: 1px solid var(--color-green);
  }
  .p-fv__badge-title {
    width: 100%;
    font-size: 1.125rem;
    margin: 0;
  }
  .p-fv__badge-num {
    font-size: 2rem;
  }
  .p-fv__badge-date {
    margin: auto 0 0;
  }
}


/* cta
--------------------------------------------------*/
.p-cta .l-container {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.p-cta__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-green);
  text-align: center;
}
.p-cta2 .p-cta__title {
  display: inline-flex;
  justify-content: center;
  gap: 1.5em;
  text-align: left;
}
.p-cta2 .p-cta__title span {
  line-height: 0.75em;
  font-size: 6rem;
}
.p-cta__points {
  display: flex;
  justify-content: center;
  gap: 1px;
}
.p-cta__point {
  display: flex;
  width: calc((100% - 2px) / 3);
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 1.5em;
  gap: 1em;
}
.p-cta__point:first-of-type {
  border-radius: 10px 0 0 10px;
}
.p-cta__point:last-of-type {
  border-radius: 0 10px 10px 0;
}
.p-cta__point-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}
.p-cta__point-title {
  margin: 0;
  font-size: 1.5rem;
}
.p-cta__point-txt {
  margin: 1em 0 0;
  font-size: 1rem;
}
.p-cta .c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 0.5rem;
  font-size: 2.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.p-cta .c-btn:after {
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/cta_arrow_ico.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.25rem;
  }
  .p-cta__points {
    flex-direction: column;
  }
  .p-cta__point {
    width: 100%;
    padding: 1em;
  }
  .p-cta__point-img img {
    width: 2.5em;
  }
  .p-cta__point:first-of-type {
    border-radius: 10px 10px 0 0;
  }
  .p-cta__point:last-of-type {
    border-radius: 0 0 10px 10px;
  }
  .p-cta__point-title {
    font-size: 1.25rem;
  }
  .p-cta__point-txt {
    margin-top: 0.5em;
  }
  .p-cta .c-btn {
    font-size: 1.5rem;
  }
  .p-cta2 .p-cta__title {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}


/* issues
--------------------------------------------------*/
.p-issues {
  background-color: var(--color-bg-gray);
}
.p-issues__header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 3em;
  gap: 3em;
}
.p-issues__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  gap: 1.75rem;
}
.p-issues__title:after {
  display: block;
  width: 3.75rem;
  height: 0.25rem;
  content: "";
  background: var(--color-green);
}
.p-issues__desc {
  margin: 0 auto;
  font-size: 1.5rem;
  text-align: center;
}
.p-issues__cards {
  display: flex;
  gap: 1.5em;
}
.p-issues__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 3em) / 3);
  border-left: 5px solid var(--color-green);
  padding: 2em;
  gap: 0.75em;
  text-align: center;
  position: relative;
  background-color: var(--color-white);
}
.p-issues__card-icon {
  width: 7.5em;
  height: auto;
  aspect-ratio: 1 / 1;
}
.p-issues__card-title {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.25rem;
}
.p-issues__card-text {
  font-size: 1rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-issues__title {
    font-size: 1.5rem;
  }
  .p-issues__desc {
    font-size: 1.125rem;
  }
  .p-issues__cards {
    flex-direction: column;
  }
  .p-issues__card {
    width: 100%;
  }
  .p-issues__card-icon {
    width: 5em;
  }
}


/* solution
--------------------------------------------------*/
.p-solution {
  padding-top: 0;
  background-color: var(--color-bg-gray);
}
.p-solution__header {
  text-align: center;
  margin-bottom: 3em;
}
.p-solution__header-sub {
  font-size: 3rem;
  font-weight: 700;
}
.p-solution__header-title {
  font-size: 3rem;
  font-weight: 700;
}
.p-solution__header-title span {
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 0.75;
  color: var(--color-green);
}
.p-solution__wrapper {
  padding: 5em 0;
  background-color: var(--color-green);
  color: var(--color-white);
}
.p-solution__wrapper .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75em;
}
.p-solution__desc {
  margin: 0 auto;
  line-height: 2;
  font-size: 1.5rem;
  text-align: center;
}
.p-solution__card {
  display: flex;
  flex-direction: column;
  width: calc(100% - 1em);
  background-color: var(--color-white);
  color: var(--color-text);
  border-radius: 10px;
  padding: 3em;
  gap: 2.5em;
}
.p-solution__point-header {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.p-solution__point-label {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-green);
  text-align: center;
}
.p-solution__point-num {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 0.875;
  color: var(--color-green);
  text-align: center;
}
.p-solution__point-title {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
}
.p-solution__point-desc {
  font-size: 1.5rem;
  line-height: 2;
}
.p-solution__img-wrap {
  display: flex;
  flex-direction: column;
  padding: 3em;
  gap: 3em;
  border-radius: 10px;
  background-color: var(--color-bg-card);
}
.p-solution__card:nth-last-of-type(2) .p-solution__img-wrap {
  padding: 0;
  background-color: unset;
} 
.p-solution__img-caption {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-solution__img-caption:before {
  display: block;
  width: 1em;
  height: 1em;
  content: "";
  background: var(--color-green);
}
@media screen and (max-width: 767px) {
  .p-solution {
    padding-bottom: 0;
  }
  .p-solution__header-sub {
    font-size: 2rem;
  }
  .p-solution__header-title {
    font-size: 2rem;
  }
  .p-solution__header-title span {
    font-size: 3rem;
  }
  .p-solution__desc {
    font-size: 1.125rem;
  }
  .p-solution__card {
    width: 100%;
    padding: 2em 1em;
  }
  .p-solution__point-header {
    flex-direction: column;
  }
  .p-solution__point-label {
    font-size: 1.5rem;
  }
  .p-solution__point-num {
    font-size: 3.5rem;
  }
  .p-solution__point-title {
    font-size: 2rem;
    text-align: center;
  }
  .p-solution__point-desc {
    font-size: 1.125rem;
  }
  .p-solution__img-wrap {
    padding: 1em;
    gap: 1em;
  }
  .p-solution__img-caption {
    font-size: 1.125rem;
  }
}


/* voices
--------------------------------------------------*/
.p-voices {
  background-color: var(--color-bg-gray);
}
.p-voices .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
.p-voices__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  gap: 1.75rem;
}
.p-voices__title:after {
  display: block;
  width: 3.75rem;
  height: 0.25rem;
  content: "";
  background: var(--color-green);
}
.p-voices__card-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  gap: 1.5em;
}
.p-voices__card {
  display: flex;
  width: 100%;
  gap: 0.75em;
  padding: 2em;
  border-radius: 10px;
  background-color: var(--color-white);
}
.p-voices__card:before {
  display: block;
  width: 3em;
  height: 3em;
  content: "";
  background: url(../img/voices_list_ico.svg) no-repeat;
  background-size: contain;
}
.p-voices__card-inner {
  width: calc(100% - 3.75em);
}
.p-voices__card-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}
.p-voices__card-text {
  font-size: 1rem;
  color: var(--color-text2);
  margin-bottom: 0.75rem;
}
.p-voices__card-author {
  text-align: right;
  font-size: 0.875rem;
  color: var(--color-green);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-voices__title {
    font-size: 1.5rem;
  }
  .p-voices__card {
    flex-direction: column;
  }
  .p-voices__card-inner {
    width: 100%;
  }
}


/* company
--------------------------------------------------*/
.p-company {
  background-color: var(--color-bg-navy);
  color: var(--color-white);
}
.p-company .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
.p-company__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  gap: 1.75rem;
}
.p-company__title:after {
  display: block;
  width: 3.75rem;
  height: 0.25rem;
  content: "";
  background: var(--color-green);
}
.p-company__card {
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-text);
  padding: 3em;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5em;
}
.p-company__card-content {
  width: 45%;
}
.p-company__card-img {
  width: 50%;
}
.p-company__card:nth-of-type(2) .p-company__card-content {
  width: 67%;
}
.p-company__card:nth-of-type(2) .p-company__card-img {
  width: 28%;
}
.p-company__card-img img {
  border-radius: 10px;
}
.p-company__card-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.p-company__card-header::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: var(--color-green);
}
.p-company__card-txt {
  line-height: 2;
  font-size: 1rem;
}
.p-company__card-txt + p {
  margin-top: 1em;
}
.p-company__card-history {
  width: 100%;
  padding: 1.5em;
  border-radius: 10px;
  background-color: #CDEAE1;
  box-sizing: border-box;
}
.p-company__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.p-company__list li {
  display: flex;
  gap: 0.75em;
  line-height: 2;
  font-size: 1rem;
}
.p-company__list li:before {
  display: block;
  content: "";
  width: 1.5em;
  height: 1.5em;
  margin-top: 0.25em;
  background: url(../img/company_check_ico.svg);
}
.p-company__list li span {
  width: calc(100% - 2.25em);
}
.p-company__message-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--color-green);
}
.p-company__message-text {
  line-height: 2;
  font-size: 1rem;
}
.p-company__message-text p + p {
  margin-top: 1em;
}
.p-company__author {
  line-height: 2;
  margin-top: 1em;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: 1.5rem;
  }
  .p-company__card {
    padding: 2em 1em;
  }
  .p-company__card-header {
    font-size: 1.125rem;
  }
  .p-company__card-content {
    width: 100%;
  }
  .p-company__card-img {
    width: 100%;
  }
  .p-company__card-history {
    padding: 1em;
  }
  .p-company__card:nth-of-type(2) .p-company__card-content {
    width: 100%;
  }
  .p-company__card:nth-of-type(2) .p-company__card-img {
    width: 100%;
  }
  .p-company__author {
    font-size: 1.125rem;
  }
}


/* flow
--------------------------------------------------*/
.p-flow {
  background-color: var(--color-bg-gray);
}
.p-flow .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
.p-flow__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  gap: 1.75rem;
}
.p-flow__title:after {
  display: block;
  width: 3.75rem;
  height: 0.25rem;
  content: "";
  background: var(--color-green);
}
.p-flow__list {
  display: flex;
  position: relative;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  gap: 1.5em;
}
.p-flow__list:before {
  position: absolute;
  top: 0;
  left: 1.5em;
  width: 0.125rem;
  height: 100%;
  content: "";
  background-image: linear-gradient(to bottom, transparent, var(--color-green), transparent);
}
.p-flow__item {
  display: flex;
  align-items: center;
  gap: 1.25em;
}
.p-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  border: solid 0.25em var(--color-white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
  background-color: var(--color-green);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 1;
}
.p-flow__content {
  width: calc(100% - 3.75em);
  padding: 1.5em;
  border-radius: 0.5em;
  background: var(--color-white);
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.p-flow__content-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.p-flow__content-text {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: 1.5rem;
  }
  .p-flow__item {
    gap: 1em;
  }
  .p-flow__content {
    padding: 1em;
  }
}


/* faq
--------------------------------------------------*/
.p-faq {
  background-color: var(--color-white);
}
.p-faq .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
.p-faq__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  gap: 1.75rem;
}
.p-faq__title:after {
  display: block;
  width: 3.75rem;
  height: 0.25rem;
  content: "";
  background: var(--color-green);
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  gap: 1.5em;
}
.p-faq__item {
  padding: 1.5em;
  border-radius: 10px;
  background: var(--color-bg-gray)
}
.p-faq__q p,
.p-faq__a p {
  width: calc(100% - 2em);
}
.p-faq__q {
  display: flex;
  gap: 0.875em;
  margin-bottom: 0.875em;
  font-weight: 700;
  font-size: 1.125rem;
}
.p-faq__q::before {
  content: 'Q.';
  width: 1.125rem;
  color: var(--color-green);
  font-weight: 900;
  font-size: 1.125rem;
}
.p-faq__a {
  font-size: 0.875rem;
  display: flex;
  gap: 0.875em;
}
.p-faq__a::before {
  content: 'A.';
  width: 1.125rem;
  color: #9CA3AF;
  font-weight: 900;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.5rem;
  }
  .p-faq__q {
    font-size: 1rem;
  }
  .p-faq__a {
    font-size: 1rem;
  }
}


/* summary
--------------------------------------------------*/
.p-conclution {
  background: url('../img/conclution_bg.jpg') no-repeat center center;
  background-size: cover;
  color: var(--color-white);
  text-align: center;
}
.p-conclution__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-conclution__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.125rem;
}
.p-conclution__keywords {
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 1rem;
  list-style: none;
  font-weight: bold;
  font-size: 1.25rem;
}
.p-conclution__keyword {
  background-color: var(--color-white);
  color: var(--color-green);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-conclution__title {
    font-size: 1.75rem;
  }
  .p-conclution__text {
    padding: 0 1em;
  }
  .p-conclution__keywords {
    font-size: 1.125rem;
  }
  .p-conclution__keyword {
    padding: 0.5em;
  }
}


/* contact
--------------------------------------------------*/
.p-form-section {
  background-color: var(--color-bg-navy);
  color: var(--color-white);
}
.p-form-section__header {
  text-align: center;
  margin-bottom: 1rem;
}
.p-form-section__sub {
  font-size: 1rem;
  color: var(--color-green);
  margin-bottom: 1em;
}
.p-form-section__title {
  font-size: 2.25rem;
  font-weight: 700;
}
.p-form form {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
  padding: 3em 2em;
  gap: 1em;
  border-radius: 8px;
}
.p-form__label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.p-form__label span {
  color: #EF4444;
}
.p-form__input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.p-form__checkbox-wrap {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.p-form__submit {
  width: 100%;
  border-radius: 10px;
}
.wpcf7-spinner {
  display: none !important;
}
.p-form__group .wpcf7-list-item {
  display: block;
  margin: 0 0 10px 0;
}
.p-form__group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  cursor: pointer;
}
.wpcf7-not-valid-tip {
  color: #EF4444;
  font-size: 0.75rem;
  margin-top: 5px;
  display: block;
}
.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 10px !important;
  font-size: 0.875rem;
  border-radius: 4px;
  border: 2px solid #ccc !important;
  color: var(--color-green);
  text-align: center;
}
.wpcf7-mail-sent-ok {
  border-color: var(--color-green) !important;
  color: var(--color-green);
}
.wpcf7-validation-errors {
  border-color: #EF4444 !important;
}

/* footer
--------------------------------------------------*/
.l-footer {
  background-color: var(--color-bg-gray);
  padding: 3em 0;
}
.l-footer .l-container {
  display: flex;
  justify-content: space-between;
  padding: 0 2em;
}
.l-footer__logo {
  margin-bottom: 20px;
}
.l-footer__txt {
  font-size: 0.875rem;
}
.l-footer__txt strong {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.l-footer__copy {
  margin-top: auto;
  font-size: 0.75rem;
  color: #666;
}
@media screen and (max-width: 767px) {
  .l-footer .l-container {
    flex-direction: column;
    gap: 1em;
    text-align: center;
  }
}