@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2030075188vw;
  }
}
@media (min-width: 1330px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "游ゴシック", "Yu Gothic", "YuGothic", "游ゴシック体", "Lucida Grande", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #363636;
  background: #F0F0F0;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

a {
  display: inline-block;
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

em {
  font-style: normal;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  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;
  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;
  font-weight: 500;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 83.125rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-button {
  border: solid 1px #E94C30;
  background: #E94C30;
  padding: 0.6875rem 0.5625rem 0.6875rem 1.9375rem;
  display: grid;
  grid-template-columns: 1fr 3.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50vmax;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  min-height: 5rem;
}
@media screen and (min-width: 768px) {
  .c-button {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    padding: 0.4375rem 0.5625rem 0.4375rem 1.9375rem;
    grid-template-columns: 1fr 4rem;
  }
}

@media (hover: hover) {
  .c-button:hover {
    background: #fff;
    opacity: 1;
  }
  .c-button:hover .c-button__text {
    color: #E94C30;
  }
  .c-button:hover .c-button__arrow {
    background: #E94C30;
  }
  .c-button:hover .c-button__arrow::before {
    background: #fff;
  }
}

.c-button__text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-button__arrow {
  width: 3.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button__arrow::before {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1/1;
  background: #E94C30;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  mask: url("../images/fc/icon_arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../images/fc/icon_arrow.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-button__arrow {
    width: 4rem;
  }
}

.c-button.--blue {
  background: #2DABE9;
  border: solid 1px #2DABE9;
  grid-template-columns: 1fr 1.5rem;
  min-height: 2.5rem;
  min-width: 8.75rem;
  padding: 0.4375rem 0.4375rem 0.4375rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-button.--blue {
    grid-template-columns: 1fr 2.5rem;
    padding: 0.4375rem 0.4375rem 0.4375rem 1.4375rem;
    min-width: 12.5rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}
.c-button.--blue .c-button__arrow {
  width: 1.5rem;
}
.c-button.--blue .c-button__arrow::before {
  width: 0.5rem;
  background: #2DABE9;
}
@media screen and (min-width: 768px) {
  .c-button.--blue .c-button__arrow {
    width: 2.5rem;
  }
  .c-button.--blue .c-button__arrow::before {
    width: 0.625rem;
  }
}
.c-button.--blue .c-button__text {
  font-size: max(10px, 0.875rem);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-button.--blue .c-button__text {
    font-size: max(10px, 1rem);
  }
}

.c-button.--blue:hover {
  background: #fff;
}
@media (hover: hover) {
  .c-button.--blue:hover .c-button__text {
    color: #2DABE9;
  }
  .c-button.--blue:hover .c-button__arrow {
    background: #2DABE9;
  }
  .c-button.--blue:hover .c-button__arrow::before {
    background: #fff;
  }
}

.p-about {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 6rem;
}
.p-about::before, .p-about::after {
  content: "";
  background: url(../images/fc/deco_circle.svg) no-repeat center/contain;
  aspect-ratio: 1/1;
  width: 37.5rem;
  position: absolute;
  z-index: -1;
}
.p-about::before {
  top: -15.3125rem;
  right: -23.75rem;
}
.p-about::after {
  bottom: -6.25rem;
  left: -19.25rem;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-bottom: 8rem;
  }
  .p-about::before, .p-about::after {
    width: 50.9375rem;
  }
  .p-about::before {
    top: -22.1875rem;
    right: -17.875rem;
  }
  .p-about::after {
    bottom: -12.1875rem;
    left: -16.75rem;
  }
}

.p-about__top {
  padding-top: 6rem;
  position: relative;
  z-index: 1;
}
.p-about__top::before {
  content: "";
  background: url(../images/fc/icon_character.svg) no-repeat center/contain;
  aspect-ratio: 148/105;
  width: 9.25rem;
  -webkit-transform: rotate(17.42deg);
          transform: rotate(17.42deg);
  top: 0.625rem;
  right: -1rem;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about__top {
    width: 71.5625%;
    margin-inline: auto;
    padding-top: 7.8125rem;
  }
  .p-about__top::before {
    width: 16.1875rem;
    aspect-ratio: 259/184;
    top: 10.9375rem;
    right: calc(50% - 32.1875rem);
  }
}

.p-about__title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: -0.1em;
}
.p-about__title::before {
  content: attr(data-en);
  font-family: "DM Sans", sans-serif;
  color: #6DC5F1;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 4rem;
    letter-spacing: 0;
  }
  .p-about__title::before {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
}

.p-about__text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1.5rem;
  }
}

