@charset "UTF-8";

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  background-color: #FAF8F1;
  color: #707070;
  max-width: 1366px;
  margin: 0 auto;
}

.header-block {
  max-width: 1366px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0 auto;
  background-color: rgba(250, 248, 241, 0.5);
  font-size: 20px;
  font-weight: 500;
  transition-duration: 0.5s;
}

.header-block.side {
  transform: translate(45%) rotate(90deg);
  font-size: 16px;
}

/* ヘッダー */
.header-inner {
  height: 100px;
  margin: 0 auto;
  padding-right: 50px;
  padding-left: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
}

.header-clover {
  width: 36px;
  display: block;
}

/* ヘッダーメニュー */
.site-menu ul {
  display: flex;
  align-items: center;
  font-size: inherit;
  font-weight: inherit;
  max-width: 500px;
}

.site-menu ul li {
  width: 200px;
  transition-duration: 0.2s;
}

.site-menu ul li:hover {
  transform: scale(1.05);
  color: #A8BFA1;
}

.footer {
  padding: 40px 100px 30px;
  border-top: 1px solid rgba(168, 191, 161, 0.25);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-clover {
  width: 28px;
  display: block;
}

.footer-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: #A8BFA1;
  letter-spacing: 0.1em;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(168, 191, 161, 0.5);
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
}

.footer .site-menu ul {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 400;
  max-width: none;
}

.footer .site-menu ul li {
  width: auto;
}

/* TOPへ戻るボタン ------------------------------------------------*/
#page-top {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(250, 248, 241, 0.85);
  border: none;
  border-left: 1px solid rgba(168, 191, 161, 0.3);
  color: #A8BFA1;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 18px 10px;
  cursor: pointer;
  writing-mode: vertical-rl;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.3s ease;
  z-index: 100;
}

#page-top:hover {
  background: rgba(168, 191, 161, 0.1);
}

.footer-visible #page-top {
  opacity: 1;
  pointer-events: auto;
}

.footer-visible .header-block.side {
  opacity: 0;
  pointer-events: none;
}

/* ファーストビューエリア ------------------------------------------------*/
.first-view {
  height: calc(100vh - 100px);
  position: relative;
  top: -100px;
  margin: 50px auto 0;
  max-width: 1366px;
}

.first-view .logo {
  position: absolute;
  width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
}

.first-view img {
  max-width: 100%;
}

.clover-svg {
  display: block;
  max-width: 100%;
}

.first-view-text {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  z-index: 10;
}

.first-view-text h1 {
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.15em;
  text-align: center;
  color: #707070;
}

.first-typing-area {
  font-size: 14px;
  width: 600px;
  margin: 0 auto;
}

#type-js {
  white-space: nowrap;
  display: inline-block;
}

/* スクロールインジケーター ----------------------------------------*/
.first-view .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}

.scroll-indicator {
  text-align: center;
  padding: 10px 0;
}

.scroll-indicator span {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  color: #A8BFA1;
  opacity: 0.15;
  animation: arrow-wave 1.8s ease-in-out infinite;
}

.scroll-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.scroll-indicator span:nth-child(2) {
  animation-delay: 0.3s;
}

.scroll-indicator span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes arrow-wave {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.9; }
}

/* TOP Aboutエリア ------------------------------------------------*/
#top-about {
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 200px;
}

#top-about h2 {
  color: rgba(244, 226, 138, 0.35);
  font-size: 92px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 50px;
}

#top-about .about-me {
  margin: 0 auto;
  max-width: 1200px;
  color: #e6d066;
}

#top-about .about-me .layout-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

#top-about .about-me img,
#top-about .about-me .about-svg {
  display: block;
  max-height: 300px;
  width: auto;
}

#top-about .about-me .text {
  text-align: left;
  max-width: 500px;
}

#top-about .about-me .name {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #f4e28a;
  letter-spacing: 0.17em;
}

#top-about .about-me .green {
  color: #8FA87F;
}

#top-about .about-me .text .message {
  font-size: 16px;
  line-height: 2;
}

/* ボタン */
#top-about .btn-area {
  display: flex;
  justify-content: flex-end;
  font-size: 20px;
  margin-top: 30px;
}

#top-about .btn-area .btn {
  transition-duration: 0.2s;
  color: #8FA87F;
  margin-bottom: 20px;
}

#top-about .btn-area .btn:hover {
  transform: scale(1.05);
  color: #7a9670;
}

#top-about .btn-area .btn::after {
  display: block;
  content: "";
  height: 1px;
  width: 170px;
  background-color: #8FA87F;
  margin-top: 15px;
  transition-duration: 0.2s;
}

#top-about .btn-area .btn:hover::after {
  background-color: #7a9670;
}

