
:root {
    --green: #1e4d20;
    --green-light: #d4f5d4;
    --green-dark: #1e4d20;
    --cream: #fdf8f0;
    --brown: #c8a96e;
    --text: #333;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  .body {
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    padding-top: 100px;
  }

  @media screen and (max-width: 768px) {
    .body {
        background-color: #FFFFFF;
        color: #2c2c2c;
        line-height: 1.3em;
        font-family: sans-serif;
        margin: 0;
        padding: 0;
    }
  }      

  /* ===== BREADCRUMB ===== */
  .breadcrumb {
    text-align: right;
    padding: 8px 24px;
    font-size: 11px;
    color: #888;
  }
  .breadcrumb a { color: #888; text-decoration: none; }
  .breadcrumb a:hover { color: var(--green); }

  /* ===== HERO BANNER ===== */
  .hero {
    position: relative;
    background:#fff;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px 60px;
  }

   @media screen and (max-width: 768px) {
    .hero {
    position: relative;
    background:#fff;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 8px;
  }
    }


  /* ミズタマ*/
  .hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .deco-blue { width: 200px; height: 200px; background: #53c6ff; top: 10%; left: -30px; opacity: .7; }
  .deco-pink { width: 200px; height: 200px; background: #ff7474; top: 5%; right: 5%; opacity: .7; }
  .deco-yellow { width: 200px; height: 200px; background: #fffc40; bottom: 10%; left: 10%; opacity: .6; }
  .deco-green { width: 200px; height: 200px; background: #40ff40; bottom: 10%; right: 8%; opacity: .7; }

  @media screen and (max-width: 600px) {
  .deco-blue { width: 150px; height: 150px; background: #53c6ff; top: -10%; left: -30px; opacity: .7; }
  .deco-pink { width: 150px; height: 150px; background: #ff7474; top: -5%; right: -15%; opacity: .7; }
  .deco-yellow { width: 150px; height: 150px; background: #fffc40; bottom: -10%; left: -20%; opacity: .6; }
  .deco-green { width: 150px; height: 150px; background: #40ff40; bottom: 5%; right: -10%; opacity: .7; } 
  }

  /* 虹 */
.rainbow-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.rainbow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .rainbow-wrap {
    max-width: 100%;
  }

  .rainbow {
    width: 120%;
    max-width: none;
  }
}

  /* 紙 */
  
  .hero-content h1 {

    text-align: center;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #222;
  }
  .hero-content h1 .accent { 
    color: var(--green-dark); 
    font-size: 35px;
  }

  .hero-content .sub {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #181818;
  }
  .hero-content p {
    text-align: center;
    font-size: 20px;
    line-height: 2;
    color: #181818;
    margin-bottom: 28px;
  }

  @media screen and (max-width: 768px) {
  .hero-content h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #222;
    width: 100%;
    max-width: 500px;
  }
  .hero-content h1 .accent { 
    color: var(--green-dark); 
    font-size: 18px;
    line-height: 1.1;
  }
  .hero-content .sub {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #181818;
  }
  .hero-content p {
    text-align: center;
    font-size: 10px;
    line-height: 2;
    color: #181818;
    margin-bottom: 28px;
  }

 }


  /* 問い合わせボタン */
.slime-btn-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

.slime-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 999px;
  border: 3.5px solid var(--c);
  background: #fff;
  font-family: "M Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #111;
  white-space: nowrap;
  box-shadow: 3px 4px 0px rgba(0,0,0,0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 2;
}

.slime-btn-wrapper:hover .slime-btn {
  transform: translateY(-2px);
  box-shadow: 3px 8px 0px rgba(0,0,0,0.13);
}

.slime-btn-wrapper:active .slime-btn {
  transform: translateY(2px);
  box-shadow: 1px 2px 0px rgba(0,0,0,0.10);
}

.slime-svg {
  position: absolute;
  bottom: -82px;
  right: 10px;
  width: 180px;
  height: 100px;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.drip {
  transform-origin: top center;
  animation: drip-fall 2.4s ease-in-out infinite;
}
.drip1 { animation-delay: 0s; }
.drip2 { animation-delay: 0.4s; }
.drip3 { animation-delay: 0.8s; }
.drip4 { animation-delay: 0.2s; }
.drip5 { animation-delay: 0.6s; }

@keyframes drip-fall {
  0%   { transform: scaleY(0.85); }
  50%  { transform: scaleY(1.08); }
  100% { transform: scaleY(0.85); }
}

.drop {
  animation: drop-bob 2.4s ease-in-out infinite;
}
.drop1 { animation-delay: 0.1s; }
.drop2 { animation-delay: 0.5s; }
.drop3 { animation-delay: 0.9s; }

@keyframes drop-bob {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(4px); }
  100% { transform: translateY(0px); }
}

/* Variant buttons */
.variants {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
    

  /* ===== SECTION HEADING ===== */
  .section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
  }
  .section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: var(--green);
    border-radius: 3px;
    margin-top: 6px;
  }
  .section-title-wrap {
    text-align: center;
    margin-bottom: 32px;
  }

    .toha-title {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  .toha-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: var(--green);
    border-radius: 3px;
    margin-top: 6px;
  }
  .toha-title-wrap {
    text-align: center;
    margin-bottom: 32px;
  }


  /* ===== ABOUT SECTION ===== */
  .about {
    background: #fff;
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* ===== POINTS SECTION ===== */
  .points-section {
    background: var(--white);
    padding: 60px 10%;
    position: relative;
    overflow: hidden;
  }

@media screen and (max-width: 768px) {
  .points-section {
  padding: 20px;
}
}

  /* FUN! ENJOY! decorative text */
  .deco-cardboardtext_fun {
    position: absolute;
    right: 20px;
    top: 60px;
    width: 450px;      /* 好きなサイズに */
  height: auto;
  opacity: .5;
  transform: rotate(8deg);
  pointer-events: none;
  }

  .deco-cardboardtext_enjoy {
    position: absolute;
    left: 10px;
    bottom: 40px;
    width: 450px;      /* 好きなサイズに */
    height: auto;
    opacity: .5;
    transform: rotate(8deg);
    pointer-events: none;
    }

     /* 背景の紙*/
  .deco-paper1 {
    position: absolute;
    right:  -400px;
    bottom: 600px;
    width: 600px;      /* 好きなサイズに */
  height: auto;
  opacity: .5;
  transform: rotate(-45deg);
  pointer-events: none;
  }
  .deco-paper2 {
    position: absolute;
    left:  -600px;
    bottom: 1000px;
    width: 800px;      /* 好きなサイズに */
    height: auto;
    opacity: .5;
    transform: rotate(30deg);
    pointer-events: none;
    }
    .deco-paper3 {
    position: absolute;
    left:  -400px;
    bottom: 450px;
    width: 600px;      /* 好きなサイズに */
    height: auto;
    opacity: .5;
    transform: rotate(45deg);
    pointer-events: none;
    }
    .deco-paper4 {
    position: absolute;
    right:  -100px;
    bottom: 400px;
    width: 300px;      /* 好きなサイズに */
    height: auto;
    opacity: .5;
    transform: rotate(-40deg);
    pointer-events: none;
    }
    .deco-paper5 {
    position: absolute;
    left:  -300px;
    bottom: 150px;
    width: 600px;      /* 好きなサイズに */
    height: auto;
    opacity: .5;
    transform: rotate(-30deg);
    pointer-events: none;
    }

  .points-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .point-row {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
  }
  .point-row.reverse { flex-direction: row-reverse; }

  .point-img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .point-img img { width: 100%; height: 100%; object-fit: cover; }

.point-text {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 30px;
}

/* PC：1番目 */
.point-list .point-row:nth-of-type(1) .point-text {
  background-image: url("https://event21.co.jp/pic/circle_back_or.png");
}

/* PC：2番目 */
.point-list .point-row:nth-of-type(2) .point-text {
  background-image: url("https://event21.co.jp/pic/circle_back_gr.png");
}

/* PC：3番目 */
.point-list .point-row:nth-of-type(3) .point-text {
  background-image: url("https://event21.co.jp/pic/circle_back_bl.png");
}


/* スマホ版 */
@media screen and (max-width: 768px) {
  .point-list .point-row .point-text {
    background-image: none !important;
    position: relative;
    overflow: hidden;
  }

  .point-list .point-row .point-text::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
  }

  .point-list .point-row:nth-of-type(1) .point-text::before {
    width: 250px;
    height: 250px;
    background: rgb(243, 141, 7);
  }

  .point-list .point-row:nth-of-type(2) .point-text::before {
    width: 250px;
    height: 250px;
    background: rgb(16, 223, 16);
  }

  .point-list .point-row:nth-of-type(3) .point-text::before {
    width: 250px;
    height: 250px;
    background: rgb(24, 215, 240);
  }

  .point-list .point-row .point-text > * {
    position: relative;
    z-index: 1;
  }
}
  .point-text h3 {
    text-align:center ;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--green-dark);
  }
  .point-text p, .point-text ul {
    text-align:center ;
    font-size: 20px;
    line-height: 2;
    color: #292929;
  }
  .point-text ul { padding-left: 16px; }
  .point-text ul li { margin-bottom: 4px; }

  @media screen and (max-width: 768px) {
  .point-text h3 {
  font-size: 22px;
  }
  .point-text p, .point-text ul {
    font-size: 15px;
  }
  }

  /* ===== PLANS SECTION ===== */
  .plans-section {
    padding: 60px 24px;
    background: #fff;
  }
  .plans-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 16px;
  }
  .plan-card {
    border: 3px solid var(--green);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
  }
  .plan-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(93,197,96,.3); }
  .plan-card .card-img {
    width: 100%; height: 140px;
    object-fit: cover;
    background: #e8e8e8;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
  }
  .plan-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
  .plan-card p {
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
  }
  .plans-note {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-bottom: 32px;
  }

@media screen and (max-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .plan-card p {
    font-size: 16px;
  }
}

/* スマホ */
@media screen and (max-width: 428px) {
  .plans-section {
    padding: 40px 16px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .plan-card .card-img {
    height: 180px;
  }

  .plan-card p {
    font-size: 15px;
    padding: 10px;
  }

   }
  /* ===== CTA BLOCK ===== */
  .cta-block {
    text-align: center;
    padding: 16px 0 40px;
  }
  .cta-note { font-size: 11px; color: #888; margin-top: 8px; }

  /* ===== GALLERY SECTION ===== */
  .gallery-section {
    padding: 60px 24px;
    background: #fff;
  }
  .gallery-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 160px 160px;
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
  }
  .gallery-item {
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #bbb;
  }

  /* ===== MORE PLANS SECTION ===== */
  .more-plans-section {
    padding: 60px 24px;
    background: var(--cream);
  }
  .more-plans-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .more-plans-hero {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    align-items: flex-start;
  }
  .more-plans-hero .main-img {
    width: 55%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    display: flex; align-items: center; justify-content: center; font-size: 40px;
  }
  .more-plans-hero .main-img img { width: 100%; height: 100%; object-fit: cover; }
  .more-plans-hero .side-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }

  /* お問い合わせ */
  .btn-contact {
    display: block;
    padding: 14px 24px;
    border: 2px solid var(--green);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    transition: background .2s;
  }
  .btn-contact:hover { background: var(--green-light); }
  .btn-tel {
    display: block;
    padding: 14px 24px;
    background: var(--green-light);
    border: 2px solid var(--green);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
  }

  .more-title {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text);
  }
  .more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 12px;
  }
  .more-card {
    border: 2px solid var(--green);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
  }
  .more-card .card-img {
    height: 120px; background: #ddd;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
  }
  .more-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
  .more-card p { padding: 10px; font-size: 12px; color: #555; }

  /* ===== FOOTER ===== */
  footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 24px;
    font-size: 12px;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp .7s ease both; }
  .fade-up-2 { animation: fadeUp .7s .15s ease both; }
  .fade-up-3 { animation: fadeUp .7s .3s ease both; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .plans-grid, .more-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .point-row, .point-row.reverse { flex-direction: column; }
    .more-plans-hero { flex-direction: column; }
    .more-plans-hero .main-img { width: 100%; }
    .gallery-grid { grid-template-rows: auto; }
  }

  /* お問い合わせボタン */
.contact-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.contact-image-btn-text {
  position: relative;
  display: inline-block;
  width: min(100%, 420px);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-image-btn-text img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-image-btn-text span {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -58%);
  color: #333;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: bold;
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
}

 @media (max-width: 768px) {
  .contact-image-btn-text span {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -58%);
  color: #333;
  font-size: clamp(15px, 4vw, 22px);
  font-weight: bold;
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
}
 } 

