@charset "UTF-8";
.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

a {
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}

html {
  font-size: 100%;
}
@media (max-width: 800px) {
  html {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

@media screen and (max-width: 767px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* 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,
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;
}

/* 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-contact {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-contact {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
  }
}

.l-faq {
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-faq {
    padding-top: 3.75rem;
  }
}

.l-feature {
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-feature {
    padding-top: 3.75rem;
  }
}

.l-flow {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-flow {
    padding-top: 3.75rem;
  }
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    max-width: 84%;
  }
}

.l-recommend {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-recommend {
    padding-top: 3.75rem;
  }
}

.l-service {
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-service {
    padding-top: 2.5rem;
  }
}

.c-heading {
  font-size: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 1rem;
    margin-bottom: 0.6875rem;
    padding-bottom: 0.9375rem;
  }
}

.c-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 2px;
  width: 0; /* 初期状態では幅が0 */
  max-width: 46.875rem;
  background-color: #f29c2d;
  -webkit-transition: width 1s ease;
  transition: width 1s ease; /* 幅の変化に1秒のアニメーション */
}

/* 要素が表示されたときに適用するクラス（JavaScriptで追加） */
.c-heading.is-visible::after {
  width: 100%; /* 表示されたら100%の幅に */
}

.c-line-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #02c755;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem 1rem;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
}
@media screen and (max-width: 767px) {
  .c-line-btn {
    font-size: 1rem;
    padding: 0;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
    border-radius: 5px;
  }
}

.c-line-btn img {
  width: 3.125rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .c-line-btn img {
    width: 1.875rem;
  }
}

.c-line-btn:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 1;
}

.p-contact {
  background-color: #FFF4DA;
}

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

.p-contact__lead {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f29c2d;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 1rem;
  }
}

.p-contact__figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 1.25rem auto 0;
  position: relative;
}

.p-contact__character {
  width: 10.875rem;
  position: absolute;
  bottom: 0;
  left: -10.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__character {
    width: 5.5625rem;
    left: -5.5625rem;
  }
}

.p-contact__qr {
  width: 10.8125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__qr {
    width: 7.5rem;
  }
}

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

.p-contact__id {
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__id {
    font-size: 0.875rem;
  }
}

.p-contact__line {
  margin: 1.25rem auto 0;
}

.p-contact__message {
  margin-top: 3.125rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f29c2d;
}
@media screen and (max-width: 767px) {
  .p-contact__message {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

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

.p-faq__question,
.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-faq__question {
  background-color: #FFF4DA;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  padding: 0.25rem 2rem;
  margin-top: 1.875rem;
  color: #f29c2d;
  font-size: 1.25rem;
  gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 1rem;
    padding: 0.5rem;
    gap: 0.3125rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-faq__answer {
  background-color: #F7F7F7;
  border-radius: 0 0 10px 10px;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    padding: 0.5rem;
  }
}

.p-faq__answer.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-faq__icon {
  font-size: 1.875rem;
  font-weight: bold;
  color: #f29c2d;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__icon {
    font-size: 1.25rem;
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
  }
}

.p-faq__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* プロジェクト関連 */
.p-feature-tab {
  overflow: hidden;
}

.p-feature-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1.25rem;
  margin: 3.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__list {
    margin-top: 1.875rem;
    gap: 0.625rem;
    width: auto;
    width: initial;
  }
}

.p-feature-tab__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2.8125rem;
  width: 10rem;
  cursor: pointer;
  background-color: #FFE8A0;
  color: #f29c2d;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  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;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__item {
    font-size: 0.875rem;
    width: 30%;
    height: 2.125rem;
  }
}

.p-feature-tab__item--active {
  background-color: #f29c2d;
  color: #fff;
}

.p-feature-tab__content {
  display: none;
  padding: 1.875rem;
  background-color: #FFF4DA;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__content {
    padding: 1.25rem 0.75rem 2.5rem;
  }
}

.p-feature-tab__content--active {
  display: block;
}

.p-feature-tab__subtitle {
  text-align: center;
  color: #f29c2d;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__subtitle {
    font-size: 1.25rem;
  }
}

.p-feature-tab__feature-list {
  max-width: 30.9375rem;
  width: 100%;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__feature-list {
    margin-top: 1rem;
  }
}

.p-feature-tab__feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-feature-tab__feature-item + .p-feature-tab__feature-item {
  margin-top: 1.875rem;
}

.p-feature-tab__number {
  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;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #f29c2d;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__number {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-feature-tab__feature-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-feature-tab__feature-title {
  font-size: 1.5rem;
  color: #f29c2d;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__feature-title {
    font-size: 1rem;
  }
}

.p-feature-tab__feature-text {
  margin: 0;
  color: #000;
  line-height: 160%;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-feature-tab__feature-text {
    font-size: 0.875rem;
  }
}

/* ご利用の流れ */
.p-flow {
  background-color: #FFF4DA;
}

.p-flow__list {
  margin: 2.5rem auto 0;
  max-width: 33.625rem;
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    min-height: 1.875rem;
  }
}

.p-flow__item + .p-flow__item {
  margin-top: 1rem;
}

.p-flow__number {
  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;
  width: 5.3125rem;
  background-color: #ffe8a0;
  color: #f29c2d;
  font-weight: bold;
  font-size: 2.5rem;
  border-radius: 20px 0 0 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-flow__number {
    font-size: 1.5rem;
    width: 2.75rem;
    border-radius: 10px 0 0 10px;
  }
}