/* TOP Worksエリア ------------------------------------------------*/
#top-works {
  margin-top: 200px;
  margin-bottom: 200px;
  padding-left: 100px;
  padding-right: 100px;
}

#top-works h2 {
  color: rgba(168, 191, 161, 0.35);
  font-size: 92px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 50px;
}

#top-works .layout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#top-works .text {
  margin-top: 50px;
  font-size: 16px;
  color: #8FA87F;
  line-height: 2;
  text-align: center;
}

.works-links {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
}

.works-clover-wrap {
  position: relative;
  width: 105px;
  text-decoration: none;
  transform-origin: bottom center;
  transition: transform 0.3s ease;
}

.works-clover-wrap:hover {
  transform: scale(1.1);
}

.works-clover-wrap svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.works-clover-path {
  transition: stroke 0.4s ease;
}

.works-link {
  fill: #A8BFA1;
  font-family: 'Noto Serif JP', serif;
  text-decoration: none;
  cursor: pointer;
  transition: fill 0.4s ease;
}

.works-clover-wrap:hover .works-link {
  fill: #8FA87F;
}

.works-clover-wrap:hover .works-clover-path {
  stroke: #8FA87F;
  stroke-width: 2.5;
}

.works-ground {
  width: 66%;
  margin-top: -3px;
  overflow: visible;
}

/* お問い合わせフォーム */
.contact-form {
  width: 450px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #E69C7A;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
}

.required {
  color: #E69C7A;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(230, 156, 122, 0.4);
  padding: 8px 0;
  font-size: 14px;
  font-family: 'Noto Serif JP', serif;
  color: #555;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #E69C7A;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
  border-bottom-color: #C97B6E;
}

.field-error {
  margin: 6px 0 0;
  font-size: 14px;
  color: #C97B6E;
  letter-spacing: 0.05em;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-result {
  min-height: 1.6em;
  margin: 0;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.05em;
}

.form-result.is-success {
  color: #6E9B6A;
}

.form-result.is-error {
  color: #C97B6E;
}

.btn-submit {
  display: block;
  margin: 40px auto 0;
  padding: 12px 48px;
  background: transparent;
  border: 1px solid rgba(230, 156, 122, 0.7);
  color: #E69C7A;
  font-size: 14px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-submit:hover {
  background: rgba(230, 156, 122, 0.15);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-submit:disabled:hover {
  background: transparent;
}

/* クローバーのスタイル設定(共通) */
.clover {
  position: relative;
  height: 315px;
  width: 280px;
  color: #A8BFA1;
  z-index: 10;
}

.clover .leaf {
  background-color: #A8BFA1;
  height: 180px;
  max-height: 180px;
  width: 140px;
  max-width: 140px;
  clip-path: path("M 69.9757 0.99 C 60.7744 0.99 51.9129 2.6924 43.6376 6.0501 C 35.418 9.385 28.097 14.2214 21.8778 20.4249 C 15.5012 26.7852 10.517 34.3581 7.0633 42.9334 C 3.4273 51.961 1.5837 61.889 1.5837 72.4415 C 1.5837 82.3059 5.1887 93.947 12.2986 107.0414 C 18.0201 117.5788 26.0048 129.0602 36.0309 141.1663 C 44.9643 151.9531 53.8956 161.2458 59.815 167.1417 C 64.7879 172.095 68.5247 175.5451 69.975 176.865 C 71.4222 175.5446 75.1497 172.095 80.1099 167.1426 C 86.0154 161.2465 94.9256 151.954 103.8378 141.1671 C 113.8402 129.061 121.806 117.5797 127.5141 107.0423 C 134.6072 93.9477 138.2037 82.3063 138.2037 72.4415 C 138.2037 61.8856 136.3686 51.9573 132.7494 42.932 C 129.3096 34.3547 124.3441 26.7818 117.9906 20.4238 C 111.7909 14.2197 104.4891 9.3836 96.2876 6.0498 C 88.028 2.6924 79.1754 0.99 69.9757 0.99 M 69.9757 0 C 107.592 0 139.1937 28.45 139.1937 72.4415 C 139.1937 116.4328 69.9757 178.2 69.9757 178.2 C 69.9757 178.2 0.5937 116.4328 0.5937 72.4415 C 0.5937 28.45 32.3594 0 69.9757 0 Z");
  overflow: hidden;
}

.clover .str {
  display: block;
  position: absolute;
  color: #8FA87F;
  text-align: center;
  font-size: 16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 10;
  padding-top: 50px;
}

.clover .str:hover {
  color: #FAF8F1;
  cursor: pointer;
}

.clover .str:hover+.leaf {
  clip-path: path("M 69.9757 0.99 M 69.9757 0 C 107.592 0 139.1937 28.45 139.1937 72.4415 C 139.1937 116.4328 69.9757 178.2 69.9757 178.2 C 69.9757 178.2 0.5937 116.4328 0.5937 72.4415 C 0.5937 28.45 32.3594 0 69.9757 0 Z");
}

.clover .leaf::before {
  background-color: #FAF8F1;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.clover .str:hover+.leaf::before {
  animation: ki 2s linear;
}

@keyframes ki {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }

  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }

  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }

  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }

  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.clover .leaf1 {
  position: absolute;
  top: 0;
  left: 50%;
}

