@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  all: unset;
  display: inline-block;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: Roboto, "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 400;
  background-color: #FFF8F5;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input {
  cursor: pointer;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.l-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10000;
}
@media (min-width: 768px) {
  .l-header {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1200px) {
  .l-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.l-main__top-btn {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 100;
}
@media (min-width: 768px) {
  .l-main__top-btn {
    right: 32px;
    bottom: 32px;
  }
}
.l-main__kv {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.l-main__service {
  position: relative;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 80px 20px;
}
.l-main__service::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  background-color: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) {
  .l-main__service::after {
    bottom: -50px;
    height: 50px;
  }
}
.l-main__works {
  position: relative;
  padding: 100px 20px 80px;
}
.l-main__plan {
  padding: 80px 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.l-main__flow {
  position: relative;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.l-main__sub-kv {
  background-color: #2C3E50;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 0 20px;
}
.l-main__faq {
  padding: 80px 20px;
}
.l-main__sub-works {
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .l-main__sub-works {
    padding: 80px 32px;
  }
}
@media (min-width: 1200px) {
  .l-main__sub-works {
    padding: 80px 120px;
  }
}
@media (min-width: 1440px) {
  .l-main__sub-works {
    padding: 80px 220px;
  }
}
.l-main__single {
  padding: 80px 20px;
}
.l-main__about {
  padding: 80px 20px;
}
.l-main__contact {
  padding: 80px 20px;
}
.l-main__confirm {
  padding: 80px 20px;
}
.l-main__thanks {
  padding: 80px 20px;
}

.l-footer__cta {
  padding: 80px 20px;
  background-color: #3498DB;
}
.l-footer__copyrights {
  padding: 16px 0;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: #2C3E50;
}

.c-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 12.5px 8px;
}
.c-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3C3C3C;
  transition: all 0.3s ease-in-out;
  transform-origin: right;
}

.c-top-btn {
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background-color: rgba(52, 152, 219, 0.8);
  border: 1px solid #ffffff;
}
.c-top-btn::after {
  position: absolute;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  content: "\f106";
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 16px 20px;
  white-space: nowrap;
}
.c-cta-button--white {
  background-color: #ffffff;
  border: 1px solid #3C3C3C;
  letter-spacing: 1.2px;
  transition: all 0.3s ease-in-out;
}
.c-cta-button--white:hover {
  background-color: #3C3C3C;
  color: #ffffff;
}
.c-cta-button--orange {
  background-color: #FF7A00;
  color: #ffffff;
  letter-spacing: 1.2px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.c-cta-button--orange:hover {
  background-color: #ffffff;
  border: 1px solid #FF7A00;
  color: #FF7A00;
}

.c-arrow-button {
  padding: 12px 32px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
.c-arrow-button::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f0da";
  display: inline-block;
  margin-left: 8px;
}
.c-arrow-button--back::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f0d9";
  display: inline-block;
  margin-right: 8px;
}
.c-arrow-button--back::after {
  content: "";
}
.c-arrow-button--black {
  border: 1px solid transparent;
  background-color: #2C3E50;
  color: #ffffff;
}
.c-arrow-button--black::after {
  color: inherit;
}
.c-arrow-button--black:hover {
  background-color: #ffffff;
  border: 1px solid #2C3E50;
  color: #2C3E50;
}
.c-arrow-button--white {
  border: 1px solid #3C3C3C;
  background-color: #ffffff;
  color: #3C3C3C;
}
.c-arrow-button--white::after {
  color: inherit;
}
.c-arrow-button--white:hover {
  border: 1px solid transparent;
  background-color: #2C3E50;
  color: #ffffff;
}
.c-arrow-button--orange {
  border: 1px solid transparent;
  background-color: #FF7A00;
  color: #ffffff;
}
.c-arrow-button--orange::after {
  color: inherit;
}
.c-arrow-button--orange:hover {
  background-color: #ffffff;
  border: 1px solid #FF7A00;
  color: #FF7A00;
}
.c-arrow-button--transparent {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}
.c-arrow-button--transparent::after {
  color: inherit;
}
.c-arrow-button--transparent:hover {
  border: 1px solid transparent;
  background-color: #ffffff;
  color: #3C3C3C;
}

.c-spacer {
  display: block;
  width: 100%;
  height: 100px;
  background-color: #2C3E50;
}

.c-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../lp/images/bg/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: -10;
}

.c-h2 {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-h2 {
    font-size: 3.2rem;
  }
}

.c-h3 {
  font-size: 2rem;
  font-weight: bold;
}

.c-desc {
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.c-font-size-xl {
  font-size: 3.2rem;
}

.c-font-size-md {
  font-size: 2rem;
}

.c-font-size-sm {
  font-size: 1.4rem;
}

.works-swiper.swiper {
  padding-bottom: 32px;
}
.works-swiper .swiper-slide {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.6s ease;
}
.works-swiper .swiper-slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.7s ease;
  background-color: rgba(60, 60, 60, 0.3);
  pointer-events: none;
}
.works-swiper .swiper-slide:hover {
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.works-swiper .swiper-slide:hover::after {
  background-color: initial;
}
.works-swiper .swiper-slide.swiper-slide-next::after {
  content: "";
  display: block;
  position: absolute;
  top: initial;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0.7);
}
.works-swiper .swiper-pagination {
  transform: translateY(8px);
}

.gallery-swiper {
  pointer-events: none;
}
.gallery-swiper .swiper-slide {
  width: 300px;
}

.single-swiper .swiper-scrollbar-drag {
  background: #FF7A00;
}

.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.p-header__logo {
  display: block;
  width: 150px;
}
.p-header__hamburger {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 100;
}
.p-header__hamburger.active .c-hamburger span {
  background-color: #ffffff;
}
.p-header__hamburger.active .c-hamburger span:nth-child(1) {
  transform: rotate(-45deg) translate(0, -50%);
}
.p-header__hamburger.active .c-hamburger span:nth-child(2) {
  display: none;
}
.p-header__hamburger.active .c-hamburger span:nth-child(3) {
  transform: rotate(45deg);
}
@media (min-width: 1200px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header__nav {
  position: absolute;
  background-color: #3498DB;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 160px;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  clip-path: inset(0 0 100% 0);
  transition: all 0.5s ease-in-out;
}
.p-header__nav.active {
  clip-path: inset(0 0 0 0);
}
@media (min-width: 1200px) {
  .p-header__nav {
    clip-path: inset(0 0 0 0);
    flex-direction: row;
    position: relative;
    background-color: initial;
    height: auto;
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .p-header__links {
    display: flex;
    flex: 1;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    gap: 8px;
  }
}
.p-header__links li {
  position: relative;
  width: 100%;
  padding: 10px;
  text-align: center;
}
.p-header__links li::after {
  content: "";
  transition: all 0.3s ease;
  display: block;
  width: 0%;
  height: 1px;
  border-bottom: 1px solid #3C3C3C;
  position: absolute;
  left: 0;
  margin-top: 8px;
  transition: all 0.3s ease-out;
}
.p-header__links li:hover::after {
  width: 100%;
}
.p-header__links a {
  font-size: 2rem;
  color: #ffffff;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .p-header__links a {
    color: #3C3C3C;
    font-size: 1.6rem;
  }
}

.p-header__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) {
  .p-header__buttons {
    flex-direction: row;
  }
}
.p-header__buttons li {
  width: 280px;
  height: 56px;
}
@media (min-width: 1200px) {
  .p-header__buttons li {
    width: initial;
  }
}

.p-header__close {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: #2C3E50;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
@media (min-width: 1200px) {
  .p-header__close {
    display: none;
  }
}

.p-kv {
  position: relative;
  padding: 64px 16px;
  margin-top: 150px;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.6));
}
.p-kv__title {
  font-size: 3.2rem;
  margin-bottom: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-kv__subtitle {
  margin-bottom: 8px;
  font-weight: 500;
}
.p-kv__service {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 380px;
  margin-bottom: 48px;
}
.p-kv__service li {
  background-color: #FF7A00;
  color: #ffffff;
  padding: 8px;
  font-size: 1.4rem;
  border-radius: 3px;
}
.p-kv__service li::before {
  content: url("../../lp/images/icon/others/check-circle.svg");
  margin-right: 4px;
  display: inline-block;
}
.p-kv__cta {
  width: 300px;
  font-weight: bold;
}
.p-kv__slide {
  position: absolute;
  top: -200px;
  right: 0;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  z-index: -1;
  rotate: 10deg;
}
.p-kv__slide-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 240px;
  height: -moz-fit-content;
  height: fit-content;
}
.p-kv__slide-column:nth-child(2) {
  margin-top: 200px;
}
.p-kv__slide-column:nth-child(2) {
  margin-top: -1000px;
}
.p-kv__slide-column:nth-child(3) {
  margin-top: -200px;
}
.p-kv__slide-item {
  width: 100%;
  height: 1000px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .p-kv {
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.2));
    padding: 64px 32px;
    margin-top: 220px;
  }
  .p-kv__title {
    font-size: 4.8rem;
  }
  .p-kv__subtitle {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .p-kv {
    background: initial;
    padding: 0 140px 0;
  }
  .p-kv__slide {
    right: 5%;
  }
}
@media (min-width: 1440px) {
  .p-kv {
    padding: 0 220px 0;
  }
  .p-kv__title {
    font-size: 7.2rem;
  }
  .p-kv__subtitle {
    font-size: 3.2rem;
  }
  .p-kv__slide {
    right: 10%;
    max-width: 1000px;
  }
  .p-kv__slide-column {
    width: 300px;
  }
}

