@charset "UTF-8";
/*
  Foundation
---------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-appearance: unset;
  -moz-appearance: unset;
       appearance: unset;
  border: none;
  border-spacing: 0;
  box-sizing: border-box;
  font-size: unset;
  font-weight: unset;
  letter-spacing: 0.05em;
  line-height: 1.3em;
  list-style-type: none;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  outline: none;
  padding: 0;
  text-align: unset;
  text-decoration: none;
}

/**
 * Foudation / Font
 */
/**
 * Loading Fonts
 */
@font-face {
  font-family: "ゴシックMB101";
  font-style: normal;
  font-weight: 500;
  src: url("../../src/font/A-OTF-GothicMB101Pr5-Medium.otf") format("opentype");
}
@font-face {
  font-family: "ゴシックMB101";
  font-style: normal;
  font-weight: 600;
  src: url("../../src/font/A-OTF-GothicMB101Pr5-DeBold.otf") format("opentype");
}
/**
 * Size
 */
/**
 * Weight
 */
/**
 * Family
 */
/**
 * Foudation / Color
 */
:root {
  --color-red: #ff5c5c;
  --color-blue: #00a6ca;
  --color-white: #fff;
  --color-gray: #999;
  --color-black: #3d3c3c;
  --color-base: #fff;
}

/**
 * Break Points
 */
/**
 * Content Width
 */
/**
 * Disable :hover on touch devices
 */
/**
 * Section Heading Styles
 */
/**
 * Image File Path
 */
/**
 * Transition
 */
/**
 * Z-index
 */
/**
 * Break Points
 */
/**
 * Content Width
 */
/**
 * Disable :hover on touch devices
 */
/**
 * Section Heading Styles
 */
/**
 * Foudation / Base
 */
