@charset "utf-8";

/* =========================================================
   officeparty.css 統合版
========================================================= */

#itemlist.op-page {
  --op-brown: #745536;
  --op-gold: #c5a437;
  --op-gold-dark: #a98624;
  --op-gold-light: #f7efd0;
  --op-cream: #fff8ea;
  --op-cream-2: #f8efe0;
  --op-orange: #f39800;
  --op-text: #333;
  --op-muted: #666;
  --op-border: #e2d6c7;
  --op-white: #fff;
  --op-shadow: 0 12px 30px rgba(88, 62, 33, .12);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  color: var(--op-text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

#itemlist.op-page *,
#itemlist.op-page *::before,
#itemlist.op-page *::after {
  box-sizing: border-box;
}

#itemlist.op-page img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#itemlist.op-page a {
  color: inherit;
  text-decoration: none;
}

#itemlist.op-page .breadcrumb {
  margin: 0 0 18px;
}

#itemlist.op-page .breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  color: var(--op-muted);
}

#itemlist.op-page .breadcrumb a {
  color: var(--op-brown);
  text-decoration: underline;
}

#itemlist.op-page .op-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--op-gold-dark);
  font-weight: 700;
  letter-spacing: .04em;
}

#itemlist.op-page .op-label::before {
  content: none;
}

#itemlist.op-page h1,
#itemlist.op-page h2,
#itemlist.op-page h3,
#itemlist.op-page p {
  margin-top: 0;
}

#itemlist.op-page .op-hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 28px;
  padding: 48px 44px;
  border: 1px solid var(--op-border);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8ea 0%, #fff 48%, #f1dfbf 100%);
  box-shadow: var(--op-shadow);
  color: var(--op-text);
}

#itemlist.op-page .op-hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  grid-template-areas:
    "label points"
    "title points"
    "lead points"
    "actions points";
  gap: 0 34px;
  align-items: center;
  max-width: none;
  margin: 0;
}

#itemlist.op-page .op-hero .op-label {
  grid-area: label;
}

#itemlist.op-page .op-hero h1 {
  grid-area: title;
  margin: 0 0 18px;
  color: var(--op-brown);
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
}

#itemlist.op-page .op-hero__lead {
  grid-area: lead;
  margin: 0 0 24px;
  color: var(--op-text);
  font-size: 18px;
}

#itemlist.op-page .op-hero__actions,
#itemlist.op-page .op-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#itemlist.op-page .op-hero__actions {
  grid-area: actions;
  margin: 0;
}

#itemlist.op-page .op-contact__actions {
  margin: 0 0 22px;
}

#itemlist.op-page .op-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 48px;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.4;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}

#itemlist.op-page .op-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--op-shadow);
  opacity: 0.92;
}

#itemlist.op-page .op-btn--primary {
  color: var(--op-white);
  background: var(--op-orange);
  box-shadow: none;
}

#itemlist.op-page .op-btn--secondary {
  color: var(--op-brown);
  background: var(--op-white);
  border: 1px solid var(--op-gold);
}

#itemlist.op-page .op-hero__points {
  grid-area: points;
  display: block;
  width: 100%;
  margin: 0;
  padding: 24px;
  list-style: none;
  background: var(--op-white);
  border: 1px solid var(--op-border);
  border-radius: 18px;
}

#itemlist.op-page .op-hero__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: auto;
  padding: 10px 0;
  border-top: 1px dashed var(--op-border);
  color: var(--op-brown);
  background: transparent;
  border-radius: 0;
  font-weight: 700;
}

#itemlist.op-page .op-hero__points li:first-child {
  border-top: 0;
}

#itemlist.op-page .op-hero__points li::before {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--op-gold);
}

#itemlist.op-page .op-anchor {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 0 0 48px;
  padding: 12px;
  border: 1px solid var(--op-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--op-shadow);
}

#itemlist.op-page .op-anchor a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px;
  border-radius: 12px;
  color: var(--op-brown);
  background: var(--op-cream);
  font-weight: 700;
  text-align: center;
}

#itemlist.op-page .op-anchor a:hover {
  color: var(--op-white);
  background: var(--op-brown);
}

#itemlist.op-page .op-section {
  margin: 0 0 72px;
  padding: 0 24px;
}

#itemlist.op-page .op-section--cream,
#itemlist.op-page .op-section--fast,
#itemlist.op-page .op-section--review {
  padding: 48px 36px;
  border-radius: 24px;
  background: var(--op-cream);
}

#itemlist.op-page .op-section__head {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

#itemlist.op-page .op-section__head .op-label {
  justify-content: center;
}