.p-sub-kv {
  color: #ffffff;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.p-sub-kv__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.p-sub-kv__subtitle {
  font-size: 2rem;
  font-weight: bold;
}
.p-sub-kv__desc:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-sub-kv {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-sub-kv__title {
    font-size: 3.2rem;
  }
}

.p-service__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-service__heading {
  text-align: center;
  line-height: 1.25;
}
.p-service__overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-service__overview p {
  text-align: center;
}
.p-service__cards {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 64px;
  max-width: 500px;
}
@media (min-width: 768px) {
  .p-service__cards {
    max-width: 950px;
  }
}

.p-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #FF7A00;
  background-color: #FFF8F5;
  padding: 0 16px;
  width: 100%;
}
.p-service-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: auto;
}
.p-service-card__sequence {
  padding: 10px 32px;
  background-color: #FF7A00;
  color: #ffffff;
  font-size: 1.6rem;
  white-space: nowrap;
  font-weight: bold;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.p-service-card__img {
  width: 150px;
}
.p-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
}
.p-service-card__body h3 {
  text-align: center;
}
@media (min-width: 768px) {
  .p-service-card {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    padding: 0 32px;
  }
  .p-service-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .p-service-card__sequence {
    font-size: 2rem;
  }
  .p-service-card__body h3 {
    text-align: initial;
  }
}

