@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

html {
  font-size: 4.2666666667vw;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1540px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.8;
  background-color: #ffffff;
  overflow-x: clip;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.l-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.l-section {
  padding: 3.125rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 5rem 0;
  }
}

.c-heading-group {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-heading-group {
    margin-bottom: 2rem;
  }
}

.c-heading-group__en {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: #00a0e9;
  line-height: 1.1;
  margin-bottom: 0.625rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-heading-group__en {
    font-size: 3.5rem;
    margin-bottom: 0.9375rem;
  }
}

.c-heading-group__en--dark {
  color: #0076c8;
}

.c-heading-group__jp {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-heading-group__jp {
    font-size: 2.25rem;
  }
}

.c-section-lead {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-section-lead {
    font-size: 1rem;
  }
}

.c-shadow-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.875rem 1.25rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(0.625rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .c-shadow-box {
    padding: 3.125rem;
  }
}

.c-btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 624.938rem;
  transition: all 0.3s ease;
}

.c-btn--primary {
  background: #ffcc00;
  color: #333333;
  padding: 0.875rem 1.875rem;
  font-size: 0.9375rem;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-btn--primary {
    padding: 1.125rem 3.125rem;
    font-size: 1.1875rem;
    margin-top: 1.5rem;
  }
}

.c-btn--primary:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3);
}

.u-text-center {
  text-align: center;
}

.u-bg-gray {
  background-color: #f5f5f5;
}

.c-decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.c-decoration--float-1 {
  animation: floatElegant1 20s ease-in-out infinite alternate;
}

.c-decoration--float-2 {
  animation: floatElegant2 25s ease-in-out infinite alternate;
}

.c-decoration--float-3 {
  animation: floatElegant3 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.c-decoration--spin-slow {
  animation: spinSlow 30s linear infinite;
}

.c-decoration__svg {
  width: 100%;
  height: 100%;
  stroke: #0076c8;
  fill: none;
}
.c-decoration__svg--yellow {
  stroke: #ffcc00;
}
.c-decoration__svg--green {
  stroke: #009944;
}
.c-decoration__svg--gray {
  stroke: #cbd5e1;
}
.c-decoration__svg.is-fill {
  fill: currentColor;
  stroke: none;
}
.c-decoration__svg.is-fill--yellow {
  color: #ffcc00;
}
.c-decoration__svg.is-fill--blue {
  color: #00a0e9;
}

.c-decoration--pos-1 {
  top: 10%;
  left: 5%;
  width: 5rem;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .c-decoration--pos-1 {
    top: 15%;
    left: 8%;
    width: 7.5rem;
    height: 7.5rem;
  }
}

.c-decoration--pos-2 {
  bottom: 15%;
  right: 5%;
  width: 6.25rem;
  height: 6.25rem;
}
@media screen and (min-width: 768px) {
  .c-decoration--pos-2 {
    bottom: 20%;
    right: 8%;
    width: 10rem;
    height: 10rem;
  }
}

.c-decoration--pos-3 {
  top: 40%;
  right: -5%;
  width: 3.75rem;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-decoration--pos-3 {
    top: 30%;
    right: 2%;
    width: 5.625rem;
    height: 5.625rem;
  }
}

.c-decoration--pos-4 {
  bottom: -5%;
  left: -2%;
  width: 7.5rem;
  height: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-decoration--pos-4 {
    bottom: -10%;
    left: 5%;
    width: 12.5rem;
    height: 12.5rem;
  }
}

@keyframes floatElegant1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(0.9375rem, -1.25rem) rotate(10deg);
  }
  66% {
    transform: translate(-0.625rem, -2.5rem) rotate(-5deg);
  }
  100% {
    transform: translate(-1.5625rem, 0.625rem) rotate(15deg);
  }
}
@keyframes floatElegant2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-1.875rem, 1.5625rem) rotate(-15deg);
  }
  100% {
    transform: translate(1.25rem, -0.9375rem) rotate(5deg);
  }
}
@keyframes floatElegant3 {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1.875rem) scale(1.05);
  }
  100% {
    transform: translateY(0.625rem) scale(0.95);
  }
}
@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0076c8;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-loader__content {
  text-align: center;
  color: #fff;
}

.p-loader__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0;
  animation: fadeInLogo 1s forwards 0.5s;
}

.p-loader__line {
  width: 0;
  height: 0.1875rem;
  background-color: #ffcc00;
  margin: 0.625rem auto 0;
  animation: lineExtend 1s forwards 1.2s cubic-bezier(0.8, 0, 0.2, 1);
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lineExtend {
  to {
    width: 6.25rem;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.p-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
}

.p-header__top {
  border-bottom: 1px solid #eee;
}

.p-header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.75rem;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-header__top-inner {
    padding: 0 5%;
  }
}

.p-header__logo {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    font-size: 1.3125rem;
  }
}