.clover .leaf1 .leaf {
  transform: translate(-50%);
}

.clover .leaf2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.clover .leaf2 .leaf {
  transform-origin: center;
  transform: rotate(-125deg);
}

.clover .leaf3 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.clover .leaf3 .leaf {
  transform: rotate(125deg);
}

.clover .leaf1 .str {
  top: 0;
  transform: translate(-50%, 10%);
}

.clover .leaf2 .str {
  bottom: 0;
  left: 0;
  transform: translateY(-10%);
}

.clover .leaf3 .str {
  bottom: 0;
  right: 0;
  transform: translateY(-10%);
}

/* クローバ―のスタイル設定(共通) ここまで */

/* 各クローバ―の位置の微調整 */
.clover .lp .str {
  padding-top: 45px;
}

.clover .banner-flyer .str {
  padding-top: 30px;
}

.clover .strength2 .str {
  padding-top: 40px;
}

.clover .strength3 .str {
  padding-top: 40px;
}

.clover .skill2 .str {
  padding-top: 30px;
}

.clover .skill3 .str {
  padding-top: 45px;
}

.clover .like2 .str,
.clover .like3 .str {
  padding-top: 45px;
}

/* TOP Contactエリア--------------------------------- */
#top-contact {
  margin-top: 200px;
  margin-bottom: 200px;
  padding-left: 100px;
  padding-right: 100px;
}

#top-contact h2 {
  color: rgba(230, 156, 122, 0.349);
  font-size: 92px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 50px;
}

#top-contact .layout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

#top-contact .message {
  width: 300px;
  color: #E69C7A;
  text-align: center;
}

#top-contact .letter {
  border: rgba(230, 156, 122, 0.749) 1.5px solid;
  border-radius: 5px;
  width: 450px;
  height: 200px;
  position: relative;
}

#top-contact .letter::before {
  display: block;
  content: "";
  width: 155px;
  height: 1px;
  background-color: rgba(230, 156, 122, 0.75);
  position: absolute;
  transform-origin: top left;
  transform: rotate(25deg);
  z-index: 10;
}

#top-contact .letter::after {
  display: block;
  content: "";
  width: 170px;
  height: 1px;
  background-color: rgba(230, 156, 122, 0.749);
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: top right;
  transform: rotate(-25deg);
  z-index: 10;
}

#top-contact .clover {
  width: 450px;
  height: 200px;
}

#top-contact .clover .leaf {
  transform: rotate(90deg) translateY(50%);
}

#top-contact .clover .mail .str {
  top: 10%;
}

#top-contact .email {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: right;
  padding-bottom: 20px;
  padding-right: 10px;
  font-size: 16px;
}


/* TOP Thanksエリア --------------------------------------- */
.thanks {
  margin-top: 200px;
  margin-bottom: 150px;
  padding-left: 100px;
  padding-right: 100px;
}

.thanks h2 {
  color: rgba(169, 199, 201, 0.35);
  font-size: 92px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 50px;
}

.thanks .text {
  margin: 0 auto;
}

.thanks .text p {
  text-align: center;
  line-height: 2;
  font-size: 16px;
  color: #8FB1B6;
}

.thanks .logo {
  max-width: 150px;
  margin: 50px auto;
}

.thanks img {
  max-width: 100%;
}

.thanks-clover-svg {
  display: block;
  max-width: 100%;
  overflow: visible;
}

.thanks-leaf {
  fill: none;
  stroke: #D4C455;
}

.thanks-leaf--fly {
  stroke: #8BBECB;
  opacity: 0;
  transform-origin: 100px 115px;
  transform: rotate(135deg) translate(46px, -54px) scale(0.55);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.3s ease-out, stroke 1s ease-in-out;
}

.thanks-clover-svg.is-flying .thanks-leaf--fly {
  opacity: 1;
  transform: rotate(135deg) translate(0, 0) scale(1);
}

.thanks-stem {
  fill: none;
  stroke: #D4C455;
}

.thanks-clover-svg.is-complete .thanks-leaf,
.thanks-clover-svg.is-complete .thanks-stem {
  stroke: #A8BFA1;
}

/* ABOUTページ--------------------------------- */
#about h2 {
  font-size: 92px;
  font-weight: 500;
  color: rgba(180, 180, 180, 0.35);
  text-align: left;
  padding-left: 100px;
  margin-bottom: 50px;
}

