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

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

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

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

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

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

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

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #4d4d4d;
  font-size: 1.6rem;
  position: relative;
  background-color: #fffaef;
  /* フォントが可変フォント＆palt対応時のみ有効にしてください */
}

body.is-open {
  overflow: hidden;
}

body.page-thanks {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

body.page-thanks main {
  flex: 1;
}

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

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.wrapper {
  margin-top: 20rem;
  max-width: 29rem;
}

.wrapper + .wrapper {
  margin-top: 3rem;
}

/*-------------------------------
l-header
-------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}

/*-------------------------------
l-inner
-------------------------------*/
.l-inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}

/*-------------------------------
c-cta-btn
-------------------------------*/
.c-cta-btn a,
.c-cta-btn button {
  width: 100%;
  display: inline-block;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2rem;
  line-height: 3.15;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  border-radius: 5rem;
  border: 3px solid #fff;
  transition: 0.2s ease-out;
  cursor: pointer;
}

.c-cta-btn a::before,
.c-cta-btn a::after,
.c-cta-btn button::before,
.c-cta-btn button::after {
  content: "";
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: 0.2s ease-out;
}

.c-cta-btn a::after,
.c-cta-btn button::after {
  margin-top: 0.2rem;
  width: 1.3rem;
  height: 1.8rem;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../images/btn-tri.png);
          mask-image: url(../images/btn-tri.png);
  background-color: #fff;
}

@media (any-hover: hover) {
  .c-cta-btn a:hover,
  .c-cta-btn button:hover {
    opacity: 1;
  }
  .c-cta-btn a:hover::after,
  .c-cta-btn button:hover::after {
    transform: translateX(10px);
  }
}
.c-cta-btn.-mail a {
  background-color: #ff76c0;
}

.c-cta-btn.-mail a::before {
  margin-top: 0.1rem;
  width: 3.3rem;
  height: 2.7rem;
  -webkit-mask-image: url(../images/icon/icon-mail.svg);
          mask-image: url(../images/icon/icon-mail.svg);
  background-color: #fff;
}

@media (any-hover: hover) {
  .c-cta-btn.-mail a:hover {
    background-color: #fff;
    border: 3px solid #ff76c0;
    color: #ff76c0;
  }
  .c-cta-btn.-mail a:hover::before {
    background-color: #ff76c0;
  }
  .c-cta-btn.-mail a:hover::after {
    background-color: #ff76c0;
  }
}
.c-cta-btn.-line a {
  background-color: #06c755;
}

.c-cta-btn.-line a::before {
  margin-top: 0.1rem;
  width: 3.3rem;
  height: 2.7rem;
  background: url(../images/icon/icon-LINE.svg) center/contain no-repeat;
}

@media (any-hover: hover) {
  .c-cta-btn.-line a:hover {
    background-color: #fff;
    border: 3px solid #06c755;
    color: #06c755;
  }
  .c-cta-btn.-line a:hover::before {
    background-image: url(../images/icon/icon-LINE_hover.svg);
  }
  .c-cta-btn.-line a:hover::after {
    background-color: #06c755;
  }
}
.c-cta-btn.-tel a {
  font-size: 2.6rem;
  line-height: 2.4230769231;
  letter-spacing: 0;
  background-color: #f58f47;
  gap: 0;
}

.c-cta-btn.-tel a::before {
  margin-top: 0.1rem;
  margin-right: 0.3rem;
  width: 2.8rem;
  height: 2.7rem;
  -webkit-mask-image: url(../images/icon/icon-tel.svg);
          mask-image: url(../images/icon/icon-tel.svg);
  background-color: #fff;
}

.c-cta-btn.-tel a::after {
  margin-left: 1rem;
}

.c-cta-btn.-submit button,
.c-cta-btn.-top a {
  font-size: 2rem;
  line-height: 3.15;
  letter-spacing: 0;
  background-color: #b3ca42;
  gap: 0;
}

.c-cta-btn.-submit button::after,
.c-cta-btn.-top a::after {
  margin-left: 1rem;
  position: absolute;
  top: 47%;
  right: 3.8rem;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .c-cta-btn.-submit button:hover,
  .c-cta-btn.-top a:hover {
    background-color: #fcd561;
    color: #f58f47;
  }
  .c-cta-btn.-submit button:hover::after,
  .c-cta-btn.-top a:hover::after {
    background-color: #f58f47;
    transform: translateX(10px) translateY(-50%);
  }
}
.c-cta-btn.-back button {
  font-size: 2rem;
  line-height: 3.15;
  letter-spacing: 0;
  color: #b3ca42;
  background-color: #eeeeef;
  gap: 0;
}

.c-cta-btn.-back button::after {
  margin-left: 1rem;
  position: absolute;
  top: 47%;
  right: initial;
  left: 3.8rem;
  transform: translateY(-50%) rotate(180deg);
  background-color: #b3ca42;
}

@media (any-hover: hover) {
  .c-cta-btn.-back button:hover {
    background-color: #c1c1c1;
    color: #fff;
  }
  .c-cta-btn.-back button:hover::after {
    background-color: #fff;
    transform: translateX(-10px) translateY(-50%) rotate(180deg);
  }
}
/*-------------------------------
c-section-title
-------------------------------*/
.c-section-title {
  text-align: center;
  position: relative;
}

.c-section-title__en {
  font-family: "Afacad Flux", sans-serif;
  font-size: 13.9rem;
  line-height: 1.3309352518;
  font-weight: 700;
  color: #fad49c;
  text-transform: uppercase;
  position: absolute;
  top: 47.2%;
  left: 50%;
  z-index: 48;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 5.8rem;
    line-height: 1.3275862069;
    top: 49%;
  }
}

.c-section-title__ja {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 4.3rem;
  line-height: 4.3023255814;
  font-weight: 700;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: 2rem;
    line-height: 3.85;
  }
}

.c-section-title__ja::before,
.c-section-title__ja::after {
  content: "";
  width: 5.9rem;
  height: 2.7rem;
  position: absolute;
  top: 50%;
  z-index: 50;
  background: url(../images/title-decoration.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja::before,
  .c-section-title__ja::after {
    width: 2.6rem;
    height: 1.2rem;
  }
}

.c-section-title__ja::before {
  left: -2.1rem;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 767px) {
  .c-section-title__ja::before {
    left: -0.5rem;
  }
}

.c-section-title__ja::after {
  right: -2.1rem;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 767px) {
  .c-section-title__ja::after {
    right: -0.5rem;
  }
}

/*-------------------------------
p-catch
-------------------------------*/
.p-catch {
  padding-top: 11.7rem;
  padding-bottom: 19.7rem;
  background-color: #b0dcf4;
}
@media screen and (max-width: 767px) {
  .p-catch {
    padding-top: 12.5rem;
    padding-bottom: 10rem;
  }
}

.p-catch__inner.l-inner {
  padding-inline: 5rem;
  max-width: 1188px;
}
@media screen and (max-width: 767px) {
  .p-catch__inner.l-inner {
    padding-inline: 0;
    max-width: 500px;
  }
}

.p-catch__top {
  position: relative;
}

.p-catch__top::before {
  content: "";
  width: 62.4rem;
  height: 22.9rem;
  position: absolute;
  top: -10.3rem;
  left: -5.2rem;
  background: url(../images/catch1-decoration.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-catch__top::before {
    width: 36.5rem;
    height: 13.4rem;
    top: -9.4rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/catch1-decoration_sp.png) center/contain no-repeat;
  }
}

.p-catch__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1088/1108;
}
@media screen and (max-width: 767px) {
  .p-catch__top img {
    aspect-ratio: 375/1804;
  }
}

.p-catch__bottom {
  margin-top: 17.8rem;
  padding: 12.1rem 5.4rem 6rem;
  background-color: #fff;
  border-radius: 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-catch__bottom {
    margin-top: 7.6rem;
    padding: 9.7rem 0.5rem 3rem;
    border-radius: 3rem;
  }
}