.p-about__points {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    margin-top: 2.5rem;
  }
}

.p-about__point {
  background: #363636;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
  border-radius: 0.25rem;
}
.p-about__point + .p-about__point {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__point {
    padding: 1.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-about__point + .p-about__point {
    margin-top: 0;
  }
}

.p-about__point-label {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: solid 1px #fff;
  border-radius: 50vmax;
  padding: 0.1875rem 1.1875rem;
  display: inline-block;
}

.p-about__point-text {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-about__point-text {
    margin-top: 1rem;
  }
}

.p-about__list {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-about__list {
    padding-inline: 6.875rem;
    counter-reset: number;
  }
}

.p-about__item {
  padding: 2.5rem 0;
}
.p-about__item:first-child {
  padding-top: 0rem;
}
.p-about__item:last-child {
  padding-bottom: 0rem;
}
.p-about__item + .p-about__item {
  border-top: dashed 1px #363636;
}
@media screen and (min-width: 768px) {
  .p-about__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2.375rem 0;
    position: relative;
  }
  .p-about__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-about__item::before {
    content: counter(number, decimal-leading-zero);
    counter-increment: number;
    color: #6DC5F1;
    font-family: "DM Sans", sans-serif;
    font-size: 8.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    position: absolute;
    z-index: 1;
  }
  .p-about__item:nth-child(1)::before {
    top: -4.6875rem;
    right: -3.75rem;
  }
  .p-about__item:nth-child(2)::before {
    top: -5.5rem;
    left: -4.5625rem;
  }
  .p-about__item:nth-child(3)::before {
    top: -9.0625rem;
    right: -4.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__item-conts {
    width: calc(50% - 1.25rem);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-about__item-catch span {
  color: #fff;
  background: #2DABE9;
  font-size: 2.25rem;
  font-weight: bold;
  padding: 0.25rem 1.25rem;
  display: inline-block;
}
.p-about__item-catch span + span {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__item-catch {
    color: #fff;
    background: #2DABE9;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0.25rem 1.25rem;
    display: inline-block;
    letter-spacing: 0.1em;
  }
  .p-about__item-catch span {
    display: contents;
  }
}

.p-about__item-text {
  margin-top: 1.375rem;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-about__item-text {
    margin-top: 1.25rem;
  }
}

.p-about__item-beforeafter {
  margin-top: 1.8125rem;
  aspect-ratio: 350/194;
}
.p-about__item-beforeafter img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about__item-beforeafter {
    aspect-ratio: 510/234;
    margin-top: 0;
  }
}

.p-about__item-image {
  margin-top: 1.5rem;
  aspect-ratio: 350/280;
}
.p-about__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__item-image {
    width: calc(50% - 1.25rem);
    margin-top: 0;
    aspect-ratio: 510/400;
  }
}

.p-contact-confirm {
  min-height: calc(100vh - 52.9375rem);
  padding: 7.5rem 0;
}
.p-contact-confirm .p-form__item + .p-form__item {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm {
    padding: 5rem 0;
  }
  .p-contact-confirm .p-form__item {
    width: 37.5rem;
    grid-template-columns: 16.875rem 1fr;
  }
}

.p-contact-confirm__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.p-contact-confirm__text {
  margin: 3.75rem auto 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-contact-confirm__box {
  margin: 3.75rem auto 0;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__box {
    width: 50rem;
    margin-top: 5rem;
  }
}

.p-contact-confirm__list {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 5rem;
  }
}

.p-contact-confirm__item p {
  position: relative;
}
.p-contact-confirm__item p::before {
  content: "";
  background: #2DABE9;
  mask: url(../images/fc/icon_arrow.svg) no-repeat center/contain;
  -webkit-mask: url(../images/fc/icon_arrow.svg) no-repeat center/contain;
  width: 0.75rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 1.625rem;
  right: 2.375rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  z-index: 1;
}
.p-contact-confirm__item p::after {
  content: "";
  background: #fff;
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-contact-confirm__item p input[type=submit], .p-contact-confirm__item p .p-contact-confirm__prev {
  width: 100%;
  padding: 1rem 5.3125rem 1rem 1.1875rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  background: #2DABE9;
  text-align: center;
  border: solid 1px #2DABE9;
  border-radius: 50vmax;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-contact-confirm__item p .p-contact-confirm__prev {
  padding-inline: 1.1875rem;
  background: #888;
  border: solid 1px #ccc;
}
@media (hover: hover) {
  .p-contact-confirm__item p:hover {
    opacity: 1;
  }
  .p-contact-confirm__item p:hover::before {
    background: #fff;
  }
  .p-contact-confirm__item p:hover::after {
    background: #2DABE9;
  }
  .p-contact-confirm__item p:hover input[type=submit] {
    background: #fff;
    color: #2DABE9;
  }
  .p-contact-confirm__item p:hover .p-contact-confirm__prev {
    background: #fff;
    color: #888;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__item p {
    width: 24.125rem;
    margin-inline: auto;
  }
  .p-contact-confirm__item p::before {
    width: 1rem;
    top: 2rem;
    right: 2.125rem;
  }
  .p-contact-confirm__item p::after {
    top: 0.5rem;
    right: 0.625rem;
    width: 4rem;
  }
  .p-contact-confirm__item p input[type=submit], .p-contact-confirm__item p .p-contact-confirm__prev {
    font-size: 1.5rem;
    padding: 1.375rem 7rem 1.375rem 2rem;
  }
  .p-contact-confirm__item p .p-contact-confirm__prev {
    padding-inline: 1.1875rem;
  }
}
.p-contact-confirm__item:first-child p {
  width: 80%;
  margin-inline: auto;
}
.p-contact-confirm__item:first-child p::before, .p-contact-confirm__item:first-child p::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm__item:first-child p {
    width: 16.875rem;
  }
}

.p-contact-thanks {
  min-height: calc(100vh - 52.9375rem);
  padding: 7.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks {
    padding: 5rem 0;
  }
}

.p-contact-thanks__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.p-contact-thanks__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.75rem auto 0;
  font-size: 1.125rem;
}

.p-contact-thanks__button {
  margin-top: 6.25rem;
  text-align: center;
}
.p-contact-thanks__button a {
  font-size: 1rem;
  display: inline-block;
  text-decoration: underline;
}
@media (hover: hover) {
  .p-contact-thanks__button a:hover {
    text-decoration: none;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__button {
    margin-top: 3.75rem;
  }
}

.p-contact {
  padding-top: 5rem;
  padding-bottom: 3.125rem;
}

.p-contact__title {
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}
.p-contact__title::before {
  content: attr(data-en);
  color: #6DC5F1;
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 3rem;
  }
}

.p-contact__form {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 3.75rem;
  }
}