.p-works {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.p-works__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-works__heading {
  text-align: center;
  line-height: 1.25;
}
.p-works__overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-works__overview p {
  text-align: center;
}
.p-works__btn {
  margin: 0 auto;
}
.p-works__gallery-item {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  overflow: hidden;
}

.p-works-card {
  width: 100%;
  height: 600px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}
.p-works-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 16px;
}
.p-works-card__body span {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
.p-works-card__btn {
  margin: 16px auto 0;
}

.p-sub-works__categories {
  margin: 0 auto 40px;
  text-align: center;
}
.p-sub-works__categories label {
  margin-right: 16px;
}

.p-sub-works-cards {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-sub-works-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}

.p-sub-works-card {
  display: none;
  flex-direction: column;
  flex: 1 1 100%;
  max-width: 400px;
  width: 100%;
  overflow: hidden;
}
.p-sub-works-card.active {
  display: flex;
}
.p-sub-works-card:hover .p-sub-works-card__img {
  background-size: 120% auto;
}
.p-sub-works-card__img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 24px;
  background-size: 100% auto;
  transition: all 0.3s ease;
}
.p-sub-works-card__heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.p-sub-works-card__heading::before {
  content: "「";
}
.p-sub-works-card__heading::after {
  content: "」";
}
.p-sub-works-card__purpose {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 4px;
  margin-bottom: 24px;
}
.p-sub-works-card__btn {
  margin-left: auto;
}
@media (min-width: 1200px) {
  .p-sub-works-card__img {
    width: 100%;
    max-width: 500px;
  }
}