*::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}
*::selection {
  background: rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "ゴシックMB101", sans-serif;
  font-weight: 500;
  background: var(--color-base);
  color: var(--color-black);
  font-style: normal;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5 {
  word-break: break-all;
}

select {
  line-height: 1.1em;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  max-width: 100%;
}

p {
  line-height: 2em;
  text-align: justify;
}

a {
  color: inherit;
}
a:not([class]) {
  color: var(--color-blue);
  transition: opacity 0.15s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  a:not([class]):hover {
    opacity: 0.6;
  }
}

button {
  background: none;
  color: inherit;
  cursor: pointer;
}

textarea,
input,
select {
  font-family: "ゴシックMB101", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.075em;
}
textarea::-moz-placeholder, input::-moz-placeholder, select::-moz-placeholder {
  color: var(--color-gray-300);
}
textarea::placeholder,
input::placeholder,
select::placeholder {
  color: var(--color-gray-300);
}

select {
  color: var(--color-black);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
}

_::-webkit-full-page-media, _:future, :root body {
  height: -webkit-fill-available;
}

a, area, button, [role=button], input:not([type=range]),
label, select, summary, textarea {
  touch-action: manipulation;
}

/*
  Layout
---------------------------------------------------*/
/**
 * Layout / Header
 */
.l-header {
  align-items: center;
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  width: 100%;
}
.l-header__logo {
  width: 20%;
}
.l-header__logo img {
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}
.l-header__cta {
  display: block;
  width: 18%;
}
.l-header__cta img {
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}
.l-header__cta .tel-num {
  display: block;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0px;
  font-weight: bold;
  color: #ff5d5d;
}
.l-header__cta .tel-text {
  display: block;
  font-size: 15px;
  text-align: center;
  display: block;
}

@media (max-width: 767px) {
  .l-header {
    padding: 10px 60px;
  }
}
@media (max-width: 767px) and (min-width: 1081px) {
  .l-header {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(800px + 10vw + 10vw);
  }
}
@media (max-width: 767px) and (max-width: 1080px) {
  .l-header {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .l-header {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
@media (max-width: 767px) {
  .l-header__logo {
    width: 47%;
  }
  .l-header__cta {
    width: 40%;
  }
  .l-header__cta .tel-num {
    font-size: 18px;
  }
  .l-header__cta .tel-text {
    font-size: 5px;
  }
}
/**
 * Layout / Footer
 */
.l-footer {
  background: #f1f1f1;
  padding: 20px;
}
.l-footer__copyright {
  display: block;
  font-size: 12px;
  text-align: center;
}

/*
  Object
---------------------------------------------------*/
/*------------------- Component -------------------*/
/**
 * Actions
 */
/**
 * Object / Component / Actions / Button
 *
 * ボタンコンポーネント
 */
/**
 * Import Modules
 */
/**
 * Styles
 */
/*-------------------- Project --------------------*/
.p-kv {
  display: block;
  height: auto;
  width: 100%;
}
.p-kv img {
  display: flex;
  height: 100%;
  width: 100%;
}

.p-cv {
  padding-top: 80px;
  padding-bottom: 80px;
  /**
   * Mail
   */
  /**
   * Tel
   */
  /**
   * Note
   */
}
.p-cv.-with-lead {
  padding-top: 60px;
}
.p-cv__inner {
  margin: auto;
  width: 90%;
}
@media (min-width: 1081px) {
  .p-cv__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(800px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-cv__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-cv__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-cv__lead-text {
  font-size: 21px;
  line-height: 1.7em;
  padding-bottom: 40px;
  text-align: center;
}
.p-cv__lead-text strong {
  background: linear-gradient(transparent 80%, #ffaeae 0%);
}
.p-cv__heading {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
.p-cv__heading strong {
  color: var(--color-red);
  font-size: 140%;
}
.p-cv__cta {
  display: grid;
  gap: 22px;
  padding-top: 15px;
}
.p-cv__cta-mail {
  display: block;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0.15, 0, 1);
}
.p-cv__cta-mail::before {
  background: #ae6060;
  border-radius: 12px;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0.15, 0, 1);
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .p-cv__cta-mail:hover {
    transform: translateY(12px);
  }
  .p-cv__cta-mail:hover::before {
    transform: translateY(-12px);
  }
}
.p-cv__cta-mail.--line::before {
  background: #04804c;
  border-radius: 12px;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0.15, 0, 1);
}
.p-cv__cta-mail-label {
  background: var(--color-red);
  border-radius: 7px 7px 0 0;
  color: var(--color-white);
  display: block;
  font-size: 24px;
  font-weight: 600;
  padding: 5px;
  text-align: center;
  text-shadow: 2px 2px 0px #c4534a;
}
.p-cv__cta-mail-label.--line {
  background: #06c775;
  text-shadow: 2px 2px 0px #04804c;
}
.p-cv__cta-mail-title {
  align-items: center;
  background: var(--color-white);
  border: 10px solid var(--color-red);
  border-top: none;
  border-radius: 0 0 12px 12px;
  color: var(--color-red);
  display: flex;
  font-size: 54px;
  font-weight: 600;
  gap: 28px;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.p-cv__cta-mail-title::before {
  content: "";
  background: url("../img/icon_cv_cta_mail.png") no-repeat center center/contain;
  height: 59px;
  width: 74px;
}
.p-cv__cta-mail-title::after {
  content: "";
  background: #fbd6d3;
  -webkit-clip-path: polygon(0 75%, 100% 15%, 100% 100%, 0% 100%);
          clip-path: polygon(0 75%, 100% 15%, 100% 100%, 0% 100%);
  opacity: 0.14;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.p-cv__cta-mail-title.--line {
  border-color: #06c775;
  color: #06c775;
}
.p-cv__cta-mail-title.--line::before {
  content: "";
  background: url("../img/icon_cv_cta_mail_line.png") no-repeat center center/contain;
  height: 59px;
  width: 74px;
}
.p-cv__cta-mail-title.--line::after {
  background: #e8f9f3;
}
.p-cv__cta-tel {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0.15, 0, 1);
  z-index: 1;
}
.p-cv__cta-tel::before {
  background: #3f9faa;
  border-radius: 7px;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0.15, 0, 1);
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .p-cv__cta-tel:hover {
    transform: translateY(12px);
  }
  .p-cv__cta-tel:hover::before {
    transform: translateY(-12px);
  }
}
.p-cv__cta-tel-inner {
  align-items: center;
  background: #52d2e0;
  border-radius: 7px;
  color: var(--color-white);
  display: flex;
  gap: 28px;
  justify-content: center;
  padding: 10px;
  position: relative;
  z-index: 1;
}
.p-cv__cta-tel-inner::before {
  content: "";
  background: url("../img/icon_cv_cta_tel.png") no-repeat center center/contain;
  filter: drop-shadow(2px 2px 0px #36aec8);
  height: 62px;
  width: 49px;
}
.p-cv__cta-tel-inner::after {
  content: "";
  background: #52d2e0;
  -webkit-clip-path: polygon(0 70%, 100% 25%, 100% 100%, 0% 100%);
          clip-path: polygon(0 70%, 100% 25%, 100% 100%, 0% 100%);
  mix-blend-mode: multiply;
  opacity: 0.14;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.p-cv__cta-tel-content {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  text-shadow: 2px 2px 0px #36aec8;
}
.p-cv__cta-tel-title {
  display: block;
}
.p-cv__cta-tel-caption {
  display: block;
  font-size: 60%;
}
.p-cv__note {
  display: block;
  font-weight: 600;
  font-size: 18px;
  padding-top: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-cv {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .p-cv.-with-lead {
    padding-top: 30px;
  }
  .p-cv__inner {
    width: 100%;
  }
  .p-cv__lead-text {
    font-size: 16px;
    padding-bottom: 30px;
  }
  .p-cv__heading {
    font-size: 18px;
  }
  .p-cv__cta {
    padding-top: 10px;
  }
  .p-cv__cta-mail-label {
    font-size: 18px;
  }
  .p-cv__cta-mail-title {
    font-size: 28px;
    gap: 15px;
    padding: 7px;
  }
  .p-cv__cta-mail-title::before {
    height: 28px;
    width: 36px;
  }
  .p-cv__cta-tel-inner {
    gap: 5px;
  }
  .p-cv__cta-tel-inner::before {
    height: 34px;
    width: 27px;
  }
  .p-cv__cta-tel-content {
    font-size: 21px;
  }
  .p-cv__note {
    font-size: 12px;
    padding-top: 20px;
  }
}
.p-trouble {
  background: #fff7f7;
}
.p-trouble__head {
  background-color: #ffc7c7;
  background-image: repeating-linear-gradient(-30deg, #ffbdbd, #ffbdbd 5px, transparent 0, transparent 10px);
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}
.p-trouble__head::before, .p-trouble__head::after {
  background: #fff7f7;
  content: "";
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  position: absolute;
  bottom: -0.5px;
  height: 40px;
  width: 50%;
}
.p-trouble__head::before {
  left: 0;
}
.p-trouble__head::after {
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .p-trouble__head {
    background-image: repeating-linear-gradient(-47.5deg, #ffbdbd, #ffbdbd 4px, transparent 0, transparent 8px);
    padding: 30px 3vw 50px;
  }
  .p-trouble__head::before, .p-trouble__head::after {
    height: 20px;
  }
}
.p-trouble__heading {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 600;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-trouble__heading::before {
  content: attr(data-text);
  color: #ff5a5a;
  filter: url(#gooey);
  -webkit-text-stroke: 2px #ff5a5a;
  inset: 0;
  margin: auto;
  position: absolute;
  height: -moz-max-content;
  height: max-content;
  width: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-trouble__heading {
    font-size: 28px;
    line-height: 1.5em;
  }
  .p-trouble__heading::before {
    content: attr(data-mobile-text);
    filter: none;
    line-height: 1.5em;
    -webkit-text-stroke: 4px #ff5a5a;
    white-space: pre;
  }
}
.p-trouble__main {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 1081px) {
  .p-trouble__main {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(800px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-trouble__main {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-trouble__main {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
* + .p-trouble__description {
  padding-top: 40px;
}
.p-trouble__description-line {
  font-size: 18px;
  line-height: 1.8em;
  text-align: center;
}
.p-trouble__description-line + .p-trouble__description-line {
  padding-top: 30px;
}
.p-trouble__description-line strong {
  background: linear-gradient(transparent 80%, #ffa9a9 0%);
}
.p-trouble__trouble-box {
  margin: auto;
  padding-top: 50px;
  width: 80%;
}
.p-trouble__trouble-box-heading {
  background: #9c8080;
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  line-height: 1em;
  padding: 18px;
  text-align: center;
}
.p-trouble__trouble-box-content {
  background: var(--color-white);
  border: 3px solid #9c8080;
  padding: 20px 40px;
}
.p-trouble__trouble-item {
  align-items: center;
  display: flex;
  gap: 30px;
  margin: auto;
}
.p-trouble__trouble-item-icon {
  height: 115px;
  width: 115px;
}
.p-trouble__trouble-item-icon img {
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}
.p-trouble__trouble-item-text {
  display: block;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.7em;
}

@media (max-width: 767px) {
  .p-trouble__main {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  * + .p-trouble__description {
    padding-top: 20px;
  }
  .p-trouble__description-line {
    font-size: 16px;
  }
  .p-trouble__description-line + .p-trouble__description-line {
    padding-top: 15px;
  }
  .p-trouble__trouble-box {
    padding-top: 30px;
    width: 100%;
  }
  .p-trouble__trouble-box-heading {
    font-size: 24px;
  }
  .p-trouble__trouble-box-content {
    padding: 3vw;
  }
  .p-trouble__trouble-item {
    gap: 20px;
    width: 90%;
  }
  .p-trouble__trouble-item + .p-trouble__trouble-item {
    padding-top: 5px;
  }
  .p-trouble__trouble-item-icon {
    height: 80px;
    width: 80px;
  }
  .p-trouble__trouble-item-text {
    font-size: 16px;
    line-height: 1.3em;
  }
}
.p-mistakes {
  background: #f9f8ff;
}
.p-mistakes__head {
  background-color: #ded2f9;
  background-image: repeating-linear-gradient(-30deg, #dfbdff, #dfbdff 5px, transparent 0, transparent 10px);
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}
.p-mistakes__head::before, .p-mistakes__head::after {
  background: #f9f8ff;
  content: "";
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  position: absolute;
  bottom: -0.5px;
  height: 40px;
  width: 50%;
}
.p-mistakes__head::before {
  left: 0;
}
.p-mistakes__head::after {
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .p-mistakes__head {
    background-image: repeating-linear-gradient(-47.5deg, #dfbdff, #dfbdff 4px, transparent 0, transparent 8px);
    padding: 30px 3vw 50px;
  }
  .p-mistakes__head::before, .p-mistakes__head::after {
    height: 20px;
  }
}
.p-mistakes__heading {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 600;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-mistakes__heading::before {
  content: attr(data-text);
  color: #7f59aa;
  filter: url(#gooey);
  -webkit-text-stroke: 2px #7f59aa;
  inset: 0;
  margin: auto;
  position: absolute;
  height: -moz-max-content;
  height: max-content;
  width: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-mistakes__heading {
    font-size: 28px;
    line-height: 1.5em;
  }
  .p-mistakes__heading::before {
    content: attr(data-mobile-text);
    filter: none;
    line-height: 1.5em;
    -webkit-text-stroke: 4px #7f59aa;
    white-space: pre;
  }
}
.p-mistakes__main {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 1081px) {
  .p-mistakes__main {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(800px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-mistakes__main {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-mistakes__main {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-mistakes__main-top {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  width: 90%;
}
.p-mistakes__mistake-item-icon {
  display: block;
  margin: auto;
  height: 200px;
  width: 213px;
}
.p-mistakes__mistake-item-icon img {
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}
.p-mistakes__mistake-item-text {
  display: block;
  font-size: 18px;
  line-height: 1.5em;
  padding-top: 10px;
  text-align: center;
}
.p-mistakes__main-bottom {
  padding-top: 40px;
}
* + .p-mistakes__description {
  padding-top: 50px;
}
.p-mistakes__description-line {
  font-size: 18px;
  line-height: 1.7em;
  text-align: center;
}
.p-mistakes__description-line.-large {
  font-size: 23.4px;
}
.p-mistakes__description-line + .p-mistakes__description-line {
  padding-top: 30px;
}
.p-mistakes__description-line-strong1 {
  background: linear-gradient(transparent 80%, #f9a9ae 0%);
}
.p-mistakes__description-line-strong2 {
  color: #dd4b4b;
  border-bottom: 2px solid #dd4b4b;
  font-size: 120%;
}
.p-mistakes__description-line-caption {
  color: var(--color-gray);
  font-size: 80%;
}
.p-mistakes__main-bottom-image {
  display: block;
  margin: auto;
  padding-top: 10px;
  height: 263px;
  width: auto;
}
.p-mistakes__main-bottom-image img {
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

@media (max-width: 767px) {
  .p-mistakes__main {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .p-mistakes__main-top {
    gap: 0px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "A A" "B C";
    width: 100%;
  }
  .p-mistakes__mistake-item:nth-child(1) {
    grid-area: A;
  }
  .p-mistakes__mistake-item:nth-child(2) {
    grid-area: B;
  }
  .p-mistakes__mistake-item:nth-child(3) {
    grid-area: C;
  }
  .p-mistakes__mistake-item-icon {
    height: 180px;
    width: auto;
  }
  .p-mistakes__mistake-item-text {
    font-size: 16px;
    line-height: 1.3em;
    padding-top: 10px;
  }
  * + .p-mistakes__description {
    padding-top: 30px;
  }
  .p-mistakes__description-line {
    font-size: 16px;
    line-height: 1.8em;
  }
  .p-mistakes__description-line + .p-mistakes__description-line {
    padding-top: 15px;
  }
  .p-mistakes__main-bottom-image {
    padding-top: 20px;
    height: 228px;
  }
}
.p-reason {
  background: #f7fdff;
}
.p-reason__head {
  background-color: #b0f1f3;
  background-image: repeating-linear-gradient(-30deg, #99ebfe, #99ebfe 5px, transparent 0, transparent 10px);
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}
.p-reason__head::before, .p-reason__head::after {
  background: #f7fdff;
  content: "";
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  position: absolute;
  bottom: -0.5px;
  height: 40px;
  width: 50%;
}
.p-reason__head::before {
  left: 0;
}
.p-reason__head::after {
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .p-reason__head {
    background-image: repeating-linear-gradient(-47.5deg, #99ebfe, #99ebfe 4px, transparent 0, transparent 8px);
    padding: 30px 3vw 50px;
  }
  .p-reason__head::before, .p-reason__head::after {
    height: 20px;
  }
}
.p-reason__heading {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 600;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-reason__heading::before {
  content: attr(data-text);
  color: #46b0b5;
  filter: url(#gooey);
  -webkit-text-stroke: 2px #46b0b5;
  inset: 0;
  margin: auto;
  position: absolute;
  height: -moz-max-content;
  height: max-content;
  width: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-reason__heading {
    font-size: 28px;
    line-height: 1.5em;
  }
  .p-reason__heading::before {
    content: attr(data-mobile-text);
    filter: none;
    line-height: 1.5em;
    -webkit-text-stroke: 4px #46b0b5;
    white-space: pre;
  }
}
.p-reason__main {
  display: grid;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 1081px) {
  .p-reason__main {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(800px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-reason__main {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-reason__main {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-reason__item-image {
  display: block;
  filter: drop-shadow(3px 3px 0px rgba(95, 165, 209, 0.25));
  margin: auto;
  width: 65%;
  max-width: 560px;
}
.p-reason__item-image img {
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}
.p-reason__item-heading {
  font-size: 24px;
  font-weight: 600;
  padding-top: 30px;
  text-align: center;
}
.p-reason__item-description {
  font-size: 16px;
  line-height: 2em;
  padding-top: 15px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-reason__main {
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .p-reason__item-image {
    width: 100%;
    max-width: unset;
  }
  .p-reason__item-heading {
    font-size: 21px;
    padding-top: 24px;
  }
  .p-reason__item-description {
    line-height: 1.8em;
    text-align: unset;
  }
}
.p-voices {
  background: #f6ffed;
}
.p-voices__head {
  background-color: #d1f3b0;
  background-image: repeating-linear-gradient(-30deg, #d0fc8e, #d0fc8e 5px, transparent 0, transparent 10px);
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}
.p-voices__head::before, .p-voices__head::after {
  background: #f6ffed;
  content: "";
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  position: absolute;
  bottom: -0.5px;
  height: 40px;
  width: 50%;
}
.p-voices__head::before {
  left: 0;
}
.p-voices__head::after {
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .p-voices__head {
    background-image: repeating-linear-gradient(-47.5deg, #d0fc8e, #d0fc8e 4px, transparent 0, transparent 8px);
    padding: 30px 3vw 50px;
  }
  .p-voices__head::before, .p-voices__head::after {
    height: 20px;
  }
}
.p-voices__heading {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 600;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-voices__heading::before {
  content: attr(data-text);
  color: #78b14e;
  filter: url(#gooey);
  -webkit-text-stroke: 2px #78b14e;
  inset: 0;
  margin: auto;
  position: absolute;
  height: -moz-max-content;
  height: max-content;
  width: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-voices__heading {
    font-size: 28px;
    line-height: 1.5em;
  }
  .p-voices__heading::before {
    content: attr(data-mobile-text);
    filter: none;
    line-height: 1.5em;
    -webkit-text-stroke: 4px #78b14e;
    white-space: pre;
  }
}
.p-voices__main {
  display: grid;
  gap: 30px;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 1081px) {
  .p-voices__main {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(800px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-voices__main {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-voices__main {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-voices__item {
  margin: auto;
  position: relative;
  width: 90%;
  z-index: 1;
}
.p-voices__item::before {
  content: "";
  background: #dedede;
  border-radius: 8px;
  position: absolute;
  top: 3px;
  left: 3px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.p-voices__item::after {
  content: "";
  background: url("../img/img_voices_item_heading.png") no-repeat center center/contain;
  position: absolute;
  top: -10px;
  left: 30px;
  height: 91px;
  width: 59px;
}
.p-voices__item-inner {
  background: var(--color-white);
  border: 2px solid #dedede;
  border-radius: 8px;
  padding: 40px 100px 30px;
}
.p-voices__item-heading {
  color: #6aa5b4;
  font-size: 24px;
  font-weight: 600;
}
.p-voices__item-content {
  font-size: 16px;
  line-height: 2.2em;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .p-voices__main {
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .p-voices__item {
    width: 100%;
  }
  .p-voices__item::after {
    top: -5px;
    left: 20px;
    height: 70px;
    width: 45px;
  }
  .p-voices__item-inner {
    padding: 30px 20px 15px;
  }
  .p-voices__item-heading {
    font-size: 21px;
    padding-left: 60px;
  }
  .p-voices__item-content {
    font-size: 14px;
    line-height: 1.8em;
    padding-top: 20px;
  }
}
/*-------------------- Utility --------------------*/
/**
 * Object / Utility / Tools
 */
/**
 * Margin
 */
.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

/**
 * Text Align
 */
.u-ta-r {
  text-align: right !important;
}

.u-ta-c {
  text-align: center !important;
}

/**
 * Media Queries
 */
@media (min-width: 1081px) {
  .u-dn-pc {
    display: none !important;
  }
}

@media (max-width: 1080px) and (min-width: 768px) {
  .u-dn-tab {
    display: none !important;
  }
}

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