.p-catch__bottom-inner.l-inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-catch__bottom-inner.l-inner {
    padding-inline: 10px;
    max-width: 430px;
  }
}

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

.p-catch__title {
  padding: 0.9rem 3rem;
  width: 100%;
  max-width: 72rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 700;
  color: #fff;
  background-color: #f58f47;
  text-align: center;
  position: absolute;
  top: -3.2rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-catch__title {
    padding: 0.9rem 1.6rem;
    width: 78.5915492958%;
    font-size: 2rem;
    line-height: 1.4;
    top: -4.6rem;
  }
}

.p-catch__amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-catch__amount {
    gap: 1rem;
  }
}

.p-catch__amount-label {
  margin-top: 1.6rem;
  padding-block: 1.4rem;
  width: 18.1rem;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #eeeeef;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-catch__amount-label {
    margin-top: 0;
    padding-block: 0.9rem;
    width: 7.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.p-catch__amount-value {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 7.1rem;
  line-height: 1.3521126761;
  font-weight: 800;
  color: #f58f47;
}
@media screen and (max-width: 767px) {
  .p-catch__amount-value {
    font-size: 4.2rem;
    line-height: 1.3333333333;
  }
}

.p-catch__amount-value .-big {
  font-size: 12rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-catch__amount-value .-big {
    font-size: 7rem;
  }
}

.p-catch__amount-value .-big::before {
  content: "";
  width: 15.3rem;
  height: 20.5rem;
  position: absolute;
  top: 59%;
  left: 47%;
  transform: translate(-50%, -50%);
  background: url(../images/catch2-decoration.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-catch__amount-value .-big::before {
    width: 10rem;
    height: 13.8rem;
    top: 58%;
    left: 96%;
    background: url(../images/catch2-decoration_sp.png) center/contain no-repeat;
  }
}

.p-catch__note {
  margin-top: 6rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3.6rem;
  line-height: 1.3055555556;
  font-weight: 800;
  color: #f58f47;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-catch__note {
    margin-top: 4.8rem;
    font-size: 2.7rem;
    line-height: 1.4814814815;
  }
}

.p-catch__note .-big {
  font-size: 5.9rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-catch__note .-big {
    font-size: 4.4rem;
  }
}

.-highlight {
  display: inline;
  background: #fdea00;
  background: linear-gradient(180deg, rgba(253, 234, 0, 0) 0%, rgba(253, 234, 0, 0) 55%, rgb(253, 234, 0) 55%, rgb(253, 234, 0) 100%);
}

.p-catch__note-text.-highlight {
  padding-left: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-catch__note-text.-highlight {
    padding-left: 0;
  }
}

.p-catch__bonus {
  margin-top: 3.8rem;
  margin-inline: auto;
  width: 66rem;
}
@media screen and (max-width: 767px) {
  .p-catch__bonus {
    margin-top: 4.5rem;
    padding-inline: 2rem;
    width: 100%;
  }
}

.p-catch__bonus-content {
  margin-left: auto;
  width: 86.0606060606%;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-catch__bonus-content {
    width: 100%;
  }
}

.p-catch__bonus-content::before {
  content: "";
  width: 18.1rem;
  height: 27.1rem;
  position: absolute;
  top: 50%;
  left: -8.9rem;
  transform: translateY(-50%);
  background: url(../images/catch2-zunda.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-catch__bonus-content::before {
    width: 10.1rem;
    height: 15.2rem;
    top: 45%;
    left: 50%;
    transform: translate(-175%, -50%);
  }
}

.p-catch__bonus-title {
  padding-block: 1.2rem;
  font-size: 2.5rem;
  line-height: 1.4;
  text-align: center;
  background-color: #eeeeef;
}
@media screen and (max-width: 767px) {
  .p-catch__bonus-title {
    padding-block: 0.2rem;
    font-size: 1.7rem;
    line-height: 2;
  }
}

.p-catch__bonus-wrap {
  padding-block: 1.8rem;
  font-size: 2.5rem;
  line-height: 2;
  background-color: #fffaef;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-catch__bonus-wrap {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .p-catch__bonus-text {
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-catch__additional {
  margin-top: 3.2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3.6rem;
  line-height: 1.9444444444;
  font-weight: 800;
  color: #f58f47;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-catch__additional {
    margin-top: 2.8rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-catch__additional .-big {
  font-size: 5.9rem;
  line-height: 0.9;
}
@media screen and (max-width: 767px) {
  .p-catch__additional .-big {
    font-size: 2.7rem;
    line-height: 1.1111111111;
  }
}

.p-catch__additional .-small {
  font-size: 2.8rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-catch__additional .-small {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

.p-catch__caution-group {
  margin-top: 2.3rem;
  margin-inline: auto;
  padding-left: 4.2rem;
  width: 93.6rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-catch__caution-group {
    margin-top: 2.8rem;
    padding-inline: 5.4rem 2rem;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-catch__caution {
  position: relative;
}

.p-catch__caution::before {
  width: 3.2rem;
  height: 2.4rem;
  position: absolute;
  top: 0;
  left: -4.2rem;
}
@media screen and (max-width: 767px) {
  .p-catch__caution::before {
    width: 2.8rem;
    height: 2.4rem;
    left: -3.3rem;
  }
}

.p-catch__caution:nth-child(1)::before {
  content: "※1";
}

.p-catch__caution:nth-child(2)::before {
  content: "※2";
}

/*-------------------------------
p-commitment
-------------------------------*/
.p-commitment {
  margin-top: 7.4rem;
  padding-top: 10rem;
  padding-bottom: 12rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-commitment {
    margin-top: -10.8rem;
    padding-top: 12.3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-commitment__title.c-section-title {
    margin-inline: auto;
    max-width: 600px;
  }
}

.p-commitment__title .c-section-title__en {
  z-index: 18;
}

.p-commitment__title-decoration-left {
  width: 23.9rem;
  height: 30.3rem;
  position: absolute;
  top: -1.8rem;
  left: 18.3%;
  transform: translateX(-50%);
  z-index: 20;
  background: url(../images/commitment-zunda.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-commitment__title-decoration-left {
    width: 11.1rem;
    height: 14rem;
    top: -4.6rem;
    left: 14.8%;
  }
}

.p-commitment__title-decoration-right {
  width: 30.6rem;
  height: 28.6rem;
  position: absolute;
  top: -0.4rem;
  right: 21.9%;
  transform: translateX(50%);
  z-index: 20;
  background: url(../images/commitment-people.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-commitment__title-decoration-right {
    width: 12.2rem;
    height: 13.6rem;
    top: -4.1rem;
    right: 13.3%;
    background: url(../images/commitment-people_sp.png) center/contain no-repeat;
  }
}

.p-commitment__content-bg {
  position: relative;
  z-index: 20;
}

.p-commitment__inner.l-inner {
  max-width: 1154px;
  overflow-x: clip;
}

.p-commitment__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-commitment__content {
    padding-bottom: 24.6rem;
  }
}

.p-commitment__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2.4rem;
  grid-row-gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-commitment__list {
    margin-top: 1.8rem;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 5.5rem;
    justify-items: center;
  }
}

.p-commitment__item {
  padding: 2.9rem;
  padding-top: 2.5rem;
  max-width: 35.2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 20;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-commitment__item {
    padding: 1.7rem 2.3rem 2.1rem;
  }
}

.p-commitment__item-number {
  padding-bottom: 0.5rem;
  width: 11rem;
  height: 10.6rem;
  font-family: "Roboto", sans-serif;
  font-size: 6.5rem;
  line-height: 0.8307692308;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/commitment-pentagon.png) center/contain no-repeat;
  position: absolute;
  top: -2rem;
  left: -1.4rem;
}
@media screen and (max-width: 767px) {
  .p-commitment__item-number {
    padding-bottom: 0.1rem;
    width: 9.7rem;
    height: 9.6rem;
    font-size: 5.6rem;
    line-height: 0.875;
    top: -1.3rem;
    left: -0.8rem;
  }
}

.p-commitment__item:nth-child(-n+3) .p-commitment__item-number::before {
  content: "";
  width: 6.4rem;
  height: 4.7rem;
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/clown.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-commitment__item:nth-child(-n+3) .p-commitment__item-number::before {
    width: 7rem;
    height: 5.2rem;
    top: -0.5rem;
  }
}

.p-commitment__item-img {
  width: 10.4rem;
}

.p-commitment__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 141/115;
}
@media screen and (max-width: 767px) {
  .p-commitment__item-img img {
    aspect-ratio: 104/85;
  }
}

.p-commitment__item-title {
  margin-top: 1rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 800;
  color: #f58f47;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-commitment__item-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-commitment__item-text {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .p-commitment__item-text {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

.p-commitment__highlight {
  color: #f58f47;
}

.p-commitment__content-decoration {
  padding: 0;
  width: 40.3rem;
  height: 50.5rem;
  position: absolute;
  bottom: -0.1rem;
  right: 0.4rem;
  background-color: transparent;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .p-commitment__content-decoration {
    width: 39.3rem;
    height: 36rem;
    bottom: 0rem;
    left: 48.8%;
    transform: translateX(-50%);
  }
}

.p-commitment__content-decoration img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 403/505;
}

/*-------------------------------
p-confirm
-------------------------------*/
.p-confirm {
  background-color: #fffaef;
}

.p-confirm__inner.l-inner {
  padding-block: 12rem 25rem;
  max-width: 954px;
}
@media screen and (max-width: 767px) {
  .p-confirm__inner.l-inner {
    padding-block: 6rem 14rem;
    max-width: 500px;
  }
}

.p-confirm__content {
  padding: 6rem 14.7rem;
  background-color: #fff;
  border-radius: 6rem;
}
@media screen and (max-width: 767px) {
  .p-confirm__content {
    padding: 3rem 3.7rem 6rem;
    border-radius: 3rem;
  }
}

.p-confirm__lead {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

.p-confirm__list {
  margin-top: 6rem;
  padding-inline: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-confirm__list {
    padding: 0;
  }
}

.p-confirm__item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-confirm__item {
    flex-direction: column;
  }
}

.p-confirm__item + .p-confirm__item {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-confirm__item + .p-confirm__item {
    margin-top: 4rem;
  }
}

.p-confirm__term {
  width: 34.2412451362%;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-confirm__term {
    width: 100%;
  }
}

.p-confirm__desc {
  width: 65.7587548638%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-confirm__desc {
    margin-top: 0.5rem;
    width: 100%;
    line-height: 1.75;
  }
}

.p-confirm__btn-list {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-confirm__btn-list {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-confirm__btn-item {
  width: 29rem;
}

/*-------------------------------
p-contact
-------------------------------*/
.p-contact {
  margin-top: -8.6rem;
  padding-top: 20rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: -12rem;
    padding-top: 12rem;
  }
}

.p-contact::before {
  content: "";
  width: 100vw;
  height: 23.5vw;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/form-bg-decoration.png) top/cover no-repeat;
  position: absolute;
  top: 10.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-contact::before {
    height: 27.5vw;
    background: url(../images/form-bg-decoration_sp.png) center/cover no-repeat;
    top: 8.6rem;
  }
}

.p-contact__bg {
  padding-bottom: 15rem;
  background-color: #b0dcf4;
}
@media screen and (max-width: 767px) {
  .p-contact__bg {
    margin-top: 1.4rem;
    padding-bottom: 10rem;
  }
}

.p-contact__inner.l-inner {
  max-width: 1154px;
}
@media screen and (max-width: 767px) {
  .p-contact__inner.l-inner {
    padding-inline: 1rem;
    max-width: 500px;
  }
}

.p-contact__header {
  position: relative;
}

.p-contact__title-wrap {
  width: 77.4rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-contact__title-wrap {
    padding-top: 10.6rem;
    width: 100%;
  }
}

.p-contact__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 774/339;
}
@media screen and (max-width: 767px) {
  .p-contact__title img {
    aspect-ratio: 355/123;
  }
}

.p-contact__header-text {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-contact__header-text {
    margin-top: 2.5rem;
    margin-inline: auto;
    display: block;
    width: 23.4rem;
  }
}

.p-contact__header-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 234/37;
}

.p-contact__header-line {
  width: 29rem;
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact__header-line {
    position: static;
    margin-top: 0.5rem;
    margin-inline: auto;
  }
}

.p-contact__zunda {
  width: 49.2rem;
  position: absolute;
  bottom: -3.7rem;
  right: -6rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__zunda {
    width: 23.6rem;
    bottom: initial;
    top: -6.7rem;
    right: 54%;
    transform: translateX(50%);
  }
}

.p-contact__zunda::before {
  content: "";
  width: 17.15rem;
  height: 25.45rem;
  position: absolute;
  top: 8.2rem;
  left: 5.3rem;
  z-index: -1;
  background: url(../images/form-zunda-arm.png) center/contain no-repeat;
  transform-origin: right bottom;
  transform: rotate(0deg);
  animation: rotate 1.8s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-contact__zunda::before {
    width: 8.2rem;
    height: 12.2rem;
    top: 3.9rem;
    left: 2.5rem;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.p-contact__zunda img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 492/492;
}

.p-contact__content {
  margin-top: 3.7rem;
  margin-inline: auto;
  padding: 6rem 14.8rem;
  max-width: 1076px;
  background-color: #fffaef;
  border-radius: 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content {
    margin-top: 3.5rem;
    padding: 3rem 2.6rem;
    border-radius: 3rem;
  }
}

.p-contact__title {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 2rem;
    line-height: 1.4;
  }
}

/*-------------------------------
p-cta1
-------------------------------*/
.p-cta1 {
  padding-top: 1.7rem;
  background-color: #b0dcf4;
}
@media screen and (max-width: 767px) {
  .p-cta1 {
    margin-top: -2rem;
    padding-top: 0;
  }
}

.p-cta1__inner.l-inner {
  padding-inline: 50px 25px;
  display: flex;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-cta1__inner.l-inner {
    padding-inline: 0;
    flex-direction: column;
    align-items: center;
  }
}

.p-cta1__content {
  margin-top: -2.2rem;
  padding-block: 12.2rem 2.1rem;
  width: 88.4rem;
  background: url(../images/cta1-bg.png) center/contain no-repeat;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3.7rem;
  line-height: 1.6486486486;
  font-weight: 800;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta1__content {
    margin-top: 0rem;
    padding-block: 6.8rem 7.1rem;
    width: 100%;
    min-width: 41rem;
    max-width: 400px;
    background: url(../images/cta1-bg_sp.png) center/contain no-repeat;
    font-size: 2rem;
    line-height: 1.4;
    display: flex;
    justify-content: center;
  }
}

.p-cta1__content::before {
  width: 20.9rem;
  height: 20.9rem;
  position: absolute;
  bottom: -6.1rem;
  left: 68%;
  transform: translateX(-50%);
  background: url(../images/cta1-zunda.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta1__content::before {
    content: "";
  }
}

@media screen and (max-width: 767px) {
  .p-cta1__content-text-wrap {
    position: relative;
    z-index: 10;
  }
}

.p-cta1__content-text:nth-child(2) {
  margin-top: 0.1rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-cta1__content-text:nth-child(2) {
    letter-spacing: 0;
  }
}

.p-cta1__content-text:nth-child(3) {
  margin-top: -0.8rem;
  font-size: 6.1rem;
  line-height: 1.5573770492;
}
@media screen and (max-width: 767px) {
  .p-cta1__content-text:nth-child(3) {
    margin-top: 0.5rem;
    margin-inline: auto;
    padding-right: 1rem;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 4.7rem;
    line-height: 1.1489361702;
    text-align: left;
  }
}

.p-cta1__content-text .-yellow {
  color: #fdea00;
}

.p-cta1__content-text .-big {
  font-size: 8.7rem;
  line-height: 1.091954023;
}
@media screen and (max-width: 767px) {
  .p-cta1__content-text .-big {
    font-size: 6.7rem;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-cta1__content-text .-margin-left {
    padding-left: 2.8rem;
  }
}

.p-cta1__content-btn-list {
  margin-top: 1.8rem;
  margin-inline: auto;
  width: 60.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta1__content-btn-list {
    margin-top: -1.1rem;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cta1__content-btn-list.u-sp {
    display: flex;
  }
}

.p-cta1__content-btn-item {
  width: 29rem;
  display: inline-flex;
}

.p-cta1__zunda {
  margin-top: 2.8rem;
  margin-left: -19.2rem;
  width: 42.5rem;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .p-cta1__zunda {
    display: none;
  }
}

.p-cta1__zunda img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 425/425;
}

/*-------------------------------
p-cta2
-------------------------------*/
.p-cta2 {
  margin-block: 6.6rem;
  background-color: #f58f47;
  position: relative;
  overflow-x: clip;
}

.p-cta2.-first {
  margin-top: 0;
}

.p-cta2::before,
.p-cta2::after {
  content: "";
  width: 100%;
  min-width: 109.5168374817vw;
  height: 17.4vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-cta2::before,
  .p-cta2::after {
    min-width: 120vw;
    height: 20.8vw;
  }
}

.p-cta2::before {
  top: -6.6rem;
  background: url(../images/cta2-bg-decoration.png) top/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta2::before {
    top: -8.5vw;
    background: url(../images/cta2-bg-decoration_sp.png) top/cover no-repeat;
  }
}

.p-cta2::after {
  bottom: -6.6rem;
  background: url(../images/cta2-bg-decoration.png) bottom/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta2::after {
    bottom: -9.8vw;
    background: url(../images/cta2-bg-decoration_sp.png) bottom/cover no-repeat;
  }
}

.p-cta2__inner.l-inner {
  position: relative;
  z-index: 20;
  max-width: initial;
}
@media screen and (max-width: 767px) {
  .p-cta2__inner.l-inner {
    padding-inline: 10px;
  }
}

.p-cta2__title {
  width: 141rem;
  position: relative;
  top: 0;
  left: 50%;
  transform: translate(-50%, -10rem);
}
@media screen and (max-width: 767px) {
  .p-cta2__title {
    width: 41.6rem;
    transform: translate(-50%, -5.1rem);
  }
}

.p-cta2__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1075/144;
}
@media screen and (max-width: 767px) {
  .p-cta2__title img {
    aspect-ratio: 350/106;
  }
}

.p-cta2__content {
  margin-top: -0.3rem;
  margin-inline: auto;
  padding-left: 10rem;
  max-width: 108.6rem;
  display: flex;
  align-items: center;
  gap: 2.0283975659%;
  transform: translateY(-10rem);
}
@media screen and (max-width: 767px) {
  .p-cta2__content {
    margin-top: 6.2rem;
    padding-left: 0rem;
    flex-direction: column;
  }
}

.p-cta2__image {
  width: 36.5111561866%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta2__image {
    width: 23rem;
    transform: translateX(27%);
  }
}

.p-cta2__image::before {
  content: "";
  width: 25.7rem;
  height: 21.5rem;
  position: absolute;
  top: -3.2rem;
  left: -19.6rem;
  background: url(../images/cta2-decoration.png) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta2__image::before {
    width: 17.9rem;
    height: 15rem;
    top: -0.2rem;
    left: -13.9rem;
  }
}

.p-cta2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 360/239;
  position: relative;
  z-index: 20;
  transform: rotate(0deg);
}

.p-cta2__info {
  width: 61.4604462475%;
}
@media screen and (max-width: 767px) {
  .p-cta2__info {
    margin-top: 2.5rem;
    padding-inline: 2.4rem;
    width: 100%;
    max-width: 37.5rem;
  }
}

.p-cta2__info-top {
  padding-left: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-cta2__info-top {
    padding-left: 0;
    position: relative;
  }
}

.p-cta2__shop {
  padding-left: 0.4rem;
  width: 32.7rem;
}
@media screen and (max-width: 767px) {
  .p-cta2__shop {
    padding-left: 0;
    width: 22.1rem;
  }
}

.p-cta2__tel {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta2__tel {
    margin-top: 0.3rem;
    padding-left: 3.8rem;
  }
}

.p-cta2__tel::before {
  content: "";
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  top: 50%;
  left: -5.3rem;
  transform: translateY(-50%);
  -webkit-mask-image: url(../images/icon/icon-tel.svg);
          mask-image: url(../images/icon/icon-tel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta2__tel::before {
    width: 3.3rem;
    height: 3.3rem;
    left: 0rem;
  }
}

.p-cta2__tel-number {
  font-family: "Roboto", sans-serif;
  font-size: 7.1rem;
  line-height: 1.3098591549;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta2__tel-number {
    font-size: 4.1rem;
    line-height: 1.3170731707;
  }
}

.p-cta2__tel-note {
  margin-bottom: 1rem;
  padding: 1.7rem 1.3rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #f58f47;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-cta2__tel-note {
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    line-height: 1.4545454545;
    position: absolute;
    top: 0;
    right: 0.5rem;
  }
}

.p-cta2__hours {
  margin-top: -1.2rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 500;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-cta2__hours {
    margin-top: -0.1rem;
    text-align: center;
  }
}

.p-cta2__hours .-small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.p-cta2__list {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta2__list {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1rem;
  }
}

.p-cta2__item {
  width: calc(50% - 1.25rem);
  display: block;
}
@media screen and (max-width: 767px) {
  .p-cta2__item {
    width: 29rem;
  }
}

.p-cta2__note-wrap {
  margin-top: -8rem;
}
@media screen and (max-width: 767px) {
  .p-cta2__note-wrap {
    margin-top: -7rem;
    margin-inline: auto;
    padding-inline: 1.2rem;
    max-width: 500px;
  }
}

.p-cta2__note {
  margin-inline: auto;
  padding: 1.8rem 4rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background-color: #fdea00;
}
@media screen and (max-width: 767px) {
  .p-cta2__note {
    padding: 1.7rem 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
}

/*-------------------------------
p-faq
-------------------------------*/
.p-faq {
  margin-top: 4vw;
  padding-top: 8vw;
  padding-bottom: 19.8rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-faq {
    margin-top: -15rem;
    padding-top: 20.2rem;
    padding-bottom: 12rem;
  }
}

.p-faq__inner.l-inner {
  max-width: 982px;
}
@media screen and (max-width: 767px) {
  .p-faq__inner.l-inner {
    max-width: 540px;
  }
}

.p-faq__list {
  margin-top: -0.7rem;
  position: relative;
  z-index: 60;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 1.3rem;
  }
}

.p-faq__list::before {
  content: "";
  width: 27.6rem;
  height: 27.6rem;
  position: absolute;
  top: -20.7rem;
  right: -3.7rem;
  background: url(../images/faq-zunda.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-faq__list::before {
    width: 16rem;
    height: 15.2rem;
    top: -12rem;
    right: -4.1rem;
  }
}

.p-faq__item {
  position: relative;
  z-index: 10;
}

.p-faq__item + .p-faq__item {
  margin-top: 3rem;
}

.p-faq__question,
.p-faq__answer {
  display: flex;
}

.p-faq__question {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    min-height: 7.9rem;
  }
}

.p-faq__question::before,
.p-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-faq__question::before,
  .p-faq__question::after {
    top: 2.8rem;
  }
}

.p-faq__question::before {
  width: 1.9rem;
  height: 0.2rem;
  right: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question::before {
    width: 1.3rem;
    height: 0.2rem;
    right: 2.3rem;
  }
}

.p-faq__question::after {
  width: 0.2rem;
  height: 1.9rem;
  right: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question::after {
    width: 0.2rem;
    height: 1.3rem;
    right: 2.8rem;
  }
}

.p-faq__question.is-open::before,
.p-faq__question.is-open::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-faq__q,
.p-faq__a {
  width: 9.2274678112%;
  font-family: "Afacad Flux", sans-serif;
  font-size: 4.6rem;
  line-height: 1.3260869565;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-faq__q,
  .p-faq__a {
    width: 16.4179104478%;
    font-size: 3.3rem;
    line-height: 1.3333333333;
  }
}

.p-faq__q {
  border-top-left-radius: 2rem;
  background-color: #b3ca42;
  transition: 0.3s;
}

.p-faq__a {
  border-bottom-left-radius: 2rem;
  background-color: #ffad3c;
}

.p-faq__q-text,
.p-faq__a-text {
  padding-block: 3rem;
  padding-inline: 4rem 11.7rem;
  width: 90.7725321888%;
  font-size: 1.6rem;
  line-height: 2.1875;
  font-weight: 500;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq__q-text,
  .p-faq__a-text {
    padding-block: 1.6rem;
    padding-inline: 1.6rem 5.4rem;
    width: 83.5820895522%;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

.p-faq__answer-wrap {
  display: none;
}

.p-faq__q-text {
  border-top-right-radius: 2rem;
  color: #94aa30;
}

.p-faq__q-text::after {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  border-radius: 4rem;
  background-color: #f58f47;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-faq__q-text::after {
    width: 2.5rem;
    height: 2.5rem;
    top: 2.8rem;
    right: 1.7rem;
  }
}

.p-faq__question.is-open .p-faq__q-text::after {
  background-color: #d0d0d0;
}

.p-faq__a-text {
  border-bottom-right-radius: 2rem;
}

/*-------------------------------
p-flote
-------------------------------*/
.p-flote {
  position: fixed;
  top: 12.8rem;
  right: 0;
  z-index: 400;
}
@media screen and (max-width: 767px) {
  .p-flote {
    top: initial;
    bottom: 0;
  }
}

.p-flote__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-flote__list {
    width: 100vw;
    flex-direction: row;
  }
}

.p-flote__item {
  width: 4.6rem;
  height: 17.8rem;
}
@media screen and (max-width: 767px) {
  .p-flote__item {
    height: 4.7rem;
  }
}

@media screen and (max-width: 767px) {
  .p-flote__item.-mail {
    width: 38.1333333333%;
  }
}

@media screen and (max-width: 767px) {
  .p-flote__item.-line {
    width: 38.1333333333%;
  }
}

.p-flote__item.-tel {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-flote__item.-tel {
    display: block;
    width: 23.7333333333%;
  }
}

.p-flote__item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1764705882;
  letter-spacing: 0.28rem;
  font-weight: 700;
  color: #fff;
  border-radius: 2rem 0 0 2rem;
  transition: 0.2s ease-out;
}
.p-flote__item a .p-flote__label {
  display: grid;
  align-items: center;
  width: 1em;
}
@media screen and (max-width: 767px) {
  .p-flote__item a {
    flex-direction: row;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.13rem;
    writing-mode: initial;
    border-radius: 2rem 2rem 0 0;
  }
  .p-flote__item a .p-flote__label {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-flote__item a::before {
  transition: 0.2s ease-out;
}

.p-flote__item.-mail a {
  background-color: #ff76c0;
  border: 3px solid #ff76c0;
}
.p-flote__item.-line a {
  background-color: #06c755;
  border: 3px solid #06c755;
}
@media screen and (max-width: 767px) {
  .p-flote__item.-tel a {
    background-color: #f58f47;
  }
}

@media screen and (max-width: 767px) {
  .p-flote__item.-tel a::before {
    content: "";
    width: 2.7rem;
    height: 2.5rem;
    -webkit-mask-image: url(../images/icon/icon-tel.svg);
            mask-image: url(../images/icon/icon-tel.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #fff;
  }
}

.p-flote__item.-mail a::before {
  content: "";
  width: 2.5rem;
  height: 2.1rem;
  -webkit-mask-image: url(../images/icon/icon-mail.svg);
          mask-image: url(../images/icon/icon-mail.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}

.p-flote__item.-line a::before {
  content: "";
  width: 3.3rem;
  height: 2.7rem;
  background: url(../images/icon/icon-LINE.svg) center/contain no-repeat;
}

@media (any-hover: hover) {
  .p-flote__item a:hover {
    opacity: 1;
  }
  .p-flote__item.-mail a:hover {
    background-color: #fff;
    color: #ff76c0;
  }
  .p-flote__item.-line a:hover {
    background-color: #fff;
    border: 3px solid #06c755;
    color: #06c755;
  }
  .p-flote__item.-mail a:hover::before {
    background-color: #ff76c0;
  }
  .p-flote__item.-line a:hover::before {
    background: url(../images/icon/icon-LINE_hover.svg) center/contain no-repeat;
  }
}
/*-------------------------------
p-flow
-------------------------------*/
.p-flow {
  padding-bottom: 8.3rem;
}
@media screen and (max-width: 767px) {
  .p-flow {
    margin-top: 12.4rem;
    padding-bottom: 10.3rem;
  }
}

.p-flow__inner.l-inner {
  max-width: 1148px;
}
@media screen and (max-width: 767px) {
  .p-flow__inner.l-inner {
    max-width: 410px;
  }
}

.p-flow__list {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    margin-top: 1.2rem;
    padding-inline: 1.6rem;
    flex-direction: column;
    gap: 6rem;
  }
}

.p-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-flow__item:not(:last-child)::before {
    content: "";
    width: 4.2rem;
    height: 2.9rem;
    position: absolute;
    bottom: -9.8%;
    left: 50%;
    transform: translate(-50%, 100%) rotate(90deg);
    background: url(../images/flow-arrow.png) center/contain no-repeat;
  }
}

.p-flow__item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-header {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.p-flow__step {
  width: 10.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__step {
    width: 9.1rem;
  }
}

.p-flow__step img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 108/108;
}

.p-flow__item:not(:last-child) .p-flow__step::before {
  content: "";
  width: 4.2rem;
  height: 2.9rem;
  position: absolute;
  top: 54.2%;
  right: -20%;
  transform: translate(100%, -50%);
  background: url(../images/flow-arrow.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-flow__item:not(:last-child) .p-flow__step::before {
    display: none;
  }
}

.p-flow__icon {
  width: 16.8rem;
}

.p-flow__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 168/129;
}

.p-flow__heading {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 800;
  color: #94aa30;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__heading {
    margin-top: 0.8rem;
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

.p-flow__text {
  margin-top: 2.7rem;
  padding-inline: 1.1rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    margin-top: 1rem;
    padding-inline: 0.1rem;
  }
}

/*-------------------------------
p-footer
-------------------------------*/
.p-footer {
  margin-top: -5.8rem;
  padding-block: 5.3rem 1.7rem;
  background: url(../images/footer-bg.png) top/cover repeat-x;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: -1.3rem;
    padding-block: 0.3rem 5.1rem;
    background: none;
    background-color: #EBF8FF;
  }
}

@media screen and (max-width: 767px) {
  .p-footer::before {
    content: "";
    width: 100vw;
    height: 20.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4.4vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    background: url(../images/footer-bg_sp.png) center/cover no-repeat;
  }
}

.p-footer__inner.l-inner {
  max-width: 1190px;
}
@media screen and (max-width: 767px) {
  .p-footer__inner.l-inner {
    padding-inline: 16px;
    position: relative;
    max-width: 500px;
    z-index: 50;
  }
}

.p-footer__top {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.6rem;
  }
}

.p-footer__logo {
  width: 52.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 33.5rem;
  }
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 524/77;
}

.p-footer__info {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.p-footer__info .-space {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-footer__info .-space {
    display: inline;
  }
}

.p-footer__tel {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__tel {
    align-items: flex-end;
    gap: 0.6rem;
  }
}

.p-footer__hours {
  padding: 0 0.8rem;
  background-color: #94aa30;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 500;
  color: #fff;
  border-radius: 2rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-footer__hours {
    padding: 0 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
    position: relative;
    bottom: 0.2rem;
  }
}

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

.p-footer__copy {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: 500;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    text-align: left;
  }
}

/*-------------------------------
p-form
-------------------------------*/
.p-form {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form {
    margin-top: 2rem;
  }
}

.p-form__group {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-form__group {
    flex-direction: column;
  }
}

.p-form__group + .p-form__group {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__group + .p-form__group {
    margin-top: 1rem;
  }
}

.p-form__group.-address,
.p-form__group.-privacy {
  margin-top: 1rem;
}

.p-form__label {
  width: 29.2682926829%;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    padding-bottom: 0.3rem;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }
}

.p-form__required {
  padding: 0.4rem 1.3rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.3rem;
  line-height: 1.3076923077;
  font-weight: 500;
  color: #fff;
  background-color: #f58f47;
}
@media screen and (max-width: 767px) {
  .p-form__required {
    padding: 0.3rem 1rem;
    line-height: 1.4615384615;
  }
}

.p-form__sub-label {
  padding-bottom: 0.3rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__sub-label {
    padding-bottom: 0;
  }
}

.p-form__field,
.p-form__checkbox,
.p-form__note {
  width: 70.7317073171%;
}
@media screen and (max-width: 767px) {
  .p-form__field,
  .p-form__checkbox,
  .p-form__note {
    width: 100%;
  }
}

.p-form__field input,
.p-form__field textarea {
  padding: 1.2rem 1.3rem;
  border: 1px solid #4d4d4d;
  border-radius: 0.6rem;
}

.p-form__field .-w100p {
  width: 100%;
}

.p-form__field .-w244 {
  width: 24.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__field .-w244 {
    width: 81.0631229236%;
  }
}

.p-form__field .-w244.-sp {
  width: 24.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__field .-w244.-sp {
    width: 51.4950166113%;
  }
}

.p-form__field .-w475 {
  width: 47.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__field .-w475 {
    width: 100%;
  }
}

.p-form__input input::-moz-placeholder, .p-form__address input::-moz-placeholder, .p-form__textarea textarea::-moz-placeholder {
  color: #C1C1C1;
}

.p-form__input input::placeholder,
.p-form__address input::placeholder,
.p-form__textarea textarea::placeholder {
  color: #C1C1C1;
}

.p-form__field textarea {
  height: 17.8rem;
}
@media screen and (max-width: 767px) {
  .p-form__field textarea {
    height: 21rem;
  }
}

.p-form__checkbox {
  padding: 1.3rem;
  width: 47.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #eeeeef;
  border-radius: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox {
    width: 100%;
  }
}

.p-form__checkbox input {
  margin: 0;
  width: 16px;
  height: 16px;
}

.p-form__checkbox input {
  accent-color: #b3ca42;
}

.p-form__note {
  padding-right: 2rem;
  height: 20.4rem;
  font-size: 1.5rem;
  line-height: 1.7333333333;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-form__note {
    height: 17.8rem;
  }
}

.p-form__submit {
  margin-top: 6rem;
  margin-inline: auto;
  width: 29rem;
}
@media screen and (max-width: 767px) {
  .p-form__submit {
    margin-top: 3rem;
  }
}

/*-------------------------------
p-fv
-------------------------------*/
.p-fv {
  background-color: #b0dcf4;
}

.p-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}