.p-header__logo-icon {
  display: inline-block;
  width: 1.625rem;
  height: 1.625rem;
  background: conic-gradient(#0076c8 0deg, #009944 120deg, #ffcc00 240deg);
  border-radius: 50%;
  margin-right: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-header__logo-icon {
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 0.625rem;
  }
}

.p-header__logo-icon::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background: #fff;
  border-radius: 624.938rem;
}

.p-header__info {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

.p-header__contact-number {
  font-weight: 700;
  font-size: 1.125rem;
  color: #0076c8;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-header__business-hours {
  font-size: 0.75rem;
  color: #666666;
  font-weight: 400;
}

.p-header__btn-contact {
  background-color: #00a0e9;
  color: #fff;
  padding: 0.5rem 1.875rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 624.938rem;
}

.p-header__bottom {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__bottom {
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-header__nav ul {
  display: flex;
  gap: 2.5rem;
}

.p-header__nav a {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.p-header__nav a:hover {
  color: #00a0e9;
}

.p-header__dot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
}

.p-header__dot--red {
  background: #e74c3c;
}

.p-header__dot--blue {
  background: #00a0e9;
}

.p-header__dot--green {
  background: #009944;
}

.p-header__dot--yellow {
  background: #ffcc00;
}

.p-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: #333333;
  transition: all 0.3s ease;
}

.p-header__hamburger span:nth-child(1) {
  margin-bottom: 0.375rem;
}

.p-header__hamburger span:nth-child(3) {
  margin-top: 0.375rem;
}

.p-header__hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.375rem);
}

.p-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(0.3125rem, -0.375rem);
}

.p-header__sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 18.75rem;
  height: 100vh;
  background: #fff;
  box-shadow: -0.3125rem 0 0.9375rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 5rem 20px 2.5rem;
  transition: right 0.3s ease;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .p-header__sp-nav {
    display: none;
  }
}

.p-header__sp-nav.is-open {
  right: 0;
}

.p-header__sp-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-header__sp-nav li {
  border-bottom: 1px solid #eee;
}

.p-header__sp-nav a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
}

.p-header__sp-nav-contact {
  display: block;
  text-align: center;
  background: #00a0e9;
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 624.938rem;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-top: 1.875rem;
}

.p-header__sp-nav-tel {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0076c8;
  margin-top: 1.25rem;
}

.p-header__sp-nav-tel small {
  display: block;
  font-size: 0.75rem;
  color: #666666;
  font-weight: 400;
  margin-top: 0.25rem;
}

.p-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header__overlay {
    display: none;
  }
}

.p-header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.p-fv {
  position: relative;
  min-height: 37.5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 3.75rem;
  padding-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .p-fv {
    padding-bottom: initial;
  }
}

.p-fv__bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: conic-gradient(from 180deg at 50% 50%, rgba(0, 160, 233, 0.1) 0deg, rgba(0, 153, 68, 0.1) 180deg, rgba(255, 204, 0, 0.1) 360deg);
  z-index: 0;
}

.p-fv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 25px;
  }
}

.p-fv__content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-fv__content {
    width: 50%;
  }
}

.p-fv__boxes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.p-fv__box-line {
  background-color: #0076c8;
  color: #fff;
  padding: 0.5rem 1.25rem;
  display: inline-block;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-fv__box-line {
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
  }
}

.p-fv__title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #333333;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-fv__title-en {
    font-size: 5rem;
  }
}

.p-fv__subtitle-jp {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-fv__subtitle-jp {
    font-size: 1.25rem;
  }
}

.p-fv__image {
  width: 100%;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .p-fv__image {
    width: 45%;
    max-width: none;
  }
}

.p-fv__image img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
}

.p-fv__scroll {
  position: absolute;
  bottom: 1.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  z-index: 2;
}

.p-fv__scroll span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #333333;
  text-transform: uppercase;
}

.p-fv__scroll-arrow {
  width: 1px;
  height: 3.75rem;
  background-color: rgba(51, 51, 51, 0.2); /* 軌道の色を薄く */
  position: relative;
  overflow: hidden;
}

.p-fv__scroll-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0076c8; /* 流れる線の色 */
  animation: scrollDown 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-about__flex {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-about__flex {
    flex-direction: row;
    gap: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__text {
    flex: 1.5;
  }
}

.p-about__desc {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-about__desc {
    font-size: 1rem;
  }
}

.p-about__badge-group {
  position: relative;
  width: 12.5rem;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__badge-group {
    width: 15.625rem;
    height: 15.625rem;
  }
}

.p-about__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  position: absolute;
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}

.p-about__badge--green small {
  font-size: 0.625rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-about__badge--green small {
    font-size: 0.75rem;
  }
}

.p-about__badge-text {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__badge-text {
    font-size: 1.1875rem;
  }
}

.p-about__badge-arrow {
  margin-top: 0.3125rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__badge-arrow {
    font-size: 1.5rem;
  }
}

.p-worries__title {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-worries__title {
    margin-bottom: 3.125rem;
  }
}