#itemlist.op-page .op-section__head h2,
#itemlist.op-page .op-cta h2,
#itemlist.op-page .op-contact h2,
#itemlist.op-page .op-split h2 {
  margin: 0 0 14px;
  color: var(--op-brown);
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
}

#itemlist.op-page .op-section__head p,
#itemlist.op-page .op-cta p,
#itemlist.op-page .op-contact p,
#itemlist.op-page .op-split p {
  color: var(--op-muted);
  font-size: 16px;
}

#itemlist.op-page .op-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#itemlist.op-page .op-flow article,
#itemlist.op-page .op-reviewGrid article {
  padding: 24px;
  border: 1px solid var(--op-border);
  border-radius: 18px;
  background: var(--op-white);
  box-shadow: var(--op-shadow);
}

#itemlist.op-page .op-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 0 14px;
  border-radius: 50%;
  color: var(--op-white);
  background: var(--op-brown);
  font-weight: 700;
}

#itemlist.op-page .op-flow h3,
#itemlist.op-page .op-reviewGrid h3,
#itemlist.op-page .op-serviceGrid h3 {
  margin: 0 0 8px;
  color: var(--op-brown);
  font-size: 21px;
}

#itemlist.op-page .op-flow p,
#itemlist.op-page .op-reviewGrid p,
#itemlist.op-page .op-serviceGrid p {
  margin: 0;
  color: var(--op-muted);
}

#itemlist.op-page .op-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 24px 72px;
  padding: 34px 38px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--op-brown), #8c6844);
  color: var(--op-white);
}

#itemlist.op-page .op-cta h2,
#itemlist.op-page .op-cta p {
  color: var(--op-white);
}

#itemlist.op-page .op-cta p {
  margin-bottom: 0;
}

#itemlist.op-page .op-categoryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#itemlist.op-page .op-categoryGrid a {
  overflow: hidden;
  border: 1px solid var(--op-border);
  border-radius: 18px;
  background: var(--op-white);
  box-shadow: var(--op-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#itemlist.op-page .op-categoryGrid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(116, 85, 54, 0.18);
}

#itemlist.op-page .op-categoryGrid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f5f1e8;
}

#itemlist.op-page .op-categoryGrid span,
#itemlist.op-page .op-categoryGrid small {
  display: block;
  padding: 0 18px;
}

#itemlist.op-page .op-categoryGrid span {
  padding-top: 16px;
  color: var(--op-brown);
  font-size: 18px;
  font-weight: 700;
}

#itemlist.op-page .op-categoryGrid small {
  padding-bottom: 18px;
  color: var(--op-muted);
  font-size: 13px;
  line-height: 1.6;
}

#itemlist.op-page .op-linkGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

#itemlist.op-page .op-linkGrid a,
#itemlist.op-page .op-fastLinks a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 13px 18px;
  border: 1px solid var(--op-gold);
  border-radius: 14px;
  color: var(--op-brown);
  background: var(--op-white);
  font-weight: 700;
}

#itemlist.op-page .op-linkGrid a::after,
#itemlist.op-page .op-fastLinks a::after {
  content: "›";
  color: var(--op-gold);
  font-size: 24px;
  line-height: 1;
}

#itemlist.op-page .op-linkGrid a:hover,
#itemlist.op-page .op-fastLinks a:hover {
  color: var(--op-white);
  background: var(--op-brown);
  border-color: var(--op-brown);
}

#itemlist.op-page .op-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

#itemlist.op-page .op-fastLinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#itemlist.op-page .op-serviceGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

#itemlist.op-page .op-serviceGrid article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--op-border);
  border-radius: 18px;
  background: var(--op-white);
  box-shadow: var(--op-shadow);
}

#itemlist.op-page .op-serviceGrid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #f5f1e8;
}

#itemlist.op-page .op-serviceGrid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--op-gold);
  font-weight: 700;
  text-decoration: underline;
}

#itemlist.op-page .op-reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#itemlist.op-page .op-contact {
  margin: 0 24px 40px;
  padding: 44px;
  border-radius: 24px;
  background: var(--op-brown);
  color: var(--op-white);
  text-align: center;
}

#itemlist.op-page .op-contact h2,
#itemlist.op-page .op-contact p {
  color: var(--op-white);
}