.p-fv__inner.l-inner {
  margin-top: -18.3vw;
  max-width: 1300px;
}
@media screen and (max-width: 767px) {
  .p-fv__inner.l-inner {
    margin-top: 2.5rem;
  }
}

.p-fv__catch {
  padding-block: 0.9rem;
  padding-left: 0.8rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3.7rem;
  line-height: 1.5405405405;
  font-weight: 800;
  color: #fff;
  text-align: center;
  background-color: #ff76c0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-fv__catch {
    padding-block: 0.7rem;
    padding-left: 0.5rem;
    font-size: 1.9rem;
    line-height: 1.4736842105;
  }
}

.p-fv__catch .-yellow {
  color: #fdea00;
}

.p-fv__catch .-big {
  font-size: 6rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv__catch .-big {
    font-size: 3.2rem;
  }
}

.p-fv__catch .-big::before {
  content: "";
  width: 11.3rem;
  height: 6.3rem;
  position: absolute;
  top: -3.1rem;
  left: 58%;
  transform: translateX(-50%);
  background: url(../images/fv-decoration01.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-fv__catch .-big::before {
    width: 6.2rem;
    height: 3.5rem;
    top: -2.1rem;
  }
}

/*-------------------------------
p-header
-------------------------------*/
.p-header {
  height: 8.2rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4.8rem;
  }
}