.contact-image-btn-text:hover {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.contact-image-btn-text:active {
  transform: translateY(-1px) scale(0.99);
}

@media screen and (max-width: 600px) {
  .contact-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 0px 0;
}
  .contact-image-btn-text {
    width: min(60%, 200px);
    margin: 30px 30px;
  }
}

/* ギャラリー */
    /* 見える枠：はみ出た部分を隠す */
.sdgs_box_work_slider .handiheader-wrapper{
  overflow: hidden;
  width: 100%;
}
/* 横に並べて流す本体 */
.sdgs_box_work_slider 
.slider-track{
  display: flex;
  align-items: center;
  gap: 0px;                 /* 画像同士の間隔 */
  width: max-content;        /* 中身の幅ぶんだけ広げる */
  animation: sdgs-marquee 55s linear infinite; 
  will-change: transform;
}

/* 画像サイズ */
.sdgs_box_work_slider 
.slider-track img{
  height: 200px;             /* 高さ固定で揃える */
  width: auto;
  display: block;
}

/* 右→左へ流す（2セットあるので -50% でぴったり繋がる） */
@keyframes sdgs-marquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 触れたら止まる */
.sdgs_box_work_slider 
.handiheader-wrapper:hover .slider-track{
  animation-play-state: paused;
}