#itemlist.op-page .op-contact__actions {
  justify-content: center;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  #itemlist.op-page {
    width: 100%;
    padding: 0 4vw;
    font-size: 3.8vw;
    line-height: 1.75;
  }

  #itemlist.op-page .breadcrumb ul {
    font-size: 3vw;
  }

  #itemlist.op-page .op-hero {
    margin-bottom: 5vw;
    padding: 8vw 5vw;
    border-radius: 4vw;
  }

  #itemlist.op-page .op-hero__body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "lead"
      "actions"
      "points";
    gap: 0;
  }

  #itemlist.op-page .op-hero h1 {
    font-size: 8.2vw;
  }

  #itemlist.op-page .op-hero__lead {
    font-size: 4.2vw;
  }

  #itemlist.op-page .op-hero__actions,
  #itemlist.op-page .op-contact__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3vw;
  }

  #itemlist.op-page .op-btn {
    width: 100%;
    min-width: 0;
    padding: 3.5vw 4vw;
    font-size: 4vw;
  }

  #itemlist.op-page .op-hero__points {
    margin-top: 5vw;
    padding: 5vw;
    border-radius: 4vw;
  }

  #itemlist.op-page .op-hero__points li {
    gap: 2.5vw;
    padding: 2.4vw 0;
    font-size: 3.7vw;
  }

  #itemlist.op-page .op-hero__points li::before {
    flex-basis: 7vw;
    width: 7vw;
    height: 7vw;
  }

  #itemlist.op-page .op-anchor {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    margin-bottom: 9vw;
    padding: 3vw;
    border-radius: 4vw;
  }

  #itemlist.op-page .op-anchor a {
    min-height: 11vw;
    padding: 2vw;
    font-size: 3.5vw;
  }

  #itemlist.op-page .op-section {
    margin-bottom: 12vw;
    padding: 0;
  }

  #itemlist.op-page .op-section--cream,
  #itemlist.op-page .op-section--fast,
  #itemlist.op-page .op-section--review {
    padding: 8vw 5vw;
    border-radius: 5vw;
  }

  #itemlist.op-page .op-section__head {
    margin-bottom: 6vw;
    text-align: left;
  }

  #itemlist.op-page .op-section__head .op-label {
    justify-content: flex-start;
  }

  #itemlist.op-page .op-section__head h2,
  #itemlist.op-page .op-cta h2,
  #itemlist.op-page .op-contact h2,
  #itemlist.op-page .op-split h2 {
    font-size: 6.6vw;
  }

  #itemlist.op-page .op-section__head p,
  #itemlist.op-page .op-cta p,
  #itemlist.op-page .op-contact p,
  #itemlist.op-page .op-split p {
    font-size: 3.8vw;
  }

  #itemlist.op-page .op-flow,
  #itemlist.op-page .op-categoryGrid,
  #itemlist.op-page .op-linkGrid,
  #itemlist.op-page .op-split,
  #itemlist.op-page .op-serviceGrid,
  #itemlist.op-page .op-reviewGrid {
    grid-template-columns: 1fr;
  }

  #itemlist.op-page .op-flow article,
  #itemlist.op-page .op-reviewGrid article {
    padding: 5vw;
    border-radius: 4vw;
  }

  #itemlist.op-page .op-flow h3,
  #itemlist.op-page .op-reviewGrid h3,
  #itemlist.op-page .op-serviceGrid h3 {
    font-size: 5vw;
  }

  #itemlist.op-page .op-cta {
    display: block;
    margin: 0 0 12vw;
    padding: 7vw 5vw;
    border-radius: 5vw;
  }

  #itemlist.op-page .op-cta .op-btn {
    margin-top: 4vw;
  }

  #itemlist.op-page .op-categoryGrid a {
    display: grid;
    grid-template-columns: 34vw 1fr;
    align-items: center;
    border-radius: 4vw;
  }

  #itemlist.op-page .op-categoryGrid img {
    height: 100%;
    min-height: 28vw;
    aspect-ratio: 1 / 1;
  }

  #itemlist.op-page .op-categoryGrid span {
    padding: 0 4vw;
    font-size: 4.3vw;
  }

  #itemlist.op-page .op-categoryGrid small {
    padding: 0 4vw;
    font-size: 3.2vw;
  }

  #itemlist.op-page .op-linkGrid {
    gap: 2.5vw;
  }

  #itemlist.op-page .op-linkGrid a,
  #itemlist.op-page .op-fastLinks a {
    min-height: 12vw;
    padding: 2.8vw 4vw;
    border-radius: 3vw;
    font-size: 3.8vw;
  }

  #itemlist.op-page .op-fastLinks {
    grid-template-columns: 1fr;
    gap: 2.5vw;
  }

  #itemlist.op-page .op-serviceGrid article {
    grid-template-columns: 1fr;
    gap: 4vw;
    padding: 4vw;
    border-radius: 4vw;
  }

  #itemlist.op-page .op-serviceGrid img {
    border-radius: 3vw;
  }

  #itemlist.op-page .op-contact {
    margin: 0 0 8vw;
    padding: 8vw 5vw;
    border-radius: 5vw;
  }
}