@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #191919;
}

@media screen and (max-width: 767px) {
  main {
    margin-top: 3.4375rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

input[type=checkbox] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
}

.l-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 33.75rem;
    padding: 0 10px;
  }
}

.c-btn {
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #0056b3;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1441px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.p-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-case-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6.25rem;
  }
}
@media screen and (max-width: 450px) {
  .p-case-list {
    gap: 3.125rem;
  }
}

.p-case-list__item {
  position: relative;
  padding: 0 0.8125rem 1.25rem 1.5625rem;
  background-color: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-case-list__item {
    padding: 0 0 0.9375rem;
    border-radius: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-case-list__item:first-of-type {
    padding: 0 0.4375rem 0.9375rem;
    border-radius: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-case-list__item:nth-of-type(2) {
    margin-top: 1.875rem;
  }
}

.p-case-list__item-img {
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  .p-case-list__item-img {
    margin-top: -5.625rem;
  }
}
@media screen and (max-width: 450px) {
  .p-case-list__item-img {
    margin-top: -4.375rem;
  }
}

@media screen and (max-width: 450px) {
  .p-case-list__item:nth-of-type(3) .p-case-list__item-img {
    margin-top: -2.9375rem;
  }
}

.p-case-list__item:first-of-type .p-case-list__item-img {
  margin-right: -0.4375rem;
  margin-left: -0.4375rem;
}

.p-case-list__item-table {
  margin-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-case-list__item-table {
    margin-inline: auto;
    width: 89%;
    margin-top: 0.5rem;
  }
}

.p-case-table {
  border: 1px solid #2AA738;
  border-radius: 6px;
  margin-top: -0.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-case-table {
    margin-top: 0;
    border-radius: 5px;
  }
}

.p-case-table__flex {
  display: flex;
  align-items: center;
}

.p-case-table__flex:first-of-type {
  border-top: 1px solid #fff;
}

.p-case-table__item {
  display: flex;
}

.p-case-table__item.p-case-table__item--block {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-case-table__item.p-case-table__item--block {
    width: 44%;
  }
}

@media screen and (max-width: 767px) {
  .p-case-table__item.p-case-table__item--block:nth-of-type(even) {
    width: 56%;
  }
}

.p-case-table__item dt,
.p-case-table__item dd {
  padding: 0.625rem 0;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-case-table__item dt,
  .p-case-table__item dd {
    padding: 0.4375rem 0;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.p-case-table__item dt {
  width: 20%;
  background-color: #2AA738;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case-table__item dt {
    width: 22%;
  }
}

.p-case-table__item:not(:first-of-type) dt {
  border-top: 1px solid #fff;
}

.p-case-table__item:first-of-type dt {
  border-radius: 5px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-case-table__item:first-of-type dt {
    border-radius: 4px 0 0 0;
  }
}

.p-case-table__item:last-of-type dt {
  border-radius: 0 0 0 5px;
}
@media screen and (max-width: 767px) {
  .p-case-table__item:last-of-type dt {
    border-radius: 0 0 0 4px;
  }
}

.p-case-table__item.p-case-table__item--block dt {
  width: 100%;
  font-size: 0.875rem;
  letter-spacing: 0;
  border-radius: 0;
  border: 0;
  padding: 0.1875rem 0;
}

.p-case-table__item.p-case-table__item--block:last-of-type dt {
  border-left: 1px solid #fff;
}

.p-case-table__item dt.top {
  border-top: 1px solid #2AA738;
}

.p-case-table__item dd {
  width: 80%;
  padding-left: 1.4375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-case-table__item dd {
    width: 78%;
    padding-left: 0.6875rem;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}

.p-case-table__item dd span {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-case-table__item dd span {
    font-size: 0.625rem;
  }
}

.p-case-table__item:not(:first-of-type) dd {
  border-top: 1px solid #2AA738;
}

.p-case-table__item.p-case-table__item--block dd {
  width: 100%;
  padding-left: 0;
  text-align: center;
  border: 0;
  border-radius: 0;
  padding: 0.28125rem 0;
  border-left: 1px solid #2AA738;
}

.p-case-table__item:first-of-type dd {
  border-radius: 0 5px 0 0;
}
@media screen and (max-width: 767px) {
  .p-case-table__item:first-of-type dd {
    border-radius: 0 4px 0 0;
  }
}

.p-case-table__item:last-of-type dd {
  border-radius: 0 0 5px 0;
}
@media screen and (max-width: 767px) {
  .p-case-table__item:last-of-type dd {
    border-radius: 0 0 4px 0;
  }
}

.p-case {
  margin-top: -0.3125rem;
  position: relative;
  padding: 3.125rem 0 0;
  background-image: url(../images/top/case-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-case {
    margin-top: 0;
    padding: 1.875rem 0 0;
    background-image: url(../images/top/case-bg-sp.png);
  }
}

.p-case__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-case__inner {
    max-width: 33.75rem;
    padding: 0 10px;
  }
}

.p-case__title {
  max-width: 35.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-case__title {
    width: 92.4%;
  }
}

.p-case__main {
  margin-top: 3rem;
  padding: 0 5.5rem 2.5rem 1rem;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-case__main {
    margin-top: 5.5rem;
    padding: 0 0.4375rem 0.9375rem;
  }
}

.p-case__main__title {
  max-width: 51.875rem;
}

.p-case__main__wrap {
  margin-top: -2.375rem;
}

.p-case__main__wrap-img {
  max-width: 39.0625rem;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__main__wrap-img {
    margin-top: 0.1875rem;
    margin-left: 0;
    width: 96%;
  }
}

.p-case__main__wrap-list {
  margin-top: -11.5625rem;
  max-width: 25.8125rem;
  margin-left: auto;
}

.p-case__list {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-case__list {
    margin-top: 5.5rem;
  }
}

.p-case__dec {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-case__dec {
    margin-top: 2.8125rem;
  }
}

.p-case__dec img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-case__accordion {
    margin-top: 2.25rem;
  }
}

.p-case__accordion-btn,
.p-case__accordion-btn02 {
  width: 84.5%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-case__accordion-block {
    display: none;
    margin-top: 6.25rem;
    padding-bottom: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-case__accordion-list.p-case-list {
    gap: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-case__accordion-list .p-case-list__item:nth-of-type(2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-case__accordion-list .p-case-list__item:nth-of-type(3) .p-case-list__item-img {
    margin-top: -4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-case__accordion-btn02 {
    display: none;
    margin-top: 1.25rem;
  }
}

.p-contact {
  padding: 9.375rem 0 5rem;
  background-image: url(../images/common/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: -0.1875rem;
    padding: 4.6875rem 0 2.8125rem;
    background-image: url(../images/common/contact-bg-sp.png);
  }
}

@media screen and (max-width: 767px) {
  .p-contact__inner.l-inner {
    padding: 0 0.9375rem;
  }
}

.p-contact.p-contact--tanks {
  padding: 16.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact.p-contact--tanks {
    padding: 3.1875rem 0 1.6875rem;
    height: 100vh;
  }
}

.p-contact__bg {
  position: relative;
  background-color: #D4A744;
  padding: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__bg {
    padding: 0.5rem;
  }
}

.p-contact__title {
  position: absolute;
  top: -4.4375rem;
  left: 2.9375rem;
  right: -2.9375rem;
}
@media screen and (max-width: 1441px) {
  .p-contact__title {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    width: 105%;
    top: -3.75rem;
    left: -0.625rem;
    right: 0;
  }
}
@media screen and (max-width: 450px) {
  .p-contact__title {
    top: -2.5rem;
  }
}

.p-fv__right .p-contact__bg {
  padding: 0.9375rem;
}

.p-fv__right .p-contact__title {
  top: -2.1875rem;
  left: 1.8125rem;
  right: -1.8125rem;
}

@media screen and (max-width: 767px) {
  .p-contact-sp {
    padding: 2.5rem 0 2.8125rem;
  }
}

.p-faq-list__item {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
}
.p-faq-list__item::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 1rem;
  left: 2.0625rem;
  width: 4.125rem;
  height: 3.25rem;
  background-image: url(../images/top/faq-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item::before {
    top: 1.625rem;
    left: 0.625rem;
    width: 1.9375rem;
    height: 1.5rem;
  }
}

.p-faq-list__item:nth-of-type(7)::before {
  top: 1.8125rem;
}

.p-faq-list__item:not(:first-of-type) {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item:not(:first-of-type) {
    margin-top: 0.75rem;
  }
}

.faq-list__item-question {
  position: relative;
  padding: 1.875rem 4.5rem 1.875rem 8.5625rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question {
    padding: 0.96875rem 2.5rem 0.96875rem 3.75rem;
    font-size: 1rem;
    line-height: 1.375;
  }
}
.faq-list__item-question::before, .faq-list__item-question::after {
  content: "";
  position: absolute;
  width: 1.125rem;
  height: 5px;
  background: #FFC61A;
  border-radius: 10px;
  top: 50%;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question::before, .faq-list__item-question::after {
    height: 3px;
    right: 1.125rem;
  }
}
.faq-list__item-question::after {
  transform: rotate(90deg);
}

.faq-list__item-question.is-open::after {
  display: none;
}

.faq-list__item-answer {
  display: none;
  padding: 0 4.5rem 2.5rem 8.5625rem;
  font-size: 1.1875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer {
    padding: 0 0.9375rem 1.25rem;
    font-size: 1rem;
    line-height: 1.625;
  }
}

.faq-list__item-answer span {
  display: inline-block;
  padding-top: 1.875rem;
  background-image: linear-gradient(to right, #FFC61A, #FFC61A 5px, transparent 5px, transparent 10px);
  background-size: 10px 1.5px;
  background-position: left top;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer span {
    padding: 0.8125rem 0.4375rem 0;
  }
}

.p-faq {
  margin-top: -7.5rem;
  padding: 5rem 0;
  background-image: url(../images/top/faq-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -1px 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    position: relative;
    margin-top: -0.625rem;
    padding: 2.8125rem 0;
    background-image: url(../images/top/faq-bg-sp.png);
    background-position: top;
  }
}

.p-faq__title {
  max-width: 30rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    width: 86%;
    padding-right: 2rem;
  }
}

.p-faq__list {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 2.75rem;
  }
}

.p-footer {
  padding: 1.25rem 0;
  background-color: #2AA738;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 0.5625rem 0;
  }
}

.p-footer__copyright {
  display: block;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.5rem;
  }
}

.p-form {
  padding: 5.5rem 6.25rem 1.875rem 4.0625rem;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding: 1.25rem 0.9375rem;
    border-radius: 7px;
  }
}

.p-form__item:not(:first-of-type) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__item:not(:first-of-type) {
    margin-top: 0.6875rem;
  }
}

.p-form__item.p-form__item--mt {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__item.p-form__item--mt {
    margin-top: 1.25rem;
  }
}

.p-form__labels {
  display: flex;
  height: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .p-form__labels {
    flex-direction: column;
    height: unset;
  }
}

.p-form__labels:nth-of-type(1),
.p-form__labels:nth-of-type(2),
.p-form__labels:nth-of-type(3) {
  margin-right: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-form__labels:nth-of-type(1),
  .p-form__labels:nth-of-type(2),
  .p-form__labels:nth-of-type(3) {
    margin-right: 0;
  }
}

.p-form__label {
  width: 38.47%;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    width: 100%;
  }
}

.p-form__label-text {
  display: flex;
  align-items: flex-end;
  padding: 1.1875rem 0;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__label-text {
    padding: 0.375rem 0;
    font-size: 1rem;
  }
}

.p-form__label-text span {
  display: inline-block;
  margin-left: 0.625rem;
  padding: 0.0625rem 0.3125rem 0.1875rem;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #2AA738;
  border-radius: 0.125rem;
  vertical-align: middle;
}
@media screen and (max-width: 999px) {
  .p-form__label-text span {
    padding: 0.125rem 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__label-text span {
    margin-left: 0.25rem;
    font-size: 0.6875rem;
    padding: 0.0625rem 0.1875rem;
  }
}

.p-form__input {
  width: 61.53%;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    width: 100%;
  }
}

.p-form__input-text {
  padding: 0.625rem 2.0625rem;
  width: 100%;
  height: 100%;
  border: 1px solid #191919;
  border-radius: 0.25rem;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__input-text {
    font-size: 0.9375rem;
    padding: 0.6875rem 0.8125rem;
  }
}

.p-form__label-area p {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__label-area p {
    font-size: 1rem;
  }
}

.p-form__input-area {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__input-area {
    margin-top: 0.8125rem;
  }
}

.p-form__textarea {
  padding: 1.25rem 1.25rem 1.25rem 2.0625rem;
  width: 100%;
  height: 9.375rem;
  border: 1px solid #191919;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__textarea {
    padding: 0.375rem 0.4375rem;
    height: 4.6875rem;
    border-radius: 7px;
    font-size: 0.8125rem;
    line-height: 1.1538461538;
  }
}