/* h2 日本語ラベル */
#about .h2-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

#about .h2-ja {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  color: rgba(168, 191, 161, 0.85);
  letter-spacing: 0.2em;
  white-space: nowrap;
  margin-top: 12px;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(168, 191, 161, 0.5);
}

/* about me */
#about .about-me {
  padding-bottom: 100px;
}

#about .about-me .layout-container {
  display: flex;
  align-items: center;
}

#about .about-me p {
  width: 600px;
  margin-left: 191px;
  font-size: 14px;
  line-height: 3;
  color: #5C5C5C;
}

/* strength */
#about .about-strength {
  margin-top: 200px;
  padding-bottom: 100px;
}

#about .strength-lead {
  max-width: 660px;
  margin-left: 191px;
  font-size: 14px;
  line-height: 2.2;
  color: #5C5C5C;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.05em;
}

#about .strength-lead p + p {
  margin-top: 1.6em;
}

#about .strength-lead-catch {
  font-size: 22px;
  font-weight: 700;
  color: #A8BFA1;
  letter-spacing: 0.15em;
  margin-bottom: 0.6em;
}

#about .strength-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 60px;
}

#about .strength-card {
  flex: 1;
  border: 1px solid rgba(168, 191, 161, 0.35);
  padding: 40px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

#about .strength-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 191, 161, 0.75);
  background: rgba(168, 191, 161, 0.04);
}

#about .strength-card .card-clover {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  opacity: 0;
  transform: rotate(-15deg) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#about .strength-card:hover .card-clover {
  opacity: 0.25;
  transform: rotate(-15deg) scale(1);
}

#about .strength-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: rgba(168, 191, 161, 0.6);
  letter-spacing: 0.2em;
}

#about .strength-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: #A8BFA1;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(168, 191, 161, 0.25);
}

#about .strength-text {
  font-size: 14px;
  line-height: 2.2;
  color: #5C5C5C;
}

#about .text-for-resp {
  display: none;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* skills */
#about .about-skills {
  padding-bottom: 100px;
}

#about .about-skills h2 {
  margin-top: 200px;
}

#about .skills-container {
  display: flex;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 100px;
}

#about .skills-group {
  flex: 1;
}

#about .skills-category {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(168, 191, 161, 0.9);
  border-bottom: 1px solid rgba(168, 191, 161, 0.3);
  padding-bottom: 12px;
  margin-bottom: 28px;
}

#about .skills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#about .skills-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: #5C5C5C;
  padding: 14px 0;
  border-bottom: 1px solid rgba(168, 191, 161, 0.15);
}

#about .skill-name {
  letter-spacing: 0.05em;
}

#about .skill-level {
  display: flex;
  gap: 4px;
  align-items: center;
}

#about .skill-level .clv {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#about .skill-level .clv.full {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M 100 105 C 60 105, 55 45, 100 45 C 145 45, 140 105, 100 105 C 120 140, 71 174, 48 135 C 26 96, 80 70, 100 105 C 120 70, 174 96, 152 135 C 129 174, 80 140, 100 105 C 104 128, 120 160, 100 183' fill='none' stroke='%23A8BFA1' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#about .skill-level .clv.empty {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M 100 105 C 60 105, 55 45, 100 45 C 145 45, 140 105, 100 105 C 120 140, 71 174, 48 135 C 26 96, 80 70, 100 105 C 120 70, 174 96, 152 135 C 129 174, 80 140, 100 105 C 104 128, 120 160, 100 183' fill='none' stroke='%23A8BFA1' stroke-width='16' stroke-linecap='round' stroke-linejoin='round' opacity='0.2'/%3E%3C/svg%3E");
}

#about .skills-note {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: rgba(168, 191, 161, 0.85);
  letter-spacing: 0.15em;
  margin-top: 56px;
  padding: 20px;
  border-top: 1px solid rgba(168, 191, 161, 0.2);
  border-bottom: 1px solid rgba(168, 191, 161, 0.2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* career  */
#about .about-career {
  margin: 200px auto;
  max-width: 1200px;
  color: #5C5C5C;
}

#about .about-career .career-list .career-point {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 40px 0;
  font-size: 14px;
  position: relative;
}

#about .about-career .career-list .career-point.reverse {
  flex-direction: row-reverse;
}

#about .about-career .date-time {
  width: 50%;
  text-align: right;
  padding-right: 30px;
  z-index: 10;
  color: #8FA87F;
}

#about .about-career .mark {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: rgb(168, 191, 161);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-40%);
  z-index: 20;
}

#about .about-career .event {
  font-size: 14px;
  width: 50%;
  border-left: solid 1.5px rgba(168, 191, 161, 0.75);
  padding-left: 30px;
  padding-bottom: 40px;
  /* line-height: 1.7; */
}

