body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #F5F1EA;
  padding-top: 56px;
}

h1 {
  font-size: 40px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 22px;
  }
}

p {
  font-size: 16px;
}

.sp-only {
  display: none;
}

.l-section {
  padding-block: 64px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-block: 96px;
  }
}

.l-section--bg-light {
  background-color: #F5F1EA;
}

.l-section--bg-white {
  background-color: #FAF8F3;
}

.is-drawer-open .p-drawer {
  transform: translateX(0);
}
.is-drawer-open .p-drawer__overlay {
  opacity: 1;
  visibility: visible;
}

.l-header {
  width: 100%;
  padding: 16px;
  background: #EAE3D7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 30px;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .l-header__title {
    font-size: 40px;
  }
}

.l-header__drawer-button {
  display: block;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
}
@media screen and (min-width: 1024px) {
  .l-header__drawer-button {
    display: none;
  }
}
.l-header__drawer-button span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  top: 50%;
  left: 0;
}
.l-header__drawer-button span::before, .l-header__drawer-button span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  left: 0;
  transition: 0.3s ease;
}
.l-header__drawer-button span::before {
  top: -10px;
}
.l-header__drawer-button span::after {
  top: 10px;
}

.is-drawer-open {
  overflow: hidden;
}
.is-drawer-open .l-header__drawer-button span {
  background: transparent;
}
.is-drawer-open .l-header__drawer-button span::before {
  transform: rotate(45deg);
  top: 0;
}
.is-drawer-open .l-header__drawer-button span::after {
  transform: rotate(-45deg);
  top: 0;
}
.is-drawer-open .p-drawer__nav li {
  opacity: 1;
  transform: translateX(0);
}
.is-drawer-open .p-drawer__nav li:nth-child(1) {
  transition-delay: 0.25s;
}
.is-drawer-open .p-drawer__nav li:nth-child(2) {
  transition-delay: 0.35s;
}
.is-drawer-open .p-drawer__nav li:nth-child(3) {
  transition-delay: 0.45s;
}
.is-drawer-open .p-drawer__nav li:nth-child(4) {
  transition-delay: 0.65s;
}
.is-drawer-open .p-drawer__nav li:nth-child(5) {
  transition-delay: 0.75s;
}

.l-header__info {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__info {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}

.l-header__cta {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .l-header__cta {
    padding: 10px;
    border-left: 1px solid #ccc;
  }
}

@media screen and (min-width: 1024px) {
  .contact__sns img {
    width: auto;
    height: 24px;
  }
}

.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #FAF8F3;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 170px 24px;
  text-align: center;
  background: #EAE3D7;
}

.p-drawer__nav li {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.3s ease;
}
.p-drawer__nav a {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  transition: 0.2s;
}
.p-drawer__nav a:hover {
  color: #3A5A6A;
}

.p-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.p-fv {
  position: relative;
}
.l-inner {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

.l-inner--first {
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .l-inner--first {
    margin: 0;
    max-width: 100%;
  }
}

.p-fv__content {
  position: absolute;
  padding-top: 75px;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 26px;
}
@media screen and (min-width: 1024px) {
  .p-fv__content {
    margin-left: 120px;
  }
}

.p-fv__title {
  text-align: left;
  width: 100%;
  color: #fff;
}

.c-heading-main {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .c-heading-main {
    font-size: 40px;
  }
}

.c-heading-main--fv {
  font-size: 40px;
  line-height: 1.1px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 768px) {
  .c-heading-main--fv {
    font-size: 64px;
  }
}

.p-fv__lead {
  font-size: 16px;
  width: 100%;
  text-align: left;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-fv__lead {
    font-size: 24px;
  }
}

.p-fv__support {
  width: 100%;
  text-align: left;
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.9;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-fv__support {
    font-size: 16px;
  }
}

.p-fv__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.p-fv__image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv__btn {
  display: block;
  border-radius: 50px;
  padding: 7px 16px;
  color: #FAF8F3;
  background-color: #3A5A6A;
  border: 1px solid #3A5A6A;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
  margin-top: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-fv__btn {
    padding: 16px 36px;
    font-size: 24px;
    border-radius: 50px;
  }
}

.scroll {
  position: absolute;
  left: 50%;
  bottom: 80px;
  width: 48px;
  height: 48px;
}
.scroll span {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 25%;
  left: 25%;
  transform: rotate(-45deg);
  border-left: 7px solid #F5F5F5;
  border-bottom: 7px solid #F5F5F5;
  z-index: 2;
  animation: popping-arrow 2s infinite ease-out;
}

@keyframes popping-arrow {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  30% {
    transform: translateY(0.5em) rotate(-45deg);
  }
  60% {
    transform: translateY(0) rotate(-45deg);
  }
}
.p-service {
  background-color: #FAF8F3;
}
.c-section_heading__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.c-section_heading-main {
  font-size: 40px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .c-section_heading-main {
    font-size: 60px;
  }
}

.c-section_heading-sub {
  font-size: 16px;
}

.p-service__list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.p-service__item {
  text-align: center;
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.p-service__item + .p-service__item {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-service__item + .p-service__item {
    margin-top: 0;
  }
}

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

.p-service__text {
  text-align: left;
}

.p-about {
  padding-block: 32px;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-block: 80px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__container {
    display: flex;
    align-items: center;
    gap: 80px;
  }
}

.p-about__image {
  display: flex;
  justify-content: center;
}
.p-about__image img {
  width: 260px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-about__image img {
    width: 340px;
    height: 340px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 8px solid #fff;
  }
}

@media screen and (min-width: 768px) {
  .p-about__body {
    max-width: 500px;
  }
}

.p-about__name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
}

.p-about__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}
.p-about__skills li {
  font-size: 12px;
  padding: 6px 12px;
  background: #F5F1EA;
  border-radius: 20px;
}