.p-form__check {
  margin-top: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__check {
    margin-top: 0;
  }
}

.p-form__check-text {
  display: inline-block;
  margin: 0;
  cursor: pointer;
}

.p-form__check-text input {
  position: relative;
  width: 1rem;
  height: 1rem;
  top: 0.21875rem;
}
@media screen and (max-width: 767px) {
  .p-form__check-text input {
    width: 0.625rem;
    height: 0.625rem;
    top: 0;
  }
}
.p-form__check-text input::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #fff;
  border: 1px solid #191919;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  top: 50%;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-form__check-text input::before {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 2px;
  }
}
.p-form__check-text input::after {
  position: absolute;
  display: block;
  content: "";
  border-bottom: 0.125rem solid #2AA738;
  border-left: 0.125rem solid #2AA738;
  opacity: 0;
  height: 0.375rem;
  width: 0.6875rem;
  transform: rotate(-45deg);
  top: 0.25rem;
  left: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-form__check-text input::after {
    height: 0.25rem;
    width: 0.4375rem;
    top: 0.125rem;
    left: 0.125rem;
  }
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

.p-form__check-text a {
  color: #2AA738;
  text-decoration: underline;
}

.p-form__check-text span {
  display: inline-block;
  margin-left: 0.9375rem;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__check-text span {
    margin-left: 0.3125rem;
    font-size: 0.875rem;
  }
}

.p-form__button {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__button {
    margin-top: 0.625rem;
  }
}

.p-form__button-img {
  max-width: 35.625rem;
  margin: 0 auto;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__button-img {
    max-width: 18.75rem;
  }
}

.p-form__button-img input {
  width: 100%;
  height: 6.375rem;
  background: url(../images/top/form-button.png) left top no-repeat;
  background-size: contain;
  border: 0;
  transition: 0.3s opacity;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__button-img input {
    height: 3.375rem;
  }
}
.p-form__button-img input:hover {
  opacity: 0.7;
}

input[type=radio] {
  display: none;
}

.p-form__radio {
  margin-top: 1.875rem;
  display: flex;
  gap: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio {
    margin-top: 0.75rem;
    gap: 0rem 1.25rem;
    flex-wrap: wrap;
  }
}

.p-form__radio input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding-left: 3.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__radio input[type=radio] + span {
    font-size: 0.9375rem;
    padding-left: 1.0625rem;
  }
}

