.p-global-nav .c-navbar__item > a > span {
  font-size: 1.2rem;
}

.u-invisible-md-down .p-global-nav {
  margin-right: -100px;
}

/* ==========================
 * WORKS ARCHIVE (ISOLATED)
 * ========================== */

.works-archive {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.works-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* item */
.works-archive__item {
  position: relative;
}

/* link */
.works-archive__link {
  text-decoration: none;
  color: inherit;
}

/* figure */
.works-archive__figure {
  position: relative;
  overflow: hidden;
}

/* image */
.works-archive__figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

/* overlay */
.works-archive__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
  margin-top: 0px !important;
}

/* text */
.works-archive__year {
  position: absolute;
  left: 20px;
  bottom: 48px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #fff;
}

.works-archive__title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* hover */
.works-archive__item:hover .works-archive__overlay {
  opacity: 1;
}

.works-archive__item:hover img {
  transform: scale(1.05);
}

/* ==========================
 * Tablet
 * ========================== */
@media (max-width: 900px) {
  .works-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ==========================
 * SP
 * ========================== */
@media (max-width: 640px) {
  .works-archive__list {
    grid-template-columns: 1fr;
  }

  .works-archive__year {
    bottom: 40px;
  }
}

/* Profileページ */

/* ==========================
 * ABOUT PAGE
 * ========================== */

.about-page {
  background: #f2f2f2;
  color: #111;
  font-size: 14px;
  line-height: 2;
}

/* 共通 */
/* .about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px;
  border-bottom: 1px solid #ddd;
} */

.about-section__head {
  margin-bottom: 5rem;
}

/* OUTLINE */
.about-outline__lead {
  margin-bottom: 40px;
}

.about-outline__list {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px 40px;
}

.about-outline__list dt {
  font-weight: 600;
}

/* ==========================
 * Fade Animation
 * ========================== */
.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
 * SP
 * ========================== */
@media (max-width: 768px) {
  .about-message__inner,
  .about-member__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section {
    padding: 0px 20px 80px;
  }
  .about-outline__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* コンタクトページ */

/* MAIL ラベル */
.contact-mail__label {
  position: relative;
  padding-left: 48px; /* 線分の分だけ余白 */
  font-weight: 600;
}

/* 横線 */
.contact-mail__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #111;
  transform: translateY(-50%);
}

/* メールアドレス */
.contact-mail__address {
  letter-spacing: 0.25em;
}

/* SP微調整 */
@media (max-width: 768px) {
  .contact-mail__label {
    padding-left: 36px;
  }

  .contact-mail__label::before {
    width: 24px;
  }
}

/* ==========================
 * Contact Form Design
 * ========================== */

.contact-form {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
}

.contact-form li {
  margin-bottom: 40px;
}

.contact-form dl {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* ラベル */
.contact-form dt {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #111;
}

/* 必須 */
.contact-form .hissu {
  color: #d00;
  margin-left: 4px;
}

/* 入力側 */
.contact-form dd {
  margin: 0;
}

/* input / textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
  background: white;
  outline: none;
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

/* 説明文 */
.txt {
  max-width: 1100px;
  margin: 40px auto 20px;
  font-size: 13px;
  line-height: 2;
}

.attention {
  max-width: 1100px;
  margin: 0 auto 60px;
  font-size: 13px;
  line-height: 2;
}

/* 送信ボタン */
.submit-btn {
  max-width: 800px;
  margin: 0 auto;
}

.submit-btn input[type="submit"] {
  width: 100%;
  background: #d6ea6c;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: background 0.3s ease;
  color: black;
}

.submit-btn input[type="submit"]:hover {
  background: #c8de5f;
}

/* ==========================
 * SP
 * ========================== */
@media (max-width: 768px) {
  .contact-form dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form dt {
    font-size: 13px;
  }

  .contact-form textarea {
    min-height: 180px;
  }
}

/* =========================
 * FAQ ナンバリング（CSSのみ）
 * ========================= */

/* FAQ全体でカウンター開始 */
.smb-faq__body {
  counter-reset: faq-num;
}

/* 各FAQアイテム */
.smb-faq__item {
  position: relative;
  padding-left: 80px; /* 番号分の余白 */
  margin-bottom: 40px;
  /* counter-increment: faq-num; */
}

/* 共通：丸付き番号（画像版） */
.smb-faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;

  width: 48px;
  height: 48px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  z-index: 1;
}

.smb-faq__item:nth-child(1)::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/aba1dd9afd994bc383f5259806be7bb4.png");
}