#about .about-career .career-list .career-point.reverse .date-time {
  text-align: left;
  padding-left: 30px;
  border-left: solid 1.5px #A8BFA1;
}

#about .about-career .career-list .career-point.reverse .event {
  text-align: right;
  padding-right: 30px;
  border-left: none;
}

#about .about-career .career-point:first-child .date-time {
  padding-top: 20px;
  padding-bottom: 40px;
}

#about .about-career .career-point:first-child .mark {
  top: 25px;
}

#about .about-career .career-point:nth-child(2) .date-time {
  padding-bottom: 100px;
}

/* likes */
#about .about-likes {
  margin: 200px auto;
}

#about .about-likes .strength-card {
  background-size: cover;
  background-position: center;
  background-clip: padding-box;
}

#about .about-likes .strength-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(250, 248, 241, 0.88);
  transition: background-color 0.4s ease;
  z-index: 0;
}

#about .about-likes .strength-card:hover::before {
  background-color: rgba(250, 248, 241, 0.3);
}

#about .about-likes .strength-card .strength-num,
#about .about-likes .strength-card .strength-name,
#about .about-likes .strength-card .strength-text,
#about .about-likes .strength-card .card-clover {
  position: relative;
  z-index: 1;
}

#about .about-likes .strength-card:nth-child(1) {
  background-image: url(../images/about/pan.jpg);
}

#about .about-likes .strength-card:nth-child(2) {
  background-image: url(../images/about/blythe.jpg);
}

#about .about-likes .strength-card:nth-child(3) {
  background-image: url(../images/about/live.jpg);
}

#about .clover .like1 .str:hover+.leaf {
  background-image: url(../images/about/pan.jpg);
  background-size: 180px;
  background-position: center bottom;
  clip-path: path("M 69.9757 0.99 M 69.9757 0 C 107.592 0 139.1937 28.45 139.1937 72.4415 C 139.1937 116.4328 69.9757 178.2 69.9757 178.2 C 69.9757 178.2 0.5937 116.4328 0.5937 72.4415 C 0.5937 28.45 32.3594 0 69.9757 0 Z");
}

#about .clover .like2 .str:hover+.leaf {
  background-image: url(../images/about/blythe.jpg);
  background-size: 180px;
  background-position: center bottom;
  clip-path: path("M 69.9757 0.99 M 69.9757 0 C 107.592 0 139.1937 28.45 139.1937 72.4415 C 139.1937 116.4328 69.9757 178.2 69.9757 178.2 C 69.9757 178.2 0.5937 116.4328 0.5937 72.4415 C 0.5937 28.45 32.3594 0 69.9757 0 Z");
}

#about .clover .like3 .str:hover+.leaf {
  background-image: url(../images/about/live.jpg);
  background-size: 180px;
  background-position: center bottom;
  clip-path: path("M 69.9757 0.99 M 69.9757 0 C 107.592 0 139.1937 28.45 139.1937 72.4415 C 139.1937 116.4328 69.9757 178.2 69.9757 178.2 C 69.9757 178.2 0.5937 116.4328 0.5937 72.4415 C 0.5937 28.45 32.3594 0 69.9757 0 Z");
}

/* works誘導 */
#about .works-leading {
  margin: 150px auto 200px;
  text-align: center;
}

#about .works-clover-link {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
}

#about .myworks-wrap {
  position: relative;
  width: 100%;
  max-width: 750px;
  transition: transform 0.4s ease;
}

#about .works-clover-link:hover .myworks-wrap {
  transform: scale(1.03);
}

#about .myworks-svg {
  width: 100%;
  display: block;
}

#about .myworks-stage {
  position: absolute;
  left: 4.8%;
  top: 14.6%;
  width: 38.3%;
  height: 42%;
  -webkit-mask-image: url('../images/myworks-mask.svg');
  mask-image: url('../images/myworks-mask.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.works-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.works-slide.active {
  opacity: 1;
}

#about .works-leading .message {
  margin-top: 40px;
  font-size: 14px;
  color: #5C5C5C;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
}

/* WORKSページ--------------------------------- */
#works {
  margin: 0px auto 200px;
  max-width: 1000px;
}

#works #lp,
#works #flyer,
#works #banner {
  margin-top: 150px;
}

#works h2 {
  font-size: 92px;
  font-weight: 500;
  color: rgba(168, 191, 161, 0.5);
  text-align: left;
  margin-bottom: 30px;
}

#works .h2-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

#works .h2-ja {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  color: rgba(168, 191, 161, 0.85);
  letter-spacing: 0.2em;
  white-space: nowrap;
  margin-top: 12px;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(168, 191, 161, 0.5);
}

#works .title {
  display: inline-block;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #707070;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