.p-form__radio input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #191919;
  border-radius: 50%;
  width: 1.625rem;
  height: 1.625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__radio input[type=radio] + span::before {
    border: 1px solid #191919;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-form__radio input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
  background: #2AA738;
  border-radius: 50%;
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__radio input[type=radio]:checked + span::after {
    width: 0.375rem;
    height: 0.375rem;
    left: 0.125rem;
  }
}

.is-error-email,
.is-error-name,
.is-error-tel,
.is-error-cheek {
  color: red;
}

.is-error-email02,
.is-error-name02,
.is-error-tel02,
.is-error-cheek02 {
  color: red;
}
@media screen and (max-width: 999px) {
  .is-error-email02,
  .is-error-name02,
  .is-error-tel02,
  .is-error-cheek02 {
    font-size: 0.75rem;
  }
}

.is-error-email03,
.is-error-name03,
.is-error-tel03,
.is-error-cheek03 {
  color: red;
}
@media screen and (max-width: 767px) {
  .is-error-email03,
  .is-error-name03,
  .is-error-tel03,
  .is-error-cheek03 {
    font-size: 0.75rem;
  }
}

.p-fv__right .p-form {
  padding: 2rem 2.25rem 1.4375rem 0.9375rem;
  border-radius: 9px;
}

.p-fv__right .p-form__item:not(:first-of-type) {
  margin-top: 0;
}