.smb-faq__item:nth-child(2)::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/6ac2397867767a902ce2217f0a58282f.png");
}

.smb-faq__item:nth-child(3)::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/f6f77a1616e27fc34eb1a81aa7dc6262.png");
}

.smb-faq__item:nth-child(4)::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/ed80de20dfec1bd144442f3c2532b6bb.png");
}

.smb-faq__item:nth-child(5)::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/4d2898cc519c4468d541cbcfe0072ef6.png");
}

.smb-faq__item:nth-child(6)::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/6929b940e4802cf13960acbb172247c2.png");
}

.smb-faq__item:nth-child(7)::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/b54091b9ea851f9c8810b52e50cbc14b.png");
}

/* =========================
 * Q / A テキスト調整
 * ========================= */

.smb-faq__item__question {
  margin-bottom: 10px;
}

.smb-faq__item__question__body {
  font-size: 15px;
  line-height: 1.8;
  color: #e6007e; /* 添付と同じピンク */
}

.smb-faq__item__answer__body {
  font-size: 14px;
  line-height: 2;
  color: #111;
}

/* Q / A ラベルは非表示 */
.smb-faq__item__question__label,
.smb-faq__item__answer__label {
  /* display: none; */
}

/* =========================
 * SP
 * ========================= */
@media (max-width: 768px) {
  .smb-faq__item {
    padding-left: 60px;
    margin-bottom: 30px;
  }

  .smb-faq__item::before {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* =========================
 * header sns
 * ========================= */
.header-sns {
  display: flex;
  gap: 12px;
  margin-left: 140px;
}

.sns-icon {
  display: block;
  width: 20px; /* ← 好きなサイズ */
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Instagram */
.sns-icon--ig {
  background-image: url("../../delicious/img/sns/instagrm.png");
}

/* TikTok（仮） */
.sns-icon--tt {
  background-image: url("../../delicious/img/sns/tiktok.png");
}

/* YouTube（仮） */
.sns-icon--yt {
  background-image: url("../../delicious/img/sns/Youtube.png");
}

/* 投稿詳細ページ修正 */
.p-comments,
.p-trackbacks {
  display: none;
}

.p-breadcrumbs-wrapper {
  display: none;
}

.c-entry__meta {
  display: none;
}

/* 投稿下デザイン */

/* 全体 */
.works-info {
  margin-top: 120px;
  margin-bottom: 120px;
}

/* 2カラム */
.works-info__inner {
  display: flex;
  gap: 120px;
}

/* タイトル */
.works-info__ttl {
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin-bottom: 32px;
  position: relative;
  padding-left: 48px;
}

.works-info__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}

/* SPEC */
.works-info__spec {
  flex: 1;
}

.works-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.works-info__list li {
  font-size: 14px;
  line-height: 2.4;
  letter-spacing: 0.05em;
}

/* NOTE */
.works-info__note {
  flex: 1;
}

.works-info__text {
  font-size: 14px;
  line-height: 2.4;
  letter-spacing: 0.05em;
}

/* SP */
@media (max-width: 768px) {
  .works-info__inner {
    flex-direction: column;
    gap: 64px;
  }
}

.works-back {
  margin: 120px 0;
}

.works-back a {
  display: block;
  text-align: center;
  background: #d6eb6a;
  padding: 32px 0;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #000;
  text-decoration: none;
}

/* マウスカーソル */
body {
  cursor: none;
}

/* 疑似カーソル */
.cursor {
  position: fixed; /* ← absolute はNG */
  top: 0;
  left: 0;
  z-index: 100000;
  pointer-events: none;
  mix-blend-mode: exclusion;
  transform: translate(-50%, -50%);
}

.cursor .pointer__cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor.is-active .pointer__cursor {
  width: 40px;
  height: 40px;
}

.l-header--sticky-overlay-sm .c-hamburger-btn__bar {
  background-color: #000;
}
.c-hamburger-btn__label {
  color: black;
}

.l-header .c-container {
  max-width: 1000px;
}

@media (max-width: 488px) {
  .l-header:not(.l-header--left) .c-row,
  .l-header:not(.l-header--left) .c-row__col {
    justify-content: right;
  }
}

/* 共通 */

html {
  font-size: 62.5%;
}

body {
  background: #ebebeb;
  font-size: 1.4rem;
}

.c-site-branding {
  display: none;
}

.mv-sec {
  padding-top: 0px;
}

.c-section {
  padding-top: 0;
}

/* お知らせセクション */
.info-head {
  padding-top: 100px;
  padding-bottom: 0;
}

.head2-design {
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .head2-design {
    width: 75%;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left;
    font-size: 2rem;
  }
  .head-sec .head2-design {
    font-size: 2rem;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    /* text-align: left; */
  }
}

/* 画像を出す */
.head2-design::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translate(0%, -50%);
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

@media (max-width: 768px) {
  /* 見出しありの場合 */
  .head-sec .head2-design::before {
    left: -70px;
    top: -50px;
    transform: translate(0%, -50%);
    width: 80px;
    height: 80px;
  }
  /* 見出しなしの場合 */
  .head2-design::before {
    left: -95px;
    top: 50%;
    transform: translate(0%, -50%);
    width: 80px;
    height: 80px;
  }
}

/* about見出し */
.head2-design.about::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2025/12/About.png");
}

/* info見出し */
.head2-design.info::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2025/12/Information.png");
}