.p-header__inner.l-inner {
  max-width: 1356px;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__inner.l-inner {
    padding-inline: 16px;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 33.1rem;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 21.1rem;
  }
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 331/49;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    aspect-ratio: 211/32;
  }
}

.p-header__right {
  display: flex;
  height: inherit;
  align-items: center;
  gap: clamp(3rem, -18.7rem + 18.07vw, 6rem);
}

.p-header__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  height: inherit;
  display: flex;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  padding-inline: 1.5rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.p-header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-header__tel {
    display: none;
  }
}

.p-header__tel-number {
  display: block;
  font-size: 2.7rem;
  line-height: 1.2962962963;
  font-weight: 700;
  color: #f58f47;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.p-header__tel-number::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  -webkit-mask-image: url(../images/icon/icon-tel.svg);
          mask-image: url(../images/icon/icon-tel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #f58f47;
}

.p-header__tel-time {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.p-header__tel-time-text {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}

.p-header__tel-badge {
  margin-left: 1rem;
  padding: 0.3rem 0.9rem 0;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  font-weight: 500;
  color: #fff;
  background-color: #94aa30;
  border-radius: 2rem;
}

.p-header__hamburger {
  all: unset;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: inline-block;
    width: 3rem;
    height: 100%;
    position: relative;
    z-index: 999;
    cursor: pointer;
  }
}

.p-header__hamburger span {
  height: 0.3rem;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  border-radius: 0.3rem;
  background-color: #f58f47;
  transition: 0.3s ease-out;
}

.p-header__hamburger span:nth-child(1) {
  width: 3rem;
  top: calc(50% - 0.6rem);
}

.p-header__hamburger span:nth-child(2) {
  width: 1.7rem;
  top: calc(50% + 0.6rem);
}

.p-header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(27.5deg);
}

