@charset "UTF-8";
/* ==============================
  Header
============================== */
.portfolio-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 1000;
  width: calc(100% - 72px);
  transform: translateX(-50%);
}

.portfolio-header__inner {
  min-height: 82px;
  padding: 0 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(101, 91, 70, 0.12);
  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-header__logo {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3e3937;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.portfolio-header__logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.portfolio-header__nav ul {
  display: flex;
  align-items: center;
  gap: 62px;
  margin: 0;
  padding: 0 20px 0 0;
  list-style: none;
}

.portfolio-header__nav a {
  position: relative;
  color: #4a4745;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.portfolio-header__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #ef7d8e;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.portfolio-header__nav a:hover::after {
  width: 100%;
}

/* ハンバーガーメニュー：PCでは非表示 */
.portfolio-header__menu {
  display: none;
}

/* ==============================
  Responsive
============================== */
@media screen and (max-width: 900px) {
  .portfolio-header {
    top: 14px;
    width: calc(100% - 28px);
  }

  .portfolio-header__inner {
    min-height: 64px;
    padding: 0 20px;
  }

  .portfolio-header__logo {
    gap: 10px;
    font-size: 18px;
  }

  .portfolio-header__logo-icon {
    width: 30px;
    height: 30px;
  }


  .portfolio-header__menu {
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f7dfe4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .portfolio-header__menu span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ef7d8e;
  }
}
/* ==============================
  SP Menu
============================== */
@media screen and (max-width: 900px) {
  .portfolio-header__inner {
    position: relative;
  }

  .portfolio-header__nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    padding: 22px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(101, 91, 70, 0.16);
    backdrop-filter: blur(8px);

    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .portfolio-header__nav.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .portfolio-header__nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
  }

  .portfolio-header__nav li {
    width: 100%;
  }

  .portfolio-header__nav li + li {
    border-top: 1px dashed #efd4d9;
  }

  .portfolio-header__nav a {
    display: block;
    width: 100%;
    padding: 16px 4px;
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  .portfolio-header__nav a::after {
    display: none;
  }

  .portfolio-header__menu.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .portfolio-header__menu.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .portfolio-header__menu span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

/* ==============================
  FV
============================== */
.portfolio-fv {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 30px 36px 25px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    linear-gradient(180deg, #fbf8e9 0%, #f7f0d7 100%);
}

/* Inner */
.portfolio-fv__inner {
  position: relative;
  z-index: 10;
  max-width: 1480px;
  margin: 0 auto;
  padding-top: 86px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
}

/* Left */
.portfolio-fv__content {
  position: relative;
  z-index: 5;
  padding-left: 28px;
}

.portfolio-fv__label {
  position: relative;
  width: fit-content;
  min-width: 360px;
  margin: 0 0 50px;
  padding: 12px 38px;
  color: #fff;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  letter-spacing: 0.24em;
  background: #a8cdea;
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%, 5% 50%);
}

.portfolio-fv__title {
  position: relative;
  margin: 0;
  color: #3e3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.portfolio-fv__title span {
  position: relative;
  display: block;
  width: fit-content;
}

.portfolio-fv__title span:nth-child(1)::after,
.portfolio-fv__title span:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 0.2em;
  bottom: 0.12em;
  z-index: -1;
  height: 0.32em;
  border-radius: 999px;
}

.portfolio-fv__title span:nth-child(1)::after {
  width: 70%;
  background: rgba(243, 150, 166, 0.35);
}


.portfolio-fv__title span:nth-child(2)::after {
  width: 66%;
  background: rgba(244, 199, 56, 0.5);
}

.portfolio-fv__title::after {
  content: "";
  display: block;
  width: 560px;
  height: 2px;
  margin-top: 20px;
  background-image: linear-gradient(to right, #f2a6b4 50%, transparent 50%);
  background-size: 12px 2px;
}

.portfolio-fv__lead {
  margin: 26px 0 42px;
  color: #4a4441;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.12em;
}

/* Buttons */
.portfolio-fv__buttons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 50px;
}

.portfolio-btn {
  position: relative;
  width: 300px;
  min-height: 72px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 9px 18px rgba(136, 94, 88, 0.13);
}

.portfolio-btn i {
  position: absolute;
  right: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.portfolio-btn i::before,
.portfolio-btn i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.portfolio-btn i::before {
  width: 8px;
  height: 2px;
}

.portfolio-btn i::after {
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  background: transparent;
  transform: translate(-55%, -50%) rotate(45deg);
}

.portfolio-btn--primary {
  color: #fff;
  background: #ef7d8e;
}

.portfolio-btn--primary i {
  background: rgba(255, 255, 255, 0.35);
}

.portfolio-btn--outline {
  color: #ef7d8e;
  background: #fff;
  border: 2px solid #ef9aaa;
}

.portfolio-btn--outline i {
  background: #ef9aaa;
}

/* Feature cards */
.portfolio-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.portfolio-feature li {
  min-height: 70px;
  padding: 12px 20px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(105, 92, 70, 0.12);
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3f3937;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.portfolio-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.portfolio-feature__icon img {
  width: 24px;
}

.portfolio-feature__icon--pink {
  background: #f4c0c5;
}

.portfolio-feature__icon--yellow {
  background: #f4df83;
}

.portfolio-feature__icon--blue {
  background: #9fc4e4;
}

/* Right visual */
.portfolio-fv__visual {
  position: relative;
  min-height: 660px;
}

.portfolio-photo {
  position: relative;
  width: min(690px, 88%);
  margin: 0 0 0 auto;
  border: 12px solid #fff;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(99, 89, 80, 0.14);
}

.portfolio-photo img {
  width: 100%;
  aspect-ratio: 690 / 640;
  object-fit: cover;
}

/* Skill Card */
.skill-card {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 8;
  width: 370px;
  padding: 50px 44px 44px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(91, 79, 65, 0.18);
}

.skill-card__tape {
  position: absolute;
  top: -22px;
  left: 76px;
  width: 170px;
}

.skill-card__title {
  position: relative;
  width: fit-content;
  margin: 0 0 28px;
  color: #3e3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 34px;
  letter-spacing: 0.08em;
}

.skill-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 210px;
  height: 3px;
  background: #ef9aaa;
  transform: rotate(-3deg);
}

.skill-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #3f3937;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.skill-card__list li + li {
  margin-top: 16px;
}

.skill-card__check {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skill-card__check::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.skill-card__check--pink {
  background: #f07d91;
}

.skill-card__check--yellow {
  background: #edbc15;
}

.skill-card__check--blue {
  background: #8cbbe0;
}

.skill-card__heart {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 34px;
}

/* ==============================
  Decoration
============================== */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.deco--yellow-wave {
  left: -4%;
  bottom: -8%;
  width: 58%;
  z-index: 0;
}

.deco--blue-wave {
  right: -3%;
  bottom: -7%;
  width: 56%;
  z-index: 0;
}

.deco--blue-cloud {
  right: 4%;
  top: 13%;
  width: 230px;
}

.deco--yellow-paper {
  right: 6%;
  top: 27%;
  width: 160px;
}

.deco--pink-tape {
  right: 24%;
  top: 14%;
  width: 210px;
  z-index: 12;
}

.deco--star01 {
  left: 36%;
  top: 20%;
  width: 56px;
  z-index: 3;
}

.deco--star02 {
  right: 2.5%;
  top: 12%;
  width: 76px;
}

.deco--flower-line {
  left: 41%;
  top: 33%;
  width: 56px;
}

.deco--dotted-line {
  left: 41%;
  top: 40%;
  width: 150px;
}

.deco--arrow {
  left: 50%;
  bottom: 20%;
  width: 96px;
  z-index: 8;
}

.deco--flower-bottom {
  left: 43%;
  bottom: 5%;
  width: 58px;
}

/* ==============================
  Responsive
============================== */
@media screen and (max-width: 1200px) {
  .portfolio-fv {
    padding: 20px 20px 0;
  }

  .deco--star01 {
    left: auto;
    top: 15%;
    right: 24%;
    width: 56px;
    z-index: 3;
}

.deco--flower-line {
    left: auto;
    right: 10%;
    top: 20%;
    width: 56px;
}
.deco--dotted-line {
    left: auto;
    top: 30%;
    right: 10%;
    width: 150px;
}
  .portfolio-header__nav {
    gap: 32px;
  }

  .portfolio-fv__inner {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .portfolio-fv__content {
    padding-left: 0;
  }

  .portfolio-fv__visual {
    margin-top: 50px;
  }

  .portfolio-photo {
    margin: 0 auto;
  }

  .skill-card {
    right: 8%;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-fv {
    min-height: auto;
    padding: 30px 14px 80px;
  }

  .portfolio-header {
    min-height: 64px;
    padding: 0 20px;
  }

  .portfolio-header__logo {
    gap: 10px;
    font-size: 18px;
  }

  .portfolio-header__logo-icon {
    width: 30px;
  }

  .portfolio-header__nav {
    display: none;
  }

  .portfolio-fv__inner {
    padding-top: 42px;
  }

  .portfolio-fv__label {
    min-width: auto;
    margin-bottom: 28px;
    padding: 9px 26px;
    font-size: 12px;
  }

  .portfolio-fv__title {
    font-size: 28px;
    line-height: 1.45;
  }

  .portfolio-fv__title::after {
    width: 100%;
  }

  .portfolio-fv__lead {
    margin: 22px 0 0;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }

  .portfolio-fv__lead br {
    display: none;
  }

  .portfolio-fv__buttons {
    align-items: stretch;
    gap: 5px;
    margin-bottom: 20px;
  }

  .portfolio-btn {
    width: 100%;
    min-height: 60px;
    font-size: 13px;
  }

  a.portfolio-btn.portfolio-btn--outline span,
  a.portfolio-btn.portfolio-btn--primary span {
        padding-right: 20px;
}

  .portfolio-btn i {
    right: 10px;
  }
  .portfolio-feature {
    gap: 3px;
  }

  .portfolio-feature__icon {
    width: 30px;
    height: 30px;
  }

  .portfolio-feature li {
    min-height: 64px;
    font-size: 13px;
    gap: 5px;
    padding: 5px 10px;
  }

  .portfolio-fv__visual {
    min-height: auto;
    margin-top: 44px;
    padding-bottom: 170px;
  }

  .portfolio-photo {
    width: 100%;
    border-width: 8px;
    border-radius: 28px;
  }

  .skill-card {
    right: 50%;
    bottom: 0;
    width: 86%;
    padding: 40px 26px 34px;
    transform: translateX(50%);
  }

  .skill-card__title {
    font-size: 28px;
  }

  .skill-card__list li {
    font-size: 15px;
  }

  .deco--pink-tape {
    right: 18%;
    top: 47%;
    width: 150px;
  }

  .deco--blue-cloud,
  .deco--yellow-paper,
  .deco--star02,
  .deco--flower-line,
  .deco--dotted-line,
  .deco--arrow,
  .deco--flower-bottom {
    opacity: 0.7;
  }

  .deco--yellow-wave {
    width: 100%;
  }

  .deco--blue-wave {
    width: 100%;
  }
}

/* ==============================
  About
============================== */
.portfolio-about {
  position: relative;
  overflow: hidden;
  padding: 88px 36px 120px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    linear-gradient(180deg, #fbf8e9 0%, #f7f0d7 100%);
}

.portfolio-about__inner {
  position: relative;
  z-index: 5;
  max-width: 1360px;
  margin: 0 auto;
}

/* Heading */
.portfolio-about__heading {
  text-align: center;
  margin-bottom: 42px;
}

.portfolio-about__en {
  position: relative;
  width: fit-content;
  margin: 0 auto 8px;
  color: #ef7d8e;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 24px;
  letter-spacing: 0.22em;
}

.portfolio-about__en::before,
.portfolio-about__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ef8fa0;
}

.portfolio-about__en::before {
  left: -42px;
  transform: rotate(70deg);
}

.portfolio-about__en::after {
  right: -42px;
  transform: rotate(-70deg);
}

.portfolio-about__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.25;
}

.portfolio-about__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.02em;
  z-index: -1;
  width: 82%;
  height: 0.28em;
  background: url("../images/deco-ribon.png") no-repeat center / 100% 100%;
  transform: translateX(-50%);
}

.portfolio-about__lead {
  margin: 0;
  color: #4a4441;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.12em;
}

/* Main */
.portfolio-about__main {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
}

.portfolio-about__profile-img {
  position: relative;
}

.portfolio-about__profile-img img {
  width: 100%;
  display: block;
}

/* Profile Card */
.profile-card {
  position: relative;
  padding: 38px 48px 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.13);
}

.profile-card__heading {
  margin-bottom: 24px;
}

.profile-card__title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-card__flower {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.profile-card__title {
  margin: 0;
  color: #3f3937;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.profile-card__title-wrap span {
  color: #ef7d8e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.profile-card__text {
  margin: 0 0 24px;
  color: #3f3937;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.profile-card__text::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 22px;
  background-image: linear-gradient(to right, #f2a6b4 50%, transparent 50%);
  background-size: 12px 2px;
}

/* Profile List */
.profile-list {
  margin: 0;
}

.profile-list__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  border-bottom: 1px dashed #efb8c0;
}

.profile-list__row:last-child {
  border-bottom: none;
}

.profile-list__row dt {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #3f3937;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.profile-list__row dt img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.profile-list__row dd {
  margin: 0;
  color: #3f3937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/* Value Cards */
.about-value {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.about-value__card {
  position: relative;
  min-height: 230px;
  padding: 34px 32px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.12);
}

.about-value__head {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.about-value__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.about-value__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about-value__card--pink .about-value__icon {
  background: #f4c0c5;
}

.about-value__card--yellow .about-value__icon {
  background: #f5df84;
}

.about-value__card--blue .about-value__icon {
  background: #a8cdea;
}

.about-value__head h3 {
  position: relative;
  width: fit-content;
  margin: 0 0 10px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.about-value__head h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
}

.about-value__card--pink h3::after {
  background-image: linear-gradient(to right, #ef7d8e 50%, transparent 50%);
  background-size: 12px 3px;
}

.about-value__card--yellow h3::after {
  background-image: linear-gradient(to right, #edbc15 50%, transparent 50%);
  background-size: 12px 3px;
}

.about-value__card--blue h3::after {
  background-image: linear-gradient(to right, #8cbbe0 50%, transparent 50%);
  background-size: 12px 3px;
}

.about-value__head p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.about-value__card--pink .about-value__head p {
  color: #ef7d8e;
}

.about-value__card--yellow .about-value__head p {
  color: #dca800;
}

.about-value__card--blue .about-value__head p {
  color: #6b9bc4;
}

.about-value__text {
  margin: 0;
  color: #3f3937;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.about-value__deco {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 38px;
  opacity: 0.85;
}

/* Decorations */
.about-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.about-deco--cloud-left {
  left: 8%;
  top: 9%;
  width: 150px;
  opacity: 0.75;
}

.about-deco--cloud-right {
  right: 10%;
  top: 15%;
  width: 84px;
  opacity: 0.75;
}

.about-deco--star-left {
  left: 30%;
  top: 10%;
  width: 34px;
}

.about-deco--star-right {
  right: 5%;
  top: 22%;
  width: 62px;
}

.about-deco--flower-line {
  right: 26%;
  top: 10%;
  width: 48px;
}

.about-deco--dotted-left {
  left: 22%;
  top: 13%;
  width: 140px;
}

.about-deco--dotted-right {
  right: 20%;
  top: 13%;
  width: 140px;
}

.about-deco--flower-right {
  right: 4%;
  top: 36%;
  width: 82px;
}

.about-deco--flower-bottom {
  left: 37%;
  bottom: 2.5%;
  width: 58px;
}

.about-deco--wave-yellow {
  left: -6%;
  bottom: -8%;
  width: 58%;
  z-index: 0;
}

.about-deco--wave-blue {
  right: -5%;
  bottom: -7%;
  width: 58%;
  z-index: 0;
}

/* ==============================
  Responsive
============================== */
@media screen and (max-width: 1100px) {
  .portfolio-about__main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .portfolio-about__profile-img {
    max-width: 560px;
    margin: 0 auto;
  }

  .about-value {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-about {
    padding: 72px 18px 90px;
  }

  .portfolio-about__heading {
    margin-bottom: 34px;
  }

  .portfolio-about__en {
    font-size: 20px;
  }

  .portfolio-about__title {
    font-size: 32px;
    letter-spacing: 0.08em;
  }

  .portfolio-about__lead {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.05em;
    text-align: left;
  }

  .portfolio-about__main {
    gap: 28px;
    margin-bottom: 34px;
  }

  .profile-card {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .profile-card__title-wrap {
    gap: 10px;
    flex-wrap: wrap;
  }

  .profile-card__flower {
    width: 30px;
    height: 30px;
  }

  .profile-card__title {
    font-size: 30px;
  }

  .profile-card__title-wrap span {
    font-size: 13px;
  }

  .profile-card__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .profile-card__text br {
    display: none;
  }

  .profile-list__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .profile-list__row dt {
    gap: 10px;
    font-size: 14px;
  }

  .profile-list__row dt img {
    width: 24px;
    height: 24px;
  }

  .profile-list__row dd {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .profile-list__row dd br {
    display: none;
  }

  .about-value {
    gap: 18px;
  }

  .about-value__card {
    min-height: auto;
    padding: 26px 22px 28px;
    border-radius: 22px;
  }

  .about-value__head {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .about-value__icon {
    width: 58px;
    height: 58px;
  }

  .about-value__icon img {
    width: 32px;
    height: 32px;
  }

  .about-value__head h3 {
    font-size: 24px;
  }

  .about-value__head p {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .about-value__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .about-deco--cloud-left,
  .about-deco--cloud-right,
  .about-deco--dotted-left,
  .about-deco--dotted-right,
  .about-deco--flower-line,
  .about-deco--flower-right {
    display: none;
  }

  .about-deco--star-left {
    left: 8%;
    top: 5%;
    width: 30px;
  }

  .about-deco--star-right {
    right: 4%;
    top: 12%;
    width: 46px;
  }

  .about-deco--flower-bottom {
    left: 8%;
    bottom: 1%;
    width: 46px;
  }

  .about-deco--wave-yellow {
    left: -48%;
    bottom: -4%;
    width: 150%;
  }

  .about-deco--wave-blue {
    right: -50%;
    bottom: -5%;
    width: 150%;
  }
}
/* ==============================
  Works
============================== */
.portfolio-works {
  position: relative;
  overflow: hidden;
  padding: 110px 36px 130px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(180deg, #f9dfe7 0%, #f8d7e0 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.portfolio-works__inner {
  position: relative;
  z-index: 5;
  max-width: 1460px;
  margin: 0 auto;
}

/* Heading */
.portfolio-works__heading {
  margin-bottom: 48px;
  text-align: center;
}

.portfolio-works__en {
  position: relative;
  width: fit-content;
  margin: 0 auto 8px;
  color: #ef7d8e;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 30px;
  letter-spacing: 0.18em;
}

.portfolio-works__en::before,
.portfolio-works__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ef7d8e;
}

.portfolio-works__en::before {
  left: -38px;
  transform: rotate(70deg);
}

.portfolio-works__en::after {
  right: -38px;
  transform: rotate(-70deg);
}

.portfolio-works__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 24px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.portfolio-works__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.06em;
  z-index: -1;
  width: 72%;
  height: 0.32em;
  border-radius: 999px;
  background: rgba(239, 189, 0, 0.58);
  transform: translateX(-50%);
}

.portfolio-works__lead {
  margin: 0;
  color: #3f3937;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

/* Card List */
.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.works-card {
  position: relative;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.14);
}

.works-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #fff;
}

.works-card__thumb > img:first-child {
  width: 100%;
  aspect-ratio: 450 / 250;
  object-fit: cover;
}

.works-card__tape {
  position: absolute;
  left: 50%;
  top: -18px;
  width: 140px;
  transform: translateX(-50%) rotate(-7deg);
  z-index: 2;
  pointer-events: none;
}

.works-card__body {
  padding: 28px 30px 30px;
  text-align: center;
}

.works-card__title {
  margin: 0 0 14px;
  color: #3f3937;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.works-card__category {
  width: fit-content;
  min-width: 132px;
  margin: 0 auto 22px;
  padding: 8px 22px;
  border-radius: 999px;
  color: #ef7d8e;
  background: #fde5e9;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Info */
.works-card__info {
  margin: 0 0 28px;
  text-align: left;
}

.works-card__info div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px dashed #e8d7d1;
}

.works-card__info div:last-child {
  border-bottom: 1px dashed #e8d7d1;
}

.works-card__info dt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 0;
  border-radius: 8px;
  color: #ef7d8e;
  background: #fde5e9;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.works-card__info dd {
  margin: 0;
  color: #3f3937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

/* Button */
.works-card__btn {
  position: relative;
  width: min(250px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 0 54px 0 32px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #f27c96 0%, #ea5374 100%);
  box-shadow: 0 9px 18px rgba(207, 72, 102, 0.24);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-card__btn i {
  position: absolute;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.works-card__btn i::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 3px solid #ef7d8e;
  border-right: 3px solid #ef7d8e;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Decoration */
.works-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.works-deco--wave-yellow {
  left: -5%;
  bottom: -9%;
  width: 58%;
  z-index: 0;
}

.works-deco--wave-blue {
  right: -4%;
  bottom: -8%;
  width: 58%;
  z-index: 0;
}

.works-deco--star-left {
  left: 15%;
  top: 15%;
  width: 46px;
}

.works-deco--star-right {
  right: 4%;
  top: 15%;
  width: 58px;
}

.works-deco--flower-left {
  left: 6%;
  top: 17%;
  width: 70px;
}

.works-deco--flower-blue {
  right: 20%;
  top: 14%;
  width: 70px;
}

.works-deco--flower-right {
  right: 8%;
  top: 23%;
  width: 74px;
}

.works-deco--dotted {
  left: 20%;
  top: 18%;
  width: 190px;
}

.works-deco--flower-bottom {
  left: 35%;
  bottom: 2%;
  width: 56px;
}

/* ==============================
  Responsive
============================== */
@media screen and (max-width: 1180px) {
  .works-list {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .works-card__thumb > img:first-child {
    aspect-ratio: 450 / 230;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-works {
    padding: 76px 18px 92px;
    background-size: 42px 42px, 42px 42px, auto;
  }

  .portfolio-works__heading {
    margin-bottom: 34px;
  }

  .portfolio-works__en {
    font-size: 22px;
  }

  .portfolio-works__title {
    font-size: 32px;
    letter-spacing: 0.12em;
  }

  .portfolio-works__lead {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .works-list {
    gap: 22px;
  }

  .works-card {
    border-radius: 24px;
  }

  .works-card__thumb {
    border-radius: 24px 24px 0 0;
  }

  .works-card__body {
    padding: 24px 20px 26px;
  }

  .works-card__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .works-card__category {
    min-width: 116px;
    padding: 7px 18px;
    font-size: 14px;
  }

  .works-card__info div {
    grid-template-columns: 84px 1fr;
    gap: 12px;
    padding: 10px 0;
  }

  .works-card__info dt {
    min-height: 32px;
    font-size: 13px;
  }

  .works-card__info dd {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .works-card__btn {
    min-height: 54px;
    font-size: 16px;
  }

  .works-card__tape {
    width: 116px;
    top: -14px;
  }

  .pc-only {
    display: none;
  }

  .works-deco--flower-left,
  .works-deco--flower-blue,
  .works-deco--flower-right,
  .works-deco--dotted {
    display: none;
  }

  .works-deco--star-left {
    left: 8%;
    top: 8%;
    width: 34px;
  }

  .works-deco--star-right {
    right: 5%;
    top: 10%;
    width: 42px;
  }

  .works-deco--wave-yellow {
    left: -46%;
    bottom: -4%;
    width: 150%;
  }

  .works-deco--wave-blue {
    right: -48%;
    bottom: -5%;
    width: 150%;
  }
}

/* ==============================
  Skill
============================== */
.portfolio-skill {
  position: relative;
  overflow: hidden;
  padding: 100px 36px 130px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(180deg, #faf2c9 0%, #f8edb7 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.portfolio-skill__inner {
  position: relative;
  z-index: 5;
  max-width: 1460px;
  margin: 0 auto;
}

/* Heading */
.portfolio-skill__heading {
  margin-bottom: 54px;
  text-align: center;
}

.portfolio-skill__en {
  position: relative;
  width: fit-content;
  margin: 0 auto 8px;
  color: #ef7d8e;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 28px;
  letter-spacing: 0.22em;
}

.portfolio-skill__en::before,
.portfolio-skill__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #ef7d8e;
}

.portfolio-skill__en::before {
  left: -38px;
  transform: rotate(70deg);
}

.portfolio-skill__en::after {
  right: -38px;
  transform: rotate(-70deg);
}

.portfolio-skill__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 24px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.portfolio-skill__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.08em;
  z-index: -1;
  width: 72%;
  height: 0.28em;
  background: url("../images/deco-ribon.png") no-repeat center / 100% 100%;
  transform: translateX(-50%);
}

.portfolio-skill__lead {
  margin: 0;
  color: #3f3937;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* Skill cards */
.skill-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.skill-card02 {
  position: relative;
  min-height: 548px;
  padding: 34px 30px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.14);
}

.skill-card02__tape {
  position: absolute;
  left: 20px;
  top: -22px;
  width: 148px;
  transform: rotate(-8deg);
  pointer-events: none;
}

.skill-card02__head {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.skill-card02__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.skill-card02__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.skill-card02--pink .skill-card02__icon {
  background: #f6b8c1;
}

.skill-card02--yellow .skill-card02__icon {
  background: #f4dc78;
}

.skill-card02--blue .skill-card02__icon {
  background: #a8cdea;
}

.skill-card02__head h3 {
  position: relative;
  width: fit-content;
  margin: 0;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.skill-card02__head h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background-size: 12px 3px;
}

.skill-card02--pink .skill-card02__head h3::after {
  background-image: linear-gradient(to right, #ef7d8e 50%, transparent 50%);
}

.skill-card02--yellow .skill-card02__head h3::after {
  background-image: linear-gradient(to right, #efbd00 50%, transparent 50%);
}

.skill-card02--blue .skill-card02__head h3::after {
  background-image: linear-gradient(to right, #8cbbe0 50%, transparent 50%);
}

.skill-card02__text {
  margin: 0 0 28px;
  color: #3f3937;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* Items */
.skill-card02__items {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-card02__items li {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(208, 201, 190, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #3f3937;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 14px;
}

.skill-card02__items span {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skill-card02--pink .skill-card02__items span {
  background: #ef6f86;
}

.skill-card02--yellow .skill-card02__items span {
  background: #efbd00;
}

.skill-card02--blue .skill-card02__items span {
  background: #6fa8d6;
}

.skill-card02__items span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.skill-card02__deco {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  opacity: 0.9;
}

/* Message */
.skill-message {
  position: relative;
  width: min(390px, 100%);
  margin: 20px 72px 0 auto;
  padding: 34px 34px 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.16);
  transform: rotate(-1.5deg);
}

.skill-message__tape {
  position: absolute;
  left: 50%;
  top: -23px;
  width: 150px;
  transform: translateX(-50%) rotate(2deg);
}

.skill-message p {
  margin: 0;
  color: #3f3937;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}

.skill-message p::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  background-image: linear-gradient(to right, #ef7d8e 50%, transparent 50%);
  background-size: 12px 3px;
}

.skill-message__heart {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 32px;
}

/* Decorations */
.skill-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.skill-deco--cloud-left {
  left: 8%;
  top: 13%;
  width: 150px;
  opacity: 0.7;
}

.skill-deco--cloud-right {
  right: 9%;
  top: 18%;
  width: 90px;
  opacity: 0.7;
}

.skill-deco--star-left {
  left: 28%;
  top: 11%;
  width: 34px;
}

.skill-deco--star-right {
  right: 5%;
  top: 23%;
  width: 62px;
}

.skill-deco--flower-top {
  right: 25%;
  top: 9%;
  width: 58px;
}

.skill-deco--dotted-left {
  left: 20%;
  top: 14%;
  width: 150px;
}

.skill-deco--dotted-right {
  right: 18%;
  top: 14%;
  width: 150px;
}

.skill-deco--flower-right {
  right: 2.5%;
  top: 39%;
  width: 74px;
}

.skill-deco--flower-bottom {
  left: 40%;
  bottom: 3%;
  width: 58px;
}

.skill-deco--wave-yellow {
  left: -5%;
  bottom: -8%;
  width: 58%;
  z-index: 0;
}

.skill-deco--wave-blue {
  right: -4%;
  bottom: -8%;
  width: 58%;
  z-index: 0;
}

/* ==============================
  Responsive
============================== */
@media screen and (max-width: 1280px) {
  .skill-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-message {
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-skill {
    padding: 76px 18px 96px;
    background-size: 42px 42px, 42px 42px, auto;
  }

  .portfolio-skill__heading {
    margin-bottom: 34px;
  }

  .portfolio-skill__en {
    font-size: 22px;
  }

  .portfolio-skill__title {
    font-size: 32px;
    letter-spacing: 0.08em;
  }

  .portfolio-skill__lead {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .portfolio-skill__lead br {
    display: none;
  }

  .skill-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .skill-card02 {
    min-height: auto;
    padding: 28px 22px 26px;
    border-radius: 22px;
  }

  .skill-card02__head {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .skill-card02__icon {
    width: 58px;
    height: 58px;
  }

  .skill-card02__icon img {
    width: 34px;
    height: 34px;
  }

  .skill-card02__head h3 {
    font-size: 25px;
  }

  .skill-card02__text {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .skill-card02__text br {
    display: none;
  }

  .skill-card02__items {
    gap: 10px;
  }

  .skill-card02__items li {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .skill-card02__items span {
    width: 20px;
    height: 20px;
  }

  .skill-message {
    width: 92%;
    margin-top: 28px;
    padding: 30px 24px 26px;
  }

  .skill-message p {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.06em;
  }

  .skill-deco--cloud-left,
  .skill-deco--cloud-right,
  .skill-deco--dotted-left,
  .skill-deco--dotted-right,
  .skill-deco--flower-top,
  .skill-deco--flower-right {
    display: none;
  }

  .skill-deco--star-left {
    left: 8%;
    top: 5%;
    width: 30px;
  }

  .skill-deco--star-right {
    right: 4%;
    top: 11%;
    width: 44px;
  }

  .skill-deco--flower-bottom {
    left: 8%;
    bottom: 1%;
    width: 46px;
  }

  .skill-deco--wave-yellow {
    left: -48%;
    bottom: -4%;
    width: 150%;
  }

  .skill-deco--wave-blue {
    right: -50%;
    bottom: -5%;
    width: 150%;
  }
}

/* ==============================
  Contact
============================== */
.portfolio-contact {
  position: relative;
  overflow: hidden;
  padding: 86px 36px 120px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    linear-gradient(180deg, #fbf8e9 0%, #f7f0d7 100%);
}

.portfolio-contact__inner {
  position: relative;
  z-index: 5;
  max-width: 1360px;
  margin: 0 auto;
}

/* Heading */
.portfolio-contact__heading {
  margin-bottom: 44px;
  text-align: center;
}

.portfolio-contact__en {
  position: relative;
  width: fit-content;
  margin: 0 auto 8px;
  color: #ef7d8e;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 28px;
  letter-spacing: 0.22em;
}

.portfolio-contact__en::before,
.portfolio-contact__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: #ef7d8e;
}

.portfolio-contact__en::before {
  left: -38px;
  transform: rotate(70deg);
}

.portfolio-contact__en::after {
  right: -38px;
  transform: rotate(-70deg);
}

.portfolio-contact__title {
  position: relative;
  width: fit-content;
  margin: 0 auto 18px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.14em;
}

.portfolio-contact__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.08em;
  z-index: -1;
  width: 78%;
  height: 0.28em;
  background: url("../images/deco-ribon.png") no-repeat center / 100% 100%;
  transform: translateX(-50%);
}

.portfolio-contact__lead {
  margin: 0;
  color: #3f3937;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* Layout */
.portfolio-contact__contents {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

/* Contact Form 7 の出力をテーマデザインに合わせる */
.contact-form-card .wpcf7 {
  position: relative;
  z-index: 1;
}

.contact-form-card .wpcf7-form {
  display: grid;
  gap: 24px;
}

.contact-form-card .wpcf7-form p {
  margin: 0;
}

.contact-form-card .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-card .contact-form__field {
  margin: 0;
}

.contact-form-card .wpcf7-form .contact-form__submit {
  width: min(360px, 100%);
  margin: 6px auto 0;
}

.contact-form-card .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d6455f;
  font-size: 12px;
  font-weight: 500;
}

.contact-form-card .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form-card .wpcf7-spinner {
  margin: 10px auto 0;
}

.contact-side {
  display: grid;
  gap: 22px;
}

/* Left info card */
.contact-info-card {
  position: relative;
  padding: 40px 38px 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.13);
}

.contact-info-card__tape {
  position: absolute;
  left: 54px;
  top: -24px;
  width: 150px;
  transform: rotate(-8deg);
}

.contact-info-card__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-info-card__title img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-info-card__lead {
  margin: 0 0 20px;
  color: #3f3937;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-info-list {
  display: grid;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #efb8c0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contact-info-item__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
/* 
.contact-info-item__icon--pink {
  background: #f6b8c1;
}

.contact-info-item__icon--yellow {
  background: #f4dc78;
}

.contact-info-item__icon--green {
  background: #a7d59d;
}

.contact-info-item__icon--blue {
  background: #8cbbe0;
} */

.contact-info-item__label {
  margin: 0 0 6px;
  color: #3f3937;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.contact-info-item a {
  color: #ef6f86;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.contact-info-item__note {
  margin: 8px 0 0;
  color: #3f3937;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* SNS */
.contact-sns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.contact-sns img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-sns__text {
  color: #6fa8d6 !important;
  font-size: 14px !important;
}

.contact-info-card__flower {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 54px;
}

/* Casual message */
.contact-message-card {
  position: relative;
  padding: 24px 30px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.13);
}

.contact-message-card h3 {
  position: relative;
  width: fit-content;
  margin: 0 0 18px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-message-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(239, 189, 0, 0.58);
  z-index: -1;
}

.contact-message-card__body {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  align-items: center;
}

.contact-message-card__body img {
  width: 126px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-message-card__body p {
  margin: 0;
  color: #3f3937;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.contact-message-card__heart {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 34px;
}

/* Form card */
.contact-form-card {
  position: relative;
  padding: 58px 46px 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.13);
}

.contact-form-card__tape {
  position: absolute;
  left: 50%;
  top: -22px;
  width: 160px;
  transform: translateX(-50%) rotate(-3deg);
}

.contact-form-card__flower {
  position: absolute;
  right: -24px;
  top: 74px;
  width: 72px;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.contact-form__field label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #3f3937;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-form__field label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: #ef6f86;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #ddd8d2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #3f3937;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  outline: none;
}

.contact-form__field input {
  height: 62px;
  padding: 0 28px;
}

.contact-form__field textarea {
  min-height: 140px;
  padding: 24px 28px;
  border-radius: 24px;
  resize: vertical;
  line-height: 1.8;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #9f9a95;
}

.contact-form__submit {
  width: min(360px, 100%);
  min-height: 66px;
  margin: 6px auto 0;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #f27c96 0%, #ea5374 100%);
  box-shadow: 0 9px 18px rgba(207, 72, 102, 0.24);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.contact-form__submit img {
  width: 24px;
  height: 24px;
}

.contact-form__note {
  margin: 0;
  color: #3f3937;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
}

/* Decorations */
.contact-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.contact-deco--cloud-left {
  left: 8%;
  top: 10%;
  width: 150px;
  opacity: 0.75;
}

.contact-deco--cloud-right {
  right: 9%;
  top: 15%;
  width: 90px;
  opacity: 0.75;
}

.contact-deco--star-left {
  left: 29%;
  top: 8%;
  width: 34px;
}

.contact-deco--star-right {
  right: 5%;
  top: 22%;
  width: 62px;
}

.contact-deco--flower-top {
  right: 25%;
  top: 8%;
  width: 54px;
}

.contact-deco--dotted-left {
  left: 22%;
  top: 12%;
  width: 150px;
}

.contact-deco--dotted-right {
  right: 18%;
  top: 12%;
  width: 150px;
}

.contact-deco--yellow-paper {
  right: 5.5%;
  top: 33%;
  width: 140px;
  z-index: 1;
}

.contact-deco--flower-right {
  right: 4%;
  top: 33%;
  width: 76px;
  z-index: 2;
}

.contact-deco--flower-bottom {
  left: 41%;
  bottom: 3%;
  width: 58px;
}

.contact-deco--wave-yellow {
  left: -5%;
  bottom: -8%;
  width: 58%;
  z-index: 0;
}

.contact-deco--wave-blue {
  right: -5%;
  bottom: -8%;
  width: 58%;
  z-index: 0;
}

/* ==============================
  Responsive
============================== */
@media screen and (max-width: 1100px) {
  .portfolio-contact__contents {
    grid-template-columns: 1fr;
  }

  .contact-side {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-form-card {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-contact {
    padding: 76px 18px 96px;
  }

  .portfolio-contact__heading {
    margin-bottom: 34px;
  }

  .portfolio-contact__en {
    font-size: 22px;
  }

  .portfolio-contact__title {
    font-size: 32px;
    letter-spacing: 0.1em;
  }

  .portfolio-contact__lead {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .portfolio-contact__lead br {
    display: none;
  }

  .contact-info-card {
    padding: 34px 22px 24px;
    border-radius: 22px;
  }

  .contact-info-card__tape {
    left: 28px;
    width: 120px;
  }

  .contact-info-card__title {
    gap: 10px;
    font-size: 26px;
  }

  .contact-info-card__title img {
    width: 32px;
    height: 32px;
  }

  .contact-info-card__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-info-item {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .contact-info-item__icon {
    width: 50px;
    height: 50px;
  }

  .contact-info-item__icon img {
    width: 28px;
    height: 28px;
  }

  .contact-info-item__label {
    font-size: 14px;
  }

  .contact-info-item a {
    font-size: 13px;
    word-break: break-all;
  }

  .contact-sns {
    gap: 14px;
    flex-wrap: wrap;
  }

  .contact-message-card {
    padding: 22px 20px 24px;
  }

  .contact-message-card h3 {
    font-size: 22px;
  }

  .contact-message-card__body {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }

  .contact-message-card__body img {
    width: 96px;
    height: 62px;
  }

  .contact-message-card__body p {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .contact-message-card__body p br {
    display: none;
  }

  .contact-form-card {
    padding: 42px 22px 30px;
    border-radius: 22px;
  }

  .contact-form-card__tape {
    width: 128px;
    top: -18px;
  }

  .contact-form-card__flower {
    right: -12px;
    top: 48px;
    width: 52px;
  }

  .contact-form {
    gap: 24px;
  }

  .contact-form__field label {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-form__field input {
    height: 54px;
    padding: 0 18px;
    font-size: 14px;
  }

  .contact-form__field textarea {
    min-height: 130px;
    padding: 18px;
    font-size: 14px;
  }

  .contact-form__submit {
    min-height: 58px;
    font-size: 16px;
  }

  .contact-form__note {
    font-size: 12px;
    line-height: 1.8;
  }

  .contact-deco--cloud-left,
  .contact-deco--cloud-right,
  .contact-deco--dotted-left,
  .contact-deco--dotted-right,
  .contact-deco--flower-top,
  .contact-deco--yellow-paper,
  .contact-deco--flower-right {
    display: none;
  }

  .contact-deco--star-left {
    left: 8%;
    top: 5%;
    width: 30px;
  }

  .contact-deco--star-right {
    right: 4%;
    top: 10%;
    width: 44px;
  }

  .contact-deco--flower-bottom {
    left: 8%;
    bottom: 1%;
    width: 46px;
  }

  .contact-deco--wave-yellow {
    left: -48%;
    bottom: -4%;
    width: 150%;
  }

  .contact-deco--wave-blue {
    right: -50%;
    bottom: -5%;
    width: 150%;
  }
}
/* ==============================
  Skill modal
============================== */
.skill-card02__items li.is-skill-detail-trigger {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.skill-card02__items li.is-skill-detail-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.45;
  transform: rotate(45deg);
}

.skill-card02__items li.is-skill-detail-trigger:hover,
.skill-card02__items li.is-skill-detail-trigger:focus-visible {
  border-color: rgba(239, 125, 142, 0.7);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(105, 92, 70, 0.12);
  transform: translateY(-2px);
  outline: none;
}

body.is-skill-modal-open {
  overflow: hidden;
}

.skill-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.skill-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.skill-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 57, 55, 0.46);
  backdrop-filter: blur(4px);
}

.skill-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  padding: 42px 42px 36px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    linear-gradient(180deg, #fffdf4 0%, #fbf4dd 100%);
  box-shadow: 0 24px 64px rgba(62, 57, 55, 0.24);
}

.skill-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: #ef6f86;
  background: #f7dfe4;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.skill-modal__close:hover,
.skill-modal__close:focus-visible {
  background: #ef6f86;
  color: #fff;
  outline: none;
}

.skill-modal__category {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #fff;
  background: #a8cdea;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.skill-modal__title {
  position: relative;
  width: fit-content;
  margin: 0 56px 22px 0;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.skill-modal__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: -1;
  width: 100%;
  height: 0.32em;
  border-radius: 999px;
  background: rgba(243, 150, 166, 0.35);
}

.skill-modal__body {
  margin: 0 0 24px;
  color: #3f3937;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

.skill-modal__points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-modal__points li {
  position: relative;
  min-height: 42px;
  padding: 10px 18px 10px 48px;
  border: 1px solid rgba(208, 201, 190, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #3f3937;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.skill-modal__points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ef6f86;
  transform: translateY(-50%);
}

.skill-modal__points li::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .skill-modal {
    padding: 18px;
  }

  .skill-modal__panel {
    max-height: 82vh;
    padding: 34px 22px 28px;
    border-radius: 22px;
  }

  .skill-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .skill-modal__title {
    margin-right: 0;
    font-size: 20px;
  }

  .skill-modal__body {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  .skill-modal__points li {
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
}

/* ==============================
  Works archive
============================== */
.portfolio-works__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.works-archive-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(310px, 100%);
  min-height: 60px;
  padding: 0 58px 0 32px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #f27c96 0%, #ea5374 100%);
  box-shadow: 0 9px 18px rgba(207, 72, 102, 0.24);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.works-archive-button i,
.works-card__btn i {
  flex-shrink: 0;
}

.works-archive-button i {
  position: absolute;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.works-archive-button i::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 3px solid #ef7d8e;
  border-right: 3px solid #ef7d8e;
  transform: translate(-50%, -50%) rotate(45deg);
}

.works-archive__section,
.works-single__section {
  min-height: 100vh;
  padding-top: 150px;
}

.works-archive__heading {
  margin-bottom: 40px;
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.works-filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid rgba(239, 125, 142, 0.45);
  border-radius: 999px;
  color: #3f3937;
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.works-filter a:hover,
.works-filter a:focus-visible,
.works-filter a.is-active {
  color: #fff;
  background: #ef7d8e;
  outline: none;
}

.works-list--archive {
  align-items: stretch;
}

.works-card--archive {
  display: flex;
  flex-direction: column;
}

.works-card--archive .works-card__thumb {
  display: block;
}

.works-card--archive .works-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.works-card--archive .works-card__title a {
  color: inherit;
  text-decoration: none;
}

.works-card__excerpt {
  margin: 0 0 24px;
  color: #3f3937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.works-card__excerpt p {
  margin: 0;
}

.works-card--archive .works-card__btn {
  margin-top: auto;
}

.works-pagination {
  margin-top: 44px;
  text-align: center;
}

.works-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.works-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #3f3937;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-decoration: none;
}

.works-pagination .page-numbers.current,
.works-pagination a.page-numbers:hover,
.works-pagination a.page-numbers:focus-visible {
  color: #fff;
  background: #ef7d8e;
  outline: none;
}

.works-archive__empty {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.13);
  text-align: center;
}

.works-archive__empty p {
  margin: 0;
  color: #3f3937;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.works-single__inner {
  max-width: 980px;
  text-align: center;
}

.works-single__title {
  margin-bottom: 34px;
}

.works-single__thumb {
  overflow: hidden;
  margin-bottom: 34px;
  border: 10px solid #fff;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.14);
}

.works-single__thumb img {
  width: 100%;
  aspect-ratio: 980 / 520;
  object-fit: cover;
}

.works-single__content {
  padding: 42px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.14);
  color: #3f3937;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: left;
}

.works-single__content > *:first-child {
  margin-top: 0;
}

.works-single__content > *:last-child {
  margin-bottom: 0;
}

.works-single__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media screen and (max-width: 768px) {
  .portfolio-works__actions {
    margin-top: 22px;
  }

  .works-archive-button {
    min-height: 56px;
    font-size: 15px;
  }

  .works-archive__section,
  .works-single__section {
    padding-top: 110px;
  }

  .works-filter {
    justify-content: flex-start;
    gap: 8px;
  }

  .works-filter a {
    min-height: 40px;
    padding: 7px 14px;
    font-size: 13px;
  }

  .works-card__excerpt {
    font-size: 13px;
    line-height: 1.7;
  }

  .works-single__content {
    padding: 28px 22px;
    border-radius: 22px;
    font-size: 14px;
    line-height: 1.9;
  }

  .works-single__thumb {
    border-width: 8px;
    border-radius: 24px;
  }
}

/* ==============================
  Works single block content
============================== */
.works-single__content h2,
.works-single__content h3 {
  position: relative;
  width: fit-content;
  margin: 34px 0 18px;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.works-single__content h2 {
  font-size: 30px;
}

.works-single__content h3 {
  font-size: 24px;
}

.works-single__content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.04em;
  z-index: -1;
  width: 100%;
  height: 0.32em;
  border-radius: 999px;
  background: rgba(243, 150, 166, 0.35);
}

.works-single__content p,
.works-single__content ul,
.works-single__content ol {
  margin: 0 0 22px;
}

.works-single__content ul,
.works-single__content ol {
  display: grid;
  gap: 10px;
  padding-left: 1.4em;
}

.works-single__content li {
  padding-left: 0.2em;
}

.works-single__content a {
  color: #ef6f86;
  font-weight: 700;
  text-underline-offset: 0.18em;
}

@media screen and (max-width: 768px) {
  .works-single__content h2 {
    font-size: 24px;
  }

  .works-single__content h3 {
    font-size: 21px;
  }
}
/* ==============================
  Works single URL copy
============================== */
.works-single__url-card {
  position: relative;
  display: grid;
  gap: 5px;
  margin: 0 0 34px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(239, 125, 142, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 252, 240, 0.94) 56%, rgba(236, 247, 255, 0.9) 100%);
  box-shadow: 0 14px 30px rgba(105, 92, 70, 0.13);
  text-align: left;
}

/* .works-single__url-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(247, 223, 228, 0.72);
} */

.works-single__url-head,
.works-single__url-copy,
.works-single__url-note,
.works-single__copy-status {
  position: relative;
  z-index: 1;
}

.works-single__url-kicker {
  width: fit-content;
  margin: 0 0 8px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: #8cbbe0;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.works-single__url-title {
  margin: 0;
  color: #3f3937;
  font-family: "Klee One", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.works-single__url-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border: 1px dashed rgba(239, 125, 142, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.works-single__url-text {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 14px;
  color: #3f3937;
  background: #fff;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  overflow-wrap: anywhere;
  user-select: all;
}

.works-single__copy-button {
  min-width: 116px;
  min-height: 54px;
  padding: 0 20px;
  border: none;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, #f27c96 0%, #ea5374 100%);
  box-shadow: 0 8px 16px rgba(207, 72, 102, 0.22);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.works-single__copy-button:hover,
.works-single__copy-button:focus-visible {
  box-shadow: 0 10px 20px rgba(207, 72, 102, 0.26);
  transform: translateY(-1px);
  outline: none;
}

.works-single__copy-button.is-copied {
  background: linear-gradient(180deg, #8cbbe0 0%, #6fa8d6 100%);
}

.works-single__url-note,
.works-single__copy-status {
  margin: 0;
  color: #5a5350;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.works-single__copy-status {
  min-height: 1.8em;
  color: #ef6f86;
}

.works-single__content {
  border: 1px solid rgba(208, 201, 190, 0.55);
}

.works-single__content h2:not(:first-child),
.works-single__content h3:not(:first-child) {
  margin-top: 46px;
}

.works-single__content li::marker {
  color: #ef6f86;
}

@media screen and (max-width: 768px) {
  .works-single__url-card {
    gap: 16px;
    margin-bottom: 26px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .works-single__url-card::before {
    top: 16px;
    right: 16px;
    width: 58px;
    height: 58px;
  }

  .works-single__url-title {
    font-size: 24px;
  }

  .works-single__url-copy {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .works-single__url-text {
    min-height: 50px;
    padding: 11px 14px;
    font-size: 14px;
  }

  .works-single__copy-button {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }

  .works-single__content h2:not(:first-child),
  .works-single__content h3:not(:first-child) {
    margin-top: 38px;
  }
}

/* ==============================
  Footer
============================== */
.portfolio-footer {
  margin-top: 80px;
  padding: 56px 24px 40px;
  background: linear-gradient(180deg, #fdeef1 0%, #fbe3e8 100%);
  border-top: 1px dashed #efb8c0;
}

.portfolio-footer__inner {
  width: min(100%, 960px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.portfolio-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #3e3937;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.portfolio-footer__logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.portfolio-footer__lead {
  max-width: 620px;
  color: #6b5d59;
  font-size: 13px;
  line-height: 1.9;
}

.portfolio-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-footer__nav a {
  color: #4a4441;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.portfolio-footer__nav a:hover,
.portfolio-footer__nav a:focus-visible {
  color: #ef7d8e;
}

.portfolio-footer__copy {
  margin-top: 6px;
  color: #9a8f8b;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .portfolio-footer {
    margin-top: 56px;
    padding: 44px 20px 32px;
  }

  .portfolio-footer__nav ul {
    gap: 10px 20px;
  }
}