/* workFlow見出し */
.head2-design.workFlow::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2025/12/Work-Flow.png");
}

/* contact見出し */
.head2-design.contact::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2025/12/Contact.png");
}

/* blog見出し */
.head2-design.blog::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2025/12/BLOG.png");
}

/* profile見出し */
.head2-design.profile::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2025/12/PROFILE.png");
}

/* faq見出し */
.head2-design.faq::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/01/FAQ.png");
}

/* works見出し */
.head2-design.works::before {
  background-image: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2026/02/WORKS.png");
}

/* 縦文字「デリシャスデザイン」共通 */
.head2-design.about::after,
.head2-design.blog::after,
.head2-design.profile::after,
.head2-design.faq::after,
.head2-design.works::after,
.head2-design.contact::after {
  content: "デリシャスデザイン";
  position: absolute;

  /* 画像と揃える */
  left: -40px;
  top: calc(50% + 75px + 12px);

  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #000;
  white-space: nowrap;

  /* ▼ 線用の余白 */
  padding-right: 10px;

  /* ▼ 右側の縦線 */
  background-image: linear-gradient(#000, #000);
  background-size: 1px 100%;
  background-position: right center;
  background-repeat: no-repeat;

  z-index: 2;
}

@media (max-width: 768px) {
  .head-sec .head2-design.about::after,
  .head2-design.blog::after,
  .head2-design.profile::after,
  .head2-design.faq::after,
  .head2-design.contact::after {
    content: "デリシャスデザイン";
    position: absolute;

    /* 画像と揃える */
    left: -60px;
    top: 10px;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #000;
    white-space: nowrap;

    /* ▼ 線用の余白 */
    padding-right: 10px;

    /* ▼ 右側の縦線 */
    background-image: linear-gradient(#000, #000);
    background-size: 1px 100%;
    background-position: right center;
    background-repeat: no-repeat;

    z-index: 2;
  }
}

/* =====================
 * TOPのFlow
 * ===================== */
.process {
  padding: 80px 0;
}

.process__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  position: relative;
}

/* 縦ライン＋矢印（PCのみ） */
.process__list::before {
  content: "";
  position: absolute;
  left: 240px;
  top: 0;
  bottom: 0;
  width: 24px;
  background: url("http://dev.makewith-web.com/deliciousdesign/wp-content/uploads/2025/12/a014e2921ac8ffcf2ebe79a13691d421.png")
    no-repeat center / cover;
}

/* 1 STEP = 1 行 */
.process__item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 12px 0;
}

