body {
    background-color: #EEEEEE;
    font-family: 'meiryo', sans-serif;
    font-weight: bold;
    color: #575757;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
    position: relative;
}

/* ====== フォント読み込み ====== */
@font-face {
  font-family: 'NikkyouSans';
  src: url('../fonts/NikkyouSans-mLKax.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'meiryo';
  font-weight: bold;
  font-style: normal;
}

/* ====== ふわっと表示（ローディング） ====== */
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 0.9s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

/* ====== ふわっと表示（スクロール） ====== */
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.7s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.commissionPage {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 8px;   
}

/* ====== セクションタイトル ====== */
.secTitle {
  display: inline-block;
  background: #575757;
  color: #fff;
  font-size: 15px;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}

/* ====== カード内グレーヘッダー ====== */
.secHeader {
  background: rgba(87,87,87,0.12);
  border: 1px solid rgba(87,87,87,0.2);
  border-radius: 10px;
  color: #575757;
  font-size: 14px;
  letter-spacing: 3px;
  padding: 10px 20px;
  margin-bottom: 24px;
  font-weight: bold;
}

.description {
  margin-bottom: 16px;
}

.descNote {
  font-size: 11px;
  color: #999;
}

/* ====== グラスカード共通 ====== */
.glassCard {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  margin-bottom: 40px;
}

/* ====== 受付窓口 ====== */
.contactGrid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contactItem {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: #575757;
  transition: all 0.3s;
}

.contactItem:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contactItem .label {
  font-size: 11px;
  color: #999;
  margin-bottom: 4px;
}

.contactItem .value {
  font-size: 14px;
  color: #3D9EBF;
}

/* ====== 見積フォームボタン ====== */
.formBtn {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 28px;
  padding: 16px 24px;
  background: #5a9db5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(61,158,191,0.25);
  transition: all 0.3s;
}

.formBtn:hover {
  background: #3D9EBF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,158,191,0.35);
}
.siteGrid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.siteBtn {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  text-decoration: none;
  color: #575757;
  font-size: 13px;
  transition: all 0.3s;
}

.siteBtn:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.siteBtn img {
  height: 56px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.directNote {
  background: rgba(61,158,191,0.12);
  border-left: 4px solid #3D9EBF;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.9;
  margin-top: 12px;
}

/* ====== テンプレート ====== */
.templateBox {
  background: rgba(240,248,255,0.6);
  border: 1px dashed rgba(61,158,191,0.4);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 13px;
  line-height: 2;
}

.templateBox p {
  margin: 0;
}

/* ====== 依頼の流れ ====== */
.flowGrid {
  display: flex;
  gap: 0;
  align-items: flex-start;
  flex-wrap: nowrap;
  overflow-x: visible;
}

.flowNum {
  width: 44px;
  height: 44px;
  min-width: 44px;   /* ← これを追加 */
  background: #3D9EBF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto 12px;
}

.flowItem {
  flex: 1;
  min-width: 0;
  text-align: center;
  position: relative;
  padding: 0 4px;
  box-sizing: border-box;
}

.flowDesc {
  font-size: 10px;     /* 少し小さく */
  color: #888;
  line-height: 1.5;
}

/* ====== 注意事項 ====== */
.noteList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.noteList li {
  font-size: 13px;
  line-height: 1.8;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.noteList li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: #3D9EBF;
}

.noteList li.ng::before {
  content: '❌';
}

/* ====== 料金メモ ====== */
.priceNote {
  background: rgba(61,158,191,0.08);
  border-left: 3px solid #3D9EBF;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.sampleImg {
  display: block;
  width: 100%;
  max-width: 900px;    
  height: auto;
  margin: 0 auto 16px;
  border-radius: 10px;
}

.sampleImgRow {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.sampleImgRow .sampleImg {
  flex: 1;
  min-width: 120px;
  max-width: 48%;
  margin: 0;
}

/* ====== セクション間余白 ====== */
.sectionGap {
  margin-bottom: 60px;
}

/* ====== 小見出し ====== */
.glassCard h3 {
  font-size: 15px;
  color: #575757;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* ====== お支払いアイコン ====== */
.payGrid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.payItem {
  flex: 1;
  min-width: 140px;
  text-align: center;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 16px;
}

.payItem .payIcon {
  font-size: 20px;
  margin: 0;
}

.payItem .payLabel {
  margin: 4px 0 0;
  font-size: 13px;
}

/* ====== スマホ対応 ====== */
@media screen and (max-width: 600px) {
  .flowItem {
    min-width: 0;
    padding: 0 4px;
  }
  .flowDesc {
    font-size: 9px;
  }
}


/* ====== 左右柱画像 ====== */
.left1-img,
.left2-img,
.left3-img,
.right1-img,
.right2-img,
.right3-img {
  height: auto;
  position: absolute;
  z-index: 100;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.9s ease, transform 0.15s ease-out;
  pointer-events: none;
}

.left1-img  { width: 160px; top: 80px; left: 60px; }
.left2-img  { width: 250px; top: 2600px; left: 0; z-index: 0; }
.right1-img { width: 180px; top: 540px; right: 60px; }
.right2-img { width: 380px; top: 2790px; right: 0; z-index: 0; }
.left3-img  { width: 280px; top: 4300px; left: 0; }
.right3-img { width: 140px; top: 4200px; right: 60px; }

/* 表示状態 */
.left1-img.is-show,
.left2-img.is-show,
.left3-img.is-show,
.right1-img.is-show,
.right2-img.is-show,
.right3-img.is-show {
  opacity: 1;
}

@media screen and (max-width: 1300px) {
  .left1-img,
  .left2-img,
  .left3-img,
  .right1-img,
  .right2-img,
  .right3-img {
    display: none !important;
  }
}

/* ====== スマホ対応（768px以下） ====== */
@media screen and (max-width: 768px) {

  /* ====== ABOUTセクション ====== */
  .aboutInner {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .aboutImage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aboutContent {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aboutContent h4,
  .aboutContent .role,
  .aboutContent .description {
    text-align: center;
    width: 100%;
  }

  .profile-title {
    margin: 0 auto 8px;
    display: block;
  }

  .skillTags {
    justify-content: center;
  }

  .sns-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .moreBtn,
  .commissionBtn {
    display: block;
    margin: 12px auto;
    text-align: center;
  }

  /* ====== SKILLセクション（カード高さ揃え） ====== */
  .skillDescriptionAreaVertical {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .skillCard {
    display: flex;
    flex-direction: column;
  }

  /* PCで横並びの場合はグリッドで高さ揃え */
  @supports (display: grid) {
    .skillDescriptionAreaVertical {
      display: grid;
      grid-template-columns: 1fr;
      align-items: start;
    }
  }

  /* ====== WORKSグリッド：2列 ====== */
  .worksGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .worksCard {
    width: 100%;
  }

  .worksCardImg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  .worksTitle {
    font-size: 11px;
  }

  .worksMeta {
    font-size: 10px;
  }

  /* ====== commissionStatusを中央寄せ ====== */
  .commissionStatus {
    width: 100%;
    margin: 20px auto 0;
    text-align: center;
  }

  .commissionGrid {
    justify-content: center;
  }
}


/* ====== コピーライト ====== */
.copyright {
  text-align: center;
  font-size: 11px;
  margin: 20px 0;
  width: 100%;
  clear: both;
}