.p-fv__right .p-form__labels {
  padding: 1.25rem 0;
  padding-left: 1.5rem;
  border-bottom: 1px solid #C3C3C3;
  margin-right: 0;
  height: 5.125rem;
}

.p-fv__right .p-form__label {
  width: 37%;
}

.p-fv__right .p-form__input {
  width: 55%;
}

.p-fv__right .p-form__label-text {
  padding: 0.625rem 0;
  font-size: 1.125rem;
  display: block;
}
@media screen and (max-width: 1441px) {
  .p-fv__right .p-form__label-text {
    font-size: 0.875rem;
  }
}

.p-fv__right .p-form__label-text span {
  font-size: 0.875rem;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 1441px) {
  .p-fv__right .p-form__label-text span {
    font-size: 0.75rem;
  }
}

.p-fv__right .p-form__input-text {
  padding: 0.375rem 1.125rem;
  font-size: 1.1875rem;
}
@media screen and (max-width: 1441px) {
  .p-fv__right .p-form__input-text {
    font-size: 1rem;
  }
}

.p-fv__right .p-form__labels-area {
  padding: 1.25rem 0;
  border-bottom: 1px solid #C3C3C3;
  padding-left: 1.5rem;
}

.p-fv__right .p-form__label-area p {
  font-size: 1.125rem;
}
@media screen and (max-width: 1441px) {
  .p-fv__right .p-form__label-area p {
    font-size: 0.875rem;
  }
}