/* 左：STEP */
.process__step {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 260px;
  flex-shrink: 0;
}

.process__step img {
  width: 64px;
  height: auto;
}

.process__step p {
  color: #e6007e;
  font-weight: 500;
  line-height: 1.4;
  width: 150px;
}

/* 右：説明文 */
.process__desc {
  line-height: 1.8;
  color: #222;
  text-align: left;
}

/* =====================
 * レスポンシブ（SP）
 * ===================== */
@media (max-width: 768px) {
  .process {
    padding: 40px 20px;
  }

  .process__list::before {
    display: none;
  }

  .process__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .process__step {
    width: auto;
  }

  .process__step p {
    width: auto;
  }
}

/* ==========================
 * Blog List（Snow Monkey）
 * ========================== */
/* .blog-list {
  padding: 80px 0;
} */

.blog-list__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 1記事 */
.blog-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

/* 左：丸画像 */
.blog-item__thumb {
  width: 160px;
  flex-shrink: 0;
}

.blog-item__thumb img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* 右：テキスト */
.blog-item__content {
  flex: 1;
}

.blog-item__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-item__title a {
  color: #222;
  text-decoration: none;
}

.blog-item__excerpt {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #222;
}

.blog-item__date {
  font-size: 15px;
  letter-spacing: 0.2em;
  color: #222;
}

/* ==========================
 * SP
 * ========================== */
@media (max-width: 768px) {
  .blog-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 60px;
  }

  .blog-item__thumb {
    width: 100%;
    text-align: center;
  }

  .blog-item__thumb img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .blog-item__title {
    font-size: 22px;
  }
}

/* 下層ページ */
/* .under-page-sec{
	padding-top:100px;
} */

/* Profileページ */

.message-kasen {
  font-size: 1.2rem;
  display: inline;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #1a1311;
}

.sub-name {
  margin-top: -10px;
}

.katagaki {
  margin-top: 0;
  font-size: 1.3rem;
}

/* お知らせ */
.c-entry-summary__body h3,
li {
  font-size: 1.4rem !important;
}
.c-entry-summary__meta {
  width: auto !important;
}

/* Snow Monkey の投稿一覧リンクを無効化 */
.top-info .snow-monkey-posts .c-entries__item > a {
  pointer-events: none;
  cursor: default;
}

/* ヘッダー部分 */
/* ロゴ削除 */
.c-row__col:first-of-type {
  display: none;
}

header .c-row__col:nth-of-type(2) {
  width: 100%;
  flex: 0 0 80%;
}

.p-global-nav .c-navbar__item > a {
  color: black;
}

.l-1row-header .p-global-nav .c-navbar__item {
  flex: auto;
}

/* footer */
.footer-parts {
  border-top: 1px solid;
  padding-bottom: 0;
}

.footer-text01,
.footer-text02 {
  font-size: 1rem;
}

.wp-block-separator {
  width: 30px;
  border-top-width: 1px;
}

@media screen and (max-width: 780px) {
  .head-sec {
    width: 85%;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

footer {
  display: none;
}
