@charset "UTF-8";
:root {
  /* color */
  --white: #fff;
  --black: #333;
  --orange: #E35623;
  --orange02: #FF7600;
  --orangeHover: #EA8460;
  --yellow: #FED62E;
  --green: #27C701;
  --green02: #7AE039;
  --blue: #1779CD;
  --blue-bg: #ECF3FD;
  --navy: #2D3770;
  --shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  --gray-border: #D7D7D7;
  --gray-text: #979494;
  --gray-bg-f0: #F0F0F0;
  --gray-bg-f1: #F1F1F1;
  --gray-bg-f2: #F2F2F2;
  --gray-placeholder: #D9D9D9;
  --red-attention:#D42926;
  --gra-skew: linear-gradient(78deg, #22BEBB -8.83%, #1779CD 78.35%);
  --gra-horizon: linear-gradient(90deg, #22BEBB 0%, #1779CD 100%);
  --gra-contact: linear-gradient(263deg, #BA1D14 5.45%, #7A0600 95.09%);
  --gra-hover: linear-gradient(263deg, #7A0600 0%, #BA1D14 100%);
  --gra-hover-blue: linear-gradient(90deg, #1779CD 0%, #22BEBB 100%);
  /* font-family */
  --sans: "Noto Sans JP", sans-serif;
  --btn: "Roboto", sans-serif;
  --en: "Roboto Condensed", sans-serif;
  --jp: "Inter", sans-serif;
  --mplus: "M PLUS 1p", sans-serif;
}

.p-contact__form {
  margin-top: 20px;
  font-weight: bold;
}
.p-contact__form .p-contact__form-title {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .p-contact__form .p-contact__form-title {
    font-size: 32px;
  }
}
.p-contact__form .form-wrap {
  border-radius: 8px;
  margin-top: 20px;
  background: #fff;
  padding: 26px 20px 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media only screen and (min-width: 768px) {
  .p-contact__form .form-wrap {
    padding: 40px 80px 60px;
    row-gap: 40px;
  }
}
@media screen and (769px < width <= 1024px) {
  .p-contact__form .form-wrap {
    padding: 60px;
  }
}
.p-contact__form__text {
  margin-bottom: 60px;
  text-align: center;
}
.p-contact__form .formRow {
  display: grid;
  grid-template-columns: 1fr 435px;
  -webkit-column-gap: 38px;
     -moz-column-gap: 38px;
          column-gap: 38px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media only screen and (max-width: 767px) {
  .p-contact__form .formRow {
    row-gap: 12px;
    grid-template-columns: 1fr;
  }
}
.p-contact__form .label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
}
.p-contact__form .label:after {
  content: "";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 100%;
  padding: 4px 10px;
  margin-left: 10px;
}
.p-contact__form .label[data-label=optional]:after {
  content: "任意";
  border: 1px solid var(--green);
  color: var(--green);
}
.p-contact__form .label[data-label=required]:after {
  content: "必須";
  border: 1px solid #E35623;
  color: #E35623;
}
@media only screen and (min-width: 768px) {
  .p-contact__form .label.u-mt {
    position: relative;
    top: -9px;
  }
}
.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form textarea,
.p-contact__form select {
  display: block;
  width: 100%;
  background: #ffffff;
  border: 1px solid #C5D6BD;
  border-radius: 4px;
  font-size: 14px;
  padding: 9px 12px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-contact__form input[type=text],
  .p-contact__form input[type=email],
  .p-contact__form textarea,
  .p-contact__form select {
    font-size: 16px;
  }
}
.p-contact__form input[type=text]::-webkit-input-placeholder, .p-contact__form input[type=email]::-webkit-input-placeholder, .p-contact__form textarea::-webkit-input-placeholder, .p-contact__form select::-webkit-input-placeholder {
  color: #B5B5B5;
  font-weight: 400;
}
.p-contact__form input[type=text]::-moz-placeholder, .p-contact__form input[type=email]::-moz-placeholder, .p-contact__form textarea::-moz-placeholder, .p-contact__form select::-moz-placeholder {
  color: #B5B5B5;
  font-weight: 400;
}
.p-contact__form input[type=text]:-ms-input-placeholder, .p-contact__form input[type=email]:-ms-input-placeholder, .p-contact__form textarea:-ms-input-placeholder, .p-contact__form select:-ms-input-placeholder {
  color: #B5B5B5;
  font-weight: 400;
}
.p-contact__form input[type=text]::-ms-input-placeholder, .p-contact__form input[type=email]::-ms-input-placeholder, .p-contact__form textarea::-ms-input-placeholder, .p-contact__form select::-ms-input-placeholder {
  color: #B5B5B5;
  font-weight: 400;
}
.p-contact__form input[type=text]::placeholder,
.p-contact__form input[type=email]::placeholder,
.p-contact__form textarea::placeholder,
.p-contact__form select::placeholder {
  color: #B5B5B5;
  font-weight: 400;
}
.p-contact__form textarea {
  height: 160px;
}
.p-contact__form .wpcf7-list-item {
  margin-left: 0;
}
.p-contact__form .checkList .wpcf7-form-control {
  padding: 9px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .p-contact__form .checkList .wpcf7-form-control {
    padding: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-contact__form .wpcf7-list-item {
  margin: 0 !important;
  cursor: pointer;
}
.p-contact__form .wpcf7-list-item label {
  cursor: pointer;
}
.p-contact__form .submitButton {
  text-align: center;
  margin-top: 16px;
}
.p-contact__form input:focus, .p-contact__form textarea:focus, .p-contact__form select:focus {
  outline: 1px solid #00B900;
}
.p-contact__form .submitButton {
  border-radius: 100px;
  margin: 16px auto 0;
  font-weight: bold;
  width: 100%;
  max-width: 280px;
  display: inline-block;
  position: relative;
  color: #fff;
  background: var(--orange02);
  -webkit-box-shadow: 0 4px 0 #E35623;
          box-shadow: 0 4px 0 #E35623;
  height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-contact__form .submitButton:hover {
    background: #FFB221;
    -webkit-box-shadow: 0 2px 0 #E35623;
            box-shadow: 0 2px 0 #E35623;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.p-contact__form .submitButton input {
  position: relative;
  z-index: 1;
  display: block;
  margin: auto;
  width: 100%;
  line-height: 50px;
}
.p-contact__form .wpcf7-form.invalid .wpcf7-response-output {
  text-align: center;
  color: #dc3232;
  font-weight: bold;
  border: none;
  margin: 0;
  font-size: 14px;
}
.p-contact__form .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}
.p-contact__form .wpcf7-not-valid-tip {
  font-size: 14px;
}
.p-contact__form .wpcf7-not-valid-tip:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: url(../images/icon_error.svg) no-repeat;
  background-size: contain;
  position: relative;
  top: 1px;
}
.p-contact__form .wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}
.p-contact__form .wpcf7-not-valid {
  border: 2px solid #E35623 !important;
}
.p-contact__form .selectbox-001 {
  position: relative;
}
.p-contact__form .selectbox-001 select {
  color: #111;
}
.p-contact__form .selectbox-001::before,
.p-contact__form .selectbox-001::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.p-contact__form .selectbox-001::after {
  position: absolute;
  top: calc(50% - 2px);
  right: 1.4em;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #B61B12;
  border-right: 2px solid #B61B12;
  z-index: 1;
}
.p-contact__form .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 32px;
  display: inline-block;
  position: relative;
}
.p-contact__form .wpcf7-list-item .wpcf7-list-item-label:before,
.p-contact__form .wpcf7-list-item .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #C5D6BD;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.p-contact__form .wpcf7-list-item .wpcf7-list-item-label:after {
  opacity: 0;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 7px;
  border: none;
  background: #539829;
}
.p-contact__form .wpcf7-list-item input[type=radio]:checked + span:after {
  opacity: 1;
}
.p-contact__form .wpcf7-list-item input[type=radio] {
  display: none;
}
.p-contact__form .privacy-checkbox {
  text-align: center;
  font-weight: 400;
}
.p-contact__form .privacy-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 14px;
}
.p-contact__form .privacy-checkbox label {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-contact__form .privacy-checkbox input[type=checkbox] {
  display: none;
}
.p-contact__form .privacy-checkbox .wpcf7-list-item-label:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: solid 1px #333;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-contact__form .privacy-checkbox .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 14px;
  background: url(../images/btn_check.svg) no-repeat;
  opacity: 0;
}
.p-contact__form .privacy-checkbox input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.p-contact__form .privacy-checkbox .wpcf7-not-valid {
  border: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 20px auto;
}

.wpcf7 form.sent .wpcf7-response-output {
  text-align: center;
  border: none;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 20px auto;
}

.p-thanks {
  background: #F9FFDB;
  padding: 40px 0;
}

.p-contact__thanks {
  margin-top: 20px;
  padding: 40px 20px;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .p-contact__thanks {
    padding: 40px 80px;
  }
}

.p-contact__thanks-message {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.p-contact__error {
  margin-top: 40px;
}

.p-contact__thanks-text {
  font-weight: 400;
  margin-top: 40px;
}

.p-contact__error-heading {
  font-weight: bold;
  font-size: 14px;
  border: 1px solid var(--green);
  text-align: center;
  line-height: 1;
  padding: 8px 4px;
}

.p-contact__error-text {
  font-weight: 400;
  margin-top: 20px;
  font-size: 14px;
}

.p-contact__thanks-back-btn {
  margin-top: 40px;
  text-align: center;
}

.c-privacy__link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
}

.c-privacy__link:hover {
  color: var(--green);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 20px;
  }
}

body {
  color: var(--black);
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Yu Gothic UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.625;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
}
body a,
body button,
body label {
  -webkit-tap-highlight-color: transparent;
}

@media only screen and (max-width: 767px) {
  [data-pc-only] {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  [data-sp-only] {
    display: none !important;
  }
}

a[href^="tel:"] {
  color: inherit;
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

figure {
  margin-bottom: 0;
  margin-top: 0;
}

dt {
  font-weight: normal;
}

[data-bg=dot] {
  background: url(../images/bg_dot.jpg) repeat;
}

.splide-wrapper {
  position: relative;
}
.splide-wrapper .splide__track {
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .splide-wrapper .splide__track {
    overflow: hidden;
  }
}

.splide-wrapper02 {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .splide-wrapper02 {
    padding: 0;
  }
}
.splide-wrapper02 .splide__track {
  overflow: visible;
}

.splide .splide__arrow:hover:not(:disabled) {
  opacity: 1;
}
.splide .splide__arrow {
  background: none;
  opacity: 1;
  background: url("../images/slide_arrow.svg") no-repeat;
  width: 40px;
  height: 40px;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .splide .splide__arrow {
    width: 32px;
    height: 32px;
  }
}
.splide .splide__arrow > svg {
  display: none;
}
.splide .splide__pagination {
  position: static;
}
.splide .splide__pagination__page {
  opacity: 1;
  border: 1px solid #539828;
  margin-right: 5px;
  margin-left: 5px;
  background: var(--white);
  width: 10px;
  height: 10px;
}
.splide .splide__pagination__page.is-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  background: var(--green);
}

.splide01 {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .splide01 {
    padding: 0;
    margin-top: 40px;
  }
}
.splide01 .splide__pagination {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .splide01 .splide__pagination {
    margin-top: 20px;
  }
}
.splide01 .splide__arrow {
  background: none;
  background: url("../images/slide_arrow.svg") no-repeat;
  width: 40px;
  height: 40px;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .splide01 .splide__arrow {
    width: 32px;
    height: 32px;
  }
}
.splide01 .splide__arrow--prev {
  left: -12px;
  background: url("../images/slide_arrow.svg") no-repeat;
  scale: -1 1;
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 768px) {
  .splide01 .splide__arrow--prev {
    left: -20px;
    width: 40px;
    height: 40px;
    background-size: cover;
  }
}
.splide01 .splide__arrow--next {
  right: -12px;
}
@media only screen and (min-width: 768px) {
  .splide01 .splide__arrow--next {
    right: -20px;
  }
}

.splide02 {
  margin-top: 28px;
}
@media only screen and (min-width: 768px) {
  .splide02 {
    margin-top: 30px;
  }
}
.splide02 .splide__pagination {
  margin-top: 40px;
}
.splide02 .splide__arrow--prev {
  left: -12px;
  scale: -1 1;
}
@media only screen and (min-width: 768px) {
  .splide02 .splide__arrow--prev {
    left: -20px;
  }
}
.splide02 .splide__arrow--next {
  right: -12px;
}
@media only screen and (min-width: 768px) {
  .splide02 .splide__arrow--next {
    right: -20px;
  }
}

/* アニメーション設定 */
.arrowWrap {
  position: absolute;
  right: 4px;
  bottom: 129px;
  height: 200px;
  z-index: 0;
}

.arrowInner p {
  font-size: 10px;
  font-family: var(--en);
  text-align: end;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  letter-spacing: 1px;
}

.arrow {
  width: 1px;
  height: 153px;
  margin: 25px auto 0;
  background-color: #ccc;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: "";
  width: 1px;
  height: 153px;
  margin-top: -153px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: arrow 2.5s ease infinite normal;
          animation: arrow 2.5s ease infinite normal;
}

@-webkit-keyframes arrow {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 153px;
    opacity: 0;
  }
}

@keyframes arrow {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 153px;
    opacity: 0;
  }
}
.l-header {
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.062745098);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.062745098);
  z-index: 10;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .l-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
  }
}