.p-worries__title h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-worries__title h3 {
    font-size: 1.8125rem;
  }
}

.p-worries__title h3 span {
  color: #00a0e9;
}

.p-worries__icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: conic-gradient(#00a0e9 0deg, #009944 180deg, #ffcc00 360deg);
  border-radius: 50%;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-worries__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.9375rem;
  }
}

.p-worries__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-worries__grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.875rem;
    max-width: 56.25rem;
    margin: 0 auto;
  }
}

.p-worries__item {
  text-align: center;
  max-width: 17.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-worries__item {
    flex: 1;
    max-width: none;
  }
}

.p-worries__img-circle {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  border: 0.125rem solid #00a0e9;
  margin: 0 auto 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-worries__img-circle {
    width: 9.375rem;
    height: 9.375rem;
    margin-bottom: 1.25rem;
    font-size: 3rem;
  }
}

.p-worries__icon-placeholder {
  font-size: inherit;
}

.p-worries__text-box {
  background: #00a0e9;
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-worries__text-box {
    padding: 0.9375rem;
    font-size: 1rem;
  }
}

.p-worries__text-box::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-bottom: 0.625rem solid #00a0e9;
}

.p-works__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    gap: 3.125rem;
    margin-top: 3.75rem;
  }
}

.p-works__card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-works__card {
    flex-direction: row;
    align-items: stretch;
  }
}

.p-works__card:hover {
  transform: translateY(-0.625rem);
}

.p-works__img-wrap {
  position: relative;
  width: 100%;
  max-width: 31.25rem;
}

.p-works__img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-works__img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-weight: 700;
  font-size: 1.25rem;
}

.p-works__tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.375rem 1rem;
  border-radius: 625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.p-works__tag--blue {
  background-color: #0076c8;
}

.p-works__tag--green {
  background-color: #009944;
}

.p-works__content {
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-works__content {
    width: 50%;
    padding: 3.125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.p-works__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-works__title {
    font-size: 1.5rem;
  }
}

.p-works__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-works__desc {
    font-size: 1rem;
  }
}

.p-works__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0076c8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-works__link {
    font-size: 1rem;
  }
}

.p-works__link:hover {
  opacity: 0.7;
}

.p-works__arrow {
  transition: transform 0.3s ease;
}

.p-works__link:hover .p-works__arrow {
  transform: translateX(0.3125rem);
}

.p-flow__lead {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__lead {
    font-size: 0.875rem;
    margin-bottom: 3.75rem;
  }
}

.p-flow__section {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.p-flow__container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.p-flow__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  height: 100%;
  width: 0.125rem;
  background-color: #00a0e9;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-flow__container::before {
    left: 2.5rem;
    width: 0.1875rem;
  }
}

.p-flow__item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    flex-direction: row;
    margin-left: 4.375rem;
  }
}
.p-flow__item::before {
  content: "";
  position: absolute;
  top: 1.5625rem;
  left: -2.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #ffcc00;
  border: 0.25rem solid #0076c8;
  border-radius: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-flow__item::before {
    top: 50%;
    left: -4.375rem;
    width: 1.25rem;
    height: 1.25rem;
    transform: translate(-50%, -50%);
  }
}

.p-flow__head {
  background-color: #0076c8;
  color: #fff;
  padding: 0.9375rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-flow__head {
    width: 15rem;
    padding: 1.875rem 1.25rem;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
  }
}

.p-flow__num {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-flow__num {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.p-flow__heading {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-flow__heading {
    font-size: 1rem;
  }
}
.p-flow__heading small {
  font-size: 0.75rem;
  font-weight: 400;
  display: inline-block;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__heading small {
    font-size: 0.875rem;
    display: block;
  }
}

.p-flow__body {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__body {
    padding: 1.875rem;
    display: flex;
    align-items: center;
    flex: 1;
  }
}

.p-flow__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}

.p-contact {
  background: #0076c8;
  color: #fff;
  text-align: center;
  position: relative;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-bottom: 5rem;
  }
}

.p-contact__wave-top {
  width: 100%;
  height: 3.75rem;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230076c8" fill-opacity="1" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,192C672,213,768,203,864,181.3C960,160,1056,128,1152,112C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-contact__wave-top {
    height: 6.25rem;
  }
}

.p-contact h2 {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact h2 {
    font-size: 1.75rem;
  }
}

.p-contact__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.p-contact__text span {
  font-weight: bold;
  color: #ffcc00;
}

.p-contact__bonus-list {
  text-align: left;
  max-width: fit-content;
  margin-inline: auto;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__bonus-list {
    margin-top: 1.5rem;
  }
}

.p-contact__bonus-list li {
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  position: relative;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__bonus-list li {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

.p-contact__bonus-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}

.p-footer {
  background: #333333;
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 1.875rem 0;
  }
}

.p-footer__inner {
  text-align: center;
}

.p-footer__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.p-footer__copyright {
  font-size: 0.6875rem;
  color: #666666;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 0.75rem;
  }
}