.p-flow__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding-left: 4rem;
  padding-right: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 0px 20px 20px 0px;
}
@media screen and (max-width: 767px) {
  .p-flow__content {
    border-radius: 0px 10px 10px 0px;
    padding: 0.25rem 0.625rem;
  }
}

.p-flow__title {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-weight: 500;
    font-size: 0.875rem;
  }
}

.p-flow__title a {
  color: #02c755;
  text-decoration: underline;
}

.p-footer {
  background-color: #FFF4DA;
  padding-bottom: 1.25rem;
  text-align: center;
}

.p-footer__copy {
  font-size: 0.75rem;
}

.p-fv {
  background-image: url(../../assets/images/fv.webp);
  background-position: center;
  background-size: cover;
  min-height: 45.625rem;
  margin-top: 3.75rem;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-fv {
    min-height: 28.3125rem;
  }
}
@media (max-width: 420px) {
  .p-fv {
    background-image: url(../../assets/images/fv-sp.webp);
  }
}

.p-fv__inner {
  max-width: 64rem;
  margin: auto;
  width: 100%;
  position: relative;
}

.p-fv__content {
  position: absolute;
  top: 8.125rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    top: 3.75rem;
  }
}

.p-fv__copy {
  font-size: 3.75rem;
  line-height: 160%;
  color: #f29c2d;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .p-fv__copy {
    font-size: 1.875rem;
  }
}

.p-fv__subCopy {
  font-size: 1.5rem;
  color: #727272;
  font-weight: bold;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .p-fv__subCopy {
    font-size: 1rem;
  }
}

.p-fv__line {
  margin-top: 6rem;
  margin-left: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-fv__line {
    margin-top: 1.75rem;
    margin-left: 0;
  }
}

.p-header {
  padding: 0.1875rem;
  background: transparent;
  margin: auto;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease; /* トランジションの追加 */
  background-color: #fff4da;
  color: #727272;
}
@media screen and (max-width: 890px) {
  .p-header {
    padding-left: 0.9375rem;
    padding-right: 3.75rem;
    height: 3.75rem;
  }
}

.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;
  max-width: 65.1875rem;
  margin: auto;
  height: 100%;
}

.p-header__logo {
  width: 4.4375rem;
  height: auto;
  aspect-ratio: 71/57;
}
@media screen and (max-width: 890px) {
  .p-header__logo {
    width: auto;
    height: 100%;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 890px) {
  .p-header__hamburger {
    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;
    width: 3.75rem;
    height: 3.75rem;
    position: relative;
    z-index: 110;
    background-color: transparent;
    position: fixed;
    top: 0;
    right: 0;
  }
}

.p-header__hamburger:hover {
  opacity: 1;
}

.p-header__hamburger span {
  display: block;
  width: 1.875rem;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.3s ease, background-color 0.5s ease;
  transition: all 0.3s ease, background-color 0.5s ease;
}

.p-header__hamburger.open span {
  background-color: #000;
}

.p-header__hamburger span:nth-child(2) {
  margin: 0.4375rem 0;
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: translateY(0.5625rem) rotate(45deg);
          transform: translateY(0.5625rem) rotate(45deg);
}

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

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: translateY(-0.5625rem) rotate(-45deg);
          transform: translateY(-0.5625rem) rotate(-45deg);
}

.p-heading {
  margin-top: 100px;
}

.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
@media screen and (max-width: 890px) {
  .p-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 60%;
    z-index: 101;
    background-color: #fff;
    padding-top: 3.75rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 890px) {
  .p-nav__list {
    -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;
    gap: 1.25rem;
  }
}

.p-nav__item {
  text-transform: uppercase;
}

.p-nav__item + .p-nav__item {
  margin-left: 1rem;
}
@media screen and (max-width: 890px) {
  .p-nav__item + .p-nav__item {
    padding: 0;
    margin: 0;
  }
}

.p-nav__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1875rem;
  color: #02c755;
  font-weight: bold;
  text-transform: uppercase;
}

.p-nav__link {
  font-weight: bold;
}
.p-nav__img {
  width: 1.1875rem;
}

.p-nav__lineIcon {
  aspect-ratio: 1/1;
  width: 1.875rem;
  height: auto;
}

.p-recommend {
  background-color: #FFF4DA;
}

.p-recommend__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  row-gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-recommend__body {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-recommend__text {
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-recommend__text {
    font-size: 0.875rem;
  }
}

.p-recommend__img {
  width: 13.5rem;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-recommend__img {
    width: 8.75rem;
    margin-top: 0.75rem;
  }
}

.p-service__description {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__description {
    text-align: left;
    margin-top: 1.875rem;
  }
}

.p-service__content {
  max-width: 30.9375rem;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-service__content {
    max-width: 90%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__item {
    gap: 1.25rem;
  }
}

.p-service__item + .p-service__item {
  margin-top: 1.25rem;
}

.p-service__img {
  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;
  width: 4.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    width: 3.625rem;
  }
}

.p-service__img img {
  width: 85%;
  height: auto;
}

.p-service__text {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    font-size: 0.875rem;
  }
}

/* 波線ラッパー */
.p-wave-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: -1px; /* 波線とセクションの間に隙間が生じないように */
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-wave-wrapper {
    margin-top: 3.5rem;
  }
}

/* 波線SVG */
.p-wave {
  width: 100%;
  height: 100%;
}

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

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