.l-header__inner {
  padding: 15px 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .l-header__inner {
    padding: 10px 0;
  }
}

.l-header__logo img {
  width: 100%;
  max-width: 340px;
  height: auto;
  max-height: 45px;
}
@media only screen and (max-width: 767px) {
  .l-header__logo img {
    max-width: 100%;
    max-width: 293px;
  }
}

.l-header__logo {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.l-header__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 10px;
}
.l-header__link a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__link a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__link .l-header__link-line,
.l-header__link .l-header__link-free {
  max-width: 150px;
  font-weight: 800;
}

.l-header__link-tel {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 20px;
  font-size: clamp(16px, 1.3888888889vw, 20px);
  font-weight: bold;
}

.l-header__link-tel:before {
  content: "";
  background: url(../images/icon_phone.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: 20px;
  position: relative;
  top: 2px;
}

.l-main {
  overflow-x: hidden;
}

.l-footer {
  padding: 40px 0 80px;
}
@media only screen and (min-width: 768px) {
  .l-footer {
    padding: 80px 0;
  }
}

.l-footer__inner {
  text-align: center;
  line-height: 1;
}

.l-footer__inner img {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.l-footer__info-company {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.l-footer__info {
  text-align: center;
}

.l-footer__info-address {
  font-size: 14px;
  margin-top: 17px;
  line-height: 1.4285714286;
}

.l-footer__works {
  margin-top: 36px;
  font-size: 14px;
}

.l-footer__works-heading {
  color: var(--green);
  position: relative;
  font-weight: bold;
}

.l-footer__works-heading:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  translate: -50% 0;
  background: var(--green);
  height: 1px;
  width: 20px;
}

.l-footer__works-lists {
  margin-top: 20px;
}

.l-footer__works-list + * {
  margin-top: 10px;
}

.copyright {
  display: block;
  margin-top: 60px;
  font-size: 14px;
}

.c-section-title {
  font-size: clamp(20px, 5.3333333333vw, 32px);
  line-height: 1.8;
  text-align: center;
  font-weight: bold;
  font-family: var(--mplus);
}
@media only screen and (min-width: 768px) {
  .c-section-title {
    line-height: 1.6;
  }
}

.c-section-title[data-heading=cta] {
  font-size: clamp(24px, 6.4vw, 32px);
  line-height: 1.3333333333;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .c-section-title[data-heading=cta] {
    font-size: 36px;
    line-height: 1.3333333333;
  }
}

.c-section-title[data-heading=worry] {
  font-size: clamp(24px, 6.4vw, 36px);
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .c-section-title[data-heading=worry] {
    white-space: nowrap;
    line-height: 1.4;
  }
}

.c-section-title[data-heading=access] {
  line-height: 1.4;
  font-size: clamp(24px, 6.4vw, 32px);
}

.c-section-title[data-heading=access]:before {
  content: "";
  display: block;
  margin: auto;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .c-section-title[data-heading=access]:before {
    width: 60px;
    height: 60px;
  }
}

.c-section-title[data-heading=faq] {
  font-size: 24px;
  font-size: clamp(24px, 6.4vw, 36px);
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .c-section-title[data-heading=faq] {
    font-size: 32px;
  }
}

.c-section-title[data-heading=faq]:before {
  content: "";
  display: block;
  margin: auto;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_faq.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .c-section-title[data-heading=faq]:before {
    width: 60px;
    height: 60px;
  }
}

.c-section-title[data-heading=form]:before {
  content: "";
  display: block;
  margin: auto;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_form.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .c-section-title[data-heading=form]:before {
    width: 60px;
    height: 60px;
  }
}

.c-section-inner {
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: auto;
}

.c-section-inner[data-width=sm] {
  max-width: 800px;
}

.c-section {
  padding: 100px 0 120px;
}
@media only screen and (max-width: 767px) {
  .c-section {
    padding: 50px 0;
  }
}

.c-button-wrap {
  margin-top: 24px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-button-wrap {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .c-button-wrap[data-margin=mv] {
    margin-top: 130px;
  }
}

.c-button {
  display: block;
  margin: auto;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}

@media (any-hover: hover) {
  .c-button:hover {
    -webkit-transition: background-color 0.3s transform 0.3s;
    transition: background-color 0.3s transform 0.3s;
  }
}
.c-button[data-btn=soudan] {
  width: 280px;
  background: var(--orange);
  font-size: 16px;
  text-align: center;
  border-radius: 100px;
  position: relative;
  padding: 15px 10px;
  z-index: 0;
  color: var(--white);
  line-height: 1.3;
  -webkit-box-shadow: 0 4px 0 #761212;
          box-shadow: 0 4px 0 #761212;
}
@media only screen and (min-width: 768px) {
  .c-button[data-btn=soudan] {
    width: 380px;
    font-size: 23px;
    padding: 18px 10px;
    line-height: 1.5;
    margin-top: 4px;
  }
}

.c-button[data-btn=soudan]:before {
  content: "";
  background: url(../images/icon_mail_close.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 2px;
  width: 18px;
  height: 15px;
}
@media only screen and (min-width: 768px) {
  .c-button[data-btn=soudan]:before {
    width: 24px;
    height: 20px;
  }
}

@media (any-hover: hover) {
  .c-button[data-btn=mv]:hover,
  .c-button[data-btn=soudan]:hover {
    background-color: var(--orangeHover);
    -webkit-box-shadow: 0 2px 0 #761212;
            box-shadow: 0 2px 0 #761212;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .c-button[data-btn=soudan]:hover::before {
    background-image: url(../images/icon_mail_open.svg);
    width: 18px;
    height: 18px;
  }
}
@media only screen and (any-hover: hover) and (min-width: 768px) {
  .c-button[data-btn=soudan]:hover::before {
    width: 24px;
    height: 24px;
  }
}
.c-button[data-btn=mv] {
  width: 280px;
  background: var(--orange);
  font-size: 18px;
  text-align: center;
  border-radius: 100px;
  position: relative;
  padding: 23px 0 15px;
  z-index: 0;
  color: var(--white);
  line-height: 1.3;
  -webkit-box-shadow: 0 4px 0 #761212;
          box-shadow: 0 4px 0 #761212;
}
@media only screen and (min-width: 768px) {
  .c-button[data-btn=mv] {
    width: clamp(340px, 27.8184480234vw, 380px);
    font-size: clamp(20px, 1.6837481698vw, 23px);
    padding: 22px 12px 16px;
    line-height: 1.5;
  }
}

.c-button[data-btn=mv]:before {
  content: "";
  background: url(../images/icon_mail_close.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  width: 18px;
  height: 15px;
}
@media only screen and (min-width: 768px) {
  .c-button[data-btn=mv]:before {
    width: 24px;
    height: 20px;
  }
}

@media (any-hover: hover) {
  .c-button[data-btn=mv]:hover {
    background-color: var(--orangeHover);
  }
  .c-button[data-btn=mv]:hover::before {
    background-image: url(../images/icon_mail_open.svg);
    width: 18px;
    height: 18px;
  }
}
@media only screen and (any-hover: hover) and (min-width: 768px) {
  .c-button[data-btn=mv]:hover::before {
    width: 24px;
    height: 24px;
  }
}
.c-button[data-btn=line] {
  background: #00B900;
  border-radius: 100px;
  color: var(--white);
  text-align: center;
  padding: 12px 10px;
  max-width: 180px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button[data-btn=line]:hover {
  background: #5CE35C;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-button[data-btn=back] {
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  text-align: center;
  padding: 12px 10px;
  max-width: 180px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.c-button[data-btn=back]:hover {
  background: #00B900;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-button__micro-copy {
  font-family: var(--mplus);
  position: relative;
  top: -3px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .c-button__micro-copy {
    font-size: clamp(14px, 1.5373352855vw, 21px);
    top: 0;
  }
}

.c-button__micro-copy[data-copy=mv] {
  font-family: var(--mplus);
  border: 1px solid #E35623;
  border-radius: 100px;
  background: #fff;
  width: 200px;
  display: inline-block;
  line-height: 1.1;
  position: relative;
  top: 14px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .c-button__micro-copy[data-copy=mv] {
    width: clamp(200px, 17.5695461201vw, 240px);
  }
}

@media only screen and (min-width: 768px) {
  .c-button__micro-copy--lg {
    font-size: 20px;
  }
}

.c-button__micro-copy:before,
.c-button__micro-copy:after {
  content: "";
  position: absolute;
  background: url(../images/micro_triangle.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 20px;
}
@media only screen and (min-width: 768px) {
  .c-button__micro-copy:before,
  .c-button__micro-copy:after {
    width: 16.5px;
    height: 27.5px;
  }
}

.c-button__micro-copy[data-copy=mv]:before,
.c-button__micro-copy[data-copy=mv]:after {
  display: none;
}

.c-button__micro-copy:before {
  top: 0;
  left: -20px;
}
@media only screen and (min-width: 768px) {
  .c-button__micro-copy:before {
    left: -37px;
  }
}

.c-button__micro-copy--lg:before {
  left: -25px;
}
@media only screen and (min-width: 768px) {
  .c-button__micro-copy--lg:before {
    width: 18px;
    height: 30px;
    left: -35px;
  }
}

.c-button__micro-copy:after {
  top: 0;
  right: -20px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media only screen and (min-width: 768px) {
  .c-button__micro-copy:after {
    right: -37px;
  }
}

.c-button__micro-copy--lg:after {
  right: -25px;
}
@media only screen and (min-width: 768px) {
  .c-button__micro-copy--lg:after {
    width: 18px;
    height: 30px;
    right: -35px;
  }
}

.c-scroll {
  text-align: center;
  margin-top: 15px;
  position: relative;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .c-scroll {
    margin-top: 40px;
  }
}

.c-scroll:before {
  content: "";
  background: url(../images/arrow-down.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 10px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  translate: -50% 0;
  -webkit-animation: scrollAnimation 1.5s infinite;
          animation: scrollAnimation 1.5s infinite;
}
@media only screen and (min-width: 768px) {
  .c-scroll:before {
    width: 40px;
    height: 20px;
    bottom: -20px;
    -webkit-animation: scrollAnimationDesktop 1.5s infinite;
            animation: scrollAnimationDesktop 1.5s infinite;
  }
}

@-webkit-keyframes scrollAnimation {
  0% {
    bottom: -10px;
    opacity: 0;
  }
  50% {
    bottom: -20px;
    opacity: 1;
  }
  100% {
    bottom: -20px;
    opacity: 0;
  }
}

@keyframes scrollAnimation {
  0% {
    bottom: -10px;
    opacity: 0;
  }
  50% {
    bottom: -20px;
    opacity: 1;
  }
  100% {
    bottom: -20px;
    opacity: 0;
  }
}
@-webkit-keyframes scrollAnimationDesktop {
  0% {
    bottom: -20px;
    opacity: 0;
  }
  50% {
    bottom: -30px;
    opacity: 1;
  }
  100% {
    bottom: -30px;
    opacity: 0;
  }
}
@keyframes scrollAnimationDesktop {
  0% {
    bottom: -20px;
    opacity: 0;
  }
  50% {
    bottom: -30px;
    opacity: 1;
  }
  100% {
    bottom: -30px;
    opacity: 0;
  }
}
.c-accordion {
  background-color: var(--orange02);
  color: white;
  cursor: pointer;
  padding: 17px 20px;
  margin-top: auto;
}
@media screen and (769px < width <= 1024px) {
  .c-accordion {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .c-accordion {
    margin-top: 12px;
  }
}

@media screen and (min-width: 769px) {
  .c-accordion[data-padding] {
    padding-left: 20px;
  }
}

.c-accordion h3 {
  font-weight: bold;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (769px < width <= 1024px) {
  .c-accordion h3 {
    line-height: 1.3;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    font-size: 12px;
  }
}

.c-accordion h3:after {
  content: "";
  background: url(../images/icon_plus.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.c-accordion h3.active:after {
  background: url(../images/icon_mainasu.svg) no-repeat;
}

.modal-content .c-accordion h3:after {
  background: url(../images/icon_mainasu.svg) no-repeat;
}

.c-accordion span {
  line-height: 1;
}

.c-accordion__content {
  padding: 20px;
  display: none;
  background: url(../images/bg_dot_orange.jpg) repeat;
}

@media only screen and (min-width: 768px) {
  .c-accordion__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.c-accordion__list {
  background: #fff;
  padding: 20px;
  padding-left: 80px;
  position: relative;
  font-size: 14px;
  line-height: 1.4285714286;
}

.c-accordion__list h3 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
}

.c-accordion__list + * {
  margin-top: 10px;
}

.c-accordion__list:before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 20px;
  width: 35px;
  height: 35px;
}

.c-accordion__list:first-child:before {
  background-image: url(../images/icon_work01.svg);
}

.c-accordion__list:nth-child(2):before {
  background-image: url(../images/icon_work02.svg);
}

.c-accordion__list:nth-child(3):before {
  background-image: url(../images/icon_work03.svg);
}

.c-accordion__list:nth-child(4):before {
  background-image: url(../images/icon_work04.svg);
}

.c-accordion__list:nth-child(5):before {
  background-image: url(../images/icon_work05.svg);
}

.c-accordion__list:nth-child(6):before {
  background-image: url(../images/icon_work06.svg);
}

.c-accordion__list:nth-child(7):before {
  background-image: url(../images/icon_work07.svg);
}

.c-accordion__text {
  margin-top: 8px;
  font-weight: 400;
}

.c-tag {
  font-size: 12px;
  display: inline-block;
  padding: 1px 4px;
}
@media only screen and (min-width: 768px) {
  .c-tag {
    padding: 0 4px;
  }
}

.c-tag--lg {
  font-size: 14px;
  padding: 2px 10px;
}

.c-modal__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.c-modal__list + * {
  margin-top: 0;
}

.c-modal-wrap {
  display: none;
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  margin: 10% auto;
  border: 1px solid #888;
  width: calc(100% - 20px);
  max-width: 1100px;
  background-image: url(../images/bg_dot_orange.jpg);
}
.modal-content .c-accordion {
  margin-top: 0;
}
.modal-content .c-accordion__lists {
  padding: 20px;
}
.modal-content .c-accordion__list + * {
  margin-top: 0;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
}

.modal-content {
  max-height: 90vh;
  /* ビューポートの高さの80%まで */
  overflow-y: auto;
  /* 縦スクロールを有効化 */
}

.c-accordion__lists[data-lists=curriculum] .c-accordion__list {
  padding: 10px;
  font-weight: bold;
}
.c-accordion__lists[data-lists=curriculum] .c-accordion__list:before {
  content: none;
}
@media only screen and (max-width: 767px) {
  .c-accordion__lists[data-lists=curriculum] {
    list-style: inside;
    background: #fff;
    padding: 20px;
  }
  .c-accordion__lists[data-lists=curriculum] .c-accordion__list {
    background: none;
    padding: 0;
  }
  .c-accordion__lists[data-lists=curriculum] .c-accordion__list + * {
    margin-top: 8px;
  }
}

.modal02 .modal-content {
  max-width: 800px;
}

.c-footer__fixedBtn {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 8px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}

.c-footer__btn {
  width: 100%;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  padding: 11px 0;
}

.c-footer__btn span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: 1px;
}

.c-footer__btn span:before {
  content: "";
  margin-right: 12px;
}

.c-footer__line {
  background: #04C755;
}

.c-footer__line span:before {
  background-image: url(../images/icon_line_footer.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 19.06px;
  vertical-align: middle;
}

.c-footer__mail {
  width: calc((100% - 10px) / 2);
  background: #E35623;
}

.c-footer__mail span:before {
  background-image: url(../images/icon_mail_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 16px;
  vertical-align: middle;
}

.c-footer__tel {
  width: calc((100% - 10px) / 2);
  border: 1px solid #999;
  border-radius: 100px;
}

.c-footer__tel span {
  display: inline;
  margin-left: 2px;
}

.c-footer__tel span::before {
  content: none;
}

.p-mv {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 519px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-mv {
    height: auto;
  }
}

.p-shape {
  position: relative;
}

.shape_mv01 {
  position: absolute;
  top: -170px;
  left: -190px;
  width: 100%;
  max-width: 410px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .shape_mv01 {
    top: -110px;
  }
}

.shape_mv02 {
  position: absolute;
  bottom: -240px;
  right: -100px;
  width: 100%;
  max-width: 220px;
  height: auto;
  z-index: 1;
}

.shape_mv03 {
  position: absolute;
  top: -890px;
  right: -150px;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.shape_mv04 {
  position: absolute;
  top: -580px;
  left: -130px;
  width: 100%;
  max-width: 240px;
  height: auto;
  scale: -1 -1;
}

.shape_mv05 {
  position: absolute;
  top: -580px;
  left: 50%;
  width: 100%;
  height: auto;
}

.p-shape__sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
}

.shape_mv_sp01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 121px;
  height: 278px;
}

.shape_mv_sp02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 102px;
  height: 216.53px;
}

.shape_mv_sp03 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.shape_mv_sp04 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.p-mv__copy {
  padding-top: 80px;
  text-align: left;
  font-size: 46px;
  font-size: clamp(36px, 3.3674963397vw, 46px);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  font-family: var(--mplus);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-mv__copy {
    font-size: clamp(32px, 8.5333333333vw, 36px);
    padding-top: 40px;
  }
}
.p-mv__copy .c-tag {
  font-size: 26px;
  font-size: clamp(22px, 1.9033674963vw, 26px);
  display: block;
  padding: 7px 4px;
  margin-top: 10px;
  letter-spacing: 0;
  position: relative;
  left: -4px;
}
@media screen and (max-width: 768px) {
  .p-mv__copy .c-tag {
    font-size: 18px;
    font-size: clamp(18px, 4.8vw, 22px);
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px;
    margin-top: 0;
    position: relative;
    left: -4px;
  }
}

.p-mv__copy:before {
  content: "";
  position: absolute;
  background: url(../images/shape_mv_pc05.svg) no-repeat;
  background-size: contain;
  width: 75px;
  height: 59px;
  top: 2.196193265vw;
  left: 19.7657393851vw;
}
@media screen and (max-width: 768px) {
  .p-mv__copy:before {
    display: none;
  }
}

.p-mv__copy span {
  line-height: 1;
}

.p-mv__flex {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-mv__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(10px, 1.3020833333vw, 50px);
  }
}

.p-mv__text {
  z-index: 100;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 429px;
      -ms-flex: 1 1 429px;
          flex: 1 1 429px;
  white-space: nowrap;
}

[data-sp-only] .p-mv__ph {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: 24px;
}

[data-sp-only] .p-mv__ph img {
  width: 100%;
}

[data-pc-only].p-mv__ph-wrap {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 2;
  -webkit-flex: 2 1 716px;
      -ms-flex: 2 1 716px;
          flex: 2 1 716px;
  position: relative;
}
@media screen and (min-width: 1599px) {
  [data-pc-only].p-mv__ph-wrap {
    margin-right: revert;
  }
}
[data-pc-only].p-mv__ph-wrap:before {
  content: "";
  background: url(../images/wave_hero_pc.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: clamp(-45px, -1.6837481698vw, -23px);
  width: 100px;
  height: 100%;
}

[data-pc-only] .p-mv__ph img {
  width: 100%;
  height: 519px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1599px) {
  [data-pc-only] .p-mv__ph img {
    width: revert;
  }
}

.p-mv .c-button-wrap[data-margin=mv] {
  margin-top: -130px;
}
@media only screen and (min-width: 768px) {
  .p-mv .c-button-wrap[data-margin=mv] {
    margin-top: 80px;
    margin-top: clamp(60px, 5.8565153734vw, 80px);
  }
}

.p-point {
  padding: 81px 0 56px;
}
@media only screen and (min-width: 768px) {
  .p-point {
    padding: 67px 0 80px;
  }
}

.p-point__anchor {
  margin-top: 36px;
}

.p-point__anchor a {
  font-weight: bold;
  line-height: 1.25;
  display: block;
  background: #E6F7DC;
  border: 2px solid var(--green);
  padding: 17px 20px;
  padding-left: 80px;
  border-radius: 10px;
  position: relative;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-point__anchor a + * {
  margin-top: 20px;
}

.p-point__anchor a::before,
.p-point__anchor a::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  top: 50%;
  translate: 0 -50%;
}

.p-point__anchor a::before {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 20px;
}

.p-point__anchor .point01:before {
  background-image: url(../images/point01.svg);
}

.p-point__anchor .point02:before {
  background-image: url(../images/point02.svg);
}

.p-point__anchor .point03:before {
  background-image: url(../images/point03.svg);
}

.p-point__anchor a::after {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  background-image: url(../images/chevlon_circle.svg);
}

.p-point__cards {
  margin-top: 47px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-point__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
  }
}
@media screen and (769px < width <= 1024px) {
  .p-point__cards {
    gap: 20px;
  }
}

.p-point__card {
  background: #F4FCE4;
  -webkit-box-shadow: 4px 4px var(--green02);
          box-shadow: 4px 4px var(--green02);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
}

@media only screen and (min-width: 768px) {
  .p-point__card#point03 {
    padding-bottom: 14.5px;
  }
}
@media screen and (769px < width <= 1024px) {
  .p-point__card#point03 {
    padding-bottom: 0;
  }
}

.p-point__card + * {
  margin-top: 47px;
}
@media only screen and (min-width: 768px) {
  .p-point__card + * {
    margin-top: 0;
  }
}

.p-point__card-inner {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.p-point__card-title {
  font-weight: bold;
  background: url(../images/bg-stripes-green.jpg) no-repeat;
  background: #E6F7DC;
  background-size: cover;
  background-position: center;
  padding: 20px 0;
  padding-left: 90px;
  font-size: 20px;
  line-height: 1.2;
  position: relative;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px 10px 0 0;
  font-family: var(--mplus);
}
@media screen and (769px < width <= 1024px) {
  .p-point__card-title {
    padding-right: 10px;
    font-size: 14px;
  }
}

.p-point__card-title:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url(../images/point01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 21px;
  top: calc(50% - 11px);
  translate: 0 -50%;
}

.p-point__card-title[data-card="02"]:before {
  background-image: url(../images/point02.svg);
}

.p-point__card-title[data-card="03"]:before {
  background-image: url(../images/point03.svg);
}

.p-point__card-img img {
  width: 100%;
  height: auto;
}

.p-point__card-text {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}
@media screen and (769px < width <= 1024px) {
  .p-point__card-text {
    font-size: 14px;
  }
}

.p-point__card-text--sub {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2857142857;
  display: inline-block;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.p-cta {
  position: relative;
  background: url(../images/bg_cta.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 40px 0 73px;
}
@media only screen and (min-width: 768px) {
  .p-cta {
    background-image: url(../images/cta_bg_pc.jpg);
    padding: 70px 0 120px;
  }
}

.p-cta__tel {
  text-align: center;
  margin-top: 20px;
}

.p-cta__tel a {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.0833333333;
}

.p-cta__tel a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 20px;
  background-image: url(../images/icon_phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.p-cta__info {
  font-weight: 400;
  font-size: 14px;
}

.p-cta__info-tag {
  margin-right: 0px;
  margin-top: 5px;
  position: relative;
  left: -10px;
  font-weight: bold;
}

.p-cta__info-annotation {
  font-size: 12px;
}

.p-cta__ph-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 20px;
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  .p-cta__ph-wrap {
    margin-top: 0;
    padding: 0;
  }
}

.p-cta__ph img {
  height: auto;
}

@media only screen and (min-width: 768px) {
  .p-cta__ph .p-cta__img01 {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
}

@media only screen and (min-width: 768px) {
  .p-cta__ph .p-cta__img02 {
    width: 100%;
    max-width: 178.75px;
    height: auto;
    margin-top: 40px;
  }
}

.p-cta__img02 {
  margin-top: 10px;
  display: block;
}

.p-worry {
  background: #FFEFB9;
  margin-top: 20px;
}

.p-worry__inner {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-worry__inner {
    margin-top: -40px;
  }
}

.p-worry__inner:before {
  content: "";
  position: absolute;
  background: url(../images/wave_orange.svg) no-repeat;
  background-size: cover;
  display: inline-block;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .p-worry__inner:before {
    background-image: url(../images/wave_orange_pc.svg);
    top: -40px;
    height: 80px;
  }
}

.p-worry__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  margin: auto;
  gap: 13.7628111274vw;
  padding: 0 20px;
}
@media screen and (min-width: 1367px) {
  .p-worry__flex {
    gap: 188px;
  }
}

.p-worry__left,
.p-worry__right {
  padding: 60px 0;
}

.p-worry__left {
  background: var(--green);
  width: 40%;
  display: grid;
  place-content: center;
  position: relative;
}

.p-worry__left::after {
  content: "";
  background: var(--green);
  width: 50vw;
  height: 100%;
  position: absolute;
  margin: 0 calc(50% - 50vw);
  top: 0;
  left: 0;
  z-index: 0;
}

.p-worry__left:before {
  content: "";
  background: url(../images/bg_triangle_green.svg) no-repeat;
  background-size: cover;
  width: 130px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -130px;
  z-index: 1;
}

.p-worry__right {
  background: #F9FFDB;
  width: 60%;
  display: grid;
  place-content: center;
  position: relative;
}

.p-worry__right:after {
  content: "";
  background: #F9FFDB;
  width: 100vw;
  height: 100%;
  position: absolute;
  margin: 0 calc(50% - 50vw);
  top: 0;
  left: 0;
  z-index: -1;
}

.p-worry__title span {
  color: #FEB72E;
}

@media only screen and (min-width: 768px) {
  .p-worry__heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    border: none;
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-worry__heading {
    gap: 50px;
  }
}

.p-worry__title {
  font-weight: bold;
  text-align: center;
  padding: 11px 0;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .p-worry__title {
    font-size: 32px;
    text-align: left;
    background: none;
    line-height: 1.5;
    max-width: 320px;
    position: relative;
    z-index: 1;
  }
}

.p-worry__fukidashi {
  display: block;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .p-worry__fukidashi {
    position: relative;
  }
}

.p-worry__fukidashi img {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  display: block;
}
@media only screen and (min-width: 768px) {
  .p-worry__fukidashi img {
    max-width: 640px;
  }
}

.p-support {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .p-support {
    padding-bottom: 76px;
  }
}

.p-support:before,
.p-support:after {
  content: "";
  position: absolute;
  z-index: -1;
}

.p-support:before {
  content: "";
  display: block;
  margin: 0 auto;
  background: url(../images/shape01.svg) no-repeat;
  background-size: contain;
  width: 160px;
  height: 256px;
  top: 20px;
  left: -15px;
}
@media only screen and (max-width: 767px) {
  .p-support:before {
    width: 113px;
    height: 156px;
    left: -50px;
  }
}

.p-support:after {
  content: "";
  display: block;
  margin: 0 auto;
  background: url(../images/shape02.svg) no-repeat;
  background-size: contain;
  top: 20px;
  right: -20px;
  width: 96px;
  height: 354px;
}
@media only screen and (max-width: 767px) {
  .p-support:after {
    top: 20px;
    right: -20px;
    width: 100px;
    height: 270px;
  }
}

.p-worry__message {
  font-weight: bold;
  font-size: clamp(20px, 5.3333333333vw, 32px);
  text-align: center;
  line-height: 1.8;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-worry__message {
    font-size: 32px;
    line-height: 1.6;
  }
}

.p-worry__items {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 15px;
}
@media only screen and (min-width: 768px) {
  .p-worry__items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 34px;
    margin-top: 43px;
  }
}

.p-worry__item {
  padding: 20px 10px 15px;
  border: 2px solid var(--green);
  border-radius: 10px;
  background: #F4FCE4;
}
@media only screen and (min-width: 768px) {
  .p-worry__item {
    padding: 14px;
  }
}

.p-worry__item img {
  margin-inline: auto;
  display: block;
}

.p-worry__item-heading {
  text-align: center;
  line-height: 1.25;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  margin-top: 4px;
  margin-bottom: 16px;
  font-weight: bold;
}
@media screen and (max-width: 499px) {
  .p-worry__item-heading {
    margin-bottom: 7px;
  }
}
@media only screen and (min-width: 768px) {
  .p-worry__item-heading {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.p-worry__item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4285714286;
  color: #010101;
}
@media only screen and (min-width: 768px) {
  .p-worry__item-text {
    font-size: 16px;
  }
}

.p-worry__item-text .example {
  font-size: 0.7em;
  vertical-align: top;
}

.p-worry__bottom-text {
  font-size: 14px;
  text-align: center;
  margin-top: 4px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-worry__bottom-text {
    text-align: right;
    font-size: 16px;
    margin-top: 16px;
  }
}

.p-career {
  background: url(../images/bg_dot_green02.jpg) repeat;
  padding: 60px 0;
}
@media only screen and (min-width: 768px) {
  .p-career {
    padding: 80px 0;
  }
}

.p-career__title {
  text-align: center;
  color: var(--white);
  background: var(--green);
  line-height: 1.3;
  padding: 0 20px;
}

.p-career__title-inner {
  font-family: var(--mplus);
  font-weight: bold;
  font-size: 18px;
  padding: 10px 0;
  display: inline-block;
  width: 100%;
  border-right: 2.5px dashed #fff;
  border-left: 2.5px dashed #fff;
}
@media only screen and (min-width: 768px) {
  .p-career__title-inner {
    font-size: 28px;
  }
}

.p-career__title-inner span {
  font-size: 28px;
}
@media only screen and (min-width: 768px) {
  .p-career__title-inner span {
    font-size: 32px;
  }
}

.p-career__text {
  margin-top: 20px;
  font-weight: 400;
  color: #010101;
}
@media only screen and (min-width: 768px) {
  .p-career__text {
    font-size: 20px;
    margin-top: 40px;
  }
}

.p-career__illust {
  margin-top: 20px;
  max-width: 500px;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-career__illust {
    margin-top: 40px;
    max-width: 950px;
  }
}

.p-career__illust img {
  width: 100%;
}

.p-flow {
  margin-top: 20px;
  padding: 0 0 52px;
  position: relative;
  overflow-x: hidden;
}
@media only screen and (min-width: 768px) {
  .p-flow {
    background: var(--white);
    padding: 20px 0 120px;
  }
}

.p-flow:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url(../images/wave_white.svg) no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .p-flow:before {
    background-image: url(../images/wave_white_pc.svg);
    height: 80px;
    top: -80px;
  }
}

.p-flow__title {
  font-family: var(--mplus);
  background: var(--green);
  border-radius: 100px;
  font-size: 24px;
  text-align: center;
  color: var(--white);
  line-height: 1.1666666667;
  padding: 5px 0;
  position: relative;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-flow__title {
    font-size: 24px;
    padding: 11px 0;
  }
}

.p-flow__title:before,
.p-flow__title:after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: var(--white);
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.p-flow__title:before {
  left: 15px;
}

.p-flow__title:after {
  right: 15px;
}

.p-flow__text {
  margin-top: 20px;
  text-align: left;
  font-weight: 400;
  color: #010101;
}
@media only screen and (min-width: 768px) {
  .p-flow__text {
    margin-top: 34px;
    font-size: 20px;
    text-align: center;
  }
}

.p-flow__timelines {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .p-flow__timelines {
    max-width: 800px;
    margin: 40px auto 0;
  }
}

.p-flow__timeline {
  background: #F5F5EC;
  border-radius: 10px;
}

.p-flow__timeline-title {
  text-align: center;
  background: url(../images/bg_dot_orange.jpg) repeat;
  line-height: 1.2;
  padding: 12px 0;
  font-weight: bold;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  font-family: var(--mplus);
}
@media only screen and (min-width: 768px) {
  .p-flow__timeline-title {
    padding: 10px 20px;
    display: block;
    height: auto;
  }
}

.p-flow__flex {
  padding: 20px 30px;
}
@media only screen and (min-width: 768px) {
  .p-flow__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
    padding: 40px;
  }
}

.p-flow__ph img {
  margin: auto;
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 140px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .p-flow__ph img {
    width: 280px;
    max-width: unset;
  }
}

.p-flow__timeline-time {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .p-flow__timeline-time {
    font-size: 18px;
  }
}

.p-flow__timeline-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3846153846;
}
@media only screen and (min-width: 768px) {
  .p-flow__timeline-text {
    font-size: 14px;
  }
}

.p-flow__timeline-detail {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .p-flow__timeline-detail > *:first-child {
    margin-top: 0;
  }
}

.p-flow__timeline-lists {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-flow__timeline-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 0;
  padding-bottom: 20px;
  max-width: 296px;
}
@media only screen and (min-width: 768px) {
  .p-flow__timeline-list {
    max-width: 100%;
  }
}

.p-flow__timeline-list:last-child {
  padding-bottom: 0;
}

.p-flow__timeline-list:before {
  content: "";
  background: var(--green);
  width: 4px;
  height: 100%;
  position: absolute;
  top: 25px;
  left: 13px;
  z-index: 0;
}

.p-flow__timeline-list:last-child:before {
  content: none;
}

.p-flow__timeline-list > img {
  position: relative;
  z-index: 0;
  top: 4px;
}

.p-flow__timeline[data-timeline="02"] .p-flow__flex {
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  .p-flow__timeline[data-timeline="02"] .p-flow__flex {
    padding-top: 40px;
  }
}

.p-office {
  background: #E6F7DC;
  padding: 40px 0;
  overflow-x: clip;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-office {
    padding: 0 0 80px;
  }
}

.p-office:before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url(../images/wave_green_pc.svg) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .p-office:before {
    background: none;
  }
}

.p-office__title {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  padding: 5px 0;
  line-height: 1.1666666667;
  font-family: var(--mplus);
  background: var(--green);
  border-radius: 100px;
}
@media only screen and (min-width: 768px) {
  .p-office__title {
    padding: 11px 0;
  }
}

.p-office__text {
  margin-top: 16px;
  text-align: center;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-office__text {
    font-size: 20px;
    margin-top: 40px;
  }
}

.p-office__slider {
  margin-top: 28px;
}

.p-office__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 380/213;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .p-office__slide img {
    aspect-ratio: 335/188;
  }
}

.p-office__slide-text {
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
  line-height: 1.4285714286;
  font-weight: 400;
}

.p-access {
  margin-top: 35px;
  position: relative;
  padding: 0 0 60px;
  background: url(../images/bg_dot.jpg) repeat;
}
@media only screen and (min-width: 768px) {
  .p-access {
    padding: 0 0 80px;
  }
}

.p-acess__inner {
  /* padding: 0 20px; */
}

.p-access:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url(../images/wave_dots.svg);
  background-repeat: repeat-x;
}
@media only screen and (min-width: 768px) {
  .p-access:before {
    background-image: url(../images/wave_dots_pc.svg);
    background-size: cover;
    height: 80px;
    top: -80px;
  }
}

.p-access__text {
  text-align: center;
  margin-top: 14px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-access__text {
    font-size: 20px;
    margin-top: 10px;
  }
}

.p-aceess__map-wrap {
  position: relative;
  /* width: calc(100% - 35px); */
  margin: auto;
  /* aspect-ratio: 260/219.59; */
  aspect-ratio: 100/100;
  border: 1px solid var(--green);
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  .p-aceess__map-wrap {
    width: 100%;
    margin-top: 0;
    aspect-ratio: 380/320;
  }
}

.p-aceess__map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__info {
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-access__info {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}

.p-access__address {
  margin-top: 16px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .p-access__address {
    margin-top: 0;
    font-size: 16px;
  }
}

.p-access__details {
  margin-top: 14px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .p-access__details {
    font-size: 16px;
  }
}

.p-access__detail + * {
  margin-top: 16px;
}

.p-access__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-access__detail[data-icon=bus] {
  margin-top: 12px;
}

@media only screen and (min-width: 768px) {
  .p-access__detail:last-child {
    margin-top: 6px;
  }
}

.p-access__detail:before {
  content: "";
  background-repeat: no-repeat;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
}
@media only screen and (min-width: 768px) {
  .p-access__detail:before {
    position: relative;
    top: 1px;
  }
}

.p-access__detail[data-icon=map]:before {
  background-image: url(../images/icon_link.svg);
}

.p-access__detail[data-icon=train]:before {
  background-image: url(../images/icon_train.svg);
}

.p-access__detail[data-icon=bus]:before {
  content: "";
  background-image: url(../images/icon_bus.svg);
}

.p-access__detail span {
  margin-top: 7px;
}
@media only screen and (min-width: 768px) {
  .p-access__detail span {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .p-access__flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    margin-top: 35px;
  }
}

.p-faq {
  padding: 54px 0;
}
@media only screen and (min-width: 768px) {
  .p-faq {
    padding: 80px 0;
    background: #fff;
  }
}

.p-faq__item:last-of-type {
  border-bottom: 1px solid #CDEBBB;
}

.p-faq__item-wrap {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .p-faq__item-wrap {
    margin-top: 40px;
  }
}

.p-faq__question {
  position: relative;
  border-top: 1px solid #CDEBBB;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  cursor: pointer;
  padding: 20px 10px;
  padding-right: 30px;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .p-faq__question:hover:hover {
    opacity: 1;
  }
}

.p-faq__question--icon,
.p-faq__toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-faq__question--icon {
  font-weight: bold;
  font-size: 18px;
  color: var(--green);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 10px;
}

.p-faq__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 10px;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--green);
}

.p-faq__toggle::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  top: calc(50% + 1px);
}

.p-faq__toggle.open:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.p-faq__toggle.open {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}

.p-faq__answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  overflow: hidden;
  padding-top: 0;
}

.p-faq__answer a {
  text-decoration: underline;
}

.p-faq__answer--icon {
  font-size: 18px;
  text-align: center;
  margin-right: 12px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .p-faq__answer--icon {
    font-size: 15px;
    margin-right: 12px;
  }
}
.p-faq__question-text {
  line-height: 1.5;
  font-weight: bold;
}

.p-faq__question-text span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.p-faq__question-text span:before {
  content: "";
  background: url(../images/icon_check.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 4px;
  position: relative;
  top: 4px;
}

.p-faq__question-text .u-mt {
  margin-top: 20px;
}

.p-faq__question-text.open {
  color: #00B900;
}

.p-faq__answer .p-faq__question-text {
  padding: 0 30px 20px 37px;
  font-weight: 400;
}

.p-contact {
  padding: 40px 0 80px;
  background: #F9FFDB;
}
@media only screen and (min-width: 768px) {
  .p-contact {
    padding: 80px 0;
  }
}

.p-contact__message {
  font-weight: bold;
  font-family: var(--mplus);
  font-size: 20px;
  font-size: clamp(20px, 5.3333333333vw, 32px);
  line-height: 1.5;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-contact__message {
    font-size: 32px;
    line-height: 1.5;
  }
}

.p-contact__line {
  background: var(--white);
  padding: 14px;
  border-radius: 8px;
  margin-top: 10px;
}

.p-contact__line-heading {
  margin-top: 20px;
  font-weight: bold;
  font-family: var(--mplus);
  color: #00B900;
  font-size: clamp(20px, 5.3333333333vw, 32px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 17.5px;
}
@media only screen and (min-width: 768px) {
  .p-contact__line-heading {
    margin-top: 32px;
  }
}

.p-contact__line-heading img {
  width: 40px;
  height: 40px;
}

.p-contact__line-text {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-contact__line-text {
    text-align: center;
  }
}

.p-contact__line-btn-wrap {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  .p-contact__line-btn-wrap {
    margin-top: 10px;
  }
}

.p-contact__heading {
  font-size: clamp(20px, 5.3333333333vw, 32px);
  margin-bottom: 15px;
  font-weight: bold;
  font-family: var(--mplus);
}
@media only screen and (min-width: 768px) {
  .p-contact__heading {
    font-size: 32px;
  }
}

.p-contact__micro-copy {
  margin-top: 40px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-contact__micro-copy {
    margin-top: 67px;
    font-size: 28px;
  }
}

.p-contact__response {
  margin-top: 30px;
  text-align: left;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-contact__response {
    text-align: center;
    font-size: 16px;
  }
}

.grecaptcha-badge {
  margin: 20px auto 0;
}

.grecaptcha-badge {
  z-index: 100;
}

.u-orange {
  color: var(--orange02);
}

.u-orange--lg {
  font-size: 36px;
}
@media only screen and (min-width: 768px) {
  .u-orange--lg {
    font-size: 4.9780380673vw;
  }
}
@media screen and (min-width: 1367px) {
  .u-orange--lg {
    font-size: 68px;
  }
}

.u-green {
  color: var(--green);
}

.u-green--lg {
  font-size: 28px;
}
@media only screen and (min-width: 768px) {
  .u-green--lg {
    font-size: 3.6603221083vw;
  }
}
@media screen and (min-width: 1367px) {
  .u-green--lg {
    font-size: 50px;
  }
}

.u-yellow {
  color: var(--yellow);
}

.u-yellow--lg {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .u-yellow--lg {
    font-size: 32px;
  }
}

.u-marker {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #FFCF4B;
          text-decoration-color: #FFCF4B;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.25em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.u-marker02 {
  text-decoration-thickness: 0.35em;
  text-underline-offset: -0.2em;
}

.u-dots {
  background-image: -webkit-radial-gradient(center, circle, #FF7600 25%, transparent 0);
  background-image: radial-gradient(circle at center, #FF7600 25%, transparent 0);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.25em;
  position: relative;
  z-index: 1;
}

.u-position-left {
  position: relative;
  left: 4px;
}