.p-fv__right .p-form__radio {
  margin-top: 0.9375rem;
  gap: 1.875rem;
}
@media screen and (max-width: 1441px) {
  .p-fv__right .p-form__radio {
    gap: 0.9375rem;
  }
}

.p-fv__right .p-form__radio input[type=radio] + span {
  padding-left: 1.875rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 1441px) {
  .p-fv__right .p-form__radio input[type=radio] + span {
    font-size: 0.875rem;
  }
}
.p-fv__right .p-form__radio input[type=radio] + span::before {
  border: 1px solid #191919;
  width: 0.875rem;
  height: 0.875rem;
}

.p-fv__right .p-form__radio input[type=radio]:checked + span::after {
  width: 0.625rem;
  height: 0.625rem;
  left: 0.125rem;
}

.p-fv__right .p-form__check {
  margin-top: 0.9375rem;
}

.p-fv__right .p-form__check-text input::before {
  top: 47%;
}

.p-fv__right .p-form__check-text input::after {
  top: 0.125rem;
}

.p-fv__right .p-form__button {
  margin-top: 0.9375rem;
}

.p-fv__right .p-form__button-img {
  max-width: 21.875rem;
  line-height: 1;
}

.p-fv__right .p-form__button-img input {
  height: 3.9375rem;
}