.p-about__text p + p {
  margin-top: 16px;
}

.p-works__list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.p-works__item + .p-works__item {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-works__item + .p-works__item {
    margin-top: 0;
  }
}

.p-works__card {
  display: block;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.p-works__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.p-works__card:hover .p-works__more {
  opacity: 0.7;
}

.p-works__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.p-works__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works__body {
  padding: 24px;
}

.p-works__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.works__meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.p-works__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.p-works__tags li {
  font-size: 12px;
  background: #F5F1EA;
  padding: 6px 10px;
  border-radius: 20px;
}

.p-works__more {
  font-size: 14px;
  font-weight: 600;
  color: #3A6EA5;
  transition: 0.2s;
}

.p-flow__list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    display: flex;
    gap: 10px;
  }
}

.p-flow__item {
  position: relative;
  border: 1px solid #808080;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 46px 16px 24px;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    flex: 1;
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-flow__item + .p-flow__item {
    margin-top: 0;
  }
}

.p-flow__step {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #B7AFA3;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

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

.p-flow__title {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
}

.p-flow__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
}

.p-message {
  background: linear-gradient(to bottom, #ffffff 0%, #faf7f2 100%);
}
@media screen and (min-width: 768px) {
  .p-message {
    padding-block: 100px;
  }
}

@media screen and (min-width: 768px) {
  .p-message__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 25px;
    align-items: center;
  }
}

.p-message__image img {
  width: 100%;
  border-radius: 12px;
}

.p-message__text {
  margin-top: 24px;
  line-height: 1.8;
}
.p-message__text p {
  margin-bottom: 20px;
}
.p-message__text strong {
  font-weight: 700;
  color: #333;
}

.p-message__closing {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
}

.cta-heading {
  margin-bottom: 0;
}

.p-cta {
  padding-block: 32px;
  text-align: center;
  background-color: #EAE3D7;
}

@media screen and (min-width: 768px) {
  .p-cta__container {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .p-cta__item {
    padding: 30px 40px;
    width: 50%;
    background: #FAF8F3;
  }
}

.c-btn--outline {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: 160px;
  border: 1px solid #3A5A6A;
}
@media screen and (min-width: 768px) {
  .c-btn--outline {
    width: 200px;
    align-items: center;
  }
}

.c-btn__icon {
  display: flex;
  align-items: center;
}

.l-contact__inner {
  padding-block: 30px;
}

.c-section_heading__title-contact {
  text-align: center;
}

.c-section_heading__main-contact {
  font-size: 34px;
  font-weight: 900;
}

.c-section_heading__sub-contact {
  font-size: 16px;
}

.p-contact__form {
  max-width: 600px;
  margin: 0 auto;
}

.p-contact__field {
  margin-bottom: 24px;
}

.p-contact__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.u-required {
  color: #B44;
  font-size: 12px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #D8D2C6;
  background: #fff;
  border-radius: 8px;
}

input:focus,
textarea:focus {
  border-color: #3A5A6A;
  box-shadow: 0 0 0 3px rgba(58, 90, 106, 0.15);
}

.p-contact__actions {
  text-align: center;
  margin-top: 32px;
}

.c-btn--primary {
  position: relative;
  font-size: 14px;
  border: 1px solid #3A5A6A;
  color: #fff;
  border-radius: 50px;
  padding: 17.5px;
  opacity: 0.8;
  width: 290px;
  background: #3A5A6A;
  color: #fff;
  padding: 16px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.c-btn--primary::after {
  position: absolute;
  top: 50%;
  right: 40px;
  display: block;
  width: 10px;
  aspect-ratio: 1;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: translateY(-50%) rotate(-45deg);
  content: "";
}

.l-footer__copy {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    padding-block: 30px;
  }
}/*# sourceMappingURL=style.css.map */