.p-header__hamburger.is-open span:nth-child(2) {
  width: 3rem;
  top: 50%;
  transform: translateY(-50%) rotate(-27.5deg);
}

.p-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    padding-block: 9.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: #fff;
    overflow-y: scroll;
  }
}

.p-header__drawer-list {
  position: relative;
}

.p-header__drawer-list::before {
  content: "";
  width: 28.5rem;
  height: 5px;
  position: absolute;
  top: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/drawer-line.png) center/contain no-repeat;
}

.p-header__drawer-item {
  position: relative;
}

.p-header__drawer-item::after {
  content: "";
  width: 28.5rem;
  height: 5px;
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/drawer-line.png) center/contain no-repeat;
}

.p-header__drawer-item a {
  padding-block: 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  text-align: center;
}

.p-header__drawer-bottom {
  margin-top: 5.4rem;
}

.p-header__drawer-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-header__drawer-hours {
  padding-top: 0.2rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  font-weight: 500;
}

.p-header__drawer-label {
  font-size: 1.3rem;
  line-height: 1.4615384615;
}

.p-header__drawer-badge {
  margin-left: 1rem;
  padding: 0.1rem 0.9rem;
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  font-weight: 500;
  color: #fff;
  background-color: #94aa30;
  border-radius: 2rem;
}