.p-plan__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-plan__heading {
  text-align: center;
  line-height: 1.25;
}
.p-plan__overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-plan__overview p {
  text-align: center;
}
.p-plan__contents {
  width: 100%;
  max-width: 1000px;
}
.p-plan__tabs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.p-plan__tab {
  width: 100%;
  flex: 1;
  box-sizing: border-box;
  padding: 16px 0;
  text-align: center;
  color: #3C3C3C;
  background-color: #EEECEC;
  font-weight: bold;
  transition: all 0.2s ease;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
}
.p-plan__tab:not(.active):hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}
.p-plan__tab.active {
  background-color: #FF7A00;
  color: #ffffff;
}
.p-plan__tab-content {
  display: none;
  flex-direction: column;
  align-items: center;
  border: 5px solid #FF7A00;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.p-plan__tab-content.active {
  display: flex;
}
@media (min-width: 768px) {
  .p-plan__tab {
    font-size: 2.4rem;
  }
  .p-plan__tab-item {
    font-size: 2.4rem;
  }
}

.p-tab-content {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 16px;
}
.p-tab-content__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.p-tab-content__header span {
  text-align: center;
}
.p-tab-content__img {
  overflow: hidden;
  width: 100%;
  height: 400px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
}
.p-tab-content__features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.p-tab-content__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-tab-content__price, .p-tab-content__deadline {
  padding-left: 8px;
}
.p-tab-content__label {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FF7A00;
  color: #ffffff;
  font-size: 2rem;
  border-radius: 5px;
}
.p-tab-content__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
}
.p-tab-content__item {
  display: flex;
  align-items: center;
}
.p-tab-content__item::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f111";
  display: inline-block;
  font-size: 8px;
  margin-right: 4px;
}
.p-tab-content__btn {
  margin-left: auto;
}
@media (min-width: 768px) {
  .p-tab-content {
    max-width: 850px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    grid-template-areas: "header header" "img features" "btn btn";
  }
  .p-tab-content__header {
    grid-area: header;
    flex-direction: row;
    gap: 24px;
  }
  .p-tab-content__img {
    grid-area: img;
    height: 100%;
  }
  .p-tab-content__features {
    grid-area: features;
  }
  .p-tab-content__btn {
    grid-area: btn;
  }
}

.p-flow__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-flow__heading {
  text-align: center;
  line-height: 1.25;
}
.p-flow__overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-flow__overview p {
  text-align: center;
}
.p-flow__contents {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-flow__tabs {
  display: flex;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}
.p-flow__tab {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  line-height: 50px;
  flex: 1;
  text-align: center;
  background-color: #EEECEC;
  color: #3C3C3C;
  font-size: 1.4rem;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.p-flow__tab:not(:nth-child(4))::after {
  position: absolute;
  content: "";
  right: -5.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 50px;
  background-color: transparent;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  z-index: 10;
}
.p-flow__tab:not(.active):hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}
.p-flow__tab.active {
  background-color: #FF7A00;
  color: #ffffff;
}
.p-flow__tab.active:not(:nth-child(4))::after {
  background-color: #FF7A00;
}
.p-flow__list {
  display: none;
}
.p-flow__list.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-flow__tab {
    font-size: 1.6rem;
  }
  .p-flow__tab.active:not(:nth-child(4))::after {
    right: -14px;
    width: 15px;
  }
}