.p-fv {
  padding: 9.0625rem 0 2.8125rem;
  background-image: url(../images/top/fv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding: 0.625rem 0 0.375rem;
    background-image: url(../images/top/fv-bg-sp.png);
  }
}

.p-fv__inner {
  max-width: 95.625rem;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 1441px) {
  .p-fv__inner {
    max-width: 81.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding: 0 0.5625rem;
  }
}

.p-fv__wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 3.75rem;
}
@media screen and (max-width: 1441px) {
  .p-fv__wrapper {
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.p-fv__left {
  width: 42.57%;
}
@media screen and (max-width: 1441px) {
  .p-fv__left {
    width: 45%;
  }
}

.p-fv__right {
  width: 41.08%;
}
@media screen and (max-width: 1441px) {
  .p-fv__right {
    width: 47%;
  }
}

.p-header {
  height: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.4375rem;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  max-width: 120rem;
  padding: 0 5.9375rem 0 15.9375rem;
  margin: 0 auto;
}
@media screen and (max-width: 1441px) {
  .p-header__inner {
    padding: 0 1.5625rem 0 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 0 0 0.625rem;
  }
}

.p-header__logo {
  height: inherit;
}

.p-header__logo a {
  display: flex;
  align-items: center;
  max-width: 13.75rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    max-width: 5.9375rem;
  }
}

.p-header__nav {
  height: inherit;
}

.p-header__nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  height: inherit;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-header__nav-items {
    gap: 0;
  }
}

.p-header__nav-item {
  height: inherit;
  max-width: 23.5rem;
}

@media screen and (max-width: 767px) {
  .p-header__nav-item:first-of-type {
    max-width: 8.1875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav-item:last-of-type {
    max-width: 4.375rem;
  }
}

.p-header__nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.p-reason-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-reason-list__item.p-reason-list__item--reverse {
  flex-direction: row-reverse;
}

.p-reason-list__item:not(:first-of-type) {
  margin-top: 2.1875rem;
}

.p-reason-list__item-img {
  width: 16.64%;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-img {
    position: absolute;
    top: -1.625rem;
    right: -0.1875rem;
    width: 5.3125rem;
    z-index: 1;
  }
}

.p-reason-list__item-box {
  position: relative;
  width: 75.27%;
  padding: 2.125rem 2.9375rem;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 2px solid #2AA738;
  border-radius: 16px;
  box-shadow: 2px 2px 3px rgba(132, 132, 132, 0.42);
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-box {
    width: 100%;
    padding: 1.0625rem 1.875rem 1.5625rem 0.9375rem;
    flex-direction: column;
    border-radius: 14px;
    box-shadow: unset;
  }
}
.p-reason-list__item-box::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 100%;
  margin-top: -19px;
  border: 19px solid transparent;
  border-right: 28px solid #2AA738;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-box::before {
    display: none;
  }
}
.p-reason-list__item-box::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 99.9%;
  margin-top: -17px;
  border: 17px solid transparent;
  border-right: 26px solid #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-box::after {
    display: none;
  }
}

.p-reason-list__item.p-reason-list__item--reverse .p-reason-list__item-box::before {
  left: 100%;
  border-left: 28px solid #2AA738;
  border-right: none;
}
.p-reason-list__item.p-reason-list__item--reverse .p-reason-list__item-box::after {
  left: 99.9%;
  border-left: 26px solid #fff;
  border-right: none;
}

.p-reason-list__item-box-left {
  width: 60.6%;
  margin-top: -0.8125rem;
}