.p-header__drawer-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.p-header__drawer-button.c-cta-btn {
  width: 100%;
  max-width: 28rem;
}

/*-------------------------------
p-merit
-------------------------------*/
.p-merit {
  margin-top: 9.4rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .p-merit {
    margin-top: 7.1rem;
    padding-bottom: 6rem;
  }
}

.p-merit__inner.l-inner {
  padding-inline: 7.6rem;
  max-width: 1088px;
}
@media screen and (max-width: 767px) {
  .p-merit__inner.l-inner {
    padding-inline: 20px;
    max-width: 500px;
  }
}

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

.p-merit__item {
  display: flex;
  gap: 8.1196581197%;
}
@media screen and (max-width: 767px) {
  .p-merit__item {
    flex-direction: column;
    gap: 1.9rem;
  }
}

.p-merit__item + .p-merit__item {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-merit__item + .p-merit__item {
    margin-top: 5.8rem;
  }
}

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

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

.p-merit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 476/280;
}
@media screen and (max-width: 767px) {
  .p-merit__image img {
    aspect-ratio: 335/200;
  }
}

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

.p-merit__heading {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 700;
  color: #94aa30;
}
@media screen and (max-width: 767px) {
  .p-merit__heading {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.p-merit__text {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .p-merit__text {
    margin-top: 1.6rem;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

/*-------------------------------
p-pagetop
-------------------------------*/
.p-pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
}
@media screen and (max-width: 767px) {
  .p-pagetop {
    bottom: 8.3rem;
    right: 1.6rem;
  }
}

.p-pagetop__link {
  all: unset;
  position: relative;
  cursor: pointer;
}

.p-pagetop__link::before {
  content: "";
  width: 8.6rem;
  height: 7.2rem;
  position: absolute;
  top: -4.9rem;
  left: 50%;
  transform: translateX(-50%) translateY(2rem);
  background: url(../images/top-btn.png) center/cover no-repeat;
  opacity: 0;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-pagetop__link::before {
    width: 5.6rem;
    height: 4.2rem;
    top: -2.3rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/top-btn_sp.png) center/cover no-repeat;
    opacity: 1;
  }
}

.p-pagetop__icon {
  width: 7.8rem;
  position: relative;
  z-index: 20;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-pagetop__icon {
    width: 4.4rem;
  }
}

.p-pagetop__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 78/78;
}

@media (any-hover: hover) {
  .p-pagetop__link:hover::before {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-pagetop__link:hover::before {
    transform: translateX(-50%);
    opacity: 1;
  }
}
/*-------------------------------
p-reason
-------------------------------*/
.p-reason {
  margin-top: -10rem;
  padding-top: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-reason {
    margin-top: -17rem;
    padding-top: 17rem;
    padding-bottom: 3rem;
  }
}

.p-reason__title {
  width: 109.5168374817vw;
  height: 17.42vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/reason-bg-decoration.png) center/cover no-repeat;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    height: 20.9vw;
    background: url(../images/reason-bg-decoration_sp.png) center/cover no-repeat;
  }
}