#works .title::before {
  display: inline-block;
  content: "";
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 105 C 60 105, 55 45, 100 45 C 145 45, 140 105, 100 105 C 120 140, 71 174, 48 135 C 26 96, 80 70, 100 105 C 120 70, 174 96, 152 135 C 129 174, 80 140, 100 105 C 104 128, 120 160, 100 183' fill='none' stroke='%23A8BFA1' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -2px;
  transform: translate(-130%);
}

#works .title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 1.5px;
  background-color: #A8BFA1;
  border-radius: 1px;
}

/* 作品画像 */
#works img {
  max-width: 100%;
}

/* web */
#works .web {
  margin-top: 75px;
}

#works .web .img-area {
  position: relative;
  width: 420px;
  flex-shrink: 0;
  margin: 0;
  transition-duration: 0.5s;
}

#works .web .img-area:hover {
  transform: scale(1.1);
}

#works .web img.resp {
  position: absolute;
  width: 100px;
  bottom: 0;
  right: 0;
}

#works .web .title {
  margin-top: 50px;
  margin-bottom: 30px;
}

/* lp */
#works .lp {
  margin-top: 75px;
}

#works .lp .title {
  margin-top: 50px;
  margin-bottom: 15px;
}

#works .lp .img-area {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

#works .lp .part:hover {
  transform: scale(1.05);
  transition-duration: 0.5s;
}

#works .lp .part {
  max-width: 250px;
  width: 250px;
}

#works .lp .section-name {
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 10px;
}

#works .lp .section-name::after {
  display: block;
  content: "";
  height: 1.5px;
  background-color: #C6E2DD;
}

/* チラシ */
#works .flyer {
  margin-top: 75px;
}

#works .flyer .thumbnail {
  display: block;
  max-height: 60vh;
  margin: 0 auto;
  transition-duration: 0.5s;
}

#works .flyer .thumbnail:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#works .flyer .title {
  margin-top: 50px;
}

#works .flyer .settings {
  margin-top: 30px;
}

#works .flyer .works-info {
  min-width: 300px;
}

/* バナー */
#works .banner {
  margin-top: 75px;
}

#works .banner .thumbnail {
  display: block;
  width: 280px;
  flex-shrink: 0;
  margin: 0;
  transition-duration: 0.5s;
}

#works .banner .thumbnail:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* ライトボックス */
#works .lightbox-overlay {
  visibility: hidden;
  /* 初期状態では非表示 */
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  /* フェードイン・アウトのアニメーション */

  /* オーバーレイの基本スタイル */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(168, 191, 161, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* :target擬似クラスで表示状態を切り替える */
#works .lightbox-overlay:target {
  visibility: visible;
  opacity: 1;
}

#works .lightbox-content {
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  /* 画像がはみ出す場合にスクロール */
  background: #FAF8F1;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  /* ポップアップ時の初期サイズ */
  transition: transform 0.3s ease-out;
}

#works .lightbox-overlay:target .lightbox-content {
  transform: scale(1);
  /* ポップアップ時に元のサイズに */
}

#works .lightbox-content img {
  display: block;
  /* 余白をなくす */
  max-width: 100%;
  height: auto;
}

#works .lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #FAF8F1;
  font-size: 40px;
  text-decoration: none;
  line-height: 1;
  z-index: 1001;
  /* 画像より手前に表示 */
}

#works .lightbox-close:hover {
  color: #A8BFA1;
}

/* オーバーレイクリックで閉じるための設定 (HTMLのa href="#_") */
#works .lightbox-overlay .lightbox-close-area {
  /* オーバーレイ全体をクリックで閉じるための要素を別途用意する場合 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

#works .banner .title {
  margin-bottom: 20px;
}

/* 作品詳細 左右レイアウト */
#works .works-body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 30px;
  font-size: 14px;
}

#works .works-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* LP: 画像下の情報を2カラムグリッドに */
#works .lp-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 40px 60px;
  align-items: start;
  margin-top: 50px;
  max-width: 900px;
}

#works .lp-info .point {
  grid-column: 2;
  grid-row: 1 / span 3;
}

#works .info {
  margin: 0;
  width: 100%;
}

#works .info-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #8FA87F;
  letter-spacing: 0.05em;
}

#works .info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#works .info-tags span {
  background: rgba(168, 191, 161, 0.1);
  border: 1px solid rgba(168, 191, 161, 0.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  color: #5C5C5C;
  white-space: nowrap;
}

/* 設定 */
#works .settings {
  margin: 0;
  width: 100%;
}

#works .settings caption {
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 16px;
  color: #8FA87F;
  letter-spacing: 0.05em;
}

#works .settings {
  font-size: 14px;
  text-align: left;
}

#works .settings th {
  vertical-align: top;
  padding-right: 20px;
  white-space: nowrap;
}

#works .settings td {
  padding-bottom: 15px;
  line-height: 1.7;
}