.p-cta {
  background: #1D2E64;
  padding-top: 1.75rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding-top: 1.1875rem;
  }
}

.p-cta__title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 4.3125rem;
  margin-inline: calc(50% - 50vw);
}
.p-cta__title::before {
  content: "";
  display: block;
  max-width: 411px;
  width: 105%;
  aspect-ratio: 411/94;
  background: url("../images/fc/cta_bg_sp.png") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: 2rem;
    padding-top: 6.8125rem;
  }
  .p-cta__title::before {
    max-width: 48.125rem;
    width: 100%;
    aspect-ratio: 770/176;
  }
}

.p-cta__tel {
  text-align: center;
  margin-top: 0.5rem;
}
.p-cta__tel a {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-text-decoration: dotted underline;
          text-decoration: dotted underline;
  text-underline-offset: 0.3em;
}
@media screen and (min-width: 768px) {
  .p-cta__tel a {
    font-size: 4rem;
  }
}

.p-cta__btns {
  margin-top: 2rem;
  width: 22.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-cta__btns {
    width: 48.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-cta__btn + .p-cta__btn {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-cta__btn + .p-cta__btn {
    margin-top: 0;
  }
}

.p-flow {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: url(../images/fc/pattern_bg.png) repeat center/3.1875rem, #6DC5F1;
}

.p-flow__title {
  font-style: italic;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.p-flow__title::before {
  content: attr(data-en);
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    font-size: 4rem;
  }
  .p-flow__title::before {
    margin-bottom: 0.25rem;
  }
}

.p-flow__list {
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    max-width: 1060px;
    margin-inline: auto;
  }
}

.p-flow__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  background: #fff;
  border-radius: 0.5rem;
  border: solid 2px #363636;
  padding: 1.375rem 1.125rem;
  position: relative;
}
.p-flow__item + .p-flow__item {
  margin-top: 1.75rem;
}
.p-flow__item + .p-flow__item::before {
  content: "";
  background: url(../images/fc/icon_triangle.svg) no-repeat center/contain;
  width: 0.75rem;
  aspect-ratio: 12/28;
  position: absolute;
  top: -1.5rem;
  left: 48%;
  -webkit-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
}
.p-flow__item:last-child .p-flow__conts {
  margin-top: -0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    grid-template-columns: 6.25rem 1fr;
    padding: 1.375rem 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
  .p-flow__item + .p-flow__item::before {
    left: 49.5%;
  }
  .p-flow__item:last-child {
    padding-block: 1.0625rem;
  }
  .p-flow__item:last-child .p-flow__conts {
    margin-top: 0;
  }
}