.p-reason__title .c-section-title__en {
  color: #fff;
}

.p-reason__visual-wrap {
  position: relative;
}

.p-reason__visual {
  margin-top: -9.8rem;
  width: 103.5vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-reason__visual {
    margin-top: -4rem;
    width: 111.2vw;
  }
}

.p-reason__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1413/764;
}

.p-reason__catch {
  width: 84.9rem;
  position: absolute;
  bottom: 36.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-reason__catch {
    width: 28.9rem;
    bottom: 8.7rem;
  }
}

.p-reason__bg-decoration {
  margin-top: -29.6rem;
  width: 109.5168374817vw;
  height: 17.42vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-reason__bg-decoration {
    margin-top: -8.3rem;
  }
}

.p-reason__bg-decoration img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1496/238;
}

.p-reason__content-bg {
  margin-top: -10rem;
  background-color: #e8f2ba;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-reason__content-bg {
    margin-top: -5rem;
    padding-bottom: 5rem;
  }
}

.p-reason__inner.l-inner {
  max-width: 1138px;
}

.p-reason__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.6rem;
  grid-row-gap: 3rem;
  position: relative;
  top: -13.7vw;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 3.4rem;
    top: 6.7vw;
    justify-items: center;
  }
}

.p-reason__item {
  padding: 3.3rem 3.6rem 6rem;
  max-width: 35.2rem;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    padding: 0rem 1.7rem 2.5rem;
  }
}

.p-reason__item:nth-child(-n+3)::before {
  content: "";
  width: 6.4rem;
  height: 4.7rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/clown.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(-n+3)::before {
    top: -0.2rem;
  }
}

.p-reason__item-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item-header {
    margin-top: -1.4rem;
    gap: 0.4rem;
    position: relative;
    z-index: 20;
  }
}

.p-reason__header-text {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-reason__header-text {
    font-size: 1.7rem;
    line-height: 1.1176470588;
  }
}

.p-reason__number {
  font-family: "Roboto", sans-serif;
  font-size: 8.4rem;
  line-height: 0.8214285714;
  font-weight: 700;
  color: #f58f47;
}
@media screen and (max-width: 767px) {
  .p-reason__number {
    font-size: 4.8rem;
    line-height: 0.8958333333;
  }
}