.p-reason-list__item-box-title {
  position: relative;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  color: #2AA738;
  padding: 0 0 0.9375rem 2.1875rem;
  background-image: linear-gradient(to right, #2AA738, #2AA738 5px, transparent 5px, transparent 10px);
  background-size: 10px 1.5px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-box-title {
    font-size: 1.25rem;
    line-height: 1.15;
    padding: 0 0 0.8125rem 4.0625rem;
  }
}
.p-reason-list__item-box-title::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: -0.4375rem;
  left: -3.75rem;
  width: 5.1875rem;
  height: 2.875rem;
  background-image: url(../images/top/reason-number01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-box-title::before {
    top: -0.3125rem;
    left: 0;
    width: 3.75rem;
    height: 2.0625rem;
  }
}

.p-reason-list__item-box-title.p-reason-list__item-box-title--before::before {
  top: 0.75rem;
}

.p-reason-list__item:nth-of-type(3) .p-reason-list__item-box-title::before,
.p-reason-list__item:nth-of-type(4) .p-reason-list__item-box-title::before {
  background-image: url(../images/top/reason-number02.svg);
}

.p-reason-list__item:nth-of-type(5) .p-reason-list__item-box-title::before,
.p-reason-list__item:nth-of-type(6) .p-reason-list__item-box-title::before {
  background-image: url(../images/top/reason-number03.svg);
}

.p-reason-list__item-box-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-box-text {
    margin-top: 0.8125rem;
    padding-left: 0.9375rem;
    line-height: 1.5;
  }
}

.p-reason-list__item-box-right {
  width: 35.83%;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-box-right {
    margin-top: 1rem;
    width: 76.7%;
    margin-inline: auto;
  }
}

.p-reason {
  padding: 4.375rem 0 12.5rem;
  background-image: url(../images/top/reason-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding: 2.8125rem 0 3.75rem;
    background-image: url(../images/top/reason-bg-sp.png);
  }
}

.p-reason__title {
  max-width: 43.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    width: 96%;
    padding-right: 0.3125rem;
  }
}

.p-reason__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-reason__list {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    margin-top: 3.75rem;
  }
}

.p-strengths-list__item {
  position: relative;
  padding: 5.625rem 3.125rem 2.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, transparent 15px, #fff 0) top left, linear-gradient(-135deg, transparent 15px, #fff 0) top right, linear-gradient(-45deg, transparent 15px, #fff 0) bottom right, linear-gradient(45deg, transparent 15px, #fff 0) bottom left;
  background-size: 52% 52%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-strengths-list__item {
    padding: 4.1875rem 1.0625rem 1.5625rem;
    flex-direction: column-reverse;
    background: linear-gradient(135deg, transparent 8px, #fff 0) top left, linear-gradient(-135deg, transparent 8px, #fff 0) top right, linear-gradient(-45deg, transparent 8px, #fff 0) bottom right, linear-gradient(45deg, transparent 8px, #fff 0) bottom left;
    background-size: 52% 52%;
    background-repeat: no-repeat;
    gap: 0.625rem;
  }
}

.p-strengths-list__item:not(:first-of-type) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-strengths-list__item:not(:first-of-type) {
    margin-top: 2.8125rem;
  }
}

.p-strengths-list__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-strengths-list__item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .p-strengths-list__item:nth-of-type(4) {
    padding: 5.625rem 1.0625rem 1.5625rem;
  }
}

.p-strengths-list__item-title {
  position: absolute;
  max-width: 45.625rem;
  top: -2.1875rem;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-strengths-list__item-title {
    width: 94%;
    top: -0.9375rem;
    left: 0;
  }
}

.p-strengths-list__item-title.p-strengths-list__item-title--large {
  max-width: 65.875rem;
}

.p-strengths-list__item-title img,
.p-strengths-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-strengths-list__item-img {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .p-strengths-list__item-img {
    width: 94%;
  }
}

.p-strengths-list__item-text {
  width: 49%;
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.8947368421;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-strengths-list__item-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.625;
  }
}