#works .flow::before {
  content: "作業の流れ";
  display: block;
  flex-basis: 100%;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 10px;
  color: #8FA87F;
  letter-spacing: 0.05em;
}

#works .flow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  list-style: none;
  gap: 0;
}

#works .flow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(168, 191, 161, 0.08);
  border: 1px solid rgba(168, 191, 161, 0.25);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  flex: 1;
  min-width: 56px;
  position: relative;
  margin-right: 22px;
}

#works .flow li:last-child {
  margin-right: 0;
}

#works .flow li:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(168, 191, 161, 0.7);
  font-size: 11px;
}

#works .flow .flow-name {
  display: block;
  line-height: 1.5;
  margin-bottom: 4px;
  font-size: 12px;
  color: #5C5C5C;
}

#works .flow .flow-days {
  display: block;
  color: #8FA87F;
  font-size: 11px;
  font-family: 'Noto Serif JP', serif;
}

#works .point-img {
  display: block;
  height: 200px;
  margin-top: 50px;
  margin-right: 0;
  text-align: right;
}

#works .flow li.point-img {
  list-style: none;
  width: 100%;
  text-align: right;
  padding-bottom: 0;
}

#works .point-img img {
  max-height: 100%;
  padding-right: 50px;
}

#works ul.point::before {
  content: "こだわりポイント";
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #8FA87F;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  flex-basis: 100%;
}

#works .point {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(168, 191, 161, 0.35);
  padding-top: 30px;
  margin-top: 10px;
}

#works .lp-info .point {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  border-left: 1px solid rgba(168, 191, 161, 0.35);
  padding-left: 40px;
}

#works .point-chip {
  border-top: 1px solid rgba(168, 191, 161, 0.35);
  padding-top: 24px;
  margin-top: 10px;
}

#works .point li {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0;
  padding-bottom: 0;
}

#works .point-img-wrap {
  background: rgba(168, 191, 161, 0.06);
  border: 1px solid rgba(168, 191, 161, 0.2);
  border-radius: 6px;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#works .point-img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

#works .point-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition-duration: 0.5s;
}

#works .point-img-wrap a:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

#works .point li p {
  font-size: 12px;
  line-height: 1.7;
  color: #5C5C5C;
  margin: 0;
}


#works ul li {
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 15px;
  line-height: 2;
}