.p-flow__icon {
  background: #6DC5F1;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.2;
}
.p-flow__icon::before {
  content: attr(data-en);
  display: block;
  font-size: max(10px, 0.75rem);
}
@media screen and (min-width: 768px) {
  .p-flow__icon {
    font-size: 1.5rem;
  }
  .p-flow__icon::before {
    font-size: 1rem;
  }
}

.p-flow__catch {
  font-size: 1.5rem;
  font-weight: bold;
}
.p-flow__catch span {
  color: #E94C30;
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}
@media screen and (min-width: 768px) {
  .p-flow__catch {
    font-size: 1.75rem;
  }
}

.p-flow__text {
  font-size: 1rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    font-size: 1.125rem;
  }
}

.p-footer {
  background: #363636;
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 1060px;
    margin: 0 auto;
  }
}

.p-footer__title {
  color: #2DABE9;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .p-footer__wrapper {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.p-footer__list {
  margin-top: 1.5rem;
}
.p-footer__list + .p-footer__list {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    margin-top: 0;
  }
}

.p-footer__item {
  border-bottom: solid 1px #5F5F5F;
  padding: 0.9375rem 0 1rem;
}
.p-footer__item.--last {
  border-bottom: none;
}

.p-footer__info {
  display: grid;
  grid-template-columns: 5.625rem 1fr;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
}
.p-footer__info dt, .p-footer__info dd {
  font-size: 1rem;
}
.p-footer__info dt {
  font-weight: bold;
}

.p-footer__copyright {
  display: block;
  margin-top: 5rem;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: max(10px, 0.75rem);
}