.p-strengths {
  margin-top: -4.6875rem;
  padding: 9.375rem 0 5.3125rem;
  background-image: url(../images/top/strengths-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-strengths {
    margin-top: -5rem;
    padding: 7.1875rem 0 2.8125rem;
    background-image: url(../images/top/strengths-bg-sp.png);
  }
}
@media screen and (max-width: 450px) {
  .p-strengths {
    margin-top: -3.75rem;
  }
}
@media screen and (max-width: 399px) {
  .p-strengths {
    margin-top: -3.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-strengths__subTitle.u-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-right: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-strengths__subTitle img {
    display: block;
    width: 10.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-strengths__subTitle p {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
  }
}

.p-strengths__title {
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-strengths__title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    line-height: 1.3333333333;
    letter-spacing: 0.1em;
  }
}

.p-strengths__list {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-strengths__list {
    margin-top: 2.6875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-contact--tanks .p-contact__title {
    top: -3.125rem;
  }
}
@media screen and (max-width: 450px) {
  .p-contact--tanks .p-contact__title {
    top: -1.5rem;
  }
}

.p-thanks-wrap {
  padding: 8.25rem 4.8125rem 5.625rem;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .p-thanks-wrap {
    padding: 3rem 1.0625rem 2.1875rem;
    border-radius: 6px;
  }
}

.p-thanks-wrap p {
  font-size: 1.1875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks-wrap p {
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }
}

.p-thanks-wrap p:not(:first-of-type) {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-thanks-wrap p:not(:first-of-type) {
    margin-top: 1.75rem;
  }
}

.p-thanks__btn {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn {
    margin-top: 1.5625rem;
  }
}

.p-thanks__btn a {
  position: relative;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #D4A744;
  padding-left: 1.5625rem;
  border-bottom: 1px solid #D4A744;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn a {
    font-size: 1rem;
    padding-left: 1.375rem;
  }
}
.p-thanks__btn a::before {
  position: absolute;
  display: inline-block;
  content: "";
  bottom: 0.3125rem;
  left: 0;
  width: 0.3125rem;
  height: 0.625rem;
  background-image: url(../images/common/thanks-arow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.p-worries {
  position: relative;
  padding: 5rem 0 8.4375rem;
  background-image: url(../images/top/worries-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-worries {
    background-position: bottom;
    padding: 2.8125rem 0 9.375rem;
    background-image: url(../images/top/worries-bg-sp.png);
  }
}
@media screen and (max-width: 399px) {
  .p-worries {
    padding: 2.8125rem 0 6.5rem;
  }
}

.p-worries__inner {
  max-width: 66.875rem;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-worries__inner {
    max-width: 33.75rem;
    padding: 0 10px;
  }
}

.p-worries__title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.09em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-worries__title {
    font-size: 1.875rem;
    line-height: 1.3333333333;
    letter-spacing: 0.1em;
  }
}

.p-worries__title span.tag {
  position: relative;
  display: inline-block;
}
.p-worries__title span.tag::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: -3.375rem;
  right: -2.875rem;
  width: 2.5625rem;
  height: 3.375rem;
  background-image: url(../images/top/worries-tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-worries__title span.tag::before {
    top: 1.0625rem;
    right: -2.5rem;
    width: 2.0625rem;
    height: 2.6875rem;
  }
}

.p-worries__title span.green {
  color: #2AA738;
}

.p-worries__img {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-worries__img {
    margin-top: 0.875rem;
  }
}

.p-worries__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-worries__text {
  margin-top: 2.5rem;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-worries__text {
    margin-top: 1.1875rem;
    font-size: 1.75rem;
    line-height: 1.2857142857;
    letter-spacing: 0.01em;
  }
}

.p-worries__logo {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 21.4375rem;
}

.fade-in {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s;
}
.fade-in.fade-in-bottom {
  transform: translate(0, 30px);
}
.fade-in.scroll-in {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */

/* プライバシーポリシー */
.p-policy{
  margin-top: 170px;
  margin-bottom: 70px;
}

.p-policy h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
  color: #2AA738;
}

.p-policy .p-thanks__btn{
    margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .p-policy {
      margin-top: 80px;
      margin-bottom: 30px;
    }
  .p-policy h2 {
    font-size: 24px;
    }
}
.p-policy h3{
margin-top: 30px;
}