.p-flow-card {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
.p-flow-card__sequence {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF7A00;
  color: #ffffff;
  padding: 5px 0;
  font-weight: bold;
}
.p-flow-card__sequence::before {
  content: "STEP";
  margin-right: 4px;
}
.p-flow-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.p-flow-card__heading {
  font-weight: bold;
}
.p-flow-card__desc {
  font-size: 1.4rem;
}
.p-flow-card__arrow {
  text-align: center;
  font-size: 24px;
  color: #FF7A00;
}
@media (min-width: 768px) {
  .p-flow-card {
    display: flex;
  }
  .p-flow-card__sequence {
    width: 150px;
  }
}

.p-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.p-cta__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.p-cta__heading {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}
.p-cta__desc {
  color: #ffffff;
}
.p-cta__btn {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: auto;
  padding: 20px 32px;
}
.p-cta__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .p-cta {
    max-width: 1000px;
    flex-direction: row;
  }
  .p-cta::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #ffffff;
  }
  .p-cta__heading {
    font-size: 2.4rem;
  }
  .p-cta__btn {
    font-size: 2rem;
  }
}

.p-faq {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-faq__categories {
  margin: 0 auto 40px;
  text-align: center;
}
.p-faq__categories label {
  margin-right: 16px;
}
.p-faq__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-faq__card {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px;
  background-color: #ffffff;
  border: 2px solid #FF7A00;
  border-radius: 5px;
}
.p-faq__card.active {
  display: flex;
}
.p-faq__question {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  line-height: 1.2;
}
.p-faq__question span::before {
  content: "Q";
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #FF7A00;
  color: #ffffff;
  text-align: center;
  margin-right: 16px;
  border-radius: 4px;
}
.p-faq__question h3 {
  line-height: 1.8;
}
.p-faq__answear {
  display: flex;
}
.p-faq__answear span::before {
  content: "A";
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #3498DB;
  color: #ffffff;
  text-align: center;
  margin-right: 16px;
  border-radius: 4px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-faq__card {
    padding: 16px 32px;
  }
  .p-faq__question {
    font-size: 2rem;
  }
  .p-faq__question span::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2.4rem;
  }
  .p-faq__answear span::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2.4rem;
  }
}