.p-form__item + .p-form__item {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form__item {
    width: 52.375rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 32.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-form__item:has(.p-form__textarea) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-form__item + .p-form__item {
    margin-top: 1.25rem;
  }
}

.p-form__label {
  font-size: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.p-form__label::after {
  content: "任意";
  background: #858585;
  color: #fff;
  font-size: max(10px, 0.75rem);
  font-weight: bold;
  border-radius: 0.25rem;
  padding: 0.25rem;
}
.p-form__label.--required::after {
  content: "必須";
  background: #E43F3F;
}

.p-form__wrapper {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__wrapper {
    margin-top: 0;
  }
}

.p-form__input, .p-form__textarea {
  width: 100%;
  display: block;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  background: #fff;
  border-radius: 0.5rem;
}
.p-form__input::-webkit-input-placeholder, .p-form__textarea::-webkit-input-placeholder {
  color: rgba(54, 54, 54, .5);
}
.p-form__input::-moz-placeholder, .p-form__textarea::-moz-placeholder {
  color: rgba(54, 54, 54, .5);
}
.p-form__input::-ms-input-placeholder, .p-form__textarea::-ms-input-placeholder {
  color: rgba(54, 54, 54, .5);
}
.p-form__input::placeholder, .p-form__textarea::placeholder {
  color: rgba(54, 54, 54, .5);
}

.p-form__textarea {
  height: 12.5rem;
}

.p-form__submit {
  margin-top: 2rem;
  position: relative;
}
.p-form__submit::before {
  content: "";
  background: #2DABE9;
  mask: url(../images/fc/icon_arrow.svg) no-repeat center/contain;
  -webkit-mask: url(../images/fc/icon_arrow.svg) no-repeat center/contain;
  width: 0.75rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 1.625rem;
  right: 2.375rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  z-index: 1;
}
.p-form__submit::after {
  content: "";
  background: #fff;
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-form__submit input[type=submit] {
  width: 100%;
  padding: 1rem 5.3125rem 1rem 1.1875rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  background: #2DABE9;
  text-align: center;
  border: solid 1px #2DABE9;
  border-radius: 50vmax;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .p-form__submit:hover {
    opacity: 1;
  }
  .p-form__submit:hover::before {
    background: #fff;
  }
  .p-form__submit:hover::after {
    background: #2DABE9;
  }
  .p-form__submit:hover input[type=submit] {
    background: #fff;
    color: #2DABE9;
  }
}
@media screen and (min-width: 768px) {
  .p-form__submit {
    width: 24.125rem;
    margin-inline: auto;
  }
  .p-form__submit::before {
    width: 1rem;
    top: 2rem;
    right: 2.125rem;
  }
  .p-form__submit::after {
    top: 0.5rem;
    right: 0.625rem;
    width: 4rem;
  }
  .p-form__submit input[type=submit] {
    font-size: 1.5rem;
    padding: 1.375rem 7rem 1.375rem 2rem;
  }
}

.wpcf7-not-valid-tip {
  font-size: max(10px, 0.75rem);
  font-weight: 500;
  margin-top: 5px;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: grid;
  grid-template-columns: 1.25rem auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
.wpcf7-list-item label input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  border: solid 1px #B8B8B8;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    min-width: 9.375rem;
  }
}

.wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-header {
  background: #fff;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    padding: 1rem 5rem;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo {
  width: 8.6875rem;
  aspect-ratio: 139/48;
}
.p-header__logo a {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 12.6875rem;
    aspect-ratio: 203/70;
  }
}

.p-mv-top {
  position: absolute;
  z-index: 1;
  top: -42.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  -webkit-clip-path: ellipse(50% 50% at 50% 50%);
          clip-path: ellipse(50% 50% at 50% 50%);
  background: url(../images/fc/pattern_bg.png) repeat center/3.1875rem, #E94C30;
  width: 72.125rem;
  height: 57.375rem;
}
@media screen and (min-width: 768px) {
  .p-mv-top {
    width: 150rem;
    height: 61.4375rem;
    top: -45.75rem;
  }
}
@media screen and (min-width: 1921px) {
  .p-mv-top {
    width: 120%;
  }
}

.p-mv-top__inner {
  width: 22.5625rem;
  margin: 0 auto;
  position: absolute;
  bottom: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-mv-top__inner {
    width: 100%;
    max-width: 81.5625rem;
    bottom: 1.875rem;
    display: grid;
    grid-template-columns: 31.25rem 1fr;
    -webkit-column-gap: 0.375rem;
       -moz-column-gap: 0.375rem;
            column-gap: 0.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 2.0625rem;
  }
}

.p-mv-top__catch {
  display: grid;
  grid-template-columns: 5.875rem 1fr;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-mv-top__catch::before {
  content: "";
  background: url(../images/fc/mv_icon.svg) no-repeat center/contain;
  width: 5.875rem;
  height: 6.25rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-mv-top__catch {
    grid-template-columns: 13.375rem 1fr;
  }
  .p-mv-top__catch::before {
    width: 13.375rem;
    height: 14.6875rem;
  }
}

.p-mv-top__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-mv-top__text {
    font-size: 2rem;
    margin-left: -1.5625rem;
    margin-top: -0.9375rem;
  }
}

.p-mv-top__list {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv-top__list {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    margin-top: -1.25rem;
  }
}

.p-mv-top__item {
  background: #fff;
  border-radius: 4px;
  border: solid 2px #363636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.3125rem 0;
}
.p-mv-top__item span {
  display: inline;
  font-size: max(10px, 0.875rem);
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(23.8%, transparent), color-stop(23.8%, #FCFF62));
  background: linear-gradient(transparent 23.8%, #FCFF62 23.8%);
}
@media screen and (min-width: 768px) {
  .p-mv-top__item {
    padding: 2rem 0.3125rem;
  }
  .p-mv-top__item span {
    font-size: 1.5rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(55.5%, transparent), color-stop(55.5%, #FCFF62));
    background: linear-gradient(transparent 55.5%, #FCFF62 55.5%);
  }
}

.p-mv-top__wrapper {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .p-mv-top__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-mv {
  position: relative;
  overflow: hidden;
  background: url(../images/fc/mv_image_sp.jpg) no-repeat top 4.6875rem center/cover;
  padding-top: 24.0625rem;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background: url(../images/fc/mv_image_pc.jpg) no-repeat center/cover;
    padding-top: 15rem;
  }
}

.p-mv__main {
  position: relative;
  z-index: 1;
  padding-bottom: 1.25rem;
}

.p-mv__inner {
  max-width: 1190px;
}

.p-mv__title {
  aspect-ratio: 716/311;
  max-width: 31.25rem;
}
.p-mv__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    aspect-ratio: 1702/758;
    max-width: 52.5rem;
  }
}

.p-mv__catch {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: bold;
  background: #FCFF62;
  display: inline-block;
  padding: 2px;
}
@media screen and (min-width: 768px) {
  .p-mv__catch {
    font-size: 2rem;
    margin-top: 1.375rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FCFF62));
    background: linear-gradient(transparent 50%, #FCFF62 50%);
  }
}

.p-mv__block {
  margin-top: 0.5rem;
  max-width: 25rem;
  margin-inline: -4px;
}
@media screen and (min-width: 768px) {
  .p-mv__block {
    margin-inline: 0;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.p-mv__list + .p-mv__list {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-mv__list + .p-mv__list {
    margin-top: 0;
  }
}

.p-mv__item {
  background: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.25rem 0.125rem 0.125rem;
  border-bottom: solid 2px #363636;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}
.p-mv__item + .p-mv__item {
  margin-top: 0.25rem;
}
.p-mv__item::before {
  content: "";
  background: url(../images/fc/icon_check.svg) no-repeat center/contain;
  width: 1.5rem;
  aspect-ratio: 1/1;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-mv__item {
    grid-template-columns: 1.75rem 1fr;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem 0.125rem;
  }
  .p-mv__item + .p-mv__item {
    margin-top: 0.5rem;
  }
  .p-mv__item::before {
    width: 1.75rem;
  }
}

.p-point {
  position: relative;
  padding-bottom: 5rem;
  background: #C5ECFF;
  z-index: 1;
  overflow: hidden;
}
.p-point::before {
  content: "";
  background: url(../images/fc/deco_point_sp.png) no-repeat center/contain;
  width: 100%;
  aspect-ratio: 780/1213;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-point::before, .p-point::after {
    background: url(../images/fc/deco_point_pc.png) no-repeat center/contain;
    width: 41rem;
    aspect-ratio: 1313/1213;
  }
  .p-point::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1.875rem;
    z-index: -1;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.p-point__inner {
  position: relative;
  padding-top: 8rem;
}
.p-point__inner::before {
  content: "";
  background: url(../images/fc/icon_character02.svg) no-repeat center/contain;
  width: 9.375rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0.25rem;
  left: calc(50% - 12.8125rem);
  z-index: -1;
  -webkit-transform: rotate(-20.44deg);
          transform: rotate(-20.44deg);
}
@media screen and (min-width: 768px) {
  .p-point__inner {
    padding-top: 5.75rem;
  }
  .p-point__inner::before {
    width: 15.5625rem;
    top: 4.375rem;
    left: 0;
  }
}

.p-point__title {
  width: 19.6875rem;
  margin: 0 auto;
  aspect-ratio: 629/359;
}
.p-point__title img {
  margin-left: -0.625rem;
}
@media screen and (min-width: 768px) {
  .p-point__title {
    width: 49.25rem;
    aspect-ratio: 1576/322;
  }
  .p-point__title img {
    margin-left: 0;
  }
}

.p-point__list {
  margin-top: 4.125rem;
}
@media screen and (min-width: 768px) {
  .p-point__list {
    margin-top: 4.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}

.p-point__item {
  background: rgba(255, 255, 255, .8);
  border: solid 4px #2DABE9;
  border-radius: 0.25rem;
  padding: 1.25rem 1.25rem;
  text-align: center;
}
.p-point__item + .p-point__item {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-point__item + .p-point__item {
    margin-top: 0;
  }
}

.p-point__label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.25rem 1.25rem;
  background: #C5ECFF;
  display: inline-block;
  border-radius: 50vmax;
}

.p-point__catch {
  margin-top: 1.4375rem;
  color: #E94C30;
}
.p-point__catch span {
  font-size: 2.25rem;
  line-height: 1.2;
  border-bottom: dashed 2px #E94C30;
  display: inline-block;
}
.p-point__catch span small {
  font-size: 1.5rem;
}
.p-point__catch span + span {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-point__catch {
    width: 72.6392251816%;
    margin-inline: auto;
  }
}

.p-point__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-point__text {
    font-size: 1.25rem;
  }
}

.p-point__image {
  margin-top: 1rem;
  width: 17.0625rem;
  height: 12.5rem;
  aspect-ratio: 273/200;
  margin-inline: auto;
}
.p-point__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-point__image {
    margin-top: 1.5rem;
  }
}

.p-price {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-price::before, .p-price::after {
  content: "";
  background: url(../images/fc/deco_price.svg) no-repeat center/contain;
  aspect-ratio: 777/773;
  width: 48.5625rem;
  position: absolute;
  z-index: -1;
}
.p-price::before {
  top: 0;
  left: -13.5625rem;
}
.p-price::after {
  bottom: 0;
  right: -18.125rem;
  -webkit-transform: rotate(-90deg) scale(1, -1);
          transform: rotate(-90deg) scale(1, -1);
}
@media screen and (min-width: 768px) {
  .p-price {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .p-price::before, .p-price::after {
    width: 48.3125rem;
  }
  .p-price::before {
    top: 0;
    left: 0;
  }
  .p-price::after {
    bottom: -3.125rem;
    right: -5.625rem;
    -webkit-transform: rotate(-99deg) scale(1, -1);
            transform: rotate(-99deg) scale(1, -1);
  }
}

@media screen and (min-width: 768px) {
  .p-price__list {
    width: 82.8125%;
    margin-inline: auto;
  }
}

.p-price__item + .p-price__item {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-price__item {
    display: grid;
    grid-template-columns: 1fr 38.75rem;
  }
  .p-price__item + .p-price__item {
    margin-top: 4rem;
  }
}

.p-price__title {
  font-size: 2rem;
  font-weight: bold;
}
.p-price__title::before {
  content: attr(data-en);
  color: #6DC5F1;
  font-family: "DM Sans", sans-serif;
  font-size: max(10px, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-price__title {
    font-size: 2.5rem;
    grid-row: span 2;
  }
  .p-price__title::before {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
}

.p-price__table {
  margin-top: 0.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  width: 100%;
  border: none;
  border-spacing: 0;
}
.p-price__table th, .p-price__table td {
  padding: 1rem 1.25rem 0.9375rem;
  font-size: 1.125rem;
  font-weight: bold;
}
.p-price__table th small, .p-price__table td small {
  font-size: max(10px, 0.875rem);
}
.p-price__table th {
  width: 45.7142857143%;
  background: #C5ECFF;
}
.p-price__table tr th {
  border-bottom: solid 1px #fff;
}
.p-price__table tr td {
  border-bottom: solid 1px #C5ECFF;
}
.p-price__table tr:last-child th, .p-price__table tr:last-child td {
  border-bottom: none;
}
.p-price__table tr.p-price__total th, .p-price__table tr.p-price__total td {
  background: #2DABE9;
  color: #fff;
}
.p-price__table tr.p-price__total td {
  border-left: solid 1px #fff;
}
.p-price__table tr.p-price__sub th, .p-price__table tr.p-price__sub td {
  padding: 0.75rem 1.25rem 0.6875rem;
}
.p-price__table tr.p-price__sub th {
  background: #D8EDF7;
  padding-left: 2rem;
}
.p-price__table tr.p-price__profit th, .p-price__table tr.p-price__profit td {
  background: #E94C30;
  color: #fff;
  font-size: 1.25rem;
  padding-block: 0.875rem;
}
.p-price__table tr.p-price__profit td {
  border-left: solid 1px #fff;
}
.p-price__table tr.p-price__profit td em {
  font-size: 2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-price__table {
    margin-top: 0;
  }
  .p-price__table th {
    width: 38.7096774194%;
  }
  .p-price__table th small, .p-price__table td small {
    font-size: 1.125rem;
  }
  .p-price__table tr.p-price__profit th, .p-price__table tr.p-price__profit td {
    padding-block: 1.0625rem;
  }
}

.p-price__note {
  margin-top: 1.3125rem;
  font-size: max(10px, 0.75rem);
}

.p-support {
  background: #fff;
  padding-top: 4.625rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-support::before, .p-support::after {
  content: "";
  background: url(../images/fc/deco_circle.svg) no-repeat center/contain;
  aspect-ratio: 1/1;
  width: 25rem;
  position: absolute;
  z-index: -1;
}
.p-support::before {
  top: -6.875rem;
  right: -10rem;
}
.p-support::after {
  bottom: -6.25rem;
  left: -9.125rem;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
@media screen and (min-width: 768px) {
  .p-support {
    padding-top: 5rem;
    padding-bottom: 7.75rem;
  }
  .p-support::before, .p-support::after {
    width: 50.9375rem;
  }
  .p-support::before {
    top: -16.875rem;
    right: -18rem;
  }
  .p-support::after {
    bottom: -26.25rem;
    left: -16.875rem;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media screen and (min-width: 768px) {
  .p-support__inner {
    max-width: 1440px;
    margin-inline: auto;
  }
}

.p-support__block + .p-support__block {
  margin-top: 4rem;
}
.p-support__block:nth-child(even) .p-support__image {
  margin-left: auto;
  margin-top: 1.125rem;
}
.p-support__block:nth-child(even) .p-support__image img {
  border-radius: 50vmax 4px 4px 50vmax;
}
@media screen and (min-width: 768px) {
  .p-support__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 5.5555555556%;
  }
  .p-support__block:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-support__block:nth-child(odd) .p-support__image {
    aspect-ratio: 644/400;
    width: 100%;
  }
  .p-support__block:nth-child(even) {
    padding-right: 0;
    padding-left: 5.5555555556%;
    -webkit-column-gap: 3.625rem;
       -moz-column-gap: 3.625rem;
            column-gap: 3.625rem;
  }
  .p-support__block:nth-child(even) .p-support__image {
    aspect-ratio: 680/480;
    width: 100%;
    margin-top: 0;
  }
  .p-support__block:nth-child(even) .p-support__wrapper {
    width: 46.1764705882%;
    margin-left: -0.375rem;
  }
  .p-support__block:nth-child(even) .p-support__item {
    width: 31.847133758%;
  }
  .p-support__block + .p-support__block {
    margin-top: 5.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-support__wrapper {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 49.7058823529%;
  }
}

.p-support__title {
  text-align: center;
}
.p-support__title span {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(46.6%, transparent), color-stop(46.6%, #FCFF62));
  background: linear-gradient(transparent 46.6%, #FCFF62 46.6%);
}
@media screen and (min-width: 768px) {
  .p-support__title span {
    font-size: 3.5rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(61.9%, transparent), color-stop(61.9%, #FCFF62));
    background: linear-gradient(transparent 61.9%, #FCFF62 61.9%);
  }
}

.p-support__list {
  width: 84.1025641026%;
  max-width: 500px;
  margin-top: 2rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-support__list {
    max-width: 100%;
    width: 100%;
    margin-top: 2rem;
    margin-inline: 0;
    gap: 2px 0.5625rem;
  }
}

.p-support__item {
  aspect-ratio: 1/1;
  width: 48.7804878049%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2DABE9;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}
.p-support__item:last-child {
  margin-top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-support__item {
    width: 31.9526627219%;
  }
}

.p-support__catch {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-support__catch {
    font-size: 1.25rem;
  }
}

.p-support__text {
  font-size: max(10px, 0.875rem);
}
@media screen and (min-width: 768px) {
  .p-support__text {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.p-support__image {
  width: 94.8717948718%;
  max-width: 500px;
  aspect-ratio: 370/320;
  margin-top: 0.875rem;
  border-radius: 4px;
  overflow: clip;
}
.p-support__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 50vmax 50vmax 4px;
}
@media screen and (min-width: 768px) {
  .p-support__image {
    margin-top: 0;
    max-width: 100%;
  }
}

.p-work {
  background: url(../images/fc/pattern_bg.png) repeat center/3.1875rem, #363636;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-work__title {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.1em;
  text-align: center;
}
.p-work__title::before {
  content: attr(data-en);
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-work__title {
    font-size: 4rem;
    letter-spacing: 0;
  }
  .p-work__title::before {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
  }
}

.p-work__list {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-work__list {
    margin-top: 2.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.9375rem;
       -moz-column-gap: 1.9375rem;
            column-gap: 1.9375rem;
  }
}

.p-work__item {
  background: #fff;
  padding: 1.25rem;
  border-radius: 0.25rem;
  text-align: center;
  position: relative;
}
.p-work__item + .p-work__item {
  margin-top: 2.4375rem;
}
.p-work__item + .p-work__item::before {
  content: "";
  background: url(../images/fc/icon_triangle.svg) no-repeat center/contain;
  width: 1rem;
  height: 1.875rem;
  position: absolute;
  left: 48%;
  top: -1.6875rem;
  -webkit-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-work__item {
    padding: 2rem;
  }
  .p-work__item + .p-work__item {
    margin-top: 0rem;
  }
  .p-work__item + .p-work__item::before {
    top: 50%;
    left: 50%;
    left: -1.5rem;
    -webkit-transform: rotate(0deg) translateY(-50%);
            transform: rotate(0deg) translateY(-50%);
  }
}

.p-work__catch {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-work__catch {
    font-size: 2rem;
  }
}

.p-work__text {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-work__text {
    font-size: 1.25rem;
  }
}

.p-work__image {
  margin-top: 0.75rem;
  aspect-ratio: 310/240;
}
.p-work__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-work__image {
    margin-top: 1.25rem;
    aspect-ratio: 341/320;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
