@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---- 自分でリセットCSS追加 ---- */
* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
textarea {
  border: none;
}

button {
  border: none;
}

/* ---- 色定義 ---- */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  width: 100%;
  height: auto;
}

.svg-img {
  width: auto;
}

button:hover {
  cursor: pointer;
}

/* ---- テキストスタイル定義 ---- */
/* ---- メディアクエリ定義 ---- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  z-index: 30;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
@media screen and (min-width: 1025px) {
  .l-header {
    padding-inline: 160px;
    justify-content: space-between;
  }
}
.l-header__title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1111111111em;
  color: #222222;
}
.l-header__nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100vh;
  background-color: #ffffff;
  transition: all, 0.3s;
  transform: translateX(100%);
  padding-inline-start: 40px;
  padding-block-start: 80px;
  z-index: 40;
}
@media screen and (min-width: 1025px) {
  .l-header__nav {
    position: static;
    transform: initial;
    background-color: transparent;
    padding-inline-start: 0;
    padding-block-start: 0;
    height: auto;
  }
}
.l-header__nav.active {
  transform: translateX(0);
}
.l-header__navList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .l-header__navList {
    flex-direction: row;
    gap: 40px;
    justify-content: end;
  }
}
.l-header__navLink {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.125em;
  color: #222222;
}
.l-header__hamburgerBtn {
  display: block;
  z-index: 40;
  width: 24px;
  height: 24px;
  background-color: transparent;
}
@media screen and (min-width: 1025px) {
  .l-header__hamburgerBtn {
    display: none;
  }
}
.l-header__hamburgerBtn.active .l-header__hamburgerLine {
  background-color: transparent;
}
.l-header__hamburgerBtn.active .l-header__hamburgerLine::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header__hamburgerBtn.active .l-header__hamburgerLine::after {
  top: 0;
  transform: rotate(-45deg);
}
.l-header__hamburgerLine {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222222;
  position: relative;
  transition: ease 0.4s;
}
.l-header__hamburgerLine::before, .l-header__hamburgerLine::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: ease 0.4s;
}
.l-header__hamburgerLine::before {
  top: -8px;
}
.l-header__hamburgerLine::after {
  top: 8px;
}
.l-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222222;
  opacity: 0.3;
  z-index: 10;
  display: none;
}
.l-header__overlay.active {
  display: block;
}

.l-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1025px) {
  .l-section {
    padding-block: 64px;
    padding-inline: 0;
  }
}

.l-contact {
  background-image: url("/assets/img/decoration/bg-01.jpg");
}
.l-contact__message {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.125em;
  color: #222222;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .l-contact__message {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1111111111em;
  }
}

.l-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background: #222222;
}
.l-footer__copyright {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1428571429em;
  color: #ffffff;
}

.c-sectionTitle {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #222222;
}
@media screen and (min-width: 1025px) {
  .c-sectionTitle {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
  }
}

.p-top-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  background-image: url("/assets/img/decoration/bg-02.jpg");
  background-position: center;
}
.p-top-hero__headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p-top-hero__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  color: #222222;
}
@media screen and (min-width: 1025px) {
  .p-top-hero__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.p-top-hero__subTitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1111111111em;
  color: #222222;
}
@media screen and (min-width: 1025px) {
  .p-top-hero__subTitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.0833333333em;
  }
}

.p-top-aboutMe {
  background-color: #f9f9f9;
}
.p-top-aboutMe__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .p-top-aboutMe__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 800px;
  }
}
.p-top-aboutMe__photo {
  border-radius: 9999px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .p-top-aboutMe__photo {
    width: 200px;
  }
}
.p-top-aboutMe__text {
  max-width: 600px;
  margin-inline: auto;
}
.p-top-aboutMe__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.125em;
  color: #222222;
}

.p-top-service {
  background-color: #f9f9f9;
}
.p-top-service__services {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .p-top-service__services {
    flex-direction: row;
    justify-content: center;
  }
}
.p-top-service__service {
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-top-service__service {
    width: 340px;
  }
}
.p-top-service__icon {
  width: 64px;
}
.p-top-service__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #222222;
  margin-block-start: 12px;
  margin-block-end: 16px;
}
.p-top-service__description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.125em;
  color: #222222;
  text-align: center;
}

.p-top-works {
  background-color: #ffffff;
}
.p-top-works__work {
  display: flex;
  width: 320px;
  flex-direction: column;
  overflow: hidden;
}
.p-top-works__work:hover {
  background: #f0f0f0;
}
.p-top-works__work:hover .p-top-works__thumbnail {
  transform: scale(1.05);
}
.p-top-works__thumbnail {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-top-works__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  line-height: 150%;
  color: #222222;
  margin-block-start: 16px;
  margin-block-end: 12px;
  padding-inline: 8px;
}
.p-top-works__inCharge {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1428571429em;
  color: #222222;
  padding-inline: 8px;
}

.p-work-detail {
  display: flex;
  flex-direction: column;
  padding-block-start: 100px;
  padding-inline: 20px;
  padding-block-end: 64px;
}
@media screen and (min-width: 1025px) {
  .p-work-detail {
    width: 800px;
    margin-inline: auto;
  }
}
.p-work-detail__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #222222;
  line-height: 150%;
  font-size: 18px;
  margin-block-end: 40px;
}
@media screen and (min-width: 1025px) {
  .p-work-detail__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    line-height: 150%;
    text-align: center;
  }
}
.p-work-detail__workImg {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .p-work-detail__workImg {
    max-width: 800px;
    width: 55.5555555556%;
  }
}
.p-work-detail__list {
  display: flex;
  gap: 0;
  flex-direction: column;
  margin-block-start: 40px;
}
@media screen and (min-width: 1025px) {
  .p-work-detail__list {
    padding-inline: 8.5%;
    width: 100%;
    margin-inline: auto;
  }
}
.p-work-detail__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 20px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (min-width: 1025px) {
  .p-work-detail__item {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 24px;
  }
}
.p-work-detail__term {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #222222;
}
@media screen and (min-width: 1025px) {
  .p-work-detail__term {
    width: 120px;
    padding-inline-start: 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
.p-work-detail__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.125em;
  color: #222222;
}
@media screen and (min-width: 1025px) {
  .p-work-detail__desc {
    flex: 1;
  }
}

span.line-break-sp-only {
  display: block;
}
@media screen and (min-width: 1025px) {
  span.line-break-sp-only {
    display: inline;
  }
}

/*# sourceMappingURL=style.css.map */