@media (max-width:800px) {

  .header-block,
  .header-block.side {
    transform: none;
    background: none;
    position: fixed;
    top: 0;
    left: 0;
    font-size: 20px;
    animation: SlideIn 2.0s;
    display: block;
    z-index: 50;
  }

  .header-inner {
    height: 75px;
    padding-left: 30px;
    padding-right: 20px;
  }

  .header-site-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FAF8F1;
    height: 110vh;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
    animation: SlideInLeft 1.0s;
  }

  .site-menu ul {
    margin: 100px 0;
    display: block;
    text-align: center;
    font-weight: bold;
  }

  .site-menu ul li {
    width: 100%;
    margin: 0 auto;
  }

  .site-menu ul li a {
    display: block;
    height: 100%;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .header-logo {
    display: none;
  }

  /* メニューボタン */
  .toggle-menu-button {
    display: block;
  }

  .menu-btn {
    position: fixed;
    top: 20px;
    right: 25px;
    display: flex;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 2px;
    background-color: #A8BFA1;
    position: absolute;
  }

  .menu-btn span:before {
    bottom: 8px;
  }

  #menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
  }

  #menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .menu-btn span:after {
    top: 8px;
  }

  #menu-btn-check {
    display: none;
  }

  /* フッター ---------------------- */
  .footer {
    display: none;
  }

  /* ファーストビュ-------------------*/

  .first-view {
    top: 0;
    height: 100vh;
  }

  .first-view-text h1 {
    top: 0;
    font-size: 20px;
  }

  .first-typing-area {
    font-size: 14px;
    max-width: 300px;
  }

  /* ABOUT ----------------------*/
  #top-about {
    padding-left: 20px;
    padding-right: 20px;
  }

  #top-about h2 {
    font-size: 48px;
    text-align: center;
  }

  #top-about .about-me .layout-container {
    display: block;
  }

  #top-about .about-me img {
    margin: 50px auto 0;
    display: block;
    height: 200px;
    width: 200px;
    object-fit: cover;
  }

  #top-about .about-me .text {
    margin: 0 auto;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 16px;
  }

  /* WORKS ------------------------------------------------*/
  #top-works {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #top-works h2 {
    font-size: 48px;
    text-align: center;
  }

  #top-works .layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #top-works .text {
    max-width: 300px;
    width: 100%;
    margin-top: 30px;
    color: #8FA87F;
    line-height: 2;
    text-align: center;
  }

  .works-links {
    display: grid;
    grid-template-columns: repeat(2, 105px);
    gap: 32px 40px;
    justify-content: center;
  }

  .works-clover-wrap {
    width: 105px;
  }

  .works-ground {
    display: none;
  }

  /* クローバーのスタイル設定 */
  .clover {
    margin: 0 auto;
  }

  #top-contact {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #top-contact h2 {
    font-size: 48px;
    text-align: center;
  }


  .contact-form {
    width: 100%;
    max-width: 400px;
  }

  /* Thanks-----------------------*/
  .thanks {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .thanks h2 {
    font-size: 48px;
    text-align: center;
  }

  .thanks .text {
    max-width: 350px;
  }

  .thanks-text h1 {
    font-size: 20px;
    height: 50%;
  }

  /* Aboutページ --------------------------------- */
  #about {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #about h2 {
    font-size: 48px;
    text-align: center;
    padding-left: 0;
  }

  #about .h2-ja {
    font-size: 14px;
  }

  /* About me */
  #about .about-me .layout-container {
    display: block;
  }

  #about .about-me p {
    width: 100%;
    margin-left: 0;
    font-size: 14px;
    line-height: 2.4;
    color: #5C5C5C;
  }

  /* Strength / Likes カード */
  #about .strength-lead {
    max-width: 100%;
    margin-left: 0;
  }

  #about .strength-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
  }

  #about .strength-card {
    width: 100%;
    max-width: 420px;
  }

  /* Skills */
  #about .skills-container {
    flex-direction: column;
    padding: 0;
    gap: 0;
    max-width: 100%;
  }

  #about .skills-category {
    margin-top: 24px;
  }

  #about .skills-note {
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 16px 10px;
    max-width: 100%;
  }

  /* career */
  #about .about-career {
    max-width: 100%;
  }

  #about .about-career .career-list .career-point {
    display: block;
  }

  #about .about-career .date-time {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 5px;
  }

  #about .about-career .mark {
    display: none;
  }

  #about .about-career .event {
    border-left: none;
    width: 100%;
    padding-left: 0;
  }

  #about .about-career .career-list .career-point.reverse .date-time {
    text-align: left;
    padding-left: 0;
    border-left: none;
  }

  #about .about-career .career-list .career-point.reverse .event {
    text-align: left;
    padding-right: 0;
  }

  #about .about-career .career-point:first-child .date-time {
    padding-top: 0;
    padding-bottom: 5px;
  }

  #about .about-career .career-point:nth-child(2) .date-time {
    padding-bottom: 5px;
  }

  /* Works SVG */
  #about .myworks-wrap {
    max-width: 100%;
  }

  #about .works-leading .message {
    width: 100%;
  }

  /* WORKSページ--------------------------------- */
  #works {
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* 見出し */
  #works h2 {
    font-size: 48px;
  }

  #works .h2-ja {
    font-size: 13px;
  }

  /* 作品タイトル */
  #works .title {
    font-size: 18px;
    letter-spacing: 0.08em;
    text-align: left;
    padding-left: 36px;
    padding-bottom: 12px;
  }

  #works .title::before {
    top: -4px;
    left: 0;
    width: 28px;
    height: 28px;
    transform: none;
  }

  #works .title::after {
    left: 36px;
    transform: none;
    width: 32px;
  }

  /* 作品共通: 左右→縦積み */
  #works .works-body {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* WEB */
  #works .web .img-area {
    width: 100%;
  }

  #works .web img.resp {
    position: static;
    transform: none;
    display: block;
    margin: 0 auto;
  }

  /* LP */
  #works .lp .img-area {
    display: block;
    width: 100%;
    height: 70vh;
    overflow-y: scroll;
  }

  #works .lp .part {
    margin: 0 auto;
  }

  /* LP info グリッド: 2カラム→1カラム */
  #works .lp-info {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  #works .lp-info .point {
    grid-column: 1;
    grid-row: auto;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(168, 191, 161, 0.35);
    padding-top: 24px;
  }

  /* バナー サムネイル */
  #works .banner .thumbnail {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* works-info: 全幅 */
  #works .works-info {
    width: 100%;
    gap: 24px;
  }

  /* ステップフロー: 折り返し許容 */
  #works .flow li {
    min-width: 48px;
    padding: 8px 10px;
  }

  /* こだわりポイント カード */
  #works .point li {
    min-width: 120px;
  }
}

/* About SVG 緑アニメーション */
.about-svg .st1,
.about-svg .st12,
.about-svg .st26,
.about-svg .st27 {
  fill-opacity: 0;
  transition: fill-opacity 3s ease-in-out 0.8s;
}

.about-svg.is-visible .st1,
.about-svg.is-visible .st12,
.about-svg.is-visible .st26,
.about-svg.is-visible .st27 {
  fill-opacity: 1;
}