.p-single {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.p-single__imgs {
  width: 100%;
  height: 100%;
  max-width: 500px;
  aspect-ratio: 5/6;
  overflow-y: scroll;
  overflow-x: hidden;
}
.p-single__img {
  width: 100%;
  height: auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-single__summarys {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-single {
    flex-direction: row;
  }
  .p-single__imgs {
    flex: 1;
  }
  .p-single__summarys {
    flex: 1;
  }
}

.p-single-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: auto;
}
.p-single-summary__label {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  background-color: #2C3E50;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 3px;
}
.p-single-summary__btn {
  margin-top: auto;
  margin-left: auto;
}

.p-about {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.p-about__imgs {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 5/6;
  border-radius: 5px;
  overflow: hidden;
}
.p-about__img {
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-about__summarys {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .p-about {
    flex-direction: row;
  }
  .p-about__imgs {
    flex: 1;
  }
}

.p-about-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.p-about-summary__label {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  background-color: #2C3E50;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 3px;
}
.p-about-summary__btn {
  margin-top: auto;
  margin-left: auto;
}
.p-about-summary:nth-child(1) {
  flex: 0 0 35%;
}
.p-about-summary:nth-child(2) {
  flex: 0 0 25%;
}
.p-about-summary:nth-child(3) {
  flex: 1;
}

.p-about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-about-list span {
  display: block;
  margin-bottom: 8px;
}
.p-about-list--skill {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.p-about-list--skill img {
  width: 35px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1200px) {
  .p-about-list--skill img {
    width: 50px;
  }
}

.p-contact {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 800px;
  margin: 0 auto;
}

.p-progress {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}
.p-progress__step {
  display: flex;
  gap: 4px;
}
.p-progress__step--confirm, .p-progress__step--complete {
  flex: 1;
}
.p-progress__step.current .p-progress__circle,
.p-progress__step.current .p-progress__line {
  background-color: #3498DB;
}
.p-progress__step.current .p-progress__label {
  color: #3498DB;
}
.p-progress__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.p-progress__circle {
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #EEECEC;
}
.p-progress__label {
  font-size: 2rem;
  color: #EEECEC;
  white-space: nowrap;
}
.p-progress__line {
  width: 100%;
  height: 3px;
  background-color: #EEECEC;
  margin-top: 5px;
  border-radius: 10px;
}

.p-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-form__options {
  display: flex;
  gap: 16px;
}
.p-form__label.required::after {
  content: "※必須";
  color: red;
  font-size: 1.4rem;
  margin-left: 4px;
}
.p-form__input {
  height: 30px;
}
.p-form__input--calendar {
  width: -moz-fit-content;
  width: fit-content;
}
.p-form__template {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px dashed #3C3C3C;
  margin-left: auto;
}
.p-form__btn {
  margin-left: auto;
}

.p-confirm {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 800px;
  margin: 0 auto;
  gap: 32px;
}
.p-confirm__form {
  margin-bottom: 24px;
}
.p-confirm__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.p-confirm__label::after {
  content: ":";
  margin-left: 8px;
  margin-right: 8px;
}
.p-confirm__value {
  font-size: 2rem;
}
.p-confirm__btns {
  display: flex;
  justify-content: space-between;
}

.p-thanks {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 800px;
  margin: 0 auto;
  gap: 32px;
}
.p-thanks__message h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FF7A00;
  margin-bottom: 16px;
}
.p-thanks__btn {
  margin-left: auto;
}

.p-modal {
  display: none;
  position: relative;
  z-index: 10000;
}
.p-modal.is-open {
  display: block;
}
.p-modal__overlay {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  overflow: scroll;
}
.p-modal__container {
  width: 100%;
  max-width: 1000px;
}
.p-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.p-modal__tab {
  flex: 1;
  background-color: #EEECEC;
  color: #3C3C3C;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 16px 0;
  text-align: center;
  transition: all 0.3s ease;
}
.p-modal__tab:not(.active):hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}
.p-modal__tab.active {
  background-color: #FF7A00;
  color: #ffffff;
}
.p-modal__content {
  max-height: 80vh;
  overflow-y: auto;
}
.p-modal__cards {
  display: none;
  background: #FFF8F5;
  width: 100%;
  padding: 16px;
  grid-template-columns: repeat(auto-fit, max(250px, 1fr));
  gap: 24px;
}
.p-modal__cards.active {
  display: grid;
}
.p-modal__footer {
  display: flex;
}
.p-modal__btn {
  background-color: #2C3E50;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 2rem;
  font-weight: bold;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all 0.5s ease;
}
.p-modal__btn:hover {
  background-color: #ffffff;
  color: #2C3E50;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .p-modal__cards {
    padding: 32px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (min-width: 1200px) {
  .p-modal__overlay {
    padding: 0 120px;
  }
  .p-modal__cards {
    padding: 40px;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.p-modal-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.p-modal-card:hover {
  box-shadow: -6px 6px 6px 0px rgba(0, 0, 0, 0.45);
  transform: translate(3px, 3px);
}
.p-modal-card__header {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.p-modal-card__img {
  width: 25px;
  aspect-ratio: 1/1;
}
.p-modal-card__heading {
  font-size: 2rem;
  font-weight: bold;
}
.p-modal-card__price {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .p-modal-card__img {
    width: 35px;
  }
}

.u-ml-4 {
  margin-left: 4px;
}/*# sourceMappingURL=style.css.map */