@charset "UTF-8";

html,
body {
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

html,
body,
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.slider-container {
  max-width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body {
  font-size: 16px;
  line-height: 1.8;
  color: #5C5C5B;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #eeebe6;
  text-align: center;
  scroll-behavior: smooth;
}

body.is-fixed {
  overflow: hidden;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.button {
  font-weight: 500;
  font-family: "Figtree", sans-serif;
  letter-spacing: 2px;
  padding: 0.625rem 1.5rem;
  display: inline-block;
  border-radius: 10px;
  background: #5C5C5B;
  font-size: 1rem;
  line-height: 1.7;
  color: #fffef9;
  text-align: center;
  max-width: 12.5rem;
  height: auto;
  margin: 0 auto;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.button:hover {
  background-color: #E46D6C;
}

.button__icon {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s !important;
  transition: -webkit-transform 0.2s !important;
  transition: transform 0.2s !important;
  transition: transform 0.2s, -webkit-transform 0.2s !important;
}

.button:hover .button__icon {
  -webkit-transform: translateX(4px) !important;
          transform: translateX(4px) !important;
  -webkit-transition: -webkit-transform 0.2s !important;
  transition: -webkit-transform 0.2s !important;
  transition: transform 0.2s !important;
  transition: transform 0.2s, -webkit-transform 0.2s !important;
}

.button__contact2 {
  font-size: 1.5rem;
  padding: 0.625rem 1.5rem;
  border: none;
  margin: 5rem auto 0;
}

.header-button__contact {
  margin-top: 0;
  font-size: 1.125rem;
}

.drawer-button__contact {
  margin-top: 1.25rem;
}

.section__inner {
  margin: 0 auto;
  padding: 0 2.5rem;
}

.button__icon {
  margin-left: 0.5rem;
  font-size: 0.75rem;
}

.section__head {
  position: relative;
  width: 100%;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 5rem 0;
}

.section__head-main {
  font-family: "Figtree", sans-serif;
  font-size: 5.625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
}

.section__head-sub {
  padding-top: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.section__head-sub span {
  width: 6.25rem;
  height: 0.0625rem;
  display: inline-block;
  margin-right: 1.25rem;
  border-bottom: 0.0625rem solid #5C5C5B;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

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

.header {
  z-index: 1000;
  background: #eeebe6;
  position: fixed;
  top: 0;
  width: 100%;
}

.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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 2.5rem;
}

.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.header__logo-link.is-zoomed {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.header__logo-img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: logoRotate 8s linear infinite;
          animation: logoRotate 8s linear infinite;
}

@-webkit-keyframes logoRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes logoRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.header__logo {
  color: #5C5C5B;
  font-family: "Figtree", sans-serif;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 2.8;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.header__logo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.header__nav {
  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;
  gap: 1.875rem;
}

.header__link {
  font-size: 1.25rem;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  line-height: 2.5;
  position: relative;
  padding-left: 1.25rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__link::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: #E46D6C;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header__link:hover::before {
  opacity: 1;
}

.drawer-icon {
  display: none;
  width: 1.625rem;
  height: 1.125rem;
  position: relative;
  z-index: 51;
  border: none;
  background: #eeebe6;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 0.625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 1.625rem;
  height: 0.125rem;
  background: #5C5C5B;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 0.4375rem;
}

.drawer-icon__bar:nth-of-type(3) {
  top: 0.875rem;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 3.125rem;
  right: 0;
  background: #eeebe6;
  background-image: url("../img/drawer-bg.png");
  background-size: 25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.drawer-content__link {
  display: block;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  padding-left: 2.5rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.drawer-content__link::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: #E46D6C;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.drawer-content__link:hover::before {
  opacity: 1;
}

.main {
  position: relative;
  margin-top: 7.5rem;
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.95;
  }
}

.fv__contents {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 1.25rem;
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 5rem 0.625rem;
}

.js-slide-in-left {
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}

.js-slide-in-left.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-slide-in-right {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}

.js-slide-in-right.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fv__img {
  position: relative;
  z-index: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  width: auto;
  min-width: 18.75rem;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.fv__img:hover {
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}

.fv__img img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.fv__img:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.fv__img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  width: 31.25rem;
  height: 31.25rem;
}

.fv__text-contents {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
  margin: 0 auto;
  gap: 1.25rem;
  width: 100%;
}

.fv__heading {
  margin-top: 1.25rem;
}

.fv__heading-main {
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  color: #5C5C5B;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2;
}

.fv__heading-main.is-active {
  opacity: 1;
  visibility: visible;
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.works__inner {
  padding: 0 0 0 2.5rem;
}

.works__slider {
  margin-top: 1.875rem;
}

.works__swiper {
  padding-bottom: 1.875rem;
  padding-right: 0.3125rem;
  padding-left: 0.3125rem;
  margin-left: -0.3125rem;
  margin-right: -0.3125rem;
}

.works__pagination-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 1.25rem auto 0;
}

.works__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.25rem auto 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0.75rem;
  bottom: 0 !important;
}

.works__pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #fffef9;
  opacity: 1;
}

.works__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #4B7AB8;
}

.works-card__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1.25rem;
  gap: 0.25rem;
  width: 100%;
}

.works-card__label {
  padding: 0.125rem 0.625rem;
  border-radius: 0.375rem 0.375rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fffef9;
}

.works-card__label.is-design {
  background: #E46D6C;
  opacity: 0.8;
}

.works-card__label.is-cording {
  background: #4B7AB8;
  opacity: 0.8;
}

.works__card {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #5C5C5B;
  background: #fffef9;
  padding: 0.625rem 0.625rem 2.5rem;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  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;
}

.works-card__image {
  aspect-ratio: 280/160;
  margin-bottom: 0.625rem;
  border-radius: 10px;
}

.works-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.works-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.625rem;
  text-align: left;
  gap: 0.25rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.works-card__tag {
  outline: 1px solid #5C5C5B;
  color: #5C5C5B;
  padding: 0.125rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.works-card__title {
  padding: 1.875rem 0 0;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

.works-card__text {
  padding: 1.25rem 0 0.375rem;
  font-size: 0.9375rem;
  text-align: center;
  color: #5C5C5B;
}

.button__more {
  margin: 2.5rem auto 1.25rem;
}

.service-section {
  padding: 2.5rem 0;
}

.service-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 62.5rem;
  margin: 0 auto;
}

.service-card {
  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;
  background: #fffef9;
  border-radius: 40px;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  padding: 2.5rem 3.75rem;
  gap: 3.75rem;
  width: 100%;
}

.service-card.service-card-slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.service-card.service-card-slide.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.service-card:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.service-card__icon img {
  padding-left: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.service-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card__text-contents {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.service-card__text {
  font-size: 1rem;
  text-align: left;
  line-height: 2;
  color: #5C5C5B;
}

.button__contact {
  border: none;
  margin: 3.75rem auto 0;
  max-width: 12.5rem;
}

.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type=submit] {
  border: none;
  margin: 3.75rem auto 0;
  max-width: 12.5rem;
  display: block;
  position: relative;
}

.wpcf7-form .wpcf7-submit::after,
.wpcf7-form input[type=submit]::after {
  content: "▶";
  margin-left: 0.5rem;
  font-size: 0.75rem;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.wpcf7-form .wpcf7-submit:hover::after,
.wpcf7-form input[type=submit]:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.profile-section {
  padding: 2.5rem 0;
}

.profile-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fffef9;
  border-radius: 40px;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  padding: 2.5rem 3.75rem;
  gap: 2.5rem;
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
}

.profile-card__x-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  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;
  z-index: 10;
}

.profile-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

.profile-card__title-area {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.profile-card__title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.profile-card__subtitle {
  font-size: 1rem;
  color: #888;
  margin-top: -0.8rem;
}

.profile-card__skills {
  text-align: left;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.profile-card__skills-label {
  font-weight: 700;
  margin-right: 0.5rem;
}

.profile-card__skills-list {
  font-size: 0.9375rem;
  white-space: nowrap;
  padding-right: 3rem;
}

.profile-card__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2.5rem;
}

.profile-card__text {
  text-align: left;
  padding: 1.25rem 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #5C5C5B;
}

.profile-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2.5rem;
  width: 21.875rem;
  height: 21.875rem;
  background: #f7f6f3;
  border-radius: 50%;
  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-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.profile-card__image:hover {
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}

.profile-card__image img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.profile-card__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.profile-card__image img {
  width: 31.25rem;
  height: 31.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.profile-card__divider {
  width: 1px;
  height: 48px;
  background: #888;
  margin: 0 1.5rem;
  display: inline-block;
}

.flow__inner {
  max-width: 62.5rem;
  margin: 0 auto;
}

.flow__list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 1.25rem;
}

.flow__item {
  position: relative;
  background-color: #fffef9;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 2.5rem 1.25rem;
}

.flow__item-num {
  position: absolute;
  top: 0.9375rem;
  left: 10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fffef9;
  background-color: #4b4b4b;
  border-radius: 10px;
  width: 4.375rem;
  height: 3.125rem;
  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-family: "Figtree", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5;
}

.flow__item-img {
  margin-bottom: 1.5rem;
  text-align: center;
}

.flow__item-img img {
  width: 7.5rem;
  height: 7.5rem;
}

.flow__item-name {
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  padding: 0.625rem 0;
}

.flow__item-text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  padding: 0 2.5rem;
}

.flow-fade-in {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-animation: flowFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: flowFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.flow-fade-in:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.flow-fade-in:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.flow-fade-in:nth-child(3) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.flow-fade-in:nth-child(4) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes flowFadeIn {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes flowFadeIn {
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.contact {
  margin: 0 auto;
}

.contact__title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact__subtitle {
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  color: #333;
}

.contact-form {
  max-width: 62.5rem;
  background: #fffef9;
  border-radius: 1rem;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  padding: 3.75rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.contact-form__header {
  padding: 0 7.5rem;
  font-size: 1rem;
  line-height: 2;
  max-width: 62.5rem;
  text-align: left;
  margin: 0 auto 2.5rem;
}

.contact-form__mail {
  color: #4B7AB8;
  text-decoration: underline;
}

.contact-form__item {
  max-width: 31.25rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-form__item label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.contact-form__item .required {
  color: #E46D6C;
  font-size: 0.625rem;
  margin-left: 0.25rem;
}

.contact-form__item input,
.contact-form__item select,
.contact-form__item textarea {
  background: #fffef9;
  border: 1px solid #5C5C5B;
  border-radius: 4px;
  padding: 0.625rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact-form__item input:focus,
.contact-form__item select:focus,
.contact-form__item textarea:focus {
  outline: 1px solid #4B7AB8;
}

.contact-form__item textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.custom-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
}

.custom-checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.custom-checkbox .custom-checkbox__box {
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #5C5C5B;
  border-radius: 4px;
  background: #fff;
  margin-right: 0.5rem;
  display: inline-block;
  position: relative;
  -webkit-transition: background 0.2s, border 0.2s;
  transition: background 0.2s, border 0.2s;
}

.custom-checkbox input[type=checkbox]:checked + .custom-checkbox__box {
  background: #4B7AB8;
  border-color: #4B7AB8;
}

.custom-checkbox input[type=checkbox]:checked + .custom-checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

.wpcf7-form {
  max-width: 62.5rem;
  background: #fffef9;
  border-radius: 1rem;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  padding: 3.75rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.contact-form .wpcf7-form {
  max-width: 100%;
  background: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.wpcf7-form .wpcf7-form-control-wrap {
  max-width: 31.25rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

.wpcf7-form label {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #5C5C5B;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  background: #fffef9;
  border: 1px solid #5C5C5B;
  border-radius: 4px;
  padding: 0.625rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.wpcf7-form select {
  background: #fffef9;
  border: 1px solid #5C5C5B;
  border-radius: 4px;
  padding: 0.625rem;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C5C5B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
  padding-right: 2rem;
  cursor: pointer;
  text-align: left;
}

.wpcf7-form select option[value=""] {
  color: #999;
}

.wpcf7-form select option {
  color: #5C5C5B;
  background: #fffef9;
}

.wpcf7-form select::-ms-expand {
  display: none;
}

.wpcf7-form select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B7AB8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #4B7AB8;
}

.wpcf7-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #4B7AB8;
}

.wpcf7-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.wpcf7-submit {
  background: #5C5C5B;
  color: #fffef9;
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Figtree", sans-serif;
  letter-spacing: 2px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  margin: 2rem auto 0;
  display: block;
  max-width: 12.5rem;
  width: 100%;
  position: relative;
}

.wpcf7-submit:hover {
  background-color: #E46D6C;
}

.wpcf7-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.wpcf7-submit .wpcf7-spinner {
  display: none !important;
}

.wpcf7-submit:hover .button__icon {
  -webkit-transform: translateY(-50%) translateX(4px) !important;
          transform: translateY(-50%) translateX(4px) !important;
  -webkit-transition: -webkit-transform 0.2s !important;
  transition: -webkit-transform 0.2s !important;
  transition: transform 0.2s !important;
  transition: transform 0.2s, -webkit-transform 0.2s !important;
}

.wpcf7-not-valid-tip {
  color: #E46D6C;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.wpcf7-form-control-wrap input[type=checkbox] {
  width: auto;
  margin-right: 0.5rem;
}

.wpcf7-form-control-wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  cursor: pointer;
}

.wpcf7-response-output {
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  max-width: 31.25rem;
  text-align: center !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  min-height: 3.75rem;
  width: 100%;
}

.wpcf7-response-output:empty {
  display: none !important;
}

.wpcf7-response-output * {
  text-align: center !important;
  -moz-text-align-last: center !important;
       text-align-last: center !important;
  display: block !important;
  width: 100% !important;
  margin: 0 auto !important;
  float: none !important;
  position: static !important;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.wpcf7-response-output.wpcf7-spam-blocked {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

.wpcf7-response-output.wpcf7-mail-failed {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.wpcf7-response-output.wpcf7-spam-blocked {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

.wpcf7-response-output.wpcf7-mail-failed {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.wpcf7-form .wpcf7-spinner {
  display: inline-block;
  margin-left: 0.5rem;
}

.contact-form__fallback {
  background: #fffef9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.contact-form__fallback p {
  margin-bottom: 1rem;
  color: #5C5C5B;
  line-height: 1.8;
}

.contact-form__fallback a {
  color: #E46D6C;
  text-decoration: none;
  font-weight: 500;
}

.contact-form__fallback a:hover {
  text-decoration: underline;
}

.message__content {
  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;
  background: #fffef9;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.25);
  border-radius: 3.75rem;
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 3.75rem 2.5rem;
}

.message__img {
  position: relative;
  width: 15rem;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.message__img:hover {
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}

.message__img img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.message__img:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.message__img .bulb-img {
  position: absolute;
  left: 50%;
  top: 1.875rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  z-index: 2;
  pointer-events: none;
}

.message__img .bulb-rays {
  position: absolute;
  left: 50%;
  top: 0.625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.5rem;
  height: 1.25rem;
  z-index: 3;
  pointer-events: none;
}

.message__img img:not(.bulb-img) {
  width: 100%;
  height: auto;
  display: block;
}

.message__text {
  margin-left: 2.5rem;
  font-size: 1rem;
  color: #5C5C5B;
  line-height: 1.8;
  text-align: left;
}

@-webkit-keyframes floatY {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
}

@keyframes floatY {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
}

.bulb-ray {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  opacity: 0;
  -webkit-animation: rayAppear 2.4s linear infinite;
          animation: rayAppear 2.4s linear infinite;
}

.ray-left {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.ray-center {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.ray-right {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes rayAppear {
  0% {
    stroke-dashoffset: 14;
    opacity: 0;
  }

  10% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  86% {
    stroke-dashoffset: 14;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 14;
    opacity: 0;
  }
}

@keyframes rayAppear {
  0% {
    stroke-dashoffset: 14;
    opacity: 0;
  }

  10% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  86% {
    stroke-dashoffset: 14;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 14;
    opacity: 0;
  }
}

.footer {
  text-align: center;
  padding: 0.625rem;
  margin-top: 6.25rem;
}

.footer__copy {
  font-size: 0.6875rem;
}

@media (max-width: 900px) {
  .profile-card__x-icon {
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
  }

  .profile-card__skills-list {
    padding-right: 2.25rem;
  }
}

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

  .sp-only {
    display: block;
  }

  .button {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    max-width: 9.375rem;
    letter-spacing: 1.5px;
    margin: 1.25rem auto 1.25rem;
  }

  .button__contact2 {
    letter-spacing: 2px;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    max-width: 12.5rem;
    height: auto;
    margin: 3.75rem auto 0;
  }

  .header-button__contact {
    font-size: 0.875rem;
    padding: 0.25rem 0;
    min-width: 7.5rem;
  }

  .section__inner {
    padding: 0 1.25rem;
  }

  .section__head-main {
    font-size: 2.5rem;
  }

  .section__head-sub span {
    width: 3.75rem;
  }

  .section__head-sub {
    font-size: 0.75rem;
    padding-top: 0.625rem;
  }

  .header__inner {
    padding: 0 1.25rem;
  }

  .header__logo-link {
    gap: 0.625rem;
  }

  .header__logo-img {
    width: 2rem;
    height: 2rem;
  }

  .header__logo {
    font-size: 1.5rem;
  }

  .header__nav {
    display: none;
  }

  .drawer-icon {
    display: block;
  }

  .drawer-content {
    background-size: 21.25rem;
  }

  .drawer-content__link {
    font-size: 1rem;
    padding-left: 1.25rem;
  }

  .main {
    margin-top: 6.25rem;
  }

  .fv__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 100%;
    gap: 1.25rem;
    padding: 1.25rem 0.625rem;
  }

  .fv__img {
    min-width: auto;
    width: 100%;
    max-width: 18.75rem;
  }

  .fv__img img {
    width: 100%;
    height: auto;
    max-width: 18.75rem;
  }

  .fv__text-contents {
    text-align: center;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .fv__heading {
    margin-top: 1.25rem;
  }

  .fv__heading-main {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    min-height: 7.5rem;
  }

  .works__inner {
    padding-left: 1.25rem;
  }

  .works__slider {
    margin-top: 3.75rem;
  }

  .works__swiper {
    margin-left: 0;
    margin-right: 0;
  }

  .works-card__labels {
    margin-left: 0.625rem;
  }

  .works-card__label {
    font-size: 0.625rem;
    padding: 0.125rem 0.25rem;
  }

  .works__card {
    padding: 0.625rem 0.625rem 1.25rem;
    border-radius: 10px;
  }

  .works-card__tag {
    font-size: 0.5rem;
    padding: 0.125rem 0.375rem;
  }

  .works-card__title {
    font-size: 1.125rem;
  }

  .works-card__text {
    font-size: 0.75rem;
  }

  .button__more {
    margin: 2.25rem auto 1.25rem;
  }

  .service-section {
    padding: 1.25rem 0;
  }

  .service-cards {
    gap: 1.25rem;
  }

  .service-card:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 1.875rem 1.875rem;
    gap: 1.25rem;
  }

  .service-card__icon img {
    width: 5rem;
    height: 5rem;
    padding-left: 0;
  }

  .service-card__title {
    font-size: 1.25rem;
  }

  .service-card__text-contents {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .service-card__text {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .button__contact {
    max-width: 9.375rem;
  }

  .wpcf7-form .wpcf7-submit,
  .wpcf7-form input[type=submit] {
    max-width: 9.375rem;
    margin: 1.875rem auto 0;
  }

  .profile-section {
    padding: 1.25rem 0;
  }

  .profile-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
    border-radius: 20px;
  }

  .profile-card__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .profile-card__title {
    font-size: 2rem;
  }

  .profile-card__skills {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .profile-card__skills-list {
    white-space: normal;
    word-wrap: break-word;
    font-size: 0.875rem;
  }

  .profile-card__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }

  .profile-card__text {
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 0.625rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .profile-card__image {
    width: 11.25rem;
    height: 11.25rem;
    margin-top: 1.25rem;
  }

  .profile-card__image img {
    width: 250px;
    height: 250px;
  }

  .profile-card__divider {
    width: 0;
  }

  .flow__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .flow__item-num {
    top: 0.625rem;
    width: 3.125rem;
    height: 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .flow__item-img img {
    width: 5rem;
    height: 5rem;
  }

  .flow__item-name {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .flow__item-text {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.625rem 1.875rem 0;
  }

  .contact-form {
    padding: 2.5rem 1.25rem 1.25rem;
  }

  .contact-form__header {
    padding: 0 1.875rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .contact-form__item label {
    font-size: 0.875rem;
  }

  .contact-form__item .required {
    font-size: 0.75rem;
  }

  .contact-form__item input,
  .contact-form__item select,
  .contact-form__item textarea {
    font-size: 0.75rem;
  }

  .contact-form__item textarea {
    font-size: 0.75rem;
  }

  .custom-checkbox {
    font-size: 0.75rem;
  }

  .wpcf7-form {
    padding: 2.5rem 1.25rem;
  }

  .wpcf7-form .wpcf7-form-control-wrap {
    max-width: 100%;
  }

  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form textarea {
    font-size: 0.75rem;
  }

  .wpcf7-form select {
    font-size: 0.75rem;
    padding: 0.5rem;
    padding-right: 1.75rem;
    background-size: 0.875rem;
  }

  .wpcf7-submit {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    max-width: 9.375rem;
  }

  .wpcf7-response-output {
    font-size: 0.75rem;
    padding: 0.75rem;
    margin: 1rem auto;
    min-height: 3.125rem;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    width: 100%;
    text-align: center !important;
  }

  .wpcf7-response-output * {
    text-align: center !important;
    -moz-text-align-last: center !important;
         text-align-last: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    float: none !important;
    position: static !important;
  }

  .message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 1.25rem;
    gap: 1.25rem;
  }

  .message__img {
    width: 12.5rem;
  }

  .message__img .bulb-img {
    width: 2.5rem;
    height: 2.5rem;
    top: 1.5625rem;
  }

  .message__img .bulb-rays {
    width: 2.1875rem;
    height: 1.125rem;
    top: 0.5rem;
  }

  .message__text {
    margin-left: 0;
    margin-top: 1.25rem;
    padding: 0 0.625rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .footer {
    margin-top: 3.75rem;
  }

  .footer__copy {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .button__contact2 {
    letter-spacing: 2px;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    max-width: 12.5rem;
    height: auto;
    margin: 3.75rem auto 0;
  }

  .header-button__contact {
    font-size: 1.125rem;
    padding: 0.375rem 0.625rem;
    min-width: 9.375rem;
  }

  .section__head-main {
    font-size: 3.75rem;
  }

  .section__head-sub span {
    width: 3.75rem;
  }

  .header__nav {
    display: none;
  }

  .drawer-icon {
    display: block;
  }

  .drawer-content {
    background-size: 25rem;
  }

  .fv__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem 0.625rem;
  }

  .fv__img {
    width: 100%;
    max-width: 25rem;
  }

  .fv__img img {
    width: 100%;
    height: auto;
    max-width: 25rem;
  }

  .fv__text-contents {
    text-align: center;
    width: 100%;
    max-width: 25rem;
  }

  .fv__heading-main {
    font-size: 1.5rem;
    font-weight: 500;
    min-height: 11.25rem;
  }

  .profile-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
    border-radius: 20px;
  }

  .profile-card__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }

  .profile-card__title {
    font-size: 2.2rem;
  }

  .profile-card__subtitle {
    font-size: 0.8rem;
  }

  .profile-card__skills-list {
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .profile-card__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }

  .profile-card__text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .profile-card__image {
    width: 13.75rem;
    height: 13.75rem;
    margin-top: 1.25rem;
  }

  .profile-card__image img {
    width: 18.75rem;
    height: 18.75rem;
  }

  .flow__item-num {
    top: 0.625rem;
    width: 3.125rem;
    height: 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 1.25rem;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1024px) {
  .profile-card__skills {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
/*# sourceMappingURL=style.css.map */