/* 動きが苦手な人向け配慮（任意） */
@media (prefers-reduced-motion: reduce){
  .sdgs_box_work_slider .slider-track{ animation: none; }
}

/* 商品タイトル */

.syohin::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: var(--green);
    border-radius: 3px;
    margin-top: 6px;
  }
  .syohin-wrap {
    text-align: center;
    margin-bottom: 32px;
  }
.syohin-title {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 32px;
    position: relative;
  }

/* 商品画像  */
  .image-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.gallery-item {
  display: block;
  width: 48%;
  max-width: 500px;
  cursor: pointer;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-item:hover {
  filter: brightness(1.12);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 40px 20px;
  box-sizing: border-box;
}

.image-modal-content {
  display: block;
  max-width: 90%;
  max-height: 85vh;
  margin: 0 auto;
  position: relative;
  top: 50%;
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.image-modal-close:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .gallery-item {
    width: 100%;
    max-width: 100%;
  }
}

/* 商品ページ */
.sum {
  max-width: 70％;
  display: flex;
  margin: 0 150px;    /* 左右に余白 */
}

.sum:after {
  content: "";
}

.itembox {
  flex: 1;           /* 均等に半分ずつ */
  padding: 12px 16px;
}

@media screen and (max-width: 768px) {
  .sum {
    max-width: 100%;
    flex-direction: column;
    margin: 0 16px;
  }

  .itembox {
    width: 100%;
  }
}

/* 商品情報 */
table {
  width: 90%;
  border-collapse: collapse;       /* セル間の隙間をなくす */
  border: 1.5px solid var(--green);    /* 外枠：緑色 */
}

th, td {
  border: 1.5px solid var(--green);    /* 各セルの枠線 */
  vertical-align: middle;         /* 縦方向：中央揃え */
  padding: 10px;
}

th {
  background: #9dffb6;            /* 薄緑の背景 */
  color: solid var(--text);                 /* 濃い緑のテキスト */
  text-align: center;             /* 横方向：中央揃え */
  width: 140px;                   /* 左列の固定幅 */
}

td {
  background: #fff;
}


.green-box {
  background:  #d4f5d4;
  color:solid var(--text);
  padding: 12px 20px;
  display: inline-block;
}


.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.price-badge {
  background: #7CEB5A;
  color: solid var(--text);
  font-weight: 500;
  padding: 10px 60px;
  border-radius: 999px;   /* 角を完全に丸くする */
  font-size: 30px;
}

@media screen and (max-width: 768px) {
.price-badge {
font-weight: 500;
  padding: 5px 20px;
  font-size: 30px;
}
} 

.price-text {
  font-size: 40px;
}

.otoiawase-btn {
  display: block;
  width: 50%;
  padding: 14px;
  border: 3px solid #7CEB5A;
  border-radius: 999px;
  background: #fff;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.otoiawase-btn:hover {
  background: #7CEB5A;
  color: #1a4d00;
}

/* 実績紹介 */

  .cards-wrap {
    display: contents;
  }
 
  /* ===== カード ===== */
  .pop-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 0.5px solid #e8e4df;
  }
 
  /* ヘッダー */
  .pop-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    flex-wrap: wrap;
    gap: 6px;
  }
  .pop-card-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pop-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F59E0B;
    flex-shrink: 0;
  }
  .pop-title-text {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
  }
  .pop-date {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
  }
 
  /* アクセントバー */
  .accent-bar {
    display: flex;
    height: 3px;
  }
  .accent-bar .b {
    flex: 1;
  }
 
  /* ===== ボディ ===== */
  .pop-body {
    display: grid;
    grid-template-columns: 1fr 200px;
  }
  @media (max-width: 520px) {
    .pop-body { grid-template-columns: 1fr; }
  }
 
  /* ===== スライダー ===== */
  .slider-wrap {
    position: relative;
    background: #f0ece6;
    overflow: hidden;
    width: 100%;
  }
  .slide-track {
    display: flex;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
 
  .slide-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bbb;
    height: 100%;
    width: 100%;
  }
  .slide-placeholder svg {
    width: 36px;
    height: 36px;
    opacity: 0.4;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.4;
  }
  .slide-placeholder span { font-size: 12px; }
 
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  /* スライドボタン */
  .slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 0.5px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.15s;
  }
  .slide-btn:hover { background: #f5f5f5; }
  .slide-btn svg {
    width: 14px;
    height: 14px;
    stroke: #444;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .slide-btn-prev { left: 10px; }
  .slide-btn-next { right: 10px; }
 
  /* ドットインジケーター */
  .slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }
  .dot-btn {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
  }
  .dot-btn.active { background: #fff; }
 
  /* 枚数バッジ */
  .slide-num-badge {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
  }
 
  /* ===== メタ情報サイドバー ===== */
  .pop-meta {
    border-left: 0.5px solid #ebebeb;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #FAFAFA;
  }
  @media (max-width: 520px) {
    .pop-meta {
      border-left: none;
      border-top: 0.5px solid #ebebeb;
    }
  }
 
  .meta-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
  }
  .badge-yellow { background: #FEF9C3; color: #854D0E; }
  .badge-blue   { background: #DBEAFE; color: #1E40AF; }
  .badge-purple { background: #EDE9FE; color: #5B21B6; }
 
  .meta-val {
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.5;
    display: block;
  }
 
  /* ===== スタッフコメント ===== */
  .pop-comment {
    border-top: 0.5px solid #ebebeb;
    display: flex;
    gap: 14px;
    padding: 16px;
    background: #fff;
  }
  .comment-text {
    font-size: 13px;
    color: #333;
    line-height: 1.85;
  }


/* スタッフコメント */

 .staff-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
 
  /* 丸い写真 */
  .avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #d0d0d0;
    overflow: hidden;
  }
 
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  /* 右側テキスト */
  .staff-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
 
  .staff-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 6px;
    border-bottom: 3px solid #6abf47;
    display: inline-block;
  }
 
  .staff-comment {
    font-size: 14px;
    line-height: 1.85;
    color: #333;
  }