.p-reason__item-title {
  margin-top: 3rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reason__item-title {
    margin-top: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

.p-reason__highlight {
  font-size: 3.5rem;
  line-height: 1.1428571429;
  color: #94aa30;
}
@media screen and (max-width: 767px) {
  .p-reason__highlight {
    font-size: 2.6rem;
    line-height: 1.1538461538;
  }
}

.p-reason__item-text {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-reason__item-text {
    margin-top: 1.4rem;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

.p-reason__item:nth-child(3) {
  padding-inline: 2.9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(3) {
    padding-inline: 1.7rem;
    padding-bottom: 19.6rem;
  }
}

.p-reason__item:nth-child(3)::after {
  content: "";
  width: 20rem;
  height: 15.6rem;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 0%);
  background: url(../images/reason-support-img.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(3)::after {
    bottom: 3rem;
  }
}

.p-reason__item:nth-child(3) .p-reason__highlight {
  font-size: 2.4rem;
  line-height: 1.4583333333;
}

@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(3) .-small {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.p-reason__item:nth-child(3) .p-reason__item-text {
  margin-top: 1.5rem;
  padding-inline: 0.7rem;
}

.p-reason__item:nth-child(6) {
  padding: 0;
  padding-bottom: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(6) {
    padding-inline: 8.4rem 2.8rem;
    padding-top: 7.6rem;
    padding-bottom: 2rem;
  }
}

.p-reason__item:nth-child(6)::before {
  content: "";
  width: 29.2rem;
  height: 29.2rem;
  position: absolute;
  bottom: -0.8rem;
  left: -5.1rem;
  z-index: 20;
  background: url(../images/reason-zunda.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(6)::before {
    width: 20.4rem;
    height: 20.4rem;
    bottom: 0rem;
    left: -0.8rem;
  }
}

.p-reason__item:nth-child(6)::after {
  content: "";
  width: 24.4rem;
  height: 19.1rem;
  position: absolute;
  top: -2.6rem;
  left: 0.8rem;
  background: url(../images/reason-zunda-text.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(6)::after {
    width: 23.2rem;
    height: 18.1rem;
    top: -2.4rem;
    left: 3.8rem;
  }
}

.p-reason__item:nth-child(6) img {
  width: 29rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 290/328;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(6) img {
    width: 22.3rem;
    aspect-ratio: 223/216;
  }
}

/*-------------------------------
p-slider
-------------------------------*/
.p-slider {
  padding-top: 3rem;
  background-color: #b0dcf4;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-slider {
    padding-bottom: 0;
  }
}

.p-slider__inner {
  margin-inline: auto;
  max-width: 94.2rem;
}
@media screen and (max-width: 767px) {
  .p-slider__inner {
    max-width: 31.4rem;
  }
}

.p-slider__swiper {
  position: relative;
}

.p-slider__swiper .swiper {
  overflow: visible;
}

.p-slider__swiper .swiper-slide {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .p-slider__swiper .swiper-slide {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.12);
  }
}

.p-slider__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 456/607;
}
@media screen and (max-width: 767px) {
  .p-slider__swiper .swiper-slide img {
    aspect-ratio: 314/361;
  }
}

.p-slider__swiper-button-wrap {
  padding-inline: 2rem;
  width: 113%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 45.6%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .p-slider__swiper-button-wrap {
    width: 126%;
    top: 50.2%;
  }
}

.p-slider__swiper-button-prev,
.p-slider__swiper-button-next {
  width: 5.9rem;
  height: 5.9rem;
  background: url(../images/slider-btn.png) center/contain no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-slider__swiper-button-prev,
  .p-slider__swiper-button-next {
    width: 3.1rem;
    height: 3.1rem;
  }
}

.p-slider__swiper-button-next {
  transform: rotate(180deg);
}

.p-slider__description-wrap {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-slider__description-wrap {
    margin-top: 1rem;
    padding-inline: 2.2rem;
  }
}

.p-slider__description {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/*-------------------------------
p-thanks
-------------------------------*/
.p-thanks__inner.l-inner {
  max-width: 724px;
}

.p-thanks__content {
  padding-block: 17.4rem 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__content {
    padding-block: 9rem 11rem;
  }
}

.p-thanks__icon {
  width: 3.8rem;
}

.p-thanks__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 38/38;
}

.p-thanks__title {
  margin-top: 1rem;
  font-size: 3rem;
  line-height: 1.4666666667;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #f58f47;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.p-thanks__text {
  margin-top: 6rem;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

.p-thanks__button {
  margin-top: 9rem;
  width: 29rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__button {
    margin-top: 6rem;
  }
}

/*-------------------------------
p-voice
-------------------------------*/
.p-voice {
  margin-top: -21.1rem;
  padding-top: 15rem;
  background-color: #e8f2ba;
  position: relative;
  overflow-x: clip;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .p-voice {
    margin-top: -16.7rem;
    padding-top: 15rem;
    z-index: 10;
  }
}

.p-voice::after {
  content: "";
  width: 109.5168374817vw;
  height: 17.42vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/reason-bg-decoration.png) center/cover no-repeat;
  position: absolute;
  bottom: -8.6vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-voice::after {
    height: 20.9vw;
    background: url(../images/reason-bg-decoration_sp.png) center/cover no-repeat;
    bottom: -4.4vw;
  }
}

.p-voice__inner.l-inner {
  max-width: 1088px;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .p-voice__inner.l-inner {
    padding: 20px;
  }
}

.p-voice__title.c-section-title {
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-voice__title.c-section-title {
    margin-inline: auto;
    max-width: 500px;
  }
}

.p-voice__title .c-section-title__en {
  color: #fff;
}

.p-voice__title-decoration-left {
  width: 19.9rem;
  height: 59.6rem;
  position: absolute;
  top: -3.5rem;
  left: 27.3%;
  transform: translateX(-50%);
  background: url(../images/voice-people01.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-voice__title-decoration-left {
    width: 12.9rem;
    height: 38.4rem;
    top: 0;
    left: 16.3%;
  }
}

.p-voice__title-decoration-right {
  width: 19.9rem;
  height: 60.6rem;
  position: absolute;
  top: -3.5rem;
  right: 26.8%;
  transform: translateX(50%);
  background: url(../images/voice-people02.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-voice__title-decoration-right {
    width: 13rem;
    height: 39.5rem;
    top: 0.5rem;
    right: 13.4%;
  }
}

.p-voice__title-decoration-left::before,
.p-voice__title-decoration-right::before {
  content: "";
  width: 19.7rem;
  height: 13.6rem;
  position: absolute;
}
.p-voice__title-decoration-left::before {
  top: 2.7rem;
  left: -14.6rem;
  background: url(../images/voice-message01.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-voice__title-decoration-left::before {
    width: 14.7rem;
    height: 9.8rem;
    top: 7.4rem;
    left: 1.6rem;
    background: url(../images/voice-message01_sp.png) center/contain no-repeat;
  }
}

.p-voice__title-decoration-right::before {
  top: 2.7rem;
  right: -14.3rem;
  background: url(../images/voice-message02.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-voice__title-decoration-right::before {
    width: 14.4rem;
    height: 10rem;
    top: 6.9rem;
    right: 3.3rem;
    background: url(../images/voice-message02_sp.png) center/contain no-repeat;
  }
}

.p-voice__content {
  margin-top: 1rem;
  margin-inline: auto;
  padding-inline: 25px;
  max-width: 938px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-voice__content {
    margin-top: 9.3rem;
    padding: 0;
    max-width: 500px;
  }
}

.p-voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 4rem;
  grid-row-gap: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-voice__item {
  padding: 3rem;
  background-color: #fffaef;
  border-radius: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    padding: 1.5rem;
  }
}

.p-voice__header {
  display: flex;
  gap: 1.6rem;
}

.p-voice__header-img {
  width: 12rem;
  position: absolute;
  top: -1.7rem;
  left: 3rem;
}
@media screen and (max-width: 767px) {
  .p-voice__header-img {
    width: 8rem;
    top: -1.7rem;
    left: 1.6rem;
  }
}

.p-voice__header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 120/120;
}
@media screen and (max-width: 767px) {
  .p-voice__header-img img {
    aspect-ratio: 80/80;
  }
}

.p-voice__category {
  margin-left: auto;
  padding-block: 1.1rem 1.3rem;
  padding-left: 8.4rem;
  width: 31.3rem;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-voice__category {
    padding-block: 0.8rem 0.9rem;
    padding-left: 30.4%;
    width: 100%;
  }
}

.p-voice__highlight {
  font-size: 2rem;
  line-height: 1.2;
  color: #f58f47;
}
@media screen and (max-width: 767px) {
  .p-voice__highlight {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
}

.p-voice__text {
  margin-top: 2.6rem;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-voice__text {
    margin-top: 1.6rem;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}

/*-------------------------------
u-fade-up
-------------------------------*/
.u-fade-up {
  opacity: 0;
  translate: 0 5rem;
  transition: 0.5s ease-in-out;
}

.u-fade-up.active {
  opacity: 1;
  translate: 0 0;
}

.u-fade-up.-pseudo {
  opacity: 1;
  translate: 0 0;
}

.p-reason__item.u-fade-up.-pseudo::after,
.p-voice__title-decoration-left.u-fade-up.-pseudo::before,
.p-voice__title-decoration-right.u-fade-up.-pseudo::before,
.p-faq__list.u-fade-up.-pseudo::before {
  opacity: 0;
  translate: 0 5rem;
  transition: 0.5s ease-in-out;
}

.p-reason__item.u-fade-up.-pseudo.active::after,
.p-voice__title-decoration-left.u-fade-up.-pseudo.active::before,
.p-voice__title-decoration-right.u-fade-up.-pseudo.active::before,
.p-faq__list.u-fade-up.-pseudo.active::before {
  opacity: 1;
  translate: 0 0;
}

/*-------------------------------
u-inline-block
-------------------------------*/
.u-inline-block {
  display: inline-block;
}

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

/*-------------------------------
u-slide-left
-------------------------------*/
.u-slide-left {
  opacity: 0;
  translate: -15rem 0;
  transition: 0.5s ease-out;
}

.u-slide-left.active {
  opacity: 1;
  translate: 0 0;
}

/*-------------------------------
u-sp
-------------------------------*/
.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

/*-------------------------------
u-yura-slow
-------------------------------*/
.u-yura-slow {
  animation: yura-slow 4s ease-in-out infinite;
}

@keyframes yura-slow {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
/*-------------------------------
u-yura
-------------------------------*/
.u-yura {
  animation: yurayura 1.3s ease-in-out infinite;
}

.u-yura.-pseudo {
  animation: none;
}

.u-yura.-pseudo::before {
  animation: yura-pseudo 2.5s ease-in-out infinite;
}

@keyframes yurayura {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-3deg);
  }
  55% {
    transform: rotate(3deg);
  }
  70% {
    transform: rotate(-3deg);
  }
  85% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yura-pseudo {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  75% {
    transform: translateX(-50%) rotate(0deg);
  }
  80% {
    transform: translateX(-50%) rotate(-3deg);
  }
  85% {
    transform: translateX(-50%) rotate(3deg);
  }
  90% {
    transform: translateX(-50%) rotate(-3deg);
  }
  95% {
    transform: translateX(-50%) rotate